35 |
this.chkhexadecimal = new System.Windows.Forms.RadioButton(); |
this.chkhexadecimal = new System.Windows.Forms.RadioButton(); |
36 |
this.chkoctal = new System.Windows.Forms.RadioButton(); |
this.chkoctal = new System.Windows.Forms.RadioButton(); |
37 |
this.chkieee754float = new System.Windows.Forms.RadioButton(); |
this.chkieee754float = new System.Windows.Forms.RadioButton(); |
|
this.txtInput = new System.Windows.Forms.MultiNumericBox(); |
|
|
this.txtBinary = new System.Windows.Forms.MultiNumericBox(); |
|
|
this.txtDecimal = new System.Windows.Forms.MultiNumericBox(); |
|
|
this.txtHex = new System.Windows.Forms.MultiNumericBox(); |
|
|
this.txtOctal = new System.Windows.Forms.MultiNumericBox(); |
|
|
this.txtFloat = new System.Windows.Forms.MultiNumericBox(); |
|
38 |
this.lblBinary = new System.Windows.Forms.Label(); |
this.lblBinary = new System.Windows.Forms.Label(); |
39 |
this.lblDecimal = new System.Windows.Forms.Label(); |
this.lblDecimal = new System.Windows.Forms.Label(); |
40 |
this.lblHex = new System.Windows.Forms.Label(); |
this.lblHex = new System.Windows.Forms.Label(); |
41 |
this.lblOctal = new System.Windows.Forms.Label(); |
this.lblOctal = new System.Windows.Forms.Label(); |
42 |
this.lblFloat = new System.Windows.Forms.Label(); |
this.lblFloat = new System.Windows.Forms.Label(); |
43 |
this.btnConvert = new System.Windows.Forms.Button(); |
this.btnConvert = new System.Windows.Forms.Button(); |
44 |
|
this.ieeE754FloatConverter1 = new System.Windows.Forms.IEEE754FloatConverter(); |
45 |
|
this.txtFloat = new System.Windows.Forms.MultiNumericBox(); |
46 |
|
this.txtOctal = new System.Windows.Forms.MultiNumericBox(); |
47 |
|
this.txtHex = new System.Windows.Forms.MultiNumericBox(); |
48 |
|
this.txtDecimal = new System.Windows.Forms.MultiNumericBox(); |
49 |
|
this.txtBinary = new System.Windows.Forms.MultiNumericBox(); |
50 |
|
this.txtInput = new System.Windows.Forms.MultiNumericBox(); |
51 |
this.grpInputType.SuspendLayout(); |
this.grpInputType.SuspendLayout(); |
52 |
this.grpInputType_flow.SuspendLayout(); |
this.grpInputType_flow.SuspendLayout(); |
53 |
this.SuspendLayout(); |
this.SuspendLayout(); |
133 |
this.chkieee754float.TabIndex = 4; |
this.chkieee754float.TabIndex = 4; |
134 |
this.chkieee754float.Text = "ieee754hexfloat"; |
this.chkieee754float.Text = "ieee754hexfloat"; |
135 |
this.chkieee754float.UseVisualStyleBackColor = true; |
this.chkieee754float.UseVisualStyleBackColor = true; |
136 |
|
this.chkieee754float.Visible = false; |
137 |
this.chkieee754float.CheckedChanged += new System.EventHandler(this.chkieee754float_CheckedChanged); |
this.chkieee754float.CheckedChanged += new System.EventHandler(this.chkieee754float_CheckedChanged); |
138 |
// |
// |
|
// txtInput |
|
|
// |
|
|
this.txtInput.AutoSize = true; |
|
|
this.txtInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtInput.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtInput.InputType = System.Windows.Forms.NumericInputTypes.Decimal; |
|
|
this.txtInput.Location = new System.Drawing.Point(137, 9); |
|
|
this.txtInput.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtInput.Name = "txtInput"; |
|
|
this.txtInput.ReadOnly = false; |
|
|
this.txtInput.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtInput.TabIndex = 2; |
|
|
this.txtInput.Value = "0"; |
|
|
// |
|
|
// txtBinary |
|
|
// |
|
|
this.txtBinary.AutoSize = true; |
|
|
this.txtBinary.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtBinary.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtBinary.InputType = System.Windows.Forms.NumericInputTypes.Binary; |
|
|
this.txtBinary.Location = new System.Drawing.Point(76, 174); |
|
|
this.txtBinary.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtBinary.Name = "txtBinary"; |
|
|
this.txtBinary.ReadOnly = true; |
|
|
this.txtBinary.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtBinary.TabIndex = 3; |
|
|
this.txtBinary.Value ="0"; |
|
|
// |
|
|
// txtDecimal |
|
|
// |
|
|
this.txtDecimal.AutoSize = true; |
|
|
this.txtDecimal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtDecimal.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtDecimal.InputType = System.Windows.Forms.NumericInputTypes.Decimal; |
|
|
this.txtDecimal.Location = new System.Drawing.Point(76, 202); |
|
|
this.txtDecimal.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtDecimal.Name = "txtDecimal"; |
|
|
this.txtDecimal.ReadOnly = true; |
|
|
this.txtDecimal.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtDecimal.TabIndex = 4; |
|
|
this.txtDecimal.Value ="0"; |
|
|
// |
|
|
// txtHex |
|
|
// |
|
|
this.txtHex.AutoSize = true; |
|
|
this.txtHex.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtHex.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtHex.InputType = System.Windows.Forms.NumericInputTypes.Hex; |
|
|
this.txtHex.Location = new System.Drawing.Point(76, 230); |
|
|
this.txtHex.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtHex.Name = "txtHex"; |
|
|
this.txtHex.ReadOnly = true; |
|
|
this.txtHex.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtHex.TabIndex = 5; |
|
|
this.txtHex.Value ="0"; |
|
|
// |
|
|
// txtOctal |
|
|
// |
|
|
this.txtOctal.AutoSize = true; |
|
|
this.txtOctal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtOctal.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtOctal.InputType = System.Windows.Forms.NumericInputTypes.Octal; |
|
|
this.txtOctal.Location = new System.Drawing.Point(76, 258); |
|
|
this.txtOctal.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtOctal.Name = "txtOctal"; |
|
|
this.txtOctal.ReadOnly = true; |
|
|
this.txtOctal.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtOctal.TabIndex = 6; |
|
|
this.txtOctal.Value ="0"; |
|
|
// |
|
|
// txtFloat |
|
|
// |
|
|
this.txtFloat.AutoSize = true; |
|
|
this.txtFloat.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
|
|
this.txtFloat.Font = new System.Drawing.Font("Courier New", 12F); |
|
|
this.txtFloat.InputType = System.Windows.Forms.NumericInputTypes.IEEE754HexFloat; |
|
|
this.txtFloat.Location = new System.Drawing.Point(76, 286); |
|
|
this.txtFloat.Margin = new System.Windows.Forms.Padding(0); |
|
|
this.txtFloat.Name = "txtFloat"; |
|
|
this.txtFloat.ReadOnly = true; |
|
|
this.txtFloat.Size = new System.Drawing.Size(221, 28); |
|
|
this.txtFloat.TabIndex = 7; |
|
|
this.txtFloat.Value ="0"; |
|
|
// |
|
139 |
// lblBinary |
// lblBinary |
140 |
// |
// |
141 |
this.lblBinary.AutoSize = true; |
this.lblBinary.AutoSize = true; |
180 |
this.lblFloat.Size = new System.Drawing.Size(75, 13); |
this.lblFloat.Size = new System.Drawing.Size(75, 13); |
181 |
this.lblFloat.TabIndex = 12; |
this.lblFloat.TabIndex = 12; |
182 |
this.lblFloat.Text = "IEEE754Float:"; |
this.lblFloat.Text = "IEEE754Float:"; |
183 |
|
this.lblFloat.Visible = false; |
184 |
// |
// |
185 |
// btnConvert |
// btnConvert |
186 |
// |
// |
187 |
this.btnConvert.Location = new System.Drawing.Point(203, 95); |
this.btnConvert.Location = new System.Drawing.Point(467, 14); |
188 |
this.btnConvert.Name = "btnConvert"; |
this.btnConvert.Name = "btnConvert"; |
189 |
this.btnConvert.Size = new System.Drawing.Size(75, 23); |
this.btnConvert.Size = new System.Drawing.Size(75, 23); |
190 |
this.btnConvert.TabIndex = 13; |
this.btnConvert.TabIndex = 13; |
192 |
this.btnConvert.UseVisualStyleBackColor = true; |
this.btnConvert.UseVisualStyleBackColor = true; |
193 |
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click); |
this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click); |
194 |
// |
// |
195 |
|
// ieeE754FloatConverter1 |
196 |
|
// |
197 |
|
this.ieeE754FloatConverter1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
198 |
|
this.ieeE754FloatConverter1.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
199 |
|
this.ieeE754FloatConverter1.Location = new System.Drawing.Point(146, 55); |
200 |
|
this.ieeE754FloatConverter1.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
201 |
|
this.ieeE754FloatConverter1.Name = "ieeE754FloatConverter1"; |
202 |
|
this.ieeE754FloatConverter1.Size = new System.Drawing.Size(396, 96); |
203 |
|
this.ieeE754FloatConverter1.TabIndex = 14; |
204 |
|
// |
205 |
|
// txtFloat |
206 |
|
// |
207 |
|
this.txtFloat.AutoSize = true; |
208 |
|
this.txtFloat.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
209 |
|
this.txtFloat.Font = new System.Drawing.Font("Courier New", 12F); |
210 |
|
this.txtFloat.InputType = System.Windows.Forms.NumericInputTypes.IEEE754HexFloat; |
211 |
|
this.txtFloat.Location = new System.Drawing.Point(76, 286); |
212 |
|
this.txtFloat.Margin = new System.Windows.Forms.Padding(0); |
213 |
|
this.txtFloat.Name = "txtFloat"; |
214 |
|
this.txtFloat.ReadOnly = true; |
215 |
|
this.txtFloat.Size = new System.Drawing.Size(466, 28); |
216 |
|
this.txtFloat.TabIndex = 7; |
217 |
|
this.txtFloat.Value = "0"; |
218 |
|
this.txtFloat.Visible = false; |
219 |
|
// |
220 |
|
// txtOctal |
221 |
|
// |
222 |
|
this.txtOctal.AutoSize = true; |
223 |
|
this.txtOctal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
224 |
|
this.txtOctal.Font = new System.Drawing.Font("Courier New", 12F); |
225 |
|
this.txtOctal.InputType = System.Windows.Forms.NumericInputTypes.Octal; |
226 |
|
this.txtOctal.Location = new System.Drawing.Point(76, 258); |
227 |
|
this.txtOctal.Margin = new System.Windows.Forms.Padding(0); |
228 |
|
this.txtOctal.Name = "txtOctal"; |
229 |
|
this.txtOctal.ReadOnly = true; |
230 |
|
this.txtOctal.Size = new System.Drawing.Size(466, 28); |
231 |
|
this.txtOctal.TabIndex = 6; |
232 |
|
this.txtOctal.Value = "0"; |
233 |
|
// |
234 |
|
// txtHex |
235 |
|
// |
236 |
|
this.txtHex.AutoSize = true; |
237 |
|
this.txtHex.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
238 |
|
this.txtHex.Font = new System.Drawing.Font("Courier New", 12F); |
239 |
|
this.txtHex.InputType = System.Windows.Forms.NumericInputTypes.Hex; |
240 |
|
this.txtHex.Location = new System.Drawing.Point(76, 230); |
241 |
|
this.txtHex.Margin = new System.Windows.Forms.Padding(0); |
242 |
|
this.txtHex.Name = "txtHex"; |
243 |
|
this.txtHex.ReadOnly = true; |
244 |
|
this.txtHex.Size = new System.Drawing.Size(466, 28); |
245 |
|
this.txtHex.TabIndex = 5; |
246 |
|
this.txtHex.Value = "0"; |
247 |
|
// |
248 |
|
// txtDecimal |
249 |
|
// |
250 |
|
this.txtDecimal.AutoSize = true; |
251 |
|
this.txtDecimal.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
252 |
|
this.txtDecimal.Font = new System.Drawing.Font("Courier New", 12F); |
253 |
|
this.txtDecimal.InputType = System.Windows.Forms.NumericInputTypes.Decimal; |
254 |
|
this.txtDecimal.Location = new System.Drawing.Point(76, 202); |
255 |
|
this.txtDecimal.Margin = new System.Windows.Forms.Padding(0); |
256 |
|
this.txtDecimal.Name = "txtDecimal"; |
257 |
|
this.txtDecimal.ReadOnly = true; |
258 |
|
this.txtDecimal.Size = new System.Drawing.Size(466, 28); |
259 |
|
this.txtDecimal.TabIndex = 4; |
260 |
|
this.txtDecimal.Value = "0"; |
261 |
|
// |
262 |
|
// txtBinary |
263 |
|
// |
264 |
|
this.txtBinary.AutoSize = true; |
265 |
|
this.txtBinary.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
266 |
|
this.txtBinary.Font = new System.Drawing.Font("Courier New", 12F); |
267 |
|
this.txtBinary.InputType = System.Windows.Forms.NumericInputTypes.Binary; |
268 |
|
this.txtBinary.Location = new System.Drawing.Point(76, 174); |
269 |
|
this.txtBinary.Margin = new System.Windows.Forms.Padding(0); |
270 |
|
this.txtBinary.Name = "txtBinary"; |
271 |
|
this.txtBinary.ReadOnly = true; |
272 |
|
this.txtBinary.Size = new System.Drawing.Size(466, 28); |
273 |
|
this.txtBinary.TabIndex = 3; |
274 |
|
this.txtBinary.Value = "0"; |
275 |
|
// |
276 |
|
// txtInput |
277 |
|
// |
278 |
|
this.txtInput.AutoSize = true; |
279 |
|
this.txtInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
280 |
|
this.txtInput.Font = new System.Drawing.Font("Courier New", 12F); |
281 |
|
this.txtInput.InputType = System.Windows.Forms.NumericInputTypes.Decimal; |
282 |
|
this.txtInput.Location = new System.Drawing.Point(137, 9); |
283 |
|
this.txtInput.Margin = new System.Windows.Forms.Padding(0); |
284 |
|
this.txtInput.Name = "txtInput"; |
285 |
|
this.txtInput.ReadOnly = false; |
286 |
|
this.txtInput.Size = new System.Drawing.Size(327, 28); |
287 |
|
this.txtInput.TabIndex = 2; |
288 |
|
this.txtInput.Value = "0"; |
289 |
|
// |
290 |
// FloatingDataTypeConverter |
// FloatingDataTypeConverter |
291 |
// |
// |
292 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
293 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
294 |
this.ClientSize = new System.Drawing.Size(438, 339); |
this.ClientSize = new System.Drawing.Size(552, 335); |
295 |
this.Controls.Add(this.btnConvert); |
this.Controls.Add(this.btnConvert); |
296 |
this.Controls.Add(this.lblFloat); |
this.Controls.Add(this.lblFloat); |
297 |
|
this.Controls.Add(this.ieeE754FloatConverter1); |
298 |
this.Controls.Add(this.lblOctal); |
this.Controls.Add(this.lblOctal); |
299 |
this.Controls.Add(this.lblHex); |
this.Controls.Add(this.lblHex); |
300 |
this.Controls.Add(this.lblDecimal); |
this.Controls.Add(this.lblDecimal); |
339 |
private System.Windows.Forms.Label lblOctal; |
private System.Windows.Forms.Label lblOctal; |
340 |
private System.Windows.Forms.Label lblFloat; |
private System.Windows.Forms.Label lblFloat; |
341 |
private System.Windows.Forms.Button btnConvert; |
private System.Windows.Forms.Button btnConvert; |
342 |
|
private System.Windows.Forms.IEEE754FloatConverter ieeE754FloatConverter1; |
343 |
|
|
344 |
|
|
345 |
} |
} |