2025-10-11 18:25:59 +08:00

15 lines
304 B
C#

namespace DuoDuo
{
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new AppShell());
}
}
}