Files
fotospiel-app/clients/photobooth-uploader/PhotoboothUploader/App.xaml.cs
2026-01-12 17:09:37 +01:00

18 lines
309 B
C#

using Microsoft.UI.Xaml;
namespace PhotoboothUploader;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override void OnLaunched(LaunchActivatedEventArgs args)
{
var window = new MainWindow();
window.Activate();
}
}