PersistentWindows/Ninjacrab.PersistentWindows.Solution/Ninjacrab.PersistentWindows.SystrayShell/Program.cs

24 lines
623 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()
{
PersistentWindowProcessor pwp = new PersistentWindowProcessor();
pwp.Start();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
new SystrayForm();
Application.Run();
}
}
}