Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.Cockpit/MainWindow/CockpitApplication.cs @ 6947

Last change on this file since 6947 was 4311, checked in by swagner, 14 years ago

Integrated OKB clients for HL 3.3 (#1166)

File size: 495 bytes
Line 
1using HeuristicLab.PluginInfrastructure;
2using System.Windows;
3using System;
4using HeuristicLab.MainForm.WPF;
5
6namespace HeuristicLab.OKB.Cockpit {
7
8  [Application("OKB Cockpit")]
9  public class CockpitApplication : ApplicationBase {
10
11    [STAThread]
12    public static void Main() {
13      new CockpitApplication().Run();
14    }
15
16    public override void Run() {
17      Application a = new Application();
18      Window w = new CockpitMainWindow();
19      a.Run(w);
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.