PersistentWindows/Ninjacrab.PersistentWindows.Solution/Ninjacrab.PersistentWindows.WpfShell/App.xaml.cs
2014-10-28 21:42:20 -04:00

18 lines
412 B
C#

using System.Windows;
namespace Ninjacrab.PersistentWindows.WpfShell
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
new MainWindow().Show();
new PersistentWindowProcessor().Start();
}
}
}