Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon/Program.cs @ 5314

Last change on this file since 5314 was 5314, checked in by ascheibe, 13 years ago

#1233

  • added ItemView and Item for the Slave
  • added a Tray Icon App for data visualization and control of the slave windows service
  • added control methods to SlaveCommunication for controlling the slave core
  • fixed typo in namespace
File size: 564 bytes
Line 
1using System;
2using System.Windows.Forms;
3using HeuristicLab.Clients.Hive.Slave.Views;
4
5namespace HeuristicLab.Clients.Hive.Slave.SlaveTrayIcon {
6  static class Program {
7    /// <summary>
8    /// The main entry point for the application.
9    /// </summary>
10    [STAThread]
11    static void Main() {
12      Application.EnableVisualStyles();
13      Application.SetCompatibleTextRenderingDefault(false);
14      MainWindow mw = new MainWindow();
15      mw.MinimizeToTray();
16      mw.Content = new SlaveItem();
17
18      Application.Run();
19    }
20  }
21}
Note: See TracBrowser for help on using the repository browser.