1 |
namespace RomCheater.Docking.UI |
2 |
{ |
3 |
partial class UIMemoryViewer |
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 Component 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.components = new System.ComponentModel.Container(); |
32 |
this.spacer = new System.Windows.Forms.Panel(); |
33 |
this.toolStrip2 = new System.Windows.Forms.ToolStrip(); |
34 |
this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); |
35 |
this.btnGotoAddress = new System.Windows.Forms.Button(); |
36 |
this.btnEditBytes = new System.Windows.Forms.Button(); |
37 |
this.left_pnl = new System.Windows.Forms.Panel(); |
38 |
this.txtAddresses = new Utilities.TransparentControls.FlickerFreeTextControl(); |
39 |
this.ramScroll = new System.Windows.Forms.VScrollBar(); |
40 |
this.update_timer = new System.Windows.Forms.Timer(this.components); |
41 |
this.ResultsUpdateWorkerThread = new System.ComponentModel.BackgroundWorker(); |
42 |
this.panel1 = new System.Windows.Forms.Panel(); |
43 |
this.txthexGoto = new System.Windows.Forms.MaskedHexBox(); |
44 |
this.btnGotoImageBase = new System.Windows.Forms.Button(); |
45 |
this.txtData = new Be.Windows.Forms.HexBox(); |
46 |
this.spacer.SuspendLayout(); |
47 |
this.toolStrip2.SuspendLayout(); |
48 |
this.left_pnl.SuspendLayout(); |
49 |
this.panel1.SuspendLayout(); |
50 |
this.SuspendLayout(); |
51 |
// |
52 |
// spacer |
53 |
// |
54 |
this.spacer.Controls.Add(this.toolStrip2); |
55 |
this.spacer.Dock = System.Windows.Forms.DockStyle.Top; |
56 |
this.spacer.Location = new System.Drawing.Point(0, 0); |
57 |
this.spacer.Margin = new System.Windows.Forms.Padding(2); |
58 |
this.spacer.Name = "spacer"; |
59 |
this.spacer.Size = new System.Drawing.Size(221, 24); |
60 |
this.spacer.TabIndex = 7; |
61 |
// |
62 |
// toolStrip2 |
63 |
// |
64 |
this.toolStrip2.Font = new System.Drawing.Font("Lucida Console", 12F); |
65 |
this.toolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; |
66 |
this.toolStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { |
67 |
this.toolStripLabel1}); |
68 |
this.toolStrip2.Location = new System.Drawing.Point(0, 0); |
69 |
this.toolStrip2.Name = "toolStrip2"; |
70 |
this.toolStrip2.Size = new System.Drawing.Size(221, 25); |
71 |
this.toolStrip2.TabIndex = 1; |
72 |
this.toolStrip2.Text = "toolStrip2"; |
73 |
// |
74 |
// toolStripLabel1 |
75 |
// |
76 |
this.toolStripLabel1.Name = "toolStripLabel1"; |
77 |
this.toolStripLabel1.Size = new System.Drawing.Size(88, 22); |
78 |
this.toolStripLabel1.Text = "Address:"; |
79 |
// |
80 |
// btnGotoAddress |
81 |
// |
82 |
this.btnGotoAddress.AutoSize = true; |
83 |
this.btnGotoAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
84 |
this.btnGotoAddress.Dock = System.Windows.Forms.DockStyle.Right; |
85 |
this.btnGotoAddress.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
86 |
this.btnGotoAddress.Location = new System.Drawing.Point(369, 0); |
87 |
this.btnGotoAddress.Margin = new System.Windows.Forms.Padding(0); |
88 |
this.btnGotoAddress.Name = "btnGotoAddress"; |
89 |
this.btnGotoAddress.Size = new System.Drawing.Size(138, 31); |
90 |
this.btnGotoAddress.TabIndex = 16; |
91 |
this.btnGotoAddress.Text = "Goto Address"; |
92 |
this.btnGotoAddress.UseVisualStyleBackColor = true; |
93 |
this.btnGotoAddress.Click += new System.EventHandler(this.btnGotoAddress_Click); |
94 |
// |
95 |
// btnEditBytes |
96 |
// |
97 |
this.btnEditBytes.AutoSize = true; |
98 |
this.btnEditBytes.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
99 |
this.btnEditBytes.Dock = System.Windows.Forms.DockStyle.Right; |
100 |
this.btnEditBytes.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
101 |
this.btnEditBytes.Location = new System.Drawing.Point(507, 0); |
102 |
this.btnEditBytes.Margin = new System.Windows.Forms.Padding(0); |
103 |
this.btnEditBytes.Name = "btnEditBytes"; |
104 |
this.btnEditBytes.Size = new System.Drawing.Size(118, 31); |
105 |
this.btnEditBytes.TabIndex = 15; |
106 |
this.btnEditBytes.Text = "Edit Bytes"; |
107 |
this.btnEditBytes.UseVisualStyleBackColor = true; |
108 |
this.btnEditBytes.Click += new System.EventHandler(this.btnEditBytes_Click); |
109 |
// |
110 |
// left_pnl |
111 |
// |
112 |
this.left_pnl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
113 |
this.left_pnl.Controls.Add(this.txtAddresses); |
114 |
this.left_pnl.Controls.Add(this.spacer); |
115 |
this.left_pnl.Dock = System.Windows.Forms.DockStyle.Left; |
116 |
this.left_pnl.Location = new System.Drawing.Point(0, 0); |
117 |
this.left_pnl.Margin = new System.Windows.Forms.Padding(2); |
118 |
this.left_pnl.Name = "left_pnl"; |
119 |
this.left_pnl.Size = new System.Drawing.Size(225, 674); |
120 |
this.left_pnl.TabIndex = 14; |
121 |
// |
122 |
// txtAddresses |
123 |
// |
124 |
this.txtAddresses.BackColor = System.Drawing.Color.White; |
125 |
this.txtAddresses.Dock = System.Windows.Forms.DockStyle.Fill; |
126 |
this.txtAddresses.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
127 |
this.txtAddresses.Location = new System.Drawing.Point(0, 24); |
128 |
this.txtAddresses.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
129 |
this.txtAddresses.Name = "txtAddresses"; |
130 |
this.txtAddresses.Size = new System.Drawing.Size(221, 646); |
131 |
this.txtAddresses.TabIndex = 1; |
132 |
this.txtAddresses.Text = ""; |
133 |
this.txtAddresses.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAddresses_KeyDown); |
134 |
// |
135 |
// ramScroll |
136 |
// |
137 |
this.ramScroll.Dock = System.Windows.Forms.DockStyle.Right; |
138 |
this.ramScroll.Location = new System.Drawing.Point(1022, 0); |
139 |
this.ramScroll.Name = "ramScroll"; |
140 |
this.ramScroll.Size = new System.Drawing.Size(17, 674); |
141 |
this.ramScroll.TabIndex = 12; |
142 |
this.ramScroll.Scroll += new System.Windows.Forms.ScrollEventHandler(this.ramScroll_Scroll); |
143 |
// |
144 |
// update_timer |
145 |
// |
146 |
this.update_timer.Interval = 10; |
147 |
this.update_timer.Tick += new System.EventHandler(this.update_timer_Tick); |
148 |
// |
149 |
// ResultsUpdateWorkerThread |
150 |
// |
151 |
this.ResultsUpdateWorkerThread.WorkerSupportsCancellation = true; |
152 |
this.ResultsUpdateWorkerThread.DoWork += new System.ComponentModel.DoWorkEventHandler(this.ResultsUpdateWorkerThread_DoWork); |
153 |
this.ResultsUpdateWorkerThread.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.ResultsUpdateWorkerThread_RunWorkerCompleted); |
154 |
// |
155 |
// panel1 |
156 |
// |
157 |
this.panel1.AutoScroll = true; |
158 |
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
159 |
this.panel1.Controls.Add(this.txthexGoto); |
160 |
this.panel1.Controls.Add(this.btnGotoAddress); |
161 |
this.panel1.Controls.Add(this.btnEditBytes); |
162 |
this.panel1.Controls.Add(this.btnGotoImageBase); |
163 |
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; |
164 |
this.panel1.Location = new System.Drawing.Point(225, 639); |
165 |
this.panel1.Name = "panel1"; |
166 |
this.panel1.Size = new System.Drawing.Size(797, 35); |
167 |
this.panel1.TabIndex = 18; |
168 |
// |
169 |
// txthexGoto |
170 |
// |
171 |
this.txthexGoto.AutoSize = true; |
172 |
this.txthexGoto.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
173 |
this.txthexGoto.Dock = System.Windows.Forms.DockStyle.Left; |
174 |
this.txthexGoto.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
175 |
this.txthexGoto.isAddressMask = true; |
176 |
this.txthexGoto.Location = new System.Drawing.Point(0, 0); |
177 |
this.txthexGoto.Margin = new System.Windows.Forms.Padding(0); |
178 |
this.txthexGoto.MaxLength = 8; |
179 |
this.txthexGoto.Name = "txthexGoto"; |
180 |
this.txthexGoto.Padding = new System.Windows.Forms.Padding(0, 2, 0, 0); |
181 |
this.txthexGoto.ReadOnly = false; |
182 |
this.txthexGoto.Size = new System.Drawing.Size(298, 31); |
183 |
this.txthexGoto.TabIndex = 17; |
184 |
this.txthexGoto.TextLength = 16; |
185 |
this.txthexGoto.Value = ((ulong)(0ul)); |
186 |
// |
187 |
// btnGotoImageBase |
188 |
// |
189 |
this.btnGotoImageBase.AutoSize = true; |
190 |
this.btnGotoImageBase.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
191 |
this.btnGotoImageBase.Dock = System.Windows.Forms.DockStyle.Right; |
192 |
this.btnGotoImageBase.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
193 |
this.btnGotoImageBase.Location = new System.Drawing.Point(625, 0); |
194 |
this.btnGotoImageBase.Margin = new System.Windows.Forms.Padding(0); |
195 |
this.btnGotoImageBase.Name = "btnGotoImageBase"; |
196 |
this.btnGotoImageBase.Size = new System.Drawing.Size(168, 31); |
197 |
this.btnGotoImageBase.TabIndex = 18; |
198 |
this.btnGotoImageBase.Text = "Goto Image Base"; |
199 |
this.btnGotoImageBase.UseVisualStyleBackColor = true; |
200 |
this.btnGotoImageBase.Click += new System.EventHandler(this.btnGotoImageBase_Click); |
201 |
// |
202 |
// txtData |
203 |
// |
204 |
this.txtData.Dock = System.Windows.Forms.DockStyle.Fill; |
205 |
this.txtData.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
206 |
this.txtData.HeaderLineInfoVisible = true; |
207 |
this.txtData.LineInfoForeColor = System.Drawing.Color.Empty; |
208 |
this.txtData.Location = new System.Drawing.Point(225, 0); |
209 |
this.txtData.Margin = new System.Windows.Forms.Padding(5, 89, 5, 4); |
210 |
this.txtData.Name = "txtData"; |
211 |
this.txtData.ShadowSelectionColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(60)))), ((int)(((byte)(188)))), ((int)(((byte)(255))))); |
212 |
this.txtData.Size = new System.Drawing.Size(797, 639); |
213 |
this.txtData.StringViewVisible = true; |
214 |
this.txtData.TabIndex = 11; |
215 |
this.txtData.UseFixedBytesPerLine = true; |
216 |
this.txtData.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtData_KeyDown); |
217 |
// |
218 |
// UIMemoryViewer |
219 |
// |
220 |
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
221 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
222 |
this.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
223 |
this.Controls.Add(this.txtData); |
224 |
this.Controls.Add(this.panel1); |
225 |
this.Controls.Add(this.left_pnl); |
226 |
this.Controls.Add(this.ramScroll); |
227 |
this.Name = "UIMemoryViewer"; |
228 |
this.Size = new System.Drawing.Size(1039, 674); |
229 |
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.UIMemoryViewer_KeyDown); |
230 |
this.spacer.ResumeLayout(false); |
231 |
this.spacer.PerformLayout(); |
232 |
this.toolStrip2.ResumeLayout(false); |
233 |
this.toolStrip2.PerformLayout(); |
234 |
this.left_pnl.ResumeLayout(false); |
235 |
this.panel1.ResumeLayout(false); |
236 |
this.panel1.PerformLayout(); |
237 |
this.ResumeLayout(false); |
238 |
|
239 |
} |
240 |
|
241 |
#endregion |
242 |
|
243 |
private Be.Windows.Forms.HexBox txtData; |
244 |
private System.Windows.Forms.Panel spacer; |
245 |
private System.Windows.Forms.ToolStrip toolStrip2; |
246 |
private System.Windows.Forms.ToolStripLabel toolStripLabel1; |
247 |
private System.Windows.Forms.Button btnGotoAddress; |
248 |
private System.Windows.Forms.Button btnEditBytes; |
249 |
private System.Windows.Forms.Panel left_pnl; |
250 |
private Utilities.TransparentControls.FlickerFreeTextControl txtAddresses; |
251 |
private System.Windows.Forms.VScrollBar ramScroll; |
252 |
private System.Windows.Forms.Timer update_timer; |
253 |
private System.ComponentModel.BackgroundWorker ResultsUpdateWorkerThread; |
254 |
private System.Windows.Forms.MaskedHexBox txthexGoto; |
255 |
private System.Windows.Forms.Panel panel1; |
256 |
private System.Windows.Forms.Button btnGotoImageBase; |
257 |
|
258 |
} |
259 |
} |