From fe46c308ef3eb1be3c39eca680e9b01b6b749336 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Mon, 1 Feb 2021 01:05:42 -0500 Subject: Added project files --- Views/MainWindow.axaml.cs | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Views/MainWindow.axaml.cs (limited to 'Views/MainWindow.axaml.cs') diff --git a/Views/MainWindow.axaml.cs b/Views/MainWindow.axaml.cs new file mode 100644 index 0000000..81f1a2c --- /dev/null +++ b/Views/MainWindow.axaml.cs @@ -0,0 +1,22 @@ +using Avalonia; +using Avalonia.Controls; +using Avalonia.Markup.Xaml; + +namespace Alee_Audio_Player.Views +{ + public class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); +#if DEBUG + this.AttachDevTools(); +#endif + } + + private void InitializeComponent() + { + AvaloniaXamlLoader.Load(this); + } + } +} \ No newline at end of file -- cgit v1.2.3