Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2679_HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/InputParameterView.Designer.cs @ 18063

Last change on this file since 18063 was 14333, checked in by bburlacu, 8 years ago

#2679: Refactor problems and extract common functionality in static util class.

File size: 7.8 KB
Line 
1namespace HeuristicLab.GoalSeeking.Views {
2  partial class GoalSeekingParameterView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.components = new System.ComponentModel.Container();
27      this.groupBox = new System.Windows.Forms.GroupBox();
28      this.activeCheckBox = new System.Windows.Forms.CheckBox();
29      this.valueTextBox = new System.Windows.Forms.TextBox();
30      this.stepTextBox = new System.Windows.Forms.TextBox();
31      this.maxTextBox = new System.Windows.Forms.TextBox();
32      this.valueLabel = new System.Windows.Forms.Label();
33      this.minTextBox = new System.Windows.Forms.TextBox();
34      this.stepLabel = new System.Windows.Forms.Label();
35      this.maximumLabel = new System.Windows.Forms.Label();
36      this.minimumLabel = new System.Windows.Forms.Label();
37      this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
38      this.groupBox.SuspendLayout();
39      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
40      this.SuspendLayout();
41      //
42      // groupBox
43      //
44      this.groupBox.Controls.Add(this.activeCheckBox);
45      this.groupBox.Controls.Add(this.valueTextBox);
46      this.groupBox.Controls.Add(this.stepTextBox);
47      this.groupBox.Controls.Add(this.maxTextBox);
48      this.groupBox.Controls.Add(this.valueLabel);
49      this.groupBox.Controls.Add(this.minTextBox);
50      this.groupBox.Controls.Add(this.stepLabel);
51      this.groupBox.Controls.Add(this.maximumLabel);
52      this.groupBox.Controls.Add(this.minimumLabel);
53      this.groupBox.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.groupBox.Location = new System.Drawing.Point(0, 0);
55      this.groupBox.Name = "groupBox";
56      this.groupBox.Size = new System.Drawing.Size(204, 149);
57      this.groupBox.TabIndex = 1;
58      this.groupBox.TabStop = false;
59      this.groupBox.Text = "Parameter";
60      //
61      // activeCheckBox
62      //
63      this.activeCheckBox.AutoSize = true;
64      this.activeCheckBox.Location = new System.Drawing.Point(6, 19);
65      this.activeCheckBox.Name = "activeCheckBox";
66      this.activeCheckBox.Size = new System.Drawing.Size(56, 17);
67      this.activeCheckBox.TabIndex = 2;
68      this.activeCheckBox.Text = "Active";
69      this.activeCheckBox.UseVisualStyleBackColor = true;
70      this.activeCheckBox.CheckedChanged += new System.EventHandler(this.activeCheckBox_CheckedChanged);
71      //
72      // valueTextBox
73      //
74      this.valueTextBox.Location = new System.Drawing.Point(98, 122);
75      this.valueTextBox.Name = "valueTextBox";
76      this.valueTextBox.Size = new System.Drawing.Size(100, 20);
77      this.valueTextBox.TabIndex = 1;
78      this.valueTextBox.TextChanged += new System.EventHandler(this.valueTextBox_TextChanged);
79      this.valueTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
80      this.valueTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
81      //
82      // stepTextBox
83      //
84      this.stepTextBox.Location = new System.Drawing.Point(98, 96);
85      this.stepTextBox.Name = "stepTextBox";
86      this.stepTextBox.Size = new System.Drawing.Size(100, 20);
87      this.stepTextBox.TabIndex = 1;
88      this.stepTextBox.TextChanged += new System.EventHandler(this.stepTextBox_TextChanged);
89      this.stepTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
90      this.stepTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
91      //
92      // maxTextBox
93      //
94      this.maxTextBox.Location = new System.Drawing.Point(98, 70);
95      this.maxTextBox.Name = "maxTextBox";
96      this.maxTextBox.Size = new System.Drawing.Size(100, 20);
97      this.maxTextBox.TabIndex = 1;
98      this.maxTextBox.TextChanged += new System.EventHandler(this.maxTextBox_TextChanged);
99      this.maxTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
100      this.maxTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
101      //
102      // valueLabel
103      //
104      this.valueLabel.AutoSize = true;
105      this.valueLabel.Location = new System.Drawing.Point(4, 125);
106      this.valueLabel.Name = "valueLabel";
107      this.valueLabel.Size = new System.Drawing.Size(34, 13);
108      this.valueLabel.TabIndex = 0;
109      this.valueLabel.Text = "Value";
110      //
111      // minTextBox
112      //
113      this.minTextBox.Location = new System.Drawing.Point(98, 44);
114      this.minTextBox.Name = "minTextBox";
115      this.minTextBox.Size = new System.Drawing.Size(100, 20);
116      this.minTextBox.TabIndex = 1;
117      this.minTextBox.TextChanged += new System.EventHandler(this.minTextBox_TextChanged);
118      this.minTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
119      this.minTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
120      //
121      // stepLabel
122      //
123      this.stepLabel.AutoSize = true;
124      this.stepLabel.Location = new System.Drawing.Point(4, 99);
125      this.stepLabel.Name = "stepLabel";
126      this.stepLabel.Size = new System.Drawing.Size(29, 13);
127      this.stepLabel.TabIndex = 0;
128      this.stepLabel.Text = "Step";
129      //
130      // maximumLabel
131      //
132      this.maximumLabel.AutoSize = true;
133      this.maximumLabel.Location = new System.Drawing.Point(4, 73);
134      this.maximumLabel.Name = "maximumLabel";
135      this.maximumLabel.Size = new System.Drawing.Size(51, 13);
136      this.maximumLabel.TabIndex = 0;
137      this.maximumLabel.Text = "Maximum";
138      //
139      // minimumLabel
140      //
141      this.minimumLabel.AutoSize = true;
142      this.minimumLabel.Location = new System.Drawing.Point(4, 47);
143      this.minimumLabel.Name = "minimumLabel";
144      this.minimumLabel.Size = new System.Drawing.Size(48, 13);
145      this.minimumLabel.TabIndex = 0;
146      this.minimumLabel.Text = "Minimum";
147      //
148      // errorProvider
149      //
150      this.errorProvider.ContainerControl = this;
151      //
152      // GoalSeekingParameterView
153      //
154      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
155      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
156      this.Controls.Add(this.groupBox);
157      this.Name = "GoalSeekingParameterView";
158      this.Size = new System.Drawing.Size(204, 149);
159      this.groupBox.ResumeLayout(false);
160      this.groupBox.PerformLayout();
161      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
162      this.ResumeLayout(false);
163
164    }
165
166    #endregion
167
168    private System.Windows.Forms.GroupBox groupBox;
169    private System.Windows.Forms.CheckBox activeCheckBox;
170    private System.Windows.Forms.TextBox stepTextBox;
171    private System.Windows.Forms.TextBox maxTextBox;
172    private System.Windows.Forms.TextBox minTextBox;
173    private System.Windows.Forms.Label stepLabel;
174    private System.Windows.Forms.Label maximumLabel;
175    private System.Windows.Forms.Label minimumLabel;
176    private System.Windows.Forms.ErrorProvider errorProvider;
177    private System.Windows.Forms.TextBox valueTextBox;
178    private System.Windows.Forms.Label valueLabel;
179  }
180}
Note: See TracBrowser for help on using the repository browser.