Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionVariableImpactsView.Designer.cs @ 15727

Last change on this file since 15727 was 15727, checked in by fholzing, 6 years ago

#2871: Fixed crossthreading-bug

File size: 11.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.Problems.DataAnalysis.Views {
23  partial class RegressionSolutionVariableImpactsView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.ascendingCheckBox = new System.Windows.Forms.CheckBox();
48      this.sortByLabel = new System.Windows.Forms.Label();
49      this.sortByComboBox = new System.Windows.Forms.ComboBox();
50      this.factorVarReplComboBox = new System.Windows.Forms.ComboBox();
51      this.factorVarReplacementLabel = new System.Windows.Forms.Label();
52      this.replacementComboBox = new System.Windows.Forms.ComboBox();
53      this.numericVarReplacementLabel = new System.Windows.Forms.Label();
54      this.dataPartitionLabel = new System.Windows.Forms.Label();
55      this.dataPartitionComboBox = new System.Windows.Forms.ComboBox();
56      this.variableImactsArrayView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
57      this.backgroundWorker = new System.ComponentModel.BackgroundWorker();
58      this.SuspendLayout();
59      //
60      // ascendingCheckBox
61      //
62      this.ascendingCheckBox.AutoSize = true;
63      this.ascendingCheckBox.Location = new System.Drawing.Point(534, 6);
64      this.ascendingCheckBox.Name = "ascendingCheckBox";
65      this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17);
66      this.ascendingCheckBox.TabIndex = 7;
67      this.ascendingCheckBox.Text = "Ascending";
68      this.ascendingCheckBox.UseVisualStyleBackColor = true;
69      this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged);
70      //
71      // sortByLabel
72      //
73      this.sortByLabel.AutoSize = true;
74      this.sortByLabel.Location = new System.Drawing.Point(324, 6);
75      this.sortByLabel.Name = "sortByLabel";
76      this.sortByLabel.Size = new System.Drawing.Size(77, 13);
77      this.sortByLabel.TabIndex = 4;
78      this.sortByLabel.Text = "Sorting criteria:";
79      //
80      // sortByComboBox
81      //
82      this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
83      this.sortByComboBox.FormattingEnabled = true;
84      this.sortByComboBox.Location = new System.Drawing.Point(407, 3);
85      this.sortByComboBox.Name = "sortByComboBox";
86      this.sortByComboBox.Size = new System.Drawing.Size(121, 21);
87      this.sortByComboBox.TabIndex = 5;
88      this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged);
89      //
90      // factorVarReplComboBox
91      //
92      this.factorVarReplComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
93      this.factorVarReplComboBox.FormattingEnabled = true;
94      this.factorVarReplComboBox.Items.AddRange(new object[] {
95            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
96            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
97            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
98      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
99      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
100      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
101      this.factorVarReplComboBox.TabIndex = 1;
102      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
103      //
104      // factorVarReplacementLabel
105      //
106      this.factorVarReplacementLabel.AutoSize = true;
107      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
108      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
109      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
110      this.factorVarReplacementLabel.TabIndex = 0;
111      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
112      //
113      // replacementComboBox
114      //
115      this.replacementComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
116      this.replacementComboBox.FormattingEnabled = true;
117      this.replacementComboBox.Items.AddRange(new object[] {
118            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
119            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
120            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
121            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
122      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
123      this.replacementComboBox.Name = "replacementComboBox";
124      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
125      this.replacementComboBox.TabIndex = 3;
126      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
127      //
128      // numericVarReplacementLabel
129      //
130      this.numericVarReplacementLabel.AutoSize = true;
131      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
132      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
133      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
134      this.numericVarReplacementLabel.TabIndex = 2;
135      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
136      //
137      // dataPartitionLabel
138      //
139      this.dataPartitionLabel.AutoSize = true;
140      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
141      this.dataPartitionLabel.Name = "dataPartitionLabel";
142      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
143      this.dataPartitionLabel.TabIndex = 0;
144      this.dataPartitionLabel.Text = "Data partition:";
145      //
146      // dataPartitionComboBox
147      //
148      this.dataPartitionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
149      this.dataPartitionComboBox.FormattingEnabled = true;
150      this.dataPartitionComboBox.Items.AddRange(new object[] {
151            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
152            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
153            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.All});
154      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
155      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
156      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
157      this.dataPartitionComboBox.TabIndex = 1;
158      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
159      //
160      // variableImactsArrayView
161      //
162      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
163            | System.Windows.Forms.AnchorStyles.Left)
164            | System.Windows.Forms.AnchorStyles.Right)));
165      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
166      this.variableImactsArrayView.Content = null;
167      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
168      this.variableImactsArrayView.Name = "variableImactsArrayView";
169      this.variableImactsArrayView.ReadOnly = true;
170      this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
171      this.variableImactsArrayView.TabIndex = 2;
172      //
173      // backgroundWorker
174      //
175      this.backgroundWorker.DoWork += new System.ComponentModel.DoWorkEventHandler(this.BackgroundWorker_DoWork);
176      this.backgroundWorker.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.BackgroundWorker_RunWorkerCompleted);
177      //
178      // RegressionSolutionVariableImpactsView
179      //
180      this.AllowDrop = true;
181      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
182      this.Controls.Add(this.ascendingCheckBox);
183      this.Controls.Add(this.sortByLabel);
184      this.Controls.Add(this.sortByComboBox);
185      this.Controls.Add(this.factorVarReplComboBox);
186      this.Controls.Add(this.factorVarReplacementLabel);
187      this.Controls.Add(this.replacementComboBox);
188      this.Controls.Add(this.numericVarReplacementLabel);
189      this.Controls.Add(this.dataPartitionLabel);
190      this.Controls.Add(this.dataPartitionComboBox);
191      this.Controls.Add(this.variableImactsArrayView);
192      this.Name = "RegressionSolutionVariableImpactsView";
193      this.Size = new System.Drawing.Size(712, 365);
194      this.ResumeLayout(false);
195      this.PerformLayout();
196
197    }
198
199    #endregion
200
201    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
202    private System.Windows.Forms.ComboBox dataPartitionComboBox;
203    private System.Windows.Forms.Label dataPartitionLabel;
204    private System.Windows.Forms.Label numericVarReplacementLabel;
205    private System.Windows.Forms.ComboBox replacementComboBox;
206    private System.Windows.Forms.Label factorVarReplacementLabel;
207    private System.Windows.Forms.ComboBox factorVarReplComboBox;
208    private System.Windows.Forms.Label sortByLabel;
209    private System.Windows.Forms.ComboBox sortByComboBox;
210    private System.Windows.Forms.CheckBox ascendingCheckBox;
211    private System.ComponentModel.BackgroundWorker backgroundWorker;
212  }
213}
Note: See TracBrowser for help on using the repository browser.