Files
2025-12-08 19:15:33 -05:00

22 lines
345 B
C#

namespace Test.SpotlightTour
{
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
var window = new Window(new AppShell());
#if WINDOWS
window.Width = 700;
window.Height = 900;
#endif
return window;
}
}
}