Rev | Line | |
---|
[4311] | 1 | using HeuristicLab.PluginInfrastructure;
|
---|
| 2 | using System.Windows;
|
---|
| 3 | using System;
|
---|
| 4 | using HeuristicLab.MainForm.WPF;
|
---|
| 5 |
|
---|
| 6 | namespace 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.