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
|
Rev | Line | |
---|
[5314] | 1 | using System;
|
---|
| 2 | using System.Windows.Forms;
|
---|
[5599] | 3 | using HeuristicLab.Clients.Hive.SlaveCore.Views;
|
---|
[5314] | 4 |
|
---|
[5599] | 5 | namespace HeuristicLab.Clients.Hive.SlaveCore.SlaveTrayIcon {
|
---|
[5314] | 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.