1 |
william |
229 |
namespace RomCheater.Docking.MemorySearch |
2 |
|
|
{ |
3 |
|
|
partial class PatchRangeAdder |
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.lblDataType = new System.Windows.Forms.Label(); |
32 |
|
|
this.chkIsUnsigned = new System.Windows.Forms.CheckBox(); |
33 |
|
|
this.comboDataBitSize = new System.Windows.Forms.ComboBox(); |
34 |
|
|
this.btnCancel = new System.Windows.Forms.Button(); |
35 |
|
|
this.btnOK = new System.Windows.Forms.Button(); |
36 |
|
|
this.txtStartAddress = new System.Windows.Forms.MaskedHexBox(); |
37 |
|
|
this.lblAddress = new System.Windows.Forms.Label(); |
38 |
|
|
this.txtEndAddress = new System.Windows.Forms.MaskedHexBox(); |
39 |
|
|
this.label1 = new System.Windows.Forms.Label(); |
40 |
|
|
this.SuspendLayout(); |
41 |
|
|
// |
42 |
|
|
// lblDataType |
43 |
|
|
// |
44 |
|
|
this.lblDataType.AutoSize = true; |
45 |
|
|
this.lblDataType.Location = new System.Drawing.Point(8, 60); |
46 |
|
|
this.lblDataType.Name = "lblDataType"; |
47 |
|
|
this.lblDataType.Size = new System.Drawing.Size(108, 18); |
48 |
|
|
this.lblDataType.TabIndex = 15; |
49 |
|
|
this.lblDataType.Text = "Data Type:"; |
50 |
|
|
// |
51 |
|
|
// chkIsUnsigned |
52 |
|
|
// |
53 |
|
|
this.chkIsUnsigned.AutoSize = true; |
54 |
|
|
this.chkIsUnsigned.Location = new System.Drawing.Point(294, 59); |
55 |
|
|
this.chkIsUnsigned.Name = "chkIsUnsigned"; |
56 |
|
|
this.chkIsUnsigned.Size = new System.Drawing.Size(137, 22); |
57 |
|
|
this.chkIsUnsigned.TabIndex = 14; |
58 |
|
|
this.chkIsUnsigned.Text = "Is Unsigned"; |
59 |
|
|
this.chkIsUnsigned.UseVisualStyleBackColor = true; |
60 |
|
|
// |
61 |
|
|
// comboDataBitSize |
62 |
|
|
// |
63 |
|
|
this.comboDataBitSize.FormattingEnabled = true; |
64 |
|
|
this.comboDataBitSize.Location = new System.Drawing.Point(122, 57); |
65 |
|
|
this.comboDataBitSize.Name = "comboDataBitSize"; |
66 |
|
|
this.comboDataBitSize.Size = new System.Drawing.Size(166, 26); |
67 |
|
|
this.comboDataBitSize.TabIndex = 13; |
68 |
|
|
this.comboDataBitSize.SelectedIndexChanged += new System.EventHandler(this.comboDataBitSize_SelectedIndexChanged); |
69 |
|
|
// |
70 |
|
|
// btnCancel |
71 |
|
|
// |
72 |
|
|
this.btnCancel.AutoSize = true; |
73 |
|
|
this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
74 |
|
|
this.btnCancel.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
75 |
|
|
this.btnCancel.Location = new System.Drawing.Point(495, 57); |
76 |
|
|
this.btnCancel.Name = "btnCancel"; |
77 |
|
|
this.btnCancel.Size = new System.Drawing.Size(66, 26); |
78 |
|
|
this.btnCancel.TabIndex = 12; |
79 |
|
|
this.btnCancel.Text = "CANCEL"; |
80 |
|
|
this.btnCancel.UseVisualStyleBackColor = true; |
81 |
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
82 |
|
|
// |
83 |
|
|
// btnOK |
84 |
|
|
// |
85 |
|
|
this.btnOK.AutoSize = true; |
86 |
|
|
this.btnOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
87 |
|
|
this.btnOK.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
88 |
|
|
this.btnOK.Location = new System.Drawing.Point(437, 57); |
89 |
|
|
this.btnOK.Name = "btnOK"; |
90 |
|
|
this.btnOK.Size = new System.Drawing.Size(34, 26); |
91 |
|
|
this.btnOK.TabIndex = 11; |
92 |
|
|
this.btnOK.Text = "OK"; |
93 |
|
|
this.btnOK.UseVisualStyleBackColor = true; |
94 |
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
95 |
|
|
// |
96 |
|
|
// txtStartAddress |
97 |
|
|
// |
98 |
|
|
this.txtStartAddress.AutoSize = true; |
99 |
|
|
this.txtStartAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
100 |
|
|
this.txtStartAddress.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
101 |
|
|
this.txtStartAddress.isAddressMask = true; |
102 |
|
|
this.txtStartAddress.Location = new System.Drawing.Point(104, 14); |
103 |
|
|
this.txtStartAddress.Margin = new System.Windows.Forms.Padding(0); |
104 |
|
|
this.txtStartAddress.MaxLength = 8; |
105 |
|
|
this.txtStartAddress.Name = "txtStartAddress"; |
106 |
|
|
this.txtStartAddress.ReadOnly = true; |
107 |
|
|
this.txtStartAddress.Size = new System.Drawing.Size(208, 24); |
108 |
|
|
this.txtStartAddress.TabIndex = 10; |
109 |
|
|
this.txtStartAddress.TextLength = 8; |
110 |
|
|
this.txtStartAddress.Value = ((ulong)(0ul)); |
111 |
|
|
// |
112 |
|
|
// lblAddress |
113 |
|
|
// |
114 |
|
|
this.lblAddress.AutoSize = true; |
115 |
|
|
this.lblAddress.Location = new System.Drawing.Point(8, 17); |
116 |
|
|
this.lblAddress.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
117 |
|
|
this.lblAddress.Name = "lblAddress"; |
118 |
|
|
this.lblAddress.Size = new System.Drawing.Size(68, 18); |
119 |
|
|
this.lblAddress.TabIndex = 9; |
120 |
|
|
this.lblAddress.Text = "Start:"; |
121 |
|
|
// |
122 |
|
|
// txtEndAddress |
123 |
|
|
// |
124 |
|
|
this.txtEndAddress.AutoSize = true; |
125 |
|
|
this.txtEndAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
126 |
|
|
this.txtEndAddress.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
127 |
|
|
this.txtEndAddress.isAddressMask = true; |
128 |
|
|
this.txtEndAddress.Location = new System.Drawing.Point(374, 14); |
129 |
|
|
this.txtEndAddress.Margin = new System.Windows.Forms.Padding(0); |
130 |
|
|
this.txtEndAddress.MaxLength = 8; |
131 |
|
|
this.txtEndAddress.Name = "txtEndAddress"; |
132 |
|
|
this.txtEndAddress.ReadOnly = true; |
133 |
|
|
this.txtEndAddress.Size = new System.Drawing.Size(215, 24); |
134 |
|
|
this.txtEndAddress.TabIndex = 17; |
135 |
|
|
this.txtEndAddress.TextLength = 8; |
136 |
|
|
this.txtEndAddress.Value = ((ulong)(0ul)); |
137 |
|
|
// |
138 |
|
|
// label1 |
139 |
|
|
// |
140 |
|
|
this.label1.AutoSize = true; |
141 |
|
|
this.label1.Location = new System.Drawing.Point(318, 17); |
142 |
|
|
this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
143 |
|
|
this.label1.Name = "label1"; |
144 |
|
|
this.label1.Size = new System.Drawing.Size(48, 18); |
145 |
|
|
this.label1.TabIndex = 16; |
146 |
|
|
this.label1.Text = "End:"; |
147 |
|
|
// |
148 |
|
|
// PatchRangeAdder |
149 |
|
|
// |
150 |
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
151 |
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
152 |
|
|
this.ClientSize = new System.Drawing.Size(610, 96); |
153 |
|
|
this.Controls.Add(this.txtEndAddress); |
154 |
|
|
this.Controls.Add(this.label1); |
155 |
|
|
this.Controls.Add(this.lblDataType); |
156 |
|
|
this.Controls.Add(this.chkIsUnsigned); |
157 |
|
|
this.Controls.Add(this.comboDataBitSize); |
158 |
|
|
this.Controls.Add(this.btnCancel); |
159 |
|
|
this.Controls.Add(this.btnOK); |
160 |
|
|
this.Controls.Add(this.txtStartAddress); |
161 |
|
|
this.Controls.Add(this.lblAddress); |
162 |
|
|
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
163 |
|
|
this.KeyPreview = true; |
164 |
|
|
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
165 |
|
|
this.Name = "PatchRangeAdder"; |
166 |
|
|
this.Text = "Patch Range Adder"; |
167 |
|
|
this.Load += new System.EventHandler(this.PatchRangeAdder_Load); |
168 |
|
|
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatchRangeAdder_KeyDown); |
169 |
|
|
this.ResumeLayout(false); |
170 |
|
|
this.PerformLayout(); |
171 |
|
|
|
172 |
|
|
} |
173 |
|
|
|
174 |
|
|
#endregion |
175 |
|
|
|
176 |
|
|
private System.Windows.Forms.Label lblDataType; |
177 |
|
|
private System.Windows.Forms.CheckBox chkIsUnsigned; |
178 |
|
|
private System.Windows.Forms.ComboBox comboDataBitSize; |
179 |
|
|
private System.Windows.Forms.Button btnCancel; |
180 |
|
|
private System.Windows.Forms.Button btnOK; |
181 |
|
|
private System.Windows.Forms.MaskedHexBox txtStartAddress; |
182 |
|
|
private System.Windows.Forms.Label lblAddress; |
183 |
|
|
private System.Windows.Forms.MaskedHexBox txtEndAddress; |
184 |
|
|
private System.Windows.Forms.Label label1; |
185 |
|
|
|
186 |
|
|
} |
187 |
|
|
} |