ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater/Docking/FloatingDataTypeConverter.Designer.cs
Revision: 225
Committed: Sat Jun 2 14:29:00 2012 UTC (11 years ago) by william
File size: 16461 byte(s)
Log Message:
+ commit wip for data type conversion: need to fix format exceptions

File Contents

# Content
1 namespace RomCheater.Docking
2 {
3 partial class FloatingDataTypeConverter
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.grpInputType = new System.Windows.Forms.GroupBox();
32 this.grpInputType_flow = new System.Windows.Forms.FlowLayoutPanel();
33 this.chkBinary = new System.Windows.Forms.RadioButton();
34 this.chkdecimal = new System.Windows.Forms.RadioButton();
35 this.chkhexadecimal = new System.Windows.Forms.RadioButton();
36 this.chkoctal = new System.Windows.Forms.RadioButton();
37 this.chkieee754float = new System.Windows.Forms.RadioButton();
38 this.txtInput = new System.Windows.Forms.MultiNumericBox();
39 this.txtBinary = new System.Windows.Forms.MultiNumericBox();
40 this.txtDecimal = new System.Windows.Forms.MultiNumericBox();
41 this.txtHex = new System.Windows.Forms.MultiNumericBox();
42 this.txtOctal = new System.Windows.Forms.MultiNumericBox();
43 this.txtFloat = new System.Windows.Forms.MultiNumericBox();
44 this.lblBinary = new System.Windows.Forms.Label();
45 this.lblDecimal = new System.Windows.Forms.Label();
46 this.lblHex = new System.Windows.Forms.Label();
47 this.lblOctal = new System.Windows.Forms.Label();
48 this.lblFloat = new System.Windows.Forms.Label();
49 this.btnConvert = new System.Windows.Forms.Button();
50 this.grpInputType.SuspendLayout();
51 this.grpInputType_flow.SuspendLayout();
52 this.SuspendLayout();
53 //
54 // grpInputType
55 //
56 this.grpInputType.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
57 this.grpInputType.Controls.Add(this.grpInputType_flow);
58 this.grpInputType.Location = new System.Drawing.Point(12, 9);
59 this.grpInputType.Name = "grpInputType";
60 this.grpInputType.Size = new System.Drawing.Size(122, 142);
61 this.grpInputType.TabIndex = 1;
62 this.grpInputType.TabStop = false;
63 this.grpInputType.Text = "Input Type";
64 //
65 // grpInputType_flow
66 //
67 this.grpInputType_flow.AutoScroll = true;
68 this.grpInputType_flow.AutoSize = true;
69 this.grpInputType_flow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
70 this.grpInputType_flow.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
71 this.grpInputType_flow.Controls.Add(this.chkBinary);
72 this.grpInputType_flow.Controls.Add(this.chkdecimal);
73 this.grpInputType_flow.Controls.Add(this.chkhexadecimal);
74 this.grpInputType_flow.Controls.Add(this.chkoctal);
75 this.grpInputType_flow.Controls.Add(this.chkieee754float);
76 this.grpInputType_flow.Dock = System.Windows.Forms.DockStyle.Fill;
77 this.grpInputType_flow.Location = new System.Drawing.Point(3, 16);
78 this.grpInputType_flow.Name = "grpInputType_flow";
79 this.grpInputType_flow.Size = new System.Drawing.Size(116, 123);
80 this.grpInputType_flow.TabIndex = 0;
81 //
82 // chkBinary
83 //
84 this.chkBinary.AutoSize = true;
85 this.chkBinary.Location = new System.Drawing.Point(3, 3);
86 this.chkBinary.Name = "chkBinary";
87 this.chkBinary.Size = new System.Drawing.Size(53, 17);
88 this.chkBinary.TabIndex = 0;
89 this.chkBinary.Text = "binary";
90 this.chkBinary.UseVisualStyleBackColor = true;
91 this.chkBinary.CheckedChanged += new System.EventHandler(this.chkBinary_CheckedChanged);
92 //
93 // chkdecimal
94 //
95 this.chkdecimal.AutoSize = true;
96 this.chkdecimal.Location = new System.Drawing.Point(3, 26);
97 this.chkdecimal.Name = "chkdecimal";
98 this.chkdecimal.Size = new System.Drawing.Size(61, 17);
99 this.chkdecimal.TabIndex = 1;
100 this.chkdecimal.Text = "decimal";
101 this.chkdecimal.UseVisualStyleBackColor = true;
102 this.chkdecimal.CheckedChanged += new System.EventHandler(this.chkdecimal_CheckedChanged);
103 //
104 // chkhexadecimal
105 //
106 this.chkhexadecimal.AutoSize = true;
107 this.chkhexadecimal.Location = new System.Drawing.Point(3, 49);
108 this.chkhexadecimal.Name = "chkhexadecimal";
109 this.chkhexadecimal.Size = new System.Drawing.Size(84, 17);
110 this.chkhexadecimal.TabIndex = 2;
111 this.chkhexadecimal.Text = "hexadecimal";
112 this.chkhexadecimal.UseVisualStyleBackColor = true;
113 this.chkhexadecimal.CheckedChanged += new System.EventHandler(this.chkhexadecimal_CheckedChanged);
114 //
115 // chkoctal
116 //
117 this.chkoctal.AutoSize = true;
118 this.chkoctal.Location = new System.Drawing.Point(3, 72);
119 this.chkoctal.Name = "chkoctal";
120 this.chkoctal.Size = new System.Drawing.Size(48, 17);
121 this.chkoctal.TabIndex = 3;
122 this.chkoctal.Text = "octal";
123 this.chkoctal.UseVisualStyleBackColor = true;
124 this.chkoctal.CheckedChanged += new System.EventHandler(this.chkoctal_CheckedChanged);
125 //
126 // chkieee754float
127 //
128 this.chkieee754float.AutoSize = true;
129 this.chkieee754float.Location = new System.Drawing.Point(3, 95);
130 this.chkieee754float.Name = "chkieee754float";
131 this.chkieee754float.Size = new System.Drawing.Size(100, 17);
132 this.chkieee754float.TabIndex = 4;
133 this.chkieee754float.Text = "ieee754hexfloat";
134 this.chkieee754float.UseVisualStyleBackColor = true;
135 this.chkieee754float.CheckedChanged += new System.EventHandler(this.chkieee754float_CheckedChanged);
136 //
137 // txtInput
138 //
139 this.txtInput.AutoSize = true;
140 this.txtInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
141 this.txtInput.Font = new System.Drawing.Font("Courier New", 12F);
142 this.txtInput.InputType = System.Windows.Forms.NumericInputTypes.Decimal;
143 this.txtInput.Location = new System.Drawing.Point(137, 9);
144 this.txtInput.Margin = new System.Windows.Forms.Padding(0);
145 this.txtInput.Name = "txtInput";
146 this.txtInput.ReadOnly = false;
147 this.txtInput.Size = new System.Drawing.Size(221, 28);
148 this.txtInput.TabIndex = 2;
149 this.txtInput.Value = "0";
150 //
151 // txtBinary
152 //
153 this.txtBinary.AutoSize = true;
154 this.txtBinary.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
155 this.txtBinary.Font = new System.Drawing.Font("Courier New", 12F);
156 this.txtBinary.InputType = System.Windows.Forms.NumericInputTypes.Binary;
157 this.txtBinary.Location = new System.Drawing.Point(76, 174);
158 this.txtBinary.Margin = new System.Windows.Forms.Padding(0);
159 this.txtBinary.Name = "txtBinary";
160 this.txtBinary.ReadOnly = true;
161 this.txtBinary.Size = new System.Drawing.Size(221, 28);
162 this.txtBinary.TabIndex = 3;
163 this.txtBinary.Value ="0";
164 //
165 // txtDecimal
166 //
167 this.txtDecimal.AutoSize = true;
168 this.txtDecimal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
169 this.txtDecimal.Font = new System.Drawing.Font("Courier New", 12F);
170 this.txtDecimal.InputType = System.Windows.Forms.NumericInputTypes.Decimal;
171 this.txtDecimal.Location = new System.Drawing.Point(76, 202);
172 this.txtDecimal.Margin = new System.Windows.Forms.Padding(0);
173 this.txtDecimal.Name = "txtDecimal";
174 this.txtDecimal.ReadOnly = true;
175 this.txtDecimal.Size = new System.Drawing.Size(221, 28);
176 this.txtDecimal.TabIndex = 4;
177 this.txtDecimal.Value ="0";
178 //
179 // txtHex
180 //
181 this.txtHex.AutoSize = true;
182 this.txtHex.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
183 this.txtHex.Font = new System.Drawing.Font("Courier New", 12F);
184 this.txtHex.InputType = System.Windows.Forms.NumericInputTypes.Hex;
185 this.txtHex.Location = new System.Drawing.Point(76, 230);
186 this.txtHex.Margin = new System.Windows.Forms.Padding(0);
187 this.txtHex.Name = "txtHex";
188 this.txtHex.ReadOnly = true;
189 this.txtHex.Size = new System.Drawing.Size(221, 28);
190 this.txtHex.TabIndex = 5;
191 this.txtHex.Value ="0";
192 //
193 // txtOctal
194 //
195 this.txtOctal.AutoSize = true;
196 this.txtOctal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
197 this.txtOctal.Font = new System.Drawing.Font("Courier New", 12F);
198 this.txtOctal.InputType = System.Windows.Forms.NumericInputTypes.Octal;
199 this.txtOctal.Location = new System.Drawing.Point(76, 258);
200 this.txtOctal.Margin = new System.Windows.Forms.Padding(0);
201 this.txtOctal.Name = "txtOctal";
202 this.txtOctal.ReadOnly = true;
203 this.txtOctal.Size = new System.Drawing.Size(221, 28);
204 this.txtOctal.TabIndex = 6;
205 this.txtOctal.Value ="0";
206 //
207 // txtFloat
208 //
209 this.txtFloat.AutoSize = true;
210 this.txtFloat.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
211 this.txtFloat.Font = new System.Drawing.Font("Courier New", 12F);
212 this.txtFloat.InputType = System.Windows.Forms.NumericInputTypes.IEEE754HexFloat;
213 this.txtFloat.Location = new System.Drawing.Point(76, 286);
214 this.txtFloat.Margin = new System.Windows.Forms.Padding(0);
215 this.txtFloat.Name = "txtFloat";
216 this.txtFloat.ReadOnly = true;
217 this.txtFloat.Size = new System.Drawing.Size(221, 28);
218 this.txtFloat.TabIndex = 7;
219 this.txtFloat.Value ="0";
220 //
221 // lblBinary
222 //
223 this.lblBinary.AutoSize = true;
224 this.lblBinary.Location = new System.Drawing.Point(34, 182);
225 this.lblBinary.Name = "lblBinary";
226 this.lblBinary.Size = new System.Drawing.Size(39, 13);
227 this.lblBinary.TabIndex = 8;
228 this.lblBinary.Text = "Binary:";
229 //
230 // lblDecimal
231 //
232 this.lblDecimal.AutoSize = true;
233 this.lblDecimal.Location = new System.Drawing.Point(25, 210);
234 this.lblDecimal.Name = "lblDecimal";
235 this.lblDecimal.Size = new System.Drawing.Size(48, 13);
236 this.lblDecimal.TabIndex = 9;
237 this.lblDecimal.Text = "Decimal:";
238 //
239 // lblHex
240 //
241 this.lblHex.AutoSize = true;
242 this.lblHex.Location = new System.Drawing.Point(44, 238);
243 this.lblHex.Name = "lblHex";
244 this.lblHex.Size = new System.Drawing.Size(29, 13);
245 this.lblHex.TabIndex = 10;
246 this.lblHex.Text = "Hex:";
247 //
248 // lblOctal
249 //
250 this.lblOctal.AutoSize = true;
251 this.lblOctal.Location = new System.Drawing.Point(38, 266);
252 this.lblOctal.Name = "lblOctal";
253 this.lblOctal.Size = new System.Drawing.Size(35, 13);
254 this.lblOctal.TabIndex = 11;
255 this.lblOctal.Text = "Octal:";
256 //
257 // lblFloat
258 //
259 this.lblFloat.AutoSize = true;
260 this.lblFloat.Location = new System.Drawing.Point(-2, 294);
261 this.lblFloat.Name = "lblFloat";
262 this.lblFloat.Size = new System.Drawing.Size(75, 13);
263 this.lblFloat.TabIndex = 12;
264 this.lblFloat.Text = "IEEE754Float:";
265 //
266 // btnConvert
267 //
268 this.btnConvert.Location = new System.Drawing.Point(203, 95);
269 this.btnConvert.Name = "btnConvert";
270 this.btnConvert.Size = new System.Drawing.Size(75, 23);
271 this.btnConvert.TabIndex = 13;
272 this.btnConvert.Text = "Convert";
273 this.btnConvert.UseVisualStyleBackColor = true;
274 this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
275 //
276 // FloatingDataTypeConverter
277 //
278 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
279 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
280 this.ClientSize = new System.Drawing.Size(438, 339);
281 this.Controls.Add(this.btnConvert);
282 this.Controls.Add(this.lblFloat);
283 this.Controls.Add(this.lblOctal);
284 this.Controls.Add(this.lblHex);
285 this.Controls.Add(this.lblDecimal);
286 this.Controls.Add(this.lblBinary);
287 this.Controls.Add(this.txtFloat);
288 this.Controls.Add(this.txtOctal);
289 this.Controls.Add(this.txtHex);
290 this.Controls.Add(this.txtDecimal);
291 this.Controls.Add(this.txtBinary);
292 this.Controls.Add(this.txtInput);
293 this.Controls.Add(this.grpInputType);
294 this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
295 this.Name = "FloatingDataTypeConverter";
296 this.Text = "Data Type Converter";
297 this.grpInputType.ResumeLayout(false);
298 this.grpInputType.PerformLayout();
299 this.grpInputType_flow.ResumeLayout(false);
300 this.grpInputType_flow.PerformLayout();
301 this.ResumeLayout(false);
302 this.PerformLayout();
303
304 }
305
306 #endregion
307
308 private System.Windows.Forms.GroupBox grpInputType;
309 private System.Windows.Forms.FlowLayoutPanel grpInputType_flow;
310 private System.Windows.Forms.RadioButton chkBinary;
311 private System.Windows.Forms.RadioButton chkdecimal;
312 private System.Windows.Forms.RadioButton chkhexadecimal;
313 private System.Windows.Forms.RadioButton chkoctal;
314 private System.Windows.Forms.RadioButton chkieee754float;
315 private System.Windows.Forms.MultiNumericBox txtInput;
316 private System.Windows.Forms.MultiNumericBox txtBinary;
317 private System.Windows.Forms.MultiNumericBox txtDecimal;
318 private System.Windows.Forms.MultiNumericBox txtHex;
319 private System.Windows.Forms.MultiNumericBox txtOctal;
320 private System.Windows.Forms.MultiNumericBox txtFloat;
321 private System.Windows.Forms.Label lblBinary;
322 private System.Windows.Forms.Label lblDecimal;
323 private System.Windows.Forms.Label lblHex;
324 private System.Windows.Forms.Label lblOctal;
325 private System.Windows.Forms.Label lblFloat;
326 private System.Windows.Forms.Button btnConvert;
327
328
329 }
330 }