diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..935bcae --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +bin/ +obj/ +.vs/ +*.suo +*.user +*.cache \ No newline at end of file diff --git a/GUI/App.axaml b/GUI/App.axaml new file mode 100644 index 0000000..db1fd45 --- /dev/null +++ b/GUI/App.axaml @@ -0,0 +1,136 @@ + + + + + + #FF000000 + #FF1A1A1A + #FFFFFFFF + #FF808080 + #FF333333 + #FFFFFFFF + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/GUI/App.axaml.cs b/GUI/App.axaml.cs new file mode 100644 index 0000000..6cc11be --- /dev/null +++ b/GUI/App.axaml.cs @@ -0,0 +1,23 @@ +using Avalonia; +using Avalonia.Controls.ApplicationLifetimes; +using Avalonia.Markup.Xaml; + +namespace SoundCrashFixGUI; + +public partial class App : Application +{ + public override void Initialize() + { + AvaloniaXamlLoader.Load(this); + } + + public override void OnFrameworkInitializationCompleted() + { + if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) + { + desktop.MainWindow = new MainWindow(); + } + + base.OnFrameworkInitializationCompleted(); + } +} \ No newline at end of file diff --git a/GUI/MainWindow.axaml b/GUI/MainWindow.axaml new file mode 100644 index 0000000..5e13b78 --- /dev/null +++ b/GUI/MainWindow.axaml @@ -0,0 +1,226 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +