2021-10-08 13:16:51 +00:00
|
|
|
using Avalonia;
|
|
|
|
using Avalonia.Controls;
|
|
|
|
using Avalonia.Markup.Xaml;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.Launcher.Views;
|
|
|
|
|
2023-11-15 03:09:50 +00:00
|
|
|
public partial class MainWindow : Window
|
2021-10-08 13:16:51 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
public MainWindow()
|
2021-10-08 13:16:51 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
InitializeComponent();
|
2021-10-08 13:16:51 +00:00
|
|
|
#if DEBUG
|
2021-10-23 16:51:17 +00:00
|
|
|
this.AttachDevTools();
|
2021-10-08 13:16:51 +00:00
|
|
|
#endif
|
2021-10-23 16:51:17 +00:00
|
|
|
}
|
2021-10-08 13:16:51 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
private void InitializeComponent()
|
|
|
|
{
|
|
|
|
AvaloniaXamlLoader.Load(this);
|
2021-10-08 13:16:51 +00:00
|
|
|
}
|
|
|
|
}
|