Last change
on this file since 5405 was
5314,
checked in by ascheibe, 14 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 | |
---|
1 | using System;
|
---|
2 | using System.Windows.Forms;
|
---|
3 | using HeuristicLab.Clients.Hive.Slave.Views;
|
---|
4 |
|
---|
5 | namespace 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.