15 lines
304 B
C#
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());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|