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