28 |
/// </summary> |
/// </summary> |
29 |
private void InitializeComponent() |
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.grpInputType.SuspendLayout(); |
40 |
|
this.grpInputType_flow.SuspendLayout(); |
41 |
this.SuspendLayout(); |
this.SuspendLayout(); |
42 |
// |
// |
43 |
|
// grpInputType |
44 |
|
// |
45 |
|
this.grpInputType.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
46 |
|
this.grpInputType.Controls.Add(this.grpInputType_flow); |
47 |
|
this.grpInputType.Location = new System.Drawing.Point(12, 9); |
48 |
|
this.grpInputType.Name = "grpInputType"; |
49 |
|
this.grpInputType.Size = new System.Drawing.Size(122, 142); |
50 |
|
this.grpInputType.TabIndex = 1; |
51 |
|
this.grpInputType.TabStop = false; |
52 |
|
this.grpInputType.Text = "Input Type"; |
53 |
|
// |
54 |
|
// grpInputType_flow |
55 |
|
// |
56 |
|
this.grpInputType_flow.AutoScroll = true; |
57 |
|
this.grpInputType_flow.AutoSize = true; |
58 |
|
this.grpInputType_flow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
59 |
|
this.grpInputType_flow.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
60 |
|
this.grpInputType_flow.Controls.Add(this.chkBinary); |
61 |
|
this.grpInputType_flow.Controls.Add(this.chkdecimal); |
62 |
|
this.grpInputType_flow.Controls.Add(this.chkhexadecimal); |
63 |
|
this.grpInputType_flow.Controls.Add(this.chkoctal); |
64 |
|
this.grpInputType_flow.Controls.Add(this.chkieee754float); |
65 |
|
this.grpInputType_flow.Dock = System.Windows.Forms.DockStyle.Fill; |
66 |
|
this.grpInputType_flow.Location = new System.Drawing.Point(3, 16); |
67 |
|
this.grpInputType_flow.Name = "grpInputType_flow"; |
68 |
|
this.grpInputType_flow.Size = new System.Drawing.Size(116, 123); |
69 |
|
this.grpInputType_flow.TabIndex = 0; |
70 |
|
// |
71 |
|
// chkBinary |
72 |
|
// |
73 |
|
this.chkBinary.AutoSize = true; |
74 |
|
this.chkBinary.Location = new System.Drawing.Point(3, 3); |
75 |
|
this.chkBinary.Name = "chkBinary"; |
76 |
|
this.chkBinary.Size = new System.Drawing.Size(53, 17); |
77 |
|
this.chkBinary.TabIndex = 0; |
78 |
|
this.chkBinary.Text = "binary"; |
79 |
|
this.chkBinary.UseVisualStyleBackColor = true; |
80 |
|
this.chkBinary.CheckedChanged += new System.EventHandler(this.chkBinary_CheckedChanged); |
81 |
|
// |
82 |
|
// chkdecimal |
83 |
|
// |
84 |
|
this.chkdecimal.AutoSize = true; |
85 |
|
this.chkdecimal.Location = new System.Drawing.Point(3, 26); |
86 |
|
this.chkdecimal.Name = "chkdecimal"; |
87 |
|
this.chkdecimal.Size = new System.Drawing.Size(61, 17); |
88 |
|
this.chkdecimal.TabIndex = 1; |
89 |
|
this.chkdecimal.Text = "decimal"; |
90 |
|
this.chkdecimal.UseVisualStyleBackColor = true; |
91 |
|
this.chkdecimal.CheckedChanged += new System.EventHandler(this.chkdecimal_CheckedChanged); |
92 |
|
// |
93 |
|
// chkhexadecimal |
94 |
|
// |
95 |
|
this.chkhexadecimal.AutoSize = true; |
96 |
|
this.chkhexadecimal.Location = new System.Drawing.Point(3, 49); |
97 |
|
this.chkhexadecimal.Name = "chkhexadecimal"; |
98 |
|
this.chkhexadecimal.Size = new System.Drawing.Size(84, 17); |
99 |
|
this.chkhexadecimal.TabIndex = 2; |
100 |
|
this.chkhexadecimal.Text = "hexadecimal"; |
101 |
|
this.chkhexadecimal.UseVisualStyleBackColor = true; |
102 |
|
this.chkhexadecimal.CheckedChanged += new System.EventHandler(this.chkhexadecimal_CheckedChanged); |
103 |
|
// |
104 |
|
// chkoctal |
105 |
|
// |
106 |
|
this.chkoctal.AutoSize = true; |
107 |
|
this.chkoctal.Location = new System.Drawing.Point(3, 72); |
108 |
|
this.chkoctal.Name = "chkoctal"; |
109 |
|
this.chkoctal.Size = new System.Drawing.Size(48, 17); |
110 |
|
this.chkoctal.TabIndex = 3; |
111 |
|
this.chkoctal.Text = "octal"; |
112 |
|
this.chkoctal.UseVisualStyleBackColor = true; |
113 |
|
this.chkoctal.CheckedChanged += new System.EventHandler(this.chkoctal_CheckedChanged); |
114 |
|
// |
115 |
|
// chkieee754float |
116 |
|
// |
117 |
|
this.chkieee754float.AutoSize = true; |
118 |
|
this.chkieee754float.Location = new System.Drawing.Point(3, 95); |
119 |
|
this.chkieee754float.Name = "chkieee754float"; |
120 |
|
this.chkieee754float.Size = new System.Drawing.Size(100, 17); |
121 |
|
this.chkieee754float.TabIndex = 4; |
122 |
|
this.chkieee754float.Text = "ieee754hexfloat"; |
123 |
|
this.chkieee754float.UseVisualStyleBackColor = true; |
124 |
|
this.chkieee754float.CheckedChanged += new System.EventHandler(this.chkieee754float_CheckedChanged); |
125 |
|
// |
126 |
|
// txtInput |
127 |
|
// |
128 |
|
this.txtInput.AutoSize = true; |
129 |
|
this.txtInput.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
130 |
|
this.txtInput.Font = new System.Drawing.Font("Courier New", 12F); |
131 |
|
this.txtInput.InputType = System.Windows.Forms.MultiNumericBox_InputType.Decimal; |
132 |
|
this.txtInput.Location = new System.Drawing.Point(137, 9); |
133 |
|
this.txtInput.Margin = new System.Windows.Forms.Padding(0); |
134 |
|
this.txtInput.Name = "txtInput"; |
135 |
|
this.txtInput.ReadOnly = false; |
136 |
|
this.txtInput.Size = new System.Drawing.Size(221, 28); |
137 |
|
this.txtInput.TabIndex = 2; |
138 |
|
this.txtInput.Value = 0F; |
139 |
|
// |
140 |
// FloatingDataTypeConverter |
// FloatingDataTypeConverter |
141 |
// |
// |
142 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
143 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
144 |
this.ClientSize = new System.Drawing.Size(284, 262); |
this.ClientSize = new System.Drawing.Size(438, 339); |
145 |
|
this.Controls.Add(this.txtInput); |
146 |
|
this.Controls.Add(this.grpInputType); |
147 |
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
148 |
this.Name = "FloatingDataTypeConverter"; |
this.Name = "FloatingDataTypeConverter"; |
149 |
this.Text = "Data Type Converter"; |
this.Text = "Data Type Converter"; |
150 |
|
this.grpInputType.ResumeLayout(false); |
151 |
|
this.grpInputType.PerformLayout(); |
152 |
|
this.grpInputType_flow.ResumeLayout(false); |
153 |
|
this.grpInputType_flow.PerformLayout(); |
154 |
this.ResumeLayout(false); |
this.ResumeLayout(false); |
155 |
|
this.PerformLayout(); |
156 |
|
|
157 |
} |
} |
158 |
|
|
159 |
#endregion |
#endregion |
160 |
|
|
161 |
|
private System.Windows.Forms.GroupBox grpInputType; |
162 |
|
private System.Windows.Forms.FlowLayoutPanel grpInputType_flow; |
163 |
|
private System.Windows.Forms.RadioButton chkBinary; |
164 |
|
private System.Windows.Forms.RadioButton chkdecimal; |
165 |
|
private System.Windows.Forms.RadioButton chkhexadecimal; |
166 |
|
private System.Windows.Forms.RadioButton chkoctal; |
167 |
|
private System.Windows.Forms.RadioButton chkieee754float; |
168 |
|
private System.Windows.Forms.MultiNumericBox txtInput; |
169 |
|
|
170 |
|
|
171 |
} |
} |
172 |
} |
} |