ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/RomCheater/trunk/RomCheater.RVACalculator/RVACalculatorDockControl.Designer.cs
Revision: 669
Committed: Mon Jun 17 05:11:25 2013 UTC (10 years, 3 months ago) by william
File size: 17478 byte(s)
Log Message:

File Contents

# Content
1 namespace RomCheater.RVACalculator
2 {
3 partial class RVACalculatorDockControl
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.lstCheats = new System.Windows.Forms.ListView();
32 this.colCheatName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
33 this.colCheatAddress = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
34 this.colPhysicalAddress = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
35 this.pnl_bottom_flow = new System.Windows.Forms.FlowLayoutPanel();
36 this.btnAdd = new System.Windows.Forms.Button();
37 this.btnRemove = new System.Windows.Forms.Button();
38 this.btnUpdate = new System.Windows.Forms.Button();
39 this.btnCopy = new System.Windows.Forms.Button();
40 this.btnSave = new System.Windows.Forms.Button();
41 this.btnLoad = new System.Windows.Forms.Button();
42 this.btnRefresh = new System.Windows.Forms.Button();
43 this.lblRVA = new System.Windows.Forms.Label();
44 this.splitContainer1 = new System.Windows.Forms.SplitContainer();
45 this.CheatLoader = new System.Windows.Forms.OpenFileDialog();
46 this.CheatSaver = new System.Windows.Forms.SaveFileDialog();
47 this.txtRVA = new System.Windows.Forms.MaskedHexBox();
48 this.btnCopyAll = new System.Windows.Forms.Button();
49 this.pnl_bottom_flow.SuspendLayout();
50 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
51 this.splitContainer1.Panel1.SuspendLayout();
52 this.splitContainer1.Panel2.SuspendLayout();
53 this.splitContainer1.SuspendLayout();
54 this.SuspendLayout();
55 //
56 // lstCheats
57 //
58 this.lstCheats.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
59 this.colCheatName,
60 this.colCheatAddress,
61 this.colPhysicalAddress});
62 this.lstCheats.Dock = System.Windows.Forms.DockStyle.Fill;
63 this.lstCheats.Font = new System.Drawing.Font("Courier New", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
64 this.lstCheats.FullRowSelect = true;
65 this.lstCheats.GridLines = true;
66 this.lstCheats.Location = new System.Drawing.Point(0, 0);
67 this.lstCheats.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
68 this.lstCheats.MultiSelect = false;
69 this.lstCheats.Name = "lstCheats";
70 this.lstCheats.Size = new System.Drawing.Size(828, 425);
71 this.lstCheats.TabIndex = 0;
72 this.lstCheats.UseCompatibleStateImageBehavior = false;
73 this.lstCheats.View = System.Windows.Forms.View.Details;
74 //
75 // colCheatName
76 //
77 this.colCheatName.Text = "Cheat Name";
78 this.colCheatName.Width = 172;
79 //
80 // colCheatAddress
81 //
82 this.colCheatAddress.Text = "CheatAddress";
83 this.colCheatAddress.Width = 159;
84 //
85 // colPhysicalAddress
86 //
87 this.colPhysicalAddress.Text = "Physical Address";
88 this.colPhysicalAddress.Width = 254;
89 //
90 // pnl_bottom_flow
91 //
92 this.pnl_bottom_flow.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
93 this.pnl_bottom_flow.Controls.Add(this.btnAdd);
94 this.pnl_bottom_flow.Controls.Add(this.btnRemove);
95 this.pnl_bottom_flow.Controls.Add(this.btnUpdate);
96 this.pnl_bottom_flow.Controls.Add(this.btnCopy);
97 this.pnl_bottom_flow.Controls.Add(this.btnSave);
98 this.pnl_bottom_flow.Controls.Add(this.btnLoad);
99 this.pnl_bottom_flow.Controls.Add(this.btnRefresh);
100 this.pnl_bottom_flow.Controls.Add(this.btnCopyAll);
101 this.pnl_bottom_flow.Controls.Add(this.lblRVA);
102 this.pnl_bottom_flow.Controls.Add(this.txtRVA);
103 this.pnl_bottom_flow.Dock = System.Windows.Forms.DockStyle.Fill;
104 this.pnl_bottom_flow.Location = new System.Drawing.Point(0, 0);
105 this.pnl_bottom_flow.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
106 this.pnl_bottom_flow.Name = "pnl_bottom_flow";
107 this.pnl_bottom_flow.Size = new System.Drawing.Size(828, 143);
108 this.pnl_bottom_flow.TabIndex = 0;
109 //
110 // btnAdd
111 //
112 this.btnAdd.AutoSize = true;
113 this.btnAdd.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
114 this.btnAdd.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
115 this.btnAdd.Location = new System.Drawing.Point(0, 0);
116 this.btnAdd.Margin = new System.Windows.Forms.Padding(0);
117 this.btnAdd.Name = "btnAdd";
118 this.btnAdd.Size = new System.Drawing.Size(71, 40);
119 this.btnAdd.TabIndex = 3;
120 this.btnAdd.Text = "Add";
121 this.btnAdd.UseVisualStyleBackColor = true;
122 this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
123 //
124 // btnRemove
125 //
126 this.btnRemove.AutoSize = true;
127 this.btnRemove.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
128 this.btnRemove.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
129 this.btnRemove.Location = new System.Drawing.Point(71, 0);
130 this.btnRemove.Margin = new System.Windows.Forms.Padding(0);
131 this.btnRemove.Name = "btnRemove";
132 this.btnRemove.Size = new System.Drawing.Size(119, 40);
133 this.btnRemove.TabIndex = 4;
134 this.btnRemove.Text = "Remove";
135 this.btnRemove.UseVisualStyleBackColor = true;
136 this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
137 //
138 // btnUpdate
139 //
140 this.btnUpdate.AutoSize = true;
141 this.btnUpdate.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
142 this.btnUpdate.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
143 this.btnUpdate.Location = new System.Drawing.Point(190, 0);
144 this.btnUpdate.Margin = new System.Windows.Forms.Padding(0);
145 this.btnUpdate.Name = "btnUpdate";
146 this.btnUpdate.Size = new System.Drawing.Size(119, 40);
147 this.btnUpdate.TabIndex = 5;
148 this.btnUpdate.Text = "Update";
149 this.btnUpdate.UseVisualStyleBackColor = true;
150 this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
151 //
152 // btnCopy
153 //
154 this.btnCopy.AutoSize = true;
155 this.btnCopy.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
156 this.btnCopy.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
157 this.btnCopy.Location = new System.Drawing.Point(309, 0);
158 this.btnCopy.Margin = new System.Windows.Forms.Padding(0);
159 this.btnCopy.Name = "btnCopy";
160 this.btnCopy.Size = new System.Drawing.Size(87, 40);
161 this.btnCopy.TabIndex = 6;
162 this.btnCopy.Text = "Copy";
163 this.btnCopy.UseVisualStyleBackColor = true;
164 this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
165 //
166 // btnSave
167 //
168 this.btnSave.AutoSize = true;
169 this.btnSave.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
170 this.btnSave.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
171 this.btnSave.Location = new System.Drawing.Point(396, 0);
172 this.btnSave.Margin = new System.Windows.Forms.Padding(0);
173 this.btnSave.Name = "btnSave";
174 this.btnSave.Size = new System.Drawing.Size(87, 40);
175 this.btnSave.TabIndex = 7;
176 this.btnSave.Text = "Save";
177 this.btnSave.UseVisualStyleBackColor = true;
178 this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
179 //
180 // btnLoad
181 //
182 this.btnLoad.AutoSize = true;
183 this.btnLoad.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
184 this.btnLoad.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
185 this.btnLoad.Location = new System.Drawing.Point(483, 0);
186 this.btnLoad.Margin = new System.Windows.Forms.Padding(0);
187 this.btnLoad.Name = "btnLoad";
188 this.btnLoad.Size = new System.Drawing.Size(87, 40);
189 this.btnLoad.TabIndex = 8;
190 this.btnLoad.Text = "Load";
191 this.btnLoad.UseVisualStyleBackColor = true;
192 this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click);
193 //
194 // btnRefresh
195 //
196 this.btnRefresh.AutoSize = true;
197 this.btnRefresh.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
198 this.pnl_bottom_flow.SetFlowBreak(this.btnRefresh, true);
199 this.btnRefresh.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
200 this.btnRefresh.Location = new System.Drawing.Point(570, 0);
201 this.btnRefresh.Margin = new System.Windows.Forms.Padding(0);
202 this.btnRefresh.Name = "btnRefresh";
203 this.btnRefresh.Size = new System.Drawing.Size(135, 40);
204 this.btnRefresh.TabIndex = 9;
205 this.btnRefresh.Text = "Refresh";
206 this.btnRefresh.UseVisualStyleBackColor = true;
207 this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
208 //
209 // lblRVA
210 //
211 this.lblRVA.AutoSize = true;
212 this.lblRVA.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
213 this.lblRVA.Location = new System.Drawing.Point(154, 40);
214 this.lblRVA.Name = "lblRVA";
215 this.lblRVA.Size = new System.Drawing.Size(77, 30);
216 this.lblRVA.TabIndex = 11;
217 this.lblRVA.Text = "RVA:";
218 //
219 // splitContainer1
220 //
221 this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
222 this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
223 this.splitContainer1.Location = new System.Drawing.Point(0, 0);
224 this.splitContainer1.Name = "splitContainer1";
225 this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
226 //
227 // splitContainer1.Panel1
228 //
229 this.splitContainer1.Panel1.Controls.Add(this.lstCheats);
230 //
231 // splitContainer1.Panel2
232 //
233 this.splitContainer1.Panel2.Controls.Add(this.pnl_bottom_flow);
234 this.splitContainer1.Size = new System.Drawing.Size(832, 580);
235 this.splitContainer1.SplitterDistance = 429;
236 this.splitContainer1.TabIndex = 1;
237 //
238 // CheatLoader
239 //
240 this.CheatLoader.DefaultExt = "cheat";
241 this.CheatLoader.Filter = "Cheat Files|*.cheat|All Files|*.*";
242 this.CheatLoader.Title = "Please choose the cheat file to load";
243 //
244 // CheatSaver
245 //
246 this.CheatSaver.DefaultExt = "cheat";
247 this.CheatSaver.Filter = "Cheat Files|*.cheat|All Files|*.*";
248 this.CheatSaver.Title = "Please choose the cheat file to save";
249 //
250 // txtRVA
251 //
252 this.txtRVA.AutoSize = true;
253 this.txtRVA.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
254 this.txtRVA.Font = new System.Drawing.Font("Lucida Console", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
255 this.txtRVA.isAddressMask = true;
256 this.txtRVA.Location = new System.Drawing.Point(234, 40);
257 this.txtRVA.Margin = new System.Windows.Forms.Padding(0);
258 this.txtRVA.MaxLength = 8;
259 this.txtRVA.Name = "txtRVA";
260 this.txtRVA.ReadOnly = false;
261 this.txtRVA.Size = new System.Drawing.Size(193, 29);
262 this.txtRVA.TabIndex = 12;
263 this.txtRVA.TextLength = 8;
264 this.txtRVA.Value = ((ulong)(0ul));
265 //
266 // btnCopyAll
267 //
268 this.btnCopyAll.AutoSize = true;
269 this.btnCopyAll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
270 this.btnCopyAll.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
271 this.btnCopyAll.Location = new System.Drawing.Point(0, 40);
272 this.btnCopyAll.Margin = new System.Windows.Forms.Padding(0);
273 this.btnCopyAll.Name = "btnCopyAll";
274 this.btnCopyAll.Size = new System.Drawing.Size(151, 40);
275 this.btnCopyAll.TabIndex = 13;
276 this.btnCopyAll.Text = "Copy All";
277 this.btnCopyAll.UseVisualStyleBackColor = true;
278 this.btnCopyAll.Click += new System.EventHandler(this.btnCopyAll_Click);
279 //
280 // RVACalculatorDockControl
281 //
282 this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 30F);
283 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
284 this.ClientSize = new System.Drawing.Size(832, 580);
285 this.Controls.Add(this.splitContainer1);
286 this.Font = new System.Drawing.Font("Courier New", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
287 this.Margin = new System.Windows.Forms.Padding(8, 7, 8, 7);
288 this.Name = "RVACalculatorDockControl";
289 this.Text = "RVA Calculator";
290 this.Shown += new System.EventHandler(this.RVACalculatorDockControl_Shown);
291 this.pnl_bottom_flow.ResumeLayout(false);
292 this.pnl_bottom_flow.PerformLayout();
293 this.splitContainer1.Panel1.ResumeLayout(false);
294 this.splitContainer1.Panel2.ResumeLayout(false);
295 ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
296 this.splitContainer1.ResumeLayout(false);
297 this.ResumeLayout(false);
298
299 }
300
301 #endregion
302
303 private System.Windows.Forms.ListView lstCheats;
304 private System.Windows.Forms.ColumnHeader colCheatName;
305 private System.Windows.Forms.ColumnHeader colCheatAddress;
306 private System.Windows.Forms.ColumnHeader colPhysicalAddress;
307 private System.Windows.Forms.FlowLayoutPanel pnl_bottom_flow;
308 private System.Windows.Forms.Button btnAdd;
309 private System.Windows.Forms.Button btnRemove;
310 private System.Windows.Forms.Button btnUpdate;
311 private System.Windows.Forms.Button btnCopy;
312 private System.Windows.Forms.Button btnSave;
313 private System.Windows.Forms.Button btnLoad;
314 private System.Windows.Forms.Button btnRefresh;
315 private System.Windows.Forms.Label lblRVA;
316 private System.Windows.Forms.SplitContainer splitContainer1;
317 private System.Windows.Forms.MaskedHexBox txtRVA;
318 private System.Windows.Forms.OpenFileDialog CheatLoader;
319 private System.Windows.Forms.SaveFileDialog CheatSaver;
320 private System.Windows.Forms.Button btnCopyAll;
321 }
322 }