- Timestamp:
- 04/07/10 11:38:19 (15 years ago)
- Location:
- trunk/sources
- Files:
-
- 25 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Core.Views/3.3/HeuristicLab.Core.Views-3.3.csproj
r3177 r3281 178 178 <DependentUpon>TypeSelector.cs</DependentUpon> 179 179 </Compile> 180 <Compile Include="ViewHost.cs">181 <SubType>UserControl</SubType>182 </Compile>183 <Compile Include="ViewHost.Designer.cs">184 <DependentUpon>ViewHost.cs</DependentUpon>185 </Compile>186 180 <Compile Include="OperatorCollectionView.cs"> 187 181 <SubType>UserControl</SubType> -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemArrayView.Designer.cs
r2932 r3281 60 60 this.imageList = new System.Windows.Forms.ImageList(this.components); 61 61 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 62 this.viewHost = new HeuristicLab. Core.Views.ViewHost();62 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 63 63 this.itemsGroupBox = new System.Windows.Forms.GroupBox(); 64 64 this.toolTip = new System.Windows.Forms.ToolTip(this.components); … … 208 208 protected ToolTip toolTip; 209 209 protected ImageList imageList; 210 protected ViewHost viewHost;210 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 211 211 } 212 212 } -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemCollectionView.Designer.cs
r2932 r3281 61 61 this.addButton = new System.Windows.Forms.Button(); 62 62 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 63 this.viewHost = new HeuristicLab. Core.Views.ViewHost();63 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 64 64 this.itemsGroupBox = new System.Windows.Forms.GroupBox(); 65 65 this.toolTip = new System.Windows.Forms.ToolTip(this.components); … … 235 235 protected ToolTip toolTip; 236 236 protected ImageList imageList; 237 protected ViewHost viewHost;237 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 238 238 protected Button sortAscendingButton; 239 239 protected Button sortDescendingButton; -
trunk/sources/HeuristicLab.Core.Views/3.3/ItemListView.Designer.cs
r2932 r3281 60 60 this.addButton = new System.Windows.Forms.Button(); 61 61 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 62 this.viewHost = new HeuristicLab. Core.Views.ViewHost();62 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 63 63 this.itemsGroupBox = new System.Windows.Forms.GroupBox(); 64 64 this.toolTip = new System.Windows.Forms.ToolTip(this.components); … … 235 235 protected ToolTip toolTip; 236 236 protected ImageList imageList; 237 protected ViewHost viewHost;237 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 238 238 } 239 239 } -
trunk/sources/HeuristicLab.Core.Views/3.3/OperatorGraphView.cs
r2949 r3281 30 30 /// The visual representation of an <see cref="OperatorGraph"/>. 31 31 /// </summary> 32 [View("OperatorGraph View (Tree)" )]32 [View("OperatorGraph View (Tree)",ShowInViewHost=true)] 33 33 [Content(typeof(OperatorGraph), true)] 34 34 public partial class OperatorGraphView : ItemView { -
trunk/sources/HeuristicLab.Core.Views/3.3/VariableValueView.Designer.cs
r2989 r3281 46 46 private void InitializeComponent() { 47 47 this.valuePanel = new System.Windows.Forms.Panel(); 48 this.viewHost = new HeuristicLab. Core.Views.ViewHost();48 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 49 49 this.valuePanel.SuspendLayout(); 50 50 this.SuspendLayout(); … … 87 87 #endregion 88 88 89 protected ViewHost viewHost;89 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 90 90 protected System.Windows.Forms.Panel valuePanel; 91 91 } -
trunk/sources/HeuristicLab.Core.Views/3.3/VariableView.Designer.cs
r2924 r3281 50 50 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 51 51 this.valuePanel = new System.Windows.Forms.Panel(); 52 this.viewHost = new HeuristicLab. Core.Views.ViewHost();52 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 53 53 this.clearValueButton = new System.Windows.Forms.Button(); 54 54 this.setValueButton = new System.Windows.Forms.Button(); … … 178 178 protected System.Windows.Forms.TextBox dataTypeTextBox; 179 179 protected System.Windows.Forms.GroupBox valueGroupBox; 180 protected ViewHost viewHost;180 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 181 181 protected System.Windows.Forms.Button clearValueButton; 182 182 protected System.Windows.Forms.Button setValueButton; -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DockForm.cs
r2790 r3281 37 37 InitializeComponent(); 38 38 this.view = view; 39 if ( View != null) {39 if (view != null) { 40 40 if (view is UserControl) { 41 41 switch (((UserControl)view).Dock) { … … 53 53 break; 54 54 } 55 Control control = (Control)View; 55 Type viewType = view.GetType(); 56 Control control = (Control)view; 56 57 control.Dock = DockStyle.Fill; 57 this.Size = control.Size; 58 viewPanel.Controls.Add(control); 59 View.CaptionChanged += new EventHandler(View_CaptionChanged); 58 this.view.CaptionChanged += new EventHandler(View_CaptionChanged); 60 59 UpdateText(); 60 61 ContentView contentView = view as ContentView; 62 if (ViewAttribute.GetShowInViewHost(viewType) && contentView != null) { 63 ViewHost viewHost = new ViewHost(); 64 viewHost.ViewType = viewType; 65 viewHost.Content = contentView.Content; 66 viewHost.Dock = DockStyle.Fill; 67 viewPanel.Controls.Add(viewHost); 68 } else 69 viewPanel.Controls.Add(control); 61 70 } 62 71 } else { … … 69 78 } 70 79 } 71 72 80 private IView view; 73 81 public IView View { 74 get { return view; }82 get { return this.view; } 75 83 } 76 84 … … 79 87 Invoke(new MethodInvoker(UpdateText)); 80 88 else 81 this.Text = View.Caption;89 this.Text = this.View.Caption; 82 90 } 83 91 -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DocumentForm.Designer.cs
r2790 r3281 32 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 33 33 protected override void Dispose(bool disposing) { 34 if ( View != null)35 View.CaptionChanged -= new System.EventHandler(View_CaptionChanged);34 if (view != null) 35 view.CaptionChanged -= new System.EventHandler(View_CaptionChanged); 36 36 if (disposing && (components != null)) { 37 37 components.Dispose(); -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/DocumentForm.cs
r2790 r3281 30 30 namespace HeuristicLab.MainForm.WindowsForms { 31 31 internal partial class DocumentForm : Form { 32 private IView myView; 33 public IView View { 34 get { return myView; } 35 } 32 private IView view; 36 33 37 34 public DocumentForm() { … … 40 37 public DocumentForm(IView view) 41 38 : this() { 42 myView = view; 43 if (View != null) { 44 Control control = (Control)View; 39 this.view = view; 40 if (view != null) { 41 Type viewType = view.GetType(); 42 Control control = (Control)view; 45 43 control.Dock = DockStyle.Fill; 46 viewPanel.Controls.Add(control); 47 View.CaptionChanged += new EventHandler(View_CaptionChanged); 44 view.CaptionChanged += new EventHandler(View_CaptionChanged); 48 45 UpdateText(); 46 47 ContentView contentView = view as ContentView; 48 if (ViewAttribute.GetShowInViewHost(viewType) && contentView != null) { 49 ViewHost viewHost = new ViewHost(); 50 viewHost.ViewType = viewType; 51 viewHost.Content = contentView.Content; 52 viewHost.Dock = DockStyle.Fill; 53 viewPanel.Controls.Add(viewHost); 54 } else 55 viewPanel.Controls.Add(control); 49 56 } else { 50 57 Label errorLabel = new Label(); … … 61 68 Invoke(new MethodInvoker(UpdateText)); 62 69 else 63 Text = View.Caption;70 Text = view.Caption; 64 71 } 65 72 -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/HeuristicLab.MainForm.WindowsForms-3.2.csproj
r3227 r3281 152 152 <DependentUpon>ViewContextMenuStrip.cs</DependentUpon> 153 153 </Compile> 154 <Compile Include="ViewHost.cs"> 155 <SubType>UserControl</SubType> 156 </Compile> 157 <Compile Include="ViewHost.Designer.cs"> 158 <DependentUpon>ViewHost.cs</DependentUpon> 159 </Compile> 154 160 </ItemGroup> 155 161 <ItemGroup> … … 158 164 </ItemGroup> 159 165 <ItemGroup> 166 <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj"> 167 <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project> 168 <Name>HeuristicLab.Common.Resources-3.2</Name> 169 </ProjectReference> 160 170 <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.WinFormsUI\2.3.1\WinFormsUI-2.3.1\WinFormsUI-2.3.1.csproj"> 161 171 <Project>{1849A92E-DCFC-4E05-BB0A-D7B7A3DAFCFB}</Project> -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/HeuristicLabMainFormWindowsFormsPlugin.cs.frame
r2790 r3281 27 27 namespace HeuristicLab.MainForm.WindowsForms { 28 28 [Plugin("HeuristicLab.MainForm.WindowsForms", "3.2.0.$WCREV$")] 29 [PluginFile("HeuristicLab.MainForm.WindowsForms-3.2.dll", PluginFileType.Assembly)] 29 [PluginFile("HeuristicLab.MainForm.WindowsForms-3.2.dll", PluginFileType.Assembly)] 30 [PluginDependency("HeuristicLab.Common.Resources", "3.2")] 30 31 [PluginDependency("HeuristicLab.MainForm", "3.2")] 31 32 [PluginDependency("HeuristicLab.WinFormsUI", "2.3.1")] -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewHost.Designer.cs
r3280 r3281 20 20 #endregion 21 21 22 namespace HeuristicLab. Core.Views {22 namespace HeuristicLab.MainForm.WindowsForms { 23 23 partial class ViewHost { 24 24 /// <summary> -
trunk/sources/HeuristicLab.MainForm.WindowsForms/3.2/ViewHost.cs
r3280 r3281 24 24 using System.Linq; 25 25 using System.Windows.Forms; 26 using HeuristicLab.Common;27 26 using HeuristicLab.MainForm; 28 using HeuristicLab.MainForm.WindowsForms;29 27 30 namespace HeuristicLab. Core.Views {28 namespace HeuristicLab.MainForm.WindowsForms { 31 29 public sealed partial class ViewHost : UserControl { 32 30 private Type viewType; … … 37 35 if (value != null && !ViewCanShowContent(value, content)) 38 36 throw new ArgumentException(string.Format("View \"{0}\" cannot display content \"{1}\".", 39 value.GetPrettyName(), 40 content.GetType().GetPrettyName())); 37 value, content.GetType())); 41 38 viewType = value; 42 39 UpdateView(); … … 110 107 if (!ViewCanShowContent(viewType, content)) 111 108 throw new InvalidOperationException(string.Format("View \"{0}\" cannot display content \"{1}\".", 112 viewType.GetPrettyName(), 113 Content.GetType().GetPrettyName())); 109 viewType, Content.GetType())); 114 110 115 111 UpdateActiveMenuItem(); -
trunk/sources/HeuristicLab.MainForm/3.2/ViewAttribute.cs
r2837 r3281 31 31 public ViewAttribute(string name) { 32 32 this.name = name; 33 this.showInViewHost = false; 33 34 } 34 35 … … 37 38 get { return this.name; } 38 39 set { this.name = value; } 40 } 41 42 private bool showInViewHost; 43 public bool ShowInViewHost { 44 get { return this.showInViewHost; } 45 set { this.showInViewHost = value; } 39 46 } 40 47 … … 50 57 return viewType.Name; 51 58 } 59 60 public static bool GetShowInViewHost(MemberInfo viewType) { 61 ViewAttribute[] attributes = (ViewAttribute[])viewType.GetCustomAttributes(typeof(ViewAttribute), false); 62 if (attributes.Length == 1) 63 return attributes[0].showInViewHost; 64 return false; 65 } 52 66 } 53 67 } -
trunk/sources/HeuristicLab.Operators.Views.GraphVisualization/3.3/OperatorGraphView.Designer.cs
r2934 r3281 32 32 this.splitContainer = new System.Windows.Forms.SplitContainer(); 33 33 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 34 this.detailsViewHost = new HeuristicLab. Core.Views.ViewHost();34 this.detailsViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 35 35 this.selectButton = new System.Windows.Forms.Button(); 36 36 this.panButton = new System.Windows.Forms.Button(); … … 254 254 private System.Windows.Forms.SplitContainer splitContainer; 255 255 private System.Windows.Forms.GroupBox detailsGroupBox; 256 private HeuristicLab. Core.Views.ViewHost detailsViewHost;256 private HeuristicLab.MainForm.WindowsForms.ViewHost detailsViewHost; 257 257 private System.Windows.Forms.Button selectButton; 258 258 private System.Windows.Forms.Button zoomOutButton; -
trunk/sources/HeuristicLab.Operators.Views/3.3/AlgorithmOperatorView.Designer.cs
r2949 r3281 49 49 this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView(); 50 50 this.operatorGraphTabPage = new System.Windows.Forms.TabPage(); 51 this.operatorGraphViewHost = new HeuristicLab. Core.Views.ViewHost();51 this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 52 52 this.breakpointCheckBox = new System.Windows.Forms.CheckBox(); 53 53 this.breakpointLabel = new System.Windows.Forms.Label(); … … 178 178 protected System.Windows.Forms.TabPage operatorGraphTabPage; 179 179 protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView; 180 protected HeuristicLab. Core.Views.ViewHost operatorGraphViewHost;180 protected HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost; 181 181 protected System.Windows.Forms.CheckBox breakpointCheckBox; 182 182 protected System.Windows.Forms.Label breakpointLabel; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/AlgorithmView.Designer.cs
r3275 r3281 53 53 this.openProblemButton = new System.Windows.Forms.Button(); 54 54 this.newProblemButton = new System.Windows.Forms.Button(); 55 this.problemViewHost = new HeuristicLab. Core.Views.ViewHost();55 this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 56 56 this.resultsTabPage = new System.Windows.Forms.TabPage(); 57 57 this.resultsView = new HeuristicLab.Optimization.Views.ResultCollectionView(); … … 350 350 protected System.Windows.Forms.TabPage problemTabPage; 351 351 protected HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView; 352 protected HeuristicLab. Core.Views.ViewHost problemViewHost;352 protected HeuristicLab.MainForm.WindowsForms.ViewHost problemViewHost; 353 353 protected System.Windows.Forms.Button newProblemButton; 354 354 protected System.Windows.Forms.Button saveProblemButton; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/BatchRunView.Designer.cs
r3265 r3281 51 51 this.openAlgorithmButton = new System.Windows.Forms.Button(); 52 52 this.newAlgorithmButton = new System.Windows.Forms.Button(); 53 this.algorithmViewHost = new HeuristicLab. Core.Views.ViewHost();53 this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 54 54 this.runsTabPage = new System.Windows.Forms.TabPage(); 55 55 this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView(); … … 335 335 private System.Windows.Forms.TabControl tabControl; 336 336 private System.Windows.Forms.TabPage algorithmTabPage; 337 private HeuristicLab. Core.Views.ViewHost algorithmViewHost;337 private HeuristicLab.MainForm.WindowsForms.ViewHost algorithmViewHost; 338 338 private System.Windows.Forms.Button newAlgorithmButton; 339 339 private System.Windows.Forms.Button saveAlgorithmButton; -
trunk/sources/HeuristicLab.Optimization.Views/3.3/EngineAlgorithmView.Designer.cs
r3262 r3281 49 49 this.engineComboBox = new System.Windows.Forms.ComboBox(); 50 50 this.engineTabPage = new System.Windows.Forms.TabPage(); 51 this.engineViewHost = new HeuristicLab. Core.Views.ViewHost();51 this.engineViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 52 52 this.tabControl.SuspendLayout(); 53 53 this.parametersTabPage.SuspendLayout(); … … 238 238 protected System.Windows.Forms.ComboBox engineComboBox; 239 239 protected System.Windows.Forms.TabPage engineTabPage; 240 protected HeuristicLab. Core.Views.ViewHost engineViewHost;240 protected HeuristicLab.MainForm.WindowsForms.ViewHost engineViewHost; 241 241 242 242 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/ResultView.Designer.cs
r3226 r3281 49 49 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 50 50 this.valuePanel = new System.Windows.Forms.Panel(); 51 this.viewHost = new HeuristicLab. Core.Views.ViewHost();51 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 52 52 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); 53 53 this.valueGroupBox.SuspendLayout(); … … 148 148 private System.Windows.Forms.TextBox dataTypeTextBox; 149 149 private System.Windows.Forms.GroupBox valueGroupBox; 150 private HeuristicLab. Core.Views.ViewHost viewHost;150 private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 151 151 private System.Windows.Forms.Panel valuePanel; 152 152 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunCollectionView.Designer.cs
r3280 r3281 58 58 this.removeButton = new System.Windows.Forms.Button(); 59 59 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 60 this.viewHost = new HeuristicLab. Core.Views.ViewHost();60 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 61 61 this.itemsGroupBox = new System.Windows.Forms.GroupBox(); 62 62 this.toolTip = new System.Windows.Forms.ToolTip(this.components); … … 194 194 protected ToolTip toolTip; 195 195 protected ImageList imageList; 196 protected HeuristicLab. Core.Views.ViewHost viewHost;196 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 197 197 } 198 198 } -
trunk/sources/HeuristicLab.Optimization.Views/3.3/RunView.Designer.cs
r3280 r3281 54 54 this.valueColumnHeader = new System.Windows.Forms.ColumnHeader(); 55 55 this.detailsGroupBox = new System.Windows.Forms.GroupBox(); 56 this.viewHost = new HeuristicLab. Core.Views.ViewHost();56 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 57 57 this.imageList = new System.Windows.Forms.ImageList(this.components); 58 58 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); … … 203 203 private System.Windows.Forms.ColumnHeader nameColumnHeader; 204 204 private System.Windows.Forms.ColumnHeader valueColumnHeader; 205 private HeuristicLab. Core.Views.ViewHost viewHost;205 private HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 206 206 private System.Windows.Forms.ImageList imageList; 207 207 -
trunk/sources/HeuristicLab.Optimization.Views/3.3/UserDefinedAlgorithmView.Designer.cs
r3275 r3281 49 49 this.openOperatorGraphButton = new System.Windows.Forms.Button(); 50 50 this.newOperatorGraphButton = new System.Windows.Forms.Button(); 51 this.operatorGraphViewHost = new HeuristicLab. Core.Views.ViewHost();51 this.operatorGraphViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 52 52 this.globalScopeTabPage = new System.Windows.Forms.TabPage(); 53 53 this.globalScopeView = new HeuristicLab.Core.Views.ScopeView(); … … 232 232 private System.Windows.Forms.Button openOperatorGraphButton; 233 233 private System.Windows.Forms.Button newOperatorGraphButton; 234 private HeuristicLab. Core.Views.ViewHost operatorGraphViewHost;234 private HeuristicLab.MainForm.WindowsForms.ViewHost operatorGraphViewHost; 235 235 236 236 } -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ConstrainedValueParameterView.Designer.cs
r2924 r3281 46 46 private void InitializeComponent() { 47 47 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 48 this.viewHost = new HeuristicLab. Core.Views.ViewHost();48 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 49 49 this.valueComboBox = new System.Windows.Forms.ComboBox(); 50 50 ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit(); … … 136 136 137 137 protected System.Windows.Forms.GroupBox valueGroupBox; 138 protected HeuristicLab. Core.Views.ViewHost viewHost;138 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 139 139 protected System.Windows.Forms.ComboBox valueComboBox; 140 140 } -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueLookupParameterView.Designer.cs
r2924 r3281 48 48 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 49 49 this.valuePanel = new System.Windows.Forms.Panel(); 50 this.viewHost = new HeuristicLab. Core.Views.ViewHost();50 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 51 51 this.clearValueButton = new System.Windows.Forms.Button(); 52 52 this.setValueButton = new System.Windows.Forms.Button(); … … 199 199 protected System.Windows.Forms.GroupBox valueGroupBox; 200 200 protected System.Windows.Forms.Panel valuePanel; 201 protected HeuristicLab. Core.Views.ViewHost viewHost;201 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 202 202 protected System.Windows.Forms.Button setValueButton; 203 203 protected System.Windows.Forms.Button clearValueButton; -
trunk/sources/HeuristicLab.Parameters.Views/3.3/ValueParameterView.Designer.cs
r2948 r3281 48 48 this.valueGroupBox = new System.Windows.Forms.GroupBox(); 49 49 this.valuePanel = new System.Windows.Forms.Panel(); 50 this.viewHost = new HeuristicLab. Core.Views.ViewHost();50 this.viewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 51 51 this.clearValueButton = new System.Windows.Forms.Button(); 52 52 this.setValueButton = new System.Windows.Forms.Button(); … … 162 162 protected System.Windows.Forms.GroupBox valueGroupBox; 163 163 protected System.Windows.Forms.Panel valuePanel; 164 protected HeuristicLab. Core.Views.ViewHost viewHost;164 protected HeuristicLab.MainForm.WindowsForms.ViewHost viewHost; 165 165 protected System.Windows.Forms.Button setValueButton; 166 166 protected System.Windows.Forms.Button clearValueButton;
Note: See TracChangeset
for help on using the changeset viewer.