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