Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.OKB.Cockpit/MainWindow/CockpitMainWindow.cs @ 4311

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

Integrated OKB clients for HL 3.3 (#1166)

File size: 728 bytes
Line 
1using System;
2using HeuristicLab.MainForm.WPF;
3using System.Windows.Controls;
4using System.Windows.Media.Imaging;
5using System.Reflection;
6
7namespace HeuristicLab.OKB.Cockpit {
8
9  public interface IOKBCockpitItem { }
10
11  public class CockpitMainWindow : WPFMainFormBase {
12
13    public CockpitMainWindow() {
14      Title = "OKB Cockpit";
15      /* Icon = new Image() { Source =
16        new BitmapImage(new Uri(
17          "pack://application:,,,/" +
18          Assembly.GetExecutingAssembly().GetName().Name +
19          ";component/Images/07controlpanel.png"))
20      }; */
21    }
22
23    public override Type UserInterfaceItemType {
24      get {
25        return typeof(IOKBCockpitItem);
26      }
27    }
28  }
29
30}
Note: See TracBrowser for help on using the repository browser.