using System; using System.Windows.Forms; using HeuristicLab.Clients.Hive.Slave.Views; namespace HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); MainWindow mw = new MainWindow(); mw.MinimizeToTray(); mw.Content = new SlaveItem(); Application.Run(); } } }