PersistentWindows/Ninjacrab.PersistentWindows.Solution/Ninjacrab.PersistentWindows.SystrayShell/Program.cs
Min Yong Kim a71ea99b8e 1. Adding missing files
2. Adding icon resources
3. Swapping WPF shell to being a class library
4. Formalling closing the NotifyIcon when the app is shutdown
2015-02-27 00:48:10 -05:00

23 lines
574 B
C#

using System;
using System.Windows.Forms;
using Ninjacrab.PersistentWindows.Common;
namespace Ninjacrab.PersistentWindows.SystrayShell
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
new PersistentWindowProcessor().Start();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
new SystrayForm();
Application.Run();
}
}
}