Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 5728 was 5599, checked in by ascheibe, 14 years ago

#1233

  • rename 'Slave' namespace to 'SlaveCore' (and assemblies etc) to avoid problems with 'Slave' class
  • use svcutil (OKB-style)
File size: 572 bytes
Line 
1using System;
2using System.Windows.Forms;
3using HeuristicLab.Clients.Hive.SlaveCore.Views;
4
5namespace HeuristicLab.Clients.Hive.SlaveCore.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.