Files
IGP-Fan-Reference/Hybrid/App.xaml.cs
T

14 lines
279 B
C#

namespace Hybrid;
public partial class App : Application
{
public App()
{
InitializeComponent();
}
protected override Window CreateWindow(IActivationState? activationState)
{
return new Window(new MainPage()) { Title = "Hybrid" };
}
}