14 lines
279 B
C#
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" };
|
|
}
|
|
} |