Line | |
---|
1 | using System;
|
---|
2 | using HeuristicLab.MainForm.WPF;
|
---|
3 | using System.Windows.Controls;
|
---|
4 | using System.Windows.Media.Imaging;
|
---|
5 | using System.Reflection;
|
---|
6 |
|
---|
7 | namespace 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.