Changeset 366
- Timestamp:
- 07/07/08 15:55:25 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.StructureIdentification
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.Designer.cs
r363 r366 49 49 this.tabControl = new System.Windows.Forms.TabControl(); 50 50 this.dataTabPage = new System.Windows.Forms.TabPage(); 51 this.datasetView = new HeuristicLab.DataAnalysis.DatasetView(); 51 52 this.variableInfosTabPage = new System.Windows.Forms.TabPage(); 52 53 this.operatorBaseVariableInfosView = new HeuristicLab.Core.OperatorBaseVariableInfosView(); 53 54 this.tabPage1 = new System.Windows.Forms.TabPage(); 54 this. operatorBaseVariablesView = new HeuristicLab.Core.OperatorBaseVariablesView();55 this.variablesView = new HeuristicLab.Core.OperatorBaseVariablesView(); 55 56 this.descriptionTabPage = new System.Windows.Forms.TabPage(); 56 57 this.operatorBaseDescriptionView = new HeuristicLab.Core.OperatorBaseDescriptionView(); 57 this.datasetView = new HeuristicLab.DataAnalysis.DatasetView();58 58 this.tabControl.SuspendLayout(); 59 59 this.dataTabPage.SuspendLayout(); … … 105 105 this.dataTabPage.UseVisualStyleBackColor = true; 106 106 // 107 // datasetView 108 // 109 this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 110 | System.Windows.Forms.AnchorStyles.Left) 111 | System.Windows.Forms.AnchorStyles.Right))); 112 this.datasetView.Caption = "Editor"; 113 this.datasetView.Dataset = null; 114 this.datasetView.Filename = null; 115 this.datasetView.Location = new System.Drawing.Point(6, 33); 116 this.datasetView.Name = "datasetView"; 117 this.datasetView.Size = new System.Drawing.Size(487, 386); 118 this.datasetView.TabIndex = 7; 119 // 107 120 // variableInfosTabPage 108 121 // … … 128 141 // tabPage1 129 142 // 130 this.tabPage1.Controls.Add(this. operatorBaseVariablesView);143 this.tabPage1.Controls.Add(this.variablesView); 131 144 this.tabPage1.Location = new System.Drawing.Point(4, 22); 132 145 this.tabPage1.Name = "tabPage1"; … … 137 150 this.tabPage1.UseVisualStyleBackColor = true; 138 151 // 139 // operatorBaseVariablesView140 // 141 this. operatorBaseVariablesView.Caption = "Operator";142 this. operatorBaseVariablesView.Dock = System.Windows.Forms.DockStyle.Fill;143 this. operatorBaseVariablesView.Location = new System.Drawing.Point(3, 3);144 this. operatorBaseVariablesView.Name = "operatorBaseVariablesView";145 this. operatorBaseVariablesView.Operator = null;146 this. operatorBaseVariablesView.Size = new System.Drawing.Size(493, 419);147 this. operatorBaseVariablesView.TabIndex = 0;152 // variablesView 153 // 154 this.variablesView.Caption = "Operator"; 155 this.variablesView.Dock = System.Windows.Forms.DockStyle.Fill; 156 this.variablesView.Location = new System.Drawing.Point(3, 3); 157 this.variablesView.Name = "variablesView"; 158 this.variablesView.Operator = null; 159 this.variablesView.Size = new System.Drawing.Size(493, 419); 160 this.variablesView.TabIndex = 0; 148 161 // 149 162 // descriptionTabPage … … 167 180 this.operatorBaseDescriptionView.Size = new System.Drawing.Size(493, 419); 168 181 this.operatorBaseDescriptionView.TabIndex = 0; 169 //170 // datasetView1171 //172 this.datasetView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)173 | System.Windows.Forms.AnchorStyles.Left)174 | System.Windows.Forms.AnchorStyles.Right)));175 this.datasetView.Caption = "Editor";176 this.datasetView.Dataset = null;177 this.datasetView.Filename = null;178 this.datasetView.Location = new System.Drawing.Point(6, 33);179 this.datasetView.Name = "datasetView1";180 this.datasetView.Size = new System.Drawing.Size(487, 386);181 this.datasetView.TabIndex = 7;182 182 // 183 183 // StructIdProblemInjectorView … … 208 208 private HeuristicLab.Core.OperatorBaseDescriptionView operatorBaseDescriptionView; 209 209 private System.Windows.Forms.TabPage tabPage1; 210 private HeuristicLab.Core.OperatorBaseVariablesView operatorBaseVariablesView;210 private HeuristicLab.Core.OperatorBaseVariablesView variablesView; 211 211 private HeuristicLab.DataAnalysis.DatasetView datasetView; 212 212 } -
trunk/sources/HeuristicLab.StructureIdentification/StructIdProblemInjectorView.cs
r363 r366 39 39 } 40 40 41 public StructIdProblemInjectorView() {41 public StructIdProblemInjectorView() : base() { 42 42 InitializeComponent(); 43 43 } … … 45 45 : this() { 46 46 StructIdProblemInjector = structIdProblemInjector; 47 variablesView.Operator = structIdProblemInjector; 48 variablesView.Update(); 47 49 } 48 50
Note: See TracChangeset
for help on using the changeset viewer.