Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Algorithms.DataAnalysis.Views/3.4/OneFactorClassificationModelView.Designer.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 5.3 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.Algorithms.DataAnalysis.Views {
23  partial class OneFactorClassificationModelView {
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.dataGridView = new System.Windows.Forms.DataGridView();
48      this.variableValueColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
49      this.classcolumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
50      this.variableLabel = new System.Windows.Forms.Label();
51      this.DefaultClassValueLabel = new System.Windows.Forms.Label();
52      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit();
53      this.SuspendLayout();
54      //
55      // dataGridView
56      //
57      this.dataGridView.AllowUserToAddRows = false;
58      this.dataGridView.AllowUserToDeleteRows = false;
59      this.dataGridView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
60            | System.Windows.Forms.AnchorStyles.Left)
61            | System.Windows.Forms.AnchorStyles.Right)));
62      this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
63      this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
64            this.variableValueColumn,
65            this.classcolumn});
66      this.dataGridView.Location = new System.Drawing.Point(3, 32);
67      this.dataGridView.Name = "dataGridView";
68      this.dataGridView.ReadOnly = true;
69      this.dataGridView.Size = new System.Drawing.Size(389, 230);
70      this.dataGridView.TabIndex = 0;
71      //
72      // intervalstart
73      //
74      this.variableValueColumn.HeaderText = "Factor Value";
75      this.variableValueColumn.Name = "Factor value";
76      this.variableValueColumn.ReadOnly = true;
77      //
78      // classcolumn
79      //
80      this.classcolumn.HeaderText = "Class";
81      this.classcolumn.Name = "classcolumn";
82      this.classcolumn.ReadOnly = true;
83      //
84      // variableLabel
85      //
86      this.variableLabel.AutoSize = true;
87      this.variableLabel.Location = new System.Drawing.Point(3, 10);
88      this.variableLabel.Name = "variableLabel";
89      this.variableLabel.Size = new System.Drawing.Size(48, 13);
90      this.variableLabel.TabIndex = 1;
91      this.variableLabel.Text = "Variable:";
92      //
93      // DefaultClassValueLabel
94      //
95      this.DefaultClassValueLabel.Anchor = System.Windows.Forms.AnchorStyles.Top;
96      this.DefaultClassValueLabel.AutoSize = true;
97      this.DefaultClassValueLabel.Location = new System.Drawing.Point(165, 10);
98      this.DefaultClassValueLabel.Name = "DefaultClassValueLabel";
99      this.DefaultClassValueLabel.Size = new System.Drawing.Size(118, 13);
100      this.DefaultClassValueLabel.TabIndex = 2;
101      this.DefaultClassValueLabel.Text = "Default class label:";
102      //
103      // OneFactorClassificationModelView
104      //
105      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
106      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
107      this.Controls.Add(this.DefaultClassValueLabel);
108      this.Controls.Add(this.variableLabel);
109      this.Controls.Add(this.dataGridView);
110      this.Name = "OneFactorClassificationModelView";
111      this.Size = new System.Drawing.Size(395, 265);
112      ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit();
113      this.ResumeLayout(false);
114      this.PerformLayout();
115
116    }
117
118    #endregion
119
120    private System.Windows.Forms.DataGridView dataGridView;
121    private System.Windows.Forms.Label variableLabel;
122    private System.Windows.Forms.DataGridViewTextBoxColumn variableValueColumn;
123    private System.Windows.Forms.DataGridViewTextBoxColumn classcolumn;
124    private System.Windows.Forms.Label DefaultClassValueLabel;
125  }
126}
Note: See TracBrowser for help on using the repository browser.