1 |
william |
218 |
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 |
william |
222 |
this.grpInputType = new System.Windows.Forms.GroupBox(); |
32 |
|
|
this.grpInputType_flow = new System.Windows.Forms.FlowLayoutPanel(); |
33 |
william |
223 |
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 |
william |
222 |
this.grpInputType.SuspendLayout(); |
40 |
|
|
this.grpInputType_flow.SuspendLayout(); |
41 |
william |
219 |
this.SuspendLayout(); |
42 |
|
|
// |
43 |
william |
222 |
// grpInputType |
44 |
|
|
// |
45 |
|
|
this.grpInputType.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
46 |
|
|
this.grpInputType.Controls.Add(this.grpInputType_flow); |
47 |
william |
223 |
this.grpInputType.Location = new System.Drawing.Point(12, 9); |
48 |
william |
222 |
this.grpInputType.Name = "grpInputType"; |
49 |
william |
223 |
this.grpInputType.Size = new System.Drawing.Size(122, 142); |
50 |
william |
222 |
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 |
william |
223 |
this.grpInputType_flow.Size = new System.Drawing.Size(116, 123); |
69 |
william |
222 |
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 |
william |
223 |
this.chkBinary.Size = new System.Drawing.Size(53, 17); |
77 |
william |
222 |
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 |
william |
223 |
this.chkdecimal.Location = new System.Drawing.Point(3, 26); |
86 |
william |
222 |
this.chkdecimal.Name = "chkdecimal"; |
87 |
william |
223 |
this.chkdecimal.Size = new System.Drawing.Size(61, 17); |
88 |
william |
222 |
this.chkdecimal.TabIndex = 1; |
89 |
|
|
this.chkdecimal.Text = "decimal"; |
90 |
|
|
this.chkdecimal.UseVisualStyleBackColor = true; |
91 |
william |
223 |
this.chkdecimal.CheckedChanged += new System.EventHandler(this.chkdecimal_CheckedChanged); |
92 |
william |
222 |
// |
93 |
|
|
// chkhexadecimal |
94 |
|
|
// |
95 |
|
|
this.chkhexadecimal.AutoSize = true; |
96 |
william |
223 |
this.chkhexadecimal.Location = new System.Drawing.Point(3, 49); |
97 |
william |
222 |
this.chkhexadecimal.Name = "chkhexadecimal"; |
98 |
william |
223 |
this.chkhexadecimal.Size = new System.Drawing.Size(84, 17); |
99 |
william |
222 |
this.chkhexadecimal.TabIndex = 2; |
100 |
|
|
this.chkhexadecimal.Text = "hexadecimal"; |
101 |
|
|
this.chkhexadecimal.UseVisualStyleBackColor = true; |
102 |
william |
223 |
this.chkhexadecimal.CheckedChanged += new System.EventHandler(this.chkhexadecimal_CheckedChanged); |
103 |
william |
222 |
// |
104 |
|
|
// chkoctal |
105 |
|
|
// |
106 |
|
|
this.chkoctal.AutoSize = true; |
107 |
william |
223 |
this.chkoctal.Location = new System.Drawing.Point(3, 72); |
108 |
william |
222 |
this.chkoctal.Name = "chkoctal"; |
109 |
william |
223 |
this.chkoctal.Size = new System.Drawing.Size(48, 17); |
110 |
william |
222 |
this.chkoctal.TabIndex = 3; |
111 |
|
|
this.chkoctal.Text = "octal"; |
112 |
|
|
this.chkoctal.UseVisualStyleBackColor = true; |
113 |
william |
223 |
this.chkoctal.CheckedChanged += new System.EventHandler(this.chkoctal_CheckedChanged); |
114 |
william |
222 |
// |
115 |
|
|
// chkieee754float |
116 |
|
|
// |
117 |
|
|
this.chkieee754float.AutoSize = true; |
118 |
william |
223 |
this.chkieee754float.Location = new System.Drawing.Point(3, 95); |
119 |
william |
222 |
this.chkieee754float.Name = "chkieee754float"; |
120 |
william |
223 |
this.chkieee754float.Size = new System.Drawing.Size(100, 17); |
121 |
william |
222 |
this.chkieee754float.TabIndex = 4; |
122 |
william |
223 |
this.chkieee754float.Text = "ieee754hexfloat"; |
123 |
william |
222 |
this.chkieee754float.UseVisualStyleBackColor = true; |
124 |
william |
223 |
this.chkieee754float.CheckedChanged += new System.EventHandler(this.chkieee754float_CheckedChanged); |
125 |
william |
222 |
// |
126 |
william |
223 |
// 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 |
william |
219 |
// FloatingDataTypeConverter |
141 |
|
|
// |
142 |
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
143 |
william |
218 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
144 |
william |
220 |
this.ClientSize = new System.Drawing.Size(438, 339); |
145 |
william |
223 |
this.Controls.Add(this.txtInput); |
146 |
william |
222 |
this.Controls.Add(this.grpInputType); |
147 |
william |
219 |
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"; |
149 |
|
|
this.Text = "Data Type Converter"; |
150 |
william |
222 |
this.grpInputType.ResumeLayout(false); |
151 |
|
|
this.grpInputType.PerformLayout(); |
152 |
|
|
this.grpInputType_flow.ResumeLayout(false); |
153 |
|
|
this.grpInputType_flow.PerformLayout(); |
154 |
william |
219 |
this.ResumeLayout(false); |
155 |
william |
222 |
this.PerformLayout(); |
156 |
william |
219 |
|
157 |
william |
218 |
} |
158 |
|
|
|
159 |
|
|
#endregion |
160 |
william |
220 |
|
161 |
william |
222 |
private System.Windows.Forms.GroupBox grpInputType; |
162 |
|
|
private System.Windows.Forms.FlowLayoutPanel grpInputType_flow; |
163 |
william |
223 |
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 |
william |
220 |
|
170 |
william |
222 |
|
171 |
william |
218 |
} |
172 |
|
|
} |