17 lines
327 B
C#
17 lines
327 B
C#
using Navigation_Between.Interface;
|
|
using Navigation_Between.Service;
|
|
|
|
namespace Navigation_Between;
|
|
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override Window CreateWindow(IActivationState? activationState)
|
|
{
|
|
return new Window(new AppShell());
|
|
}
|
|
} |