1 | namespace HeuristicLab.GoalSeeking.Views {
|
---|
2 | partial class GoalSeekingTargetView {
|
---|
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.stepTextBox = new System.Windows.Forms.TextBox();
|
---|
30 | this.varianceTextBox = new System.Windows.Forms.TextBox();
|
---|
31 | this.weightTextBox = new System.Windows.Forms.TextBox();
|
---|
32 | this.goalTextBox = new System.Windows.Forms.TextBox();
|
---|
33 | this.stepLabel = new System.Windows.Forms.Label();
|
---|
34 | this.varianceLabel = new System.Windows.Forms.Label();
|
---|
35 | this.weightLabel = new System.Windows.Forms.Label();
|
---|
36 | this.goalLabel = 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.stepTextBox);
|
---|
46 | this.groupBox.Controls.Add(this.varianceTextBox);
|
---|
47 | this.groupBox.Controls.Add(this.weightTextBox);
|
---|
48 | this.groupBox.Controls.Add(this.goalTextBox);
|
---|
49 | this.groupBox.Controls.Add(this.stepLabel);
|
---|
50 | this.groupBox.Controls.Add(this.varianceLabel);
|
---|
51 | this.groupBox.Controls.Add(this.weightLabel);
|
---|
52 | this.groupBox.Controls.Add(this.goalLabel);
|
---|
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(205, 148);
|
---|
57 | this.groupBox.TabIndex = 0;
|
---|
58 | this.groupBox.TabStop = false;
|
---|
59 | this.groupBox.Text = "Target";
|
---|
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 | // stepTextBox
|
---|
73 | //
|
---|
74 | this.stepTextBox.Location = new System.Drawing.Point(100, 122);
|
---|
75 | this.stepTextBox.Name = "stepTextBox";
|
---|
76 | this.stepTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
77 | this.stepTextBox.TabIndex = 1;
|
---|
78 | this.stepTextBox.TextChanged += new System.EventHandler(this.stepTextBox_TextChanged);
|
---|
79 | //
|
---|
80 | // varianceTextBox
|
---|
81 | //
|
---|
82 | this.varianceTextBox.Location = new System.Drawing.Point(100, 96);
|
---|
83 | this.varianceTextBox.Name = "varianceTextBox";
|
---|
84 | this.varianceTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
85 | this.varianceTextBox.TabIndex = 1;
|
---|
86 | this.varianceTextBox.TextChanged += new System.EventHandler(this.varianceTextBox_TextChanged);
|
---|
87 | //
|
---|
88 | // weightTextBox
|
---|
89 | //
|
---|
90 | this.weightTextBox.Location = new System.Drawing.Point(100, 70);
|
---|
91 | this.weightTextBox.Name = "weightTextBox";
|
---|
92 | this.weightTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
93 | this.weightTextBox.TabIndex = 1;
|
---|
94 | this.weightTextBox.TextChanged += new System.EventHandler(this.weightTextBox_TextChanged);
|
---|
95 | this.weightTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
|
---|
96 | this.weightTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
|
---|
97 | //
|
---|
98 | // goalTextBox
|
---|
99 | //
|
---|
100 | this.goalTextBox.Location = new System.Drawing.Point(100, 44);
|
---|
101 | this.goalTextBox.Name = "goalTextBox";
|
---|
102 | this.goalTextBox.Size = new System.Drawing.Size(100, 20);
|
---|
103 | this.goalTextBox.TabIndex = 1;
|
---|
104 | this.goalTextBox.TextChanged += new System.EventHandler(this.goalTextBox_TextChanged);
|
---|
105 | this.goalTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
|
---|
106 | this.goalTextBox.Validated += new System.EventHandler(this.TextBoxValidated);
|
---|
107 | //
|
---|
108 | // stepLabel
|
---|
109 | //
|
---|
110 | this.stepLabel.AutoSize = true;
|
---|
111 | this.stepLabel.Location = new System.Drawing.Point(6, 125);
|
---|
112 | this.stepLabel.Name = "stepLabel";
|
---|
113 | this.stepLabel.Size = new System.Drawing.Size(29, 13);
|
---|
114 | this.stepLabel.TabIndex = 0;
|
---|
115 | this.stepLabel.Text = "Step";
|
---|
116 | //
|
---|
117 | // varianceLabel
|
---|
118 | //
|
---|
119 | this.varianceLabel.AutoSize = true;
|
---|
120 | this.varianceLabel.Location = new System.Drawing.Point(6, 99);
|
---|
121 | this.varianceLabel.Name = "varianceLabel";
|
---|
122 | this.varianceLabel.Size = new System.Drawing.Size(49, 13);
|
---|
123 | this.varianceLabel.TabIndex = 0;
|
---|
124 | this.varianceLabel.Text = "Variance";
|
---|
125 | //
|
---|
126 | // weightLabel
|
---|
127 | //
|
---|
128 | this.weightLabel.AutoSize = true;
|
---|
129 | this.weightLabel.Location = new System.Drawing.Point(6, 73);
|
---|
130 | this.weightLabel.Name = "weightLabel";
|
---|
131 | this.weightLabel.Size = new System.Drawing.Size(41, 13);
|
---|
132 | this.weightLabel.TabIndex = 0;
|
---|
133 | this.weightLabel.Text = "Weight";
|
---|
134 | //
|
---|
135 | // goalLabel
|
---|
136 | //
|
---|
137 | this.goalLabel.AutoSize = true;
|
---|
138 | this.goalLabel.Location = new System.Drawing.Point(6, 47);
|
---|
139 | this.goalLabel.Name = "goalLabel";
|
---|
140 | this.goalLabel.Size = new System.Drawing.Size(29, 13);
|
---|
141 | this.goalLabel.TabIndex = 0;
|
---|
142 | this.goalLabel.Text = "Goal";
|
---|
143 | //
|
---|
144 | // errorProvider
|
---|
145 | //
|
---|
146 | this.errorProvider.ContainerControl = this;
|
---|
147 | //
|
---|
148 | // GoalSeekingTargetView
|
---|
149 | //
|
---|
150 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
---|
151 | this.Controls.Add(this.groupBox);
|
---|
152 | this.Name = "GoalSeekingTargetView";
|
---|
153 | this.Size = new System.Drawing.Size(205, 148);
|
---|
154 | this.groupBox.ResumeLayout(false);
|
---|
155 | this.groupBox.PerformLayout();
|
---|
156 | ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
|
---|
157 | this.ResumeLayout(false);
|
---|
158 |
|
---|
159 | }
|
---|
160 |
|
---|
161 | #endregion
|
---|
162 |
|
---|
163 | private System.Windows.Forms.GroupBox groupBox;
|
---|
164 | private System.Windows.Forms.Label goalLabel;
|
---|
165 | private System.Windows.Forms.Label stepLabel;
|
---|
166 | private System.Windows.Forms.Label varianceLabel;
|
---|
167 | private System.Windows.Forms.Label weightLabel;
|
---|
168 | private System.Windows.Forms.TextBox stepTextBox;
|
---|
169 | private System.Windows.Forms.TextBox varianceTextBox;
|
---|
170 | private System.Windows.Forms.TextBox weightTextBox;
|
---|
171 | private System.Windows.Forms.TextBox goalTextBox;
|
---|
172 | private System.Windows.Forms.CheckBox activeCheckBox;
|
---|
173 | private System.Windows.Forms.ErrorProvider errorProvider;
|
---|
174 | }
|
---|
175 | }
|
---|