Files
WpfExtended/WpfExtended.Test/Launcher.cs
T
2021-04-01 14:19:16 +02:00

36 lines
741 B
C#

using Slim;
using System;
using System.Windows.Extensions;
using WpfExtended.Test;
namespace WpfExtended.Tests
{
public class Launcher : ExtendedApplication<MainWindow>
{
private static Launcher Instance { get; } = new Launcher();
[STAThread]
public static int Main()
{
return Instance.Run();
}
protected override void ApplicationClosing()
{
}
protected override void ApplicationStarting()
{
}
protected override bool HandleException(Exception e)
{
return false;
}
protected override void RegisterServices(IServiceProducer serviceProducer)
{
}
}
}