diff --git a/.gitignore b/.gitignore index 0a4addf..1ae9faa 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ /public/build /public/hot /public/storage +/PhotoboothUploader/bin +/PhotoboothUploader/obj /storage/*.key /storage/framework /vendor diff --git a/PhotoboothUploader/App.axaml b/PhotoboothUploader/App.axaml new file mode 100644 index 0000000..5b36685 --- /dev/null +++ b/PhotoboothUploader/App.axaml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/PhotoboothUploader/App.axaml.cs b/PhotoboothUploader/App.axaml.cs new file mode 100644 index 0000000..d546bf9 --- /dev/null +++ b/PhotoboothUploader/App.axaml.cs @@ -0,0 +1,23 @@ +using Avalonia; +using Avalonia.Controls.ApplicationLifetimes; +using Avalonia.Markup.Xaml; + +namespace PhotoboothUploader; + +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/PhotoboothUploader/Assets/app.ico b/PhotoboothUploader/Assets/app.ico new file mode 100644 index 0000000..9be37f0 Binary files /dev/null and b/PhotoboothUploader/Assets/app.ico differ diff --git a/PhotoboothUploader/Assets/logo.png b/PhotoboothUploader/Assets/logo.png new file mode 100644 index 0000000..ab9c501 Binary files /dev/null and b/PhotoboothUploader/Assets/logo.png differ diff --git a/PhotoboothUploader/Assets/sample-upload.png b/PhotoboothUploader/Assets/sample-upload.png new file mode 100644 index 0000000..fef1915 Binary files /dev/null and b/PhotoboothUploader/Assets/sample-upload.png differ diff --git a/PhotoboothUploader/MainWindow.axaml b/PhotoboothUploader/MainWindow.axaml new file mode 100644 index 0000000..e52aaeb --- /dev/null +++ b/PhotoboothUploader/MainWindow.axaml @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +