PersistentWindows/Ninjacrab.PersistentWindows.Solution/Ninjacrab.PersistentWindows.WpfShell/MainWindow.xaml.cs
Min Yong Kim 9409d20445 1. Modification to make the application run in the systray
2. Abstracting processor and winapi logic into common dll and entry points into separate dlls
3. Adding icons
4. Switching build platform to AnyCPU. Seems to work on x64, don't have a x86 platform to test on
2015-02-27 00:38:08 -05:00

23 lines
485 B
C#

using System.Windows;
namespace Ninjacrab.PersistentWindows.WpfShell
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public bool IsClosed { get; set; }
public MainWindow()
{
InitializeComponent();
}
protected override void OnClosed(System.EventArgs e)
{
base.OnClosed(e);
IsClosed = true;
}
}
}