mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
23 lines
393 B
C#
23 lines
393 B
C#
|
|
using Avalonia;
|
|||
|
|
using Avalonia.Controls;
|
|||
|
|
using Avalonia.Markup.Xaml;
|
|||
|
|
|
|||
|
|
namespace Aaru.Gui.Views
|
|||
|
|
{
|
|||
|
|
public class MainWindow : Window
|
|||
|
|
{
|
|||
|
|
public MainWindow()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
#if DEBUG
|
|||
|
|
this.AttachDevTools();
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void InitializeComponent()
|
|||
|
|
{
|
|||
|
|
AvaloniaXamlLoader.Load(this);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|