1 /*
2  * Created by SharpDevelop.
3  * User: Administrator
4  * Date: 2010-07-17
5  * Time: 1:30 PM
6  *
7  * To change this template use Tools | Options | Coding | Edit Standard Headers.
8  */
9 namespace ObjectBender
10 {
11 	partial class MainForm
12 	{
13 		/// <summary>
14 		/// Designer variable used to keep track of non-visual components.
15 		/// </summary>
16 		private System.ComponentModel.IContainer components = null;
17 
18 		/// <summary>
19 		/// Disposes resources used by the form.
20 		/// </summary>
21 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
Dispose(bool disposing)22 		protected override void Dispose(bool disposing)
23 		{
24 			if (disposing) {
25 				if (components != null) {
26 					components.Dispose();
27 				}
28 			}
29 			base.Dispose(disposing);
30 		}
31 
32 		/// <summary>
33 		/// This method is required for Windows Forms designer support.
34 		/// Do not change the method contents inside the source code editor. The Forms designer might
35 		/// not be able to load this method if it was changed manually.
36 		/// </summary>
InitializeComponent()37 		private void InitializeComponent()
38 		{
39 			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
40 			this.labelInput = new System.Windows.Forms.Label();
41 			this.textboxInput = new System.Windows.Forms.TextBox();
42 			this.buttonInput = new System.Windows.Forms.Button();
43 			this.buttonOutput = new System.Windows.Forms.Button();
44 			this.textboxOutput = new System.Windows.Forms.TextBox();
45 			this.labelOutput = new System.Windows.Forms.Label();
46 			this.textboxNumberOfSegments = new System.Windows.Forms.TextBox();
47 			this.labelNumberOfSegments = new System.Windows.Forms.Label();
48 			this.textboxSegmentLength = new System.Windows.Forms.TextBox();
49 			this.labelSegmentLength = new System.Windows.Forms.Label();
50 			this.textboxBlockLength = new System.Windows.Forms.TextBox();
51 			this.labelBlockLength = new System.Windows.Forms.Label();
52 			this.textboxRadius = new System.Windows.Forms.TextBox();
53 			this.labelRadius = new System.Windows.Forms.Label();
54 			this.labelInformation = new System.Windows.Forms.Label();
55 			this.buttonClose = new System.Windows.Forms.Button();
56 			this.buttonStart = new System.Windows.Forms.Button();
57 			this.textboxRailGauge = new System.Windows.Forms.TextBox();
58 			this.labelRailGauge = new System.Windows.Forms.Label();
59 			this.textboxInitialCant = new System.Windows.Forms.TextBox();
60 			this.labelInitialCant = new System.Windows.Forms.Label();
61 			this.textboxFinalCant = new System.Windows.Forms.TextBox();
62 			this.labelFinalCant = new System.Windows.Forms.Label();
63 			this.panelPane = new System.Windows.Forms.Panel();
64 			this.labelLineHorizontal = new System.Windows.Forms.Label();
65 			this.pictureboxLogo = new System.Windows.Forms.PictureBox();
66 			this.panelPane.SuspendLayout();
67 			((System.ComponentModel.ISupportInitialize)(this.pictureboxLogo)).BeginInit();
68 			this.SuspendLayout();
69 			//
70 			// labelInput
71 			//
72 			this.labelInput.Location = new System.Drawing.Point(128, 8);
73 			this.labelInput.Name = "labelInput";
74 			this.labelInput.Size = new System.Drawing.Size(72, 20);
75 			this.labelInput.TabIndex = 1;
76 			this.labelInput.Text = "Source file:";
77 			this.labelInput.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
78 			//
79 			// textboxInput
80 			//
81 			this.textboxInput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
82 									| System.Windows.Forms.AnchorStyles.Right)));
83 			this.textboxInput.Location = new System.Drawing.Point(200, 8);
84 			this.textboxInput.Name = "textboxInput";
85 			this.textboxInput.ReadOnly = true;
86 			this.textboxInput.Size = new System.Drawing.Size(168, 20);
87 			this.textboxInput.TabIndex = 2;
88 			//
89 			// buttonInput
90 			//
91 			this.buttonInput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
92 			this.buttonInput.Location = new System.Drawing.Point(376, 8);
93 			this.buttonInput.Name = "buttonInput";
94 			this.buttonInput.Size = new System.Drawing.Size(80, 24);
95 			this.buttonInput.TabIndex = 3;
96 			this.buttonInput.Text = "Browse...";
97 			this.buttonInput.UseVisualStyleBackColor = true;
98 			this.buttonInput.Click += new System.EventHandler(this.ButtonInputClick);
99 			//
100 			// buttonOutput
101 			//
102 			this.buttonOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
103 			this.buttonOutput.Location = new System.Drawing.Point(376, 40);
104 			this.buttonOutput.Name = "buttonOutput";
105 			this.buttonOutput.Size = new System.Drawing.Size(80, 24);
106 			this.buttonOutput.TabIndex = 6;
107 			this.buttonOutput.Text = "Browse...";
108 			this.buttonOutput.UseVisualStyleBackColor = true;
109 			this.buttonOutput.Click += new System.EventHandler(this.ButtonOutputClick);
110 			//
111 			// textboxOutput
112 			//
113 			this.textboxOutput.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
114 									| System.Windows.Forms.AnchorStyles.Right)));
115 			this.textboxOutput.Location = new System.Drawing.Point(200, 40);
116 			this.textboxOutput.Name = "textboxOutput";
117 			this.textboxOutput.ReadOnly = true;
118 			this.textboxOutput.Size = new System.Drawing.Size(168, 20);
119 			this.textboxOutput.TabIndex = 5;
120 			//
121 			// labelOutput
122 			//
123 			this.labelOutput.Location = new System.Drawing.Point(128, 40);
124 			this.labelOutput.Name = "labelOutput";
125 			this.labelOutput.Size = new System.Drawing.Size(72, 20);
126 			this.labelOutput.TabIndex = 4;
127 			this.labelOutput.Text = "Target file:";
128 			this.labelOutput.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
129 			//
130 			// textboxNumberOfSegments
131 			//
132 			this.textboxNumberOfSegments.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
133 			this.textboxNumberOfSegments.Location = new System.Drawing.Point(336, 80);
134 			this.textboxNumberOfSegments.Name = "textboxNumberOfSegments";
135 			this.textboxNumberOfSegments.Size = new System.Drawing.Size(120, 20);
136 			this.textboxNumberOfSegments.TabIndex = 8;
137 			this.textboxNumberOfSegments.Enter += new System.EventHandler(this.TextboxNumberOfSegmentsEnter);
138 			//
139 			// labelNumberOfSegments
140 			//
141 			this.labelNumberOfSegments.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
142 									| System.Windows.Forms.AnchorStyles.Right)));
143 			this.labelNumberOfSegments.Location = new System.Drawing.Point(128, 80);
144 			this.labelNumberOfSegments.Name = "labelNumberOfSegments";
145 			this.labelNumberOfSegments.Size = new System.Drawing.Size(208, 20);
146 			this.labelNumberOfSegments.TabIndex = 7;
147 			this.labelNumberOfSegments.Text = "Number of segments:";
148 			this.labelNumberOfSegments.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
149 			//
150 			// textboxSegmentLength
151 			//
152 			this.textboxSegmentLength.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
153 			this.textboxSegmentLength.Location = new System.Drawing.Point(336, 104);
154 			this.textboxSegmentLength.Name = "textboxSegmentLength";
155 			this.textboxSegmentLength.Size = new System.Drawing.Size(120, 20);
156 			this.textboxSegmentLength.TabIndex = 10;
157 			this.textboxSegmentLength.Enter += new System.EventHandler(this.TextboxSegmentLengthEnter);
158 			//
159 			// labelSegmentLength
160 			//
161 			this.labelSegmentLength.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
162 									| System.Windows.Forms.AnchorStyles.Right)));
163 			this.labelSegmentLength.Location = new System.Drawing.Point(128, 104);
164 			this.labelSegmentLength.Name = "labelSegmentLength";
165 			this.labelSegmentLength.Size = new System.Drawing.Size(208, 20);
166 			this.labelSegmentLength.TabIndex = 9;
167 			this.labelSegmentLength.Text = "Segment length (m):";
168 			this.labelSegmentLength.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
169 			//
170 			// textboxBlockLength
171 			//
172 			this.textboxBlockLength.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
173 			this.textboxBlockLength.Location = new System.Drawing.Point(336, 128);
174 			this.textboxBlockLength.Name = "textboxBlockLength";
175 			this.textboxBlockLength.Size = new System.Drawing.Size(120, 20);
176 			this.textboxBlockLength.TabIndex = 12;
177 			this.textboxBlockLength.Enter += new System.EventHandler(this.TextboxBlockLengthEnter);
178 			//
179 			// labelBlockLength
180 			//
181 			this.labelBlockLength.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
182 									| System.Windows.Forms.AnchorStyles.Right)));
183 			this.labelBlockLength.Location = new System.Drawing.Point(128, 128);
184 			this.labelBlockLength.Name = "labelBlockLength";
185 			this.labelBlockLength.Size = new System.Drawing.Size(208, 20);
186 			this.labelBlockLength.TabIndex = 11;
187 			this.labelBlockLength.Text = "Block length (m):";
188 			this.labelBlockLength.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
189 			//
190 			// textboxRadius
191 			//
192 			this.textboxRadius.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
193 			this.textboxRadius.Location = new System.Drawing.Point(336, 152);
194 			this.textboxRadius.Name = "textboxRadius";
195 			this.textboxRadius.Size = new System.Drawing.Size(120, 20);
196 			this.textboxRadius.TabIndex = 14;
197 			this.textboxRadius.Enter += new System.EventHandler(this.TextboxRadiusEnter);
198 			//
199 			// labelRadius
200 			//
201 			this.labelRadius.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
202 									| System.Windows.Forms.AnchorStyles.Right)));
203 			this.labelRadius.Location = new System.Drawing.Point(128, 152);
204 			this.labelRadius.Name = "labelRadius";
205 			this.labelRadius.Size = new System.Drawing.Size(208, 20);
206 			this.labelRadius.TabIndex = 13;
207 			this.labelRadius.Text = "Radius (m):";
208 			this.labelRadius.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
209 			//
210 			// labelInformation
211 			//
212 			this.labelInformation.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
213 									| System.Windows.Forms.AnchorStyles.Left)
214 									| System.Windows.Forms.AnchorStyles.Right)));
215 			this.labelInformation.Location = new System.Drawing.Point(128, 256);
216 			this.labelInformation.Name = "labelInformation";
217 			this.labelInformation.Size = new System.Drawing.Size(328, 40);
218 			this.labelInformation.TabIndex = 21;
219 			//
220 			// buttonClose
221 			//
222 			this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
223 			this.buttonClose.BackColor = System.Drawing.SystemColors.ButtonFace;
224 			this.buttonClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
225 			this.buttonClose.Location = new System.Drawing.Point(8, 304);
226 			this.buttonClose.Name = "buttonClose";
227 			this.buttonClose.Size = new System.Drawing.Size(104, 24);
228 			this.buttonClose.TabIndex = 2;
229 			this.buttonClose.Text = "Close";
230 			this.buttonClose.UseVisualStyleBackColor = false;
231 			this.buttonClose.Click += new System.EventHandler(this.ButtonCloseClick);
232 			//
233 			// buttonStart
234 			//
235 			this.buttonStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
236 			this.buttonStart.Location = new System.Drawing.Point(352, 304);
237 			this.buttonStart.Name = "buttonStart";
238 			this.buttonStart.Size = new System.Drawing.Size(104, 24);
239 			this.buttonStart.TabIndex = 22;
240 			this.buttonStart.Text = "Start";
241 			this.buttonStart.UseVisualStyleBackColor = true;
242 			this.buttonStart.Click += new System.EventHandler(this.ButtonStartClick);
243 			//
244 			// textboxRailGauge
245 			//
246 			this.textboxRailGauge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
247 			this.textboxRailGauge.Location = new System.Drawing.Point(336, 176);
248 			this.textboxRailGauge.Name = "textboxRailGauge";
249 			this.textboxRailGauge.Size = new System.Drawing.Size(120, 20);
250 			this.textboxRailGauge.TabIndex = 16;
251 			this.textboxRailGauge.Enter += new System.EventHandler(this.TextboxRailGaugeEnter);
252 			//
253 			// labelRailGauge
254 			//
255 			this.labelRailGauge.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
256 									| System.Windows.Forms.AnchorStyles.Right)));
257 			this.labelRailGauge.Location = new System.Drawing.Point(128, 176);
258 			this.labelRailGauge.Name = "labelRailGauge";
259 			this.labelRailGauge.Size = new System.Drawing.Size(208, 20);
260 			this.labelRailGauge.TabIndex = 15;
261 			this.labelRailGauge.Text = "Rail gauge (mm):";
262 			this.labelRailGauge.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
263 			//
264 			// textboxInitialCant
265 			//
266 			this.textboxInitialCant.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
267 			this.textboxInitialCant.Location = new System.Drawing.Point(336, 200);
268 			this.textboxInitialCant.Name = "textboxInitialCant";
269 			this.textboxInitialCant.Size = new System.Drawing.Size(120, 20);
270 			this.textboxInitialCant.TabIndex = 18;
271 			this.textboxInitialCant.Enter += new System.EventHandler(this.TextboxInitialCantEnter);
272 			//
273 			// labelInitialCant
274 			//
275 			this.labelInitialCant.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
276 									| System.Windows.Forms.AnchorStyles.Right)));
277 			this.labelInitialCant.Location = new System.Drawing.Point(128, 200);
278 			this.labelInitialCant.Name = "labelInitialCant";
279 			this.labelInitialCant.Size = new System.Drawing.Size(208, 20);
280 			this.labelInitialCant.TabIndex = 17;
281 			this.labelInitialCant.Text = "Initial cant (mm):";
282 			this.labelInitialCant.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
283 			//
284 			// textboxFinalCant
285 			//
286 			this.textboxFinalCant.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
287 			this.textboxFinalCant.Location = new System.Drawing.Point(336, 224);
288 			this.textboxFinalCant.Name = "textboxFinalCant";
289 			this.textboxFinalCant.Size = new System.Drawing.Size(120, 20);
290 			this.textboxFinalCant.TabIndex = 20;
291 			this.textboxFinalCant.Enter += new System.EventHandler(this.TextboxFinalCantEnter);
292 			//
293 			// labelFinalCant
294 			//
295 			this.labelFinalCant.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
296 									| System.Windows.Forms.AnchorStyles.Right)));
297 			this.labelFinalCant.Location = new System.Drawing.Point(128, 224);
298 			this.labelFinalCant.Name = "labelFinalCant";
299 			this.labelFinalCant.Size = new System.Drawing.Size(208, 20);
300 			this.labelFinalCant.TabIndex = 19;
301 			this.labelFinalCant.Text = "Final cant (mm):";
302 			this.labelFinalCant.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
303 			//
304 			// panelPane
305 			//
306 			this.panelPane.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
307 									| System.Windows.Forms.AnchorStyles.Left)));
308 			this.panelPane.BackColor = System.Drawing.Color.Silver;
309 			this.panelPane.Controls.Add(this.labelLineHorizontal);
310 			this.panelPane.Controls.Add(this.pictureboxLogo);
311 			this.panelPane.Controls.Add(this.buttonClose);
312 			this.panelPane.Location = new System.Drawing.Point(0, 0);
313 			this.panelPane.Name = "panelPane";
314 			this.panelPane.Size = new System.Drawing.Size(120, 336);
315 			this.panelPane.TabIndex = 0;
316 			//
317 			// labelLineHorizontal
318 			//
319 			this.labelLineHorizontal.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
320 									| System.Windows.Forms.AnchorStyles.Right)));
321 			this.labelLineHorizontal.BackColor = System.Drawing.Color.White;
322 			this.labelLineHorizontal.Location = new System.Drawing.Point(0, 75);
323 			this.labelLineHorizontal.Name = "labelLineHorizontal";
324 			this.labelLineHorizontal.Size = new System.Drawing.Size(120, 2);
325 			this.labelLineHorizontal.TabIndex = 0;
326 			//
327 			// pictureboxLogo
328 			//
329 			this.pictureboxLogo.BackColor = System.Drawing.Color.Silver;
330 			this.pictureboxLogo.Image = ((System.Drawing.Image)(resources.GetObject("pictureboxLogo.Image")));
331 			this.pictureboxLogo.Location = new System.Drawing.Point(0, 0);
332 			this.pictureboxLogo.Name = "pictureboxLogo";
333 			this.pictureboxLogo.Size = new System.Drawing.Size(120, 75);
334 			this.pictureboxLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
335 			this.pictureboxLogo.TabIndex = 7;
336 			this.pictureboxLogo.TabStop = false;
337 			//
338 			// MainForm
339 			//
340 			this.AcceptButton = this.buttonStart;
341 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
342 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
343 			this.CancelButton = this.buttonClose;
344 			this.ClientSize = new System.Drawing.Size(464, 336);
345 			this.Controls.Add(this.panelPane);
346 			this.Controls.Add(this.textboxFinalCant);
347 			this.Controls.Add(this.labelFinalCant);
348 			this.Controls.Add(this.textboxInitialCant);
349 			this.Controls.Add(this.labelInitialCant);
350 			this.Controls.Add(this.textboxRailGauge);
351 			this.Controls.Add(this.labelRailGauge);
352 			this.Controls.Add(this.buttonStart);
353 			this.Controls.Add(this.labelInformation);
354 			this.Controls.Add(this.textboxRadius);
355 			this.Controls.Add(this.labelRadius);
356 			this.Controls.Add(this.textboxBlockLength);
357 			this.Controls.Add(this.labelBlockLength);
358 			this.Controls.Add(this.textboxSegmentLength);
359 			this.Controls.Add(this.labelSegmentLength);
360 			this.Controls.Add(this.textboxNumberOfSegments);
361 			this.Controls.Add(this.labelNumberOfSegments);
362 			this.Controls.Add(this.buttonOutput);
363 			this.Controls.Add(this.textboxOutput);
364 			this.Controls.Add(this.labelOutput);
365 			this.Controls.Add(this.buttonInput);
366 			this.Controls.Add(this.textboxInput);
367 			this.Controls.Add(this.labelInput);
368 			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
369 			this.MaximizeBox = false;
370 			this.Name = "MainForm";
371 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
372 			this.Text = "ObjectBender";
373 			this.panelPane.ResumeLayout(false);
374 			((System.ComponentModel.ISupportInitialize)(this.pictureboxLogo)).EndInit();
375 			this.ResumeLayout(false);
376 			this.PerformLayout();
377 		}
378 		private System.Windows.Forms.PictureBox pictureboxLogo;
379 		private System.Windows.Forms.Label labelLineHorizontal;
380 		private System.Windows.Forms.Panel panelPane;
381 		private System.Windows.Forms.Label labelFinalCant;
382 		private System.Windows.Forms.TextBox textboxFinalCant;
383 		private System.Windows.Forms.Label labelInitialCant;
384 		private System.Windows.Forms.TextBox textboxInitialCant;
385 		private System.Windows.Forms.Label labelRailGauge;
386 		private System.Windows.Forms.TextBox textboxRailGauge;
387 		private System.Windows.Forms.Button buttonStart;
388 		private System.Windows.Forms.Button buttonClose;
389 		private System.Windows.Forms.Label labelInformation;
390 		private System.Windows.Forms.Label labelRadius;
391 		private System.Windows.Forms.TextBox textboxRadius;
392 		private System.Windows.Forms.Label labelBlockLength;
393 		private System.Windows.Forms.TextBox textboxBlockLength;
394 		private System.Windows.Forms.Label labelSegmentLength;
395 		private System.Windows.Forms.TextBox textboxSegmentLength;
396 		private System.Windows.Forms.Label labelNumberOfSegments;
397 		private System.Windows.Forms.TextBox textboxNumberOfSegments;
398 		private System.Windows.Forms.Label labelOutput;
399 		private System.Windows.Forms.TextBox textboxOutput;
400 		private System.Windows.Forms.Button buttonOutput;
401 		private System.Windows.Forms.Button buttonInput;
402 		private System.Windows.Forms.TextBox textboxInput;
403 		private System.Windows.Forms.Label labelInput;
404 	}
405 }
406