11 lines
163 B
C#
11 lines
163 B
C#
|
|
using Avalonia.Controls;
|
||
|
|
|
||
|
|
namespace pgLabII.Views;
|
||
|
|
|
||
|
|
public partial class MainWindow : Window
|
||
|
|
{
|
||
|
|
public MainWindow()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
}
|