using System; using HeuristicLab.MainForm.WPF; using System.Windows.Controls; using System.Windows.Media.Imaging; using System.Reflection; namespace HeuristicLab.OKB.Cockpit { public interface IOKBCockpitItem { } public class CockpitMainWindow : WPFMainFormBase { public CockpitMainWindow() { Title = "OKB Cockpit"; /* Icon = new Image() { Source = new BitmapImage(new Uri( "pack://application:,,,/" + Assembly.GetExecutingAssembly().GetName().Name + ";component/Images/07controlpanel.png")) }; */ } public override Type UserInterfaceItemType { get { return typeof(IOKBCockpitItem); } } } }