editor first run

This commit is contained in:
EugeneTes
2026-02-04 14:20:08 +01:00
parent 2748c6586e
commit eca5ced38a
33 changed files with 2322 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
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" };
}
}
}