Changeset 16042
- Timestamp:
- 08/03/18 11:12:31 (6 years ago)
- Location:
- branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.Designer.cs
r16036 r16042 55 55 this.dataPartitionLabel = new System.Windows.Forms.Label(); 56 56 this.dataPartitionComboBox = new System.Windows.Forms.ComboBox(); 57 this.variableIm actsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();57 this.variableImpactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView(); 58 58 this.SuspendLayout(); 59 59 // … … 164 164 // variableImactsArrayView 165 165 // 166 this.variableIm actsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)166 this.variableImpactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 167 167 | System.Windows.Forms.AnchorStyles.Left) 168 168 | System.Windows.Forms.AnchorStyles.Right))); 169 this.variableIm actsArrayView.Caption = "StringConvertibleArray View";170 this.variableIm actsArrayView.Content = null;171 this.variableIm actsArrayView.Location = new System.Drawing.Point(3, 84);172 this.variableIm actsArrayView.Name = "variableImactsArrayView";173 this.variableIm actsArrayView.ReadOnly = true;174 this.variableIm actsArrayView.Size = new System.Drawing.Size(706, 278);175 this.variableIm actsArrayView.TabIndex = 2;169 this.variableImpactsArrayView.Caption = "StringConvertibleArray View"; 170 this.variableImpactsArrayView.Content = null; 171 this.variableImpactsArrayView.Location = new System.Drawing.Point(3, 84); 172 this.variableImpactsArrayView.Name = "variableImactsArrayView"; 173 this.variableImpactsArrayView.ReadOnly = true; 174 this.variableImpactsArrayView.Size = new System.Drawing.Size(706, 278); 175 this.variableImpactsArrayView.TabIndex = 2; 176 176 // 177 177 // ClassificationSolutionVariableImpactsView … … 188 188 this.Controls.Add(this.dataPartitionLabel); 189 189 this.Controls.Add(this.dataPartitionComboBox); 190 this.Controls.Add(this.variableIm actsArrayView);190 this.Controls.Add(this.variableImpactsArrayView); 191 191 this.Name = "ClassificationSolutionVariableImpactsView"; 192 192 this.Size = new System.Drawing.Size(712, 365); … … 199 199 #endregion 200 200 201 private Data.Views.StringConvertibleArrayView variableIm actsArrayView;201 private Data.Views.StringConvertibleArrayView variableImpactsArrayView; 202 202 private System.Windows.Forms.ComboBox dataPartitionComboBox; 203 203 private System.Windows.Forms.Label dataPartitionLabel; -
branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionVariableImpactsView.cs
r16041 r16042 79 79 base.OnContentChanged(); 80 80 if (Content == null) { 81 variableIm actsArrayView.Content = null;81 variableImpactsArrayView.Content = null; 82 82 } else { 83 83 UpdateVariableImpact(); … … 121 121 var dataPartition = (ClassificationSolutionVariableImpactsCalculator.DataPartitionEnum)dataPartitionComboBox.SelectedItem; 122 122 123 variableIm actsArrayView.Caption = Content.Name + " Variable Impacts";123 variableImpactsArrayView.Caption = Content.Name + " Variable Impacts"; 124 124 progress = mainForm.AddOperationProgressToView(this, "Calculating variable impacts for " + Content.Name); 125 125 progress.ProgressValue = 0; … … 189 189 190 190 /// <summary> 191 /// Updates the <see cref="variableIm actsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>191 /// Updates the <see cref="variableImpactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/> 192 192 /// The default is "Descending" by "VariableImpact" (as in previous versions) 193 193 /// </summary> … … 226 226 227 227 //Could be, if the View was closed 228 if (!variableIm actsArrayView.IsDisposed) {229 variableIm actsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();228 if (!variableImpactsArrayView.IsDisposed) { 229 variableImpactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly(); 230 230 } 231 231 } -
branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs
r15999 r16042 55 55 this.dataPartitionLabel = new System.Windows.Forms.Label(); 56 56 this.dataPartitionComboBox = new System.Windows.Forms.ComboBox(); 57 this.variableIm actsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();57 this.variableImpactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView(); 58 58 this.SuspendLayout(); 59 59 // … … 164 164 // variableImactsArrayView 165 165 // 166 this.variableIm actsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)166 this.variableImpactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 167 167 | System.Windows.Forms.AnchorStyles.Left) 168 168 | System.Windows.Forms.AnchorStyles.Right))); 169 this.variableIm actsArrayView.Caption = "StringConvertibleArray View";170 this.variableIm actsArrayView.Content = null;171 this.variableIm actsArrayView.Location = new System.Drawing.Point(3, 84);172 this.variableIm actsArrayView.Name = "variableImactsArrayView";173 this.variableIm actsArrayView.ReadOnly = true;174 this.variableIm actsArrayView.Size = new System.Drawing.Size(706, 278);175 this.variableIm actsArrayView.TabIndex = 2;169 this.variableImpactsArrayView.Caption = "StringConvertibleArray View"; 170 this.variableImpactsArrayView.Content = null; 171 this.variableImpactsArrayView.Location = new System.Drawing.Point(3, 84); 172 this.variableImpactsArrayView.Name = "variableImactsArrayView"; 173 this.variableImpactsArrayView.ReadOnly = true; 174 this.variableImpactsArrayView.Size = new System.Drawing.Size(706, 278); 175 this.variableImpactsArrayView.TabIndex = 2; 176 176 // 177 177 // RegressionSolutionVariableImpactsView … … 188 188 this.Controls.Add(this.dataPartitionLabel); 189 189 this.Controls.Add(this.dataPartitionComboBox); 190 this.Controls.Add(this.variableIm actsArrayView);190 this.Controls.Add(this.variableImpactsArrayView); 191 191 this.Name = "RegressionSolutionVariableImpactsView"; 192 192 this.Size = new System.Drawing.Size(712, 365); … … 199 199 #endregion 200 200 201 private Data.Views.StringConvertibleArrayView variableIm actsArrayView;201 private Data.Views.StringConvertibleArrayView variableImpactsArrayView; 202 202 private System.Windows.Forms.ComboBox dataPartitionComboBox; 203 203 private System.Windows.Forms.Label dataPartitionLabel; -
branches/2904_CalculateImpacts/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.cs
r16041 r16042 79 79 base.OnContentChanged(); 80 80 if (Content == null) { 81 variableIm actsArrayView.Content = null;81 variableImpactsArrayView.Content = null; 82 82 } else { 83 83 UpdateVariableImpact(); … … 121 121 var dataPartition = (RegressionSolutionVariableImpactsCalculator.DataPartitionEnum)dataPartitionComboBox.SelectedItem; 122 122 123 variableIm actsArrayView.Caption = Content.Name + " Variable Impacts";123 variableImpactsArrayView.Caption = Content.Name + " Variable Impacts"; 124 124 progress = mainForm.AddOperationProgressToView(this, "Calculating variable impacts for " + Content.Name); 125 125 progress.ProgressValue = 0; … … 188 188 189 189 /// <summary> 190 /// Updates the <see cref="variableIm actsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/>190 /// Updates the <see cref="variableImpactsArrayView"/> according to the selected ordering <see cref="ascendingCheckBox"/> of the selected Column <see cref="sortByComboBox"/> 191 191 /// The default is "Descending" by "VariableImpact" (as in previous versions) 192 192 /// </summary> … … 225 225 226 226 //Could be, if the View was closed 227 if (!variableIm actsArrayView.IsDisposed) {228 variableIm actsArrayView.Content = (DoubleArray)impactArray.AsReadOnly();227 if (!variableImpactsArrayView.IsDisposed) { 228 variableImpactsArrayView.Content = (DoubleArray)impactArray.AsReadOnly(); 229 229 } 230 230 }
Note: See TracChangeset
for help on using the changeset viewer.