16 lines
388 B
C#
16 lines
388 B
C#
namespace Inspectron.PrintServer.TemplateEditor
|
|
{
|
|
public partial class App : Application
|
|
{
|
|
public App()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
protected override Window CreateWindow(IActivationState? activationState)
|
|
{
|
|
return new Window(new MainPage()) { Title = "Inspectron.PrintServer.TemplateEditor" };
|
|
}
|
|
}
|
|
}
|