mirror of
https://github.com/AlexMacocian/WpfExtended.git
synced 2026-07-21 01:19:29 +00:00
36 lines
741 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|