Free cookie consent management tool by TermsFeed Policy Generator

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

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

#2871: Changed back to Task, abort Thread if any other View is shown

File size: 10.8 KB
RevLine 
[14348]1#region License Information
2/* HeuristicLab
[15583]3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[14348]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
[15665]21
[14348]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() {
[15637]47      this.ascendingCheckBox = new System.Windows.Forms.CheckBox();
[15626]48      this.sortByLabel = new System.Windows.Forms.Label();
49      this.sortByComboBox = new System.Windows.Forms.ComboBox();
[15637]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();
[14348]57      this.SuspendLayout();
58      //
[15637]59      // ascendingCheckBox
[14348]60      //
[15637]61      this.ascendingCheckBox.AutoSize = true;
62      this.ascendingCheckBox.Location = new System.Drawing.Point(534, 6);
63      this.ascendingCheckBox.Name = "ascendingCheckBox";
64      this.ascendingCheckBox.Size = new System.Drawing.Size(76, 17);
65      this.ascendingCheckBox.TabIndex = 7;
66      this.ascendingCheckBox.Text = "Ascending";
67      this.ascendingCheckBox.UseVisualStyleBackColor = true;
68      this.ascendingCheckBox.CheckedChanged += new System.EventHandler(this.ascendingCheckBox_CheckedChanged);
[14348]69      //
[15637]70      // sortByLabel
[14348]71      //
[15637]72      this.sortByLabel.AutoSize = true;
73      this.sortByLabel.Location = new System.Drawing.Point(324, 6);
74      this.sortByLabel.Name = "sortByLabel";
75      this.sortByLabel.Size = new System.Drawing.Size(77, 13);
76      this.sortByLabel.TabIndex = 4;
77      this.sortByLabel.Text = "Sorting criteria:";
[14348]78      //
[15637]79      // sortByComboBox
[14348]80      //
[15637]81      this.sortByComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
82      this.sortByComboBox.FormattingEnabled = true;
83      this.sortByComboBox.Location = new System.Drawing.Point(407, 3);
84      this.sortByComboBox.Name = "sortByComboBox";
85      this.sortByComboBox.Size = new System.Drawing.Size(121, 21);
86      this.sortByComboBox.TabIndex = 5;
87      this.sortByComboBox.SelectedIndexChanged += new System.EventHandler(this.sortByComboBox_SelectedIndexChanged);
[14348]88      //
[15637]89      // factorVarReplComboBox
[14348]90      //
[15665]91      this.factorVarReplComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[15637]92      this.factorVarReplComboBox.FormattingEnabled = true;
93      this.factorVarReplComboBox.Items.AddRange(new object[] {
94            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Best,
95            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Mode,
96            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.FactorReplacementMethodEnum.Shuffle});
97      this.factorVarReplComboBox.Location = new System.Drawing.Point(197, 57);
98      this.factorVarReplComboBox.Name = "factorVarReplComboBox";
99      this.factorVarReplComboBox.Size = new System.Drawing.Size(121, 21);
100      this.factorVarReplComboBox.TabIndex = 1;
101      this.factorVarReplComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
[14348]102      //
[15637]103      // factorVarReplacementLabel
104      //
105      this.factorVarReplacementLabel.AutoSize = true;
106      this.factorVarReplacementLabel.Location = new System.Drawing.Point(3, 60);
107      this.factorVarReplacementLabel.Name = "factorVarReplacementLabel";
108      this.factorVarReplacementLabel.Size = new System.Drawing.Size(188, 13);
109      this.factorVarReplacementLabel.TabIndex = 0;
110      this.factorVarReplacementLabel.Text = "Replacement for categorical variables:";
111      //
[14348]112      // replacementComboBox
113      //
[15665]114      this.replacementComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[14348]115      this.replacementComboBox.FormattingEnabled = true;
116      this.replacementComboBox.Items.AddRange(new object[] {
117            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Median,
118            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Average,
119            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Noise,
120            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.ReplacementMethodEnum.Shuffle});
[14826]121      this.replacementComboBox.Location = new System.Drawing.Point(197, 30);
[14348]122      this.replacementComboBox.Name = "replacementComboBox";
123      this.replacementComboBox.Size = new System.Drawing.Size(121, 21);
124      this.replacementComboBox.TabIndex = 3;
125      this.replacementComboBox.SelectedIndexChanged += new System.EventHandler(this.replacementComboBox_SelectedIndexChanged);
126      //
[15637]127      // numericVarReplacementLabel
[14826]128      //
[15637]129      this.numericVarReplacementLabel.AutoSize = true;
130      this.numericVarReplacementLabel.Location = new System.Drawing.Point(3, 33);
131      this.numericVarReplacementLabel.Name = "numericVarReplacementLabel";
132      this.numericVarReplacementLabel.Size = new System.Drawing.Size(173, 13);
133      this.numericVarReplacementLabel.TabIndex = 2;
134      this.numericVarReplacementLabel.Text = "Replacement for numeric variables:";
[14826]135      //
[15637]136      // dataPartitionLabel
[14826]137      //
[15637]138      this.dataPartitionLabel.AutoSize = true;
139      this.dataPartitionLabel.Location = new System.Drawing.Point(3, 6);
140      this.dataPartitionLabel.Name = "dataPartitionLabel";
141      this.dataPartitionLabel.Size = new System.Drawing.Size(73, 13);
142      this.dataPartitionLabel.TabIndex = 0;
143      this.dataPartitionLabel.Text = "Data partition:";
[14826]144      //
[15637]145      // dataPartitionComboBox
[15626]146      //
[15665]147      this.dataPartitionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
[15637]148      this.dataPartitionComboBox.FormattingEnabled = true;
149      this.dataPartitionComboBox.Items.AddRange(new object[] {
150            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Training,
151            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.Test,
152            HeuristicLab.Problems.DataAnalysis.RegressionSolutionVariableImpactsCalculator.DataPartitionEnum.All});
153      this.dataPartitionComboBox.Location = new System.Drawing.Point(197, 3);
154      this.dataPartitionComboBox.Name = "dataPartitionComboBox";
155      this.dataPartitionComboBox.Size = new System.Drawing.Size(121, 21);
156      this.dataPartitionComboBox.TabIndex = 1;
157      this.dataPartitionComboBox.SelectedIndexChanged += new System.EventHandler(this.dataPartitionComboBox_SelectedIndexChanged);
[15626]158      //
[15637]159      // variableImactsArrayView
[15626]160      //
[15637]161      this.variableImactsArrayView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
162            | System.Windows.Forms.AnchorStyles.Left)
163            | System.Windows.Forms.AnchorStyles.Right)));
164      this.variableImactsArrayView.Caption = "StringConvertibleArray View";
165      this.variableImactsArrayView.Content = null;
166      this.variableImactsArrayView.Location = new System.Drawing.Point(3, 84);
167      this.variableImactsArrayView.Name = "variableImactsArrayView";
168      this.variableImactsArrayView.ReadOnly = true;
169      this.variableImactsArrayView.Size = new System.Drawing.Size(706, 278);
170      this.variableImactsArrayView.TabIndex = 2;
[15626]171      //
[14348]172      // RegressionSolutionVariableImpactsView
173      //
174      this.AllowDrop = true;
175      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
[15626]176      this.Controls.Add(this.ascendingCheckBox);
177      this.Controls.Add(this.sortByLabel);
178      this.Controls.Add(this.sortByComboBox);
[14826]179      this.Controls.Add(this.factorVarReplComboBox);
180      this.Controls.Add(this.factorVarReplacementLabel);
[14348]181      this.Controls.Add(this.replacementComboBox);
[14826]182      this.Controls.Add(this.numericVarReplacementLabel);
[14348]183      this.Controls.Add(this.dataPartitionLabel);
184      this.Controls.Add(this.dataPartitionComboBox);
185      this.Controls.Add(this.variableImactsArrayView);
186      this.Name = "RegressionSolutionVariableImpactsView";
[15626]187      this.Size = new System.Drawing.Size(712, 365);
[15752]188      this.VisibleChanged += new System.EventHandler(this.RegressionSolutionVariableImpactsView_VisibleChanged);
[14348]189      this.ResumeLayout(false);
190      this.PerformLayout();
191
192    }
193
194    #endregion
195
196    private Data.Views.StringConvertibleArrayView variableImactsArrayView;
197    private System.Windows.Forms.ComboBox dataPartitionComboBox;
198    private System.Windows.Forms.Label dataPartitionLabel;
[14826]199    private System.Windows.Forms.Label numericVarReplacementLabel;
[14348]200    private System.Windows.Forms.ComboBox replacementComboBox;
[14826]201    private System.Windows.Forms.Label factorVarReplacementLabel;
202    private System.Windows.Forms.ComboBox factorVarReplComboBox;
[15626]203    private System.Windows.Forms.Label sortByLabel;
204    private System.Windows.Forms.ComboBox sortByComboBox;
205    private System.Windows.Forms.CheckBox ascendingCheckBox;
[14348]206  }
207}
Note: See TracBrowser for help on using the repository browser.