2026-01-23 10:13:53 +08:00

15 lines
311 B
C#

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