1 |
namespace RomCheater.Docking.MemorySearch |
2 |
{ |
3 |
partial class SearchPatcher |
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.lblAddress = new System.Windows.Forms.Label(); |
32 |
this.lblValue = new System.Windows.Forms.Label(); |
33 |
this.btnOK = new System.Windows.Forms.Button(); |
34 |
this.btnCancel = new System.Windows.Forms.Button(); |
35 |
this.btnCopyAddressToClipboard = new System.Windows.Forms.Button(); |
36 |
this.btnCopyvaluetoClipboard = new System.Windows.Forms.Button(); |
37 |
this.txtAddress = new System.Windows.Forms.MaskedHexBox(); |
38 |
this.txtValue = new System.Windows.Forms.MaskedHexBox(); |
39 |
this.SuspendLayout(); |
40 |
// |
41 |
// lblAddress |
42 |
// |
43 |
this.lblAddress.AutoSize = true; |
44 |
this.lblAddress.Location = new System.Drawing.Point(4, 15); |
45 |
this.lblAddress.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
46 |
this.lblAddress.Name = "lblAddress"; |
47 |
this.lblAddress.Size = new System.Drawing.Size(88, 18); |
48 |
this.lblAddress.TabIndex = 0; |
49 |
this.lblAddress.Text = "Address:"; |
50 |
// |
51 |
// lblValue |
52 |
// |
53 |
this.lblValue.AutoSize = true; |
54 |
this.lblValue.Location = new System.Drawing.Point(24, 57); |
55 |
this.lblValue.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
56 |
this.lblValue.Name = "lblValue"; |
57 |
this.lblValue.Size = new System.Drawing.Size(68, 18); |
58 |
this.lblValue.TabIndex = 1; |
59 |
this.lblValue.Text = "Value:"; |
60 |
// |
61 |
// btnOK |
62 |
// |
63 |
this.btnOK.Location = new System.Drawing.Point(542, 5); |
64 |
this.btnOK.Name = "btnOK"; |
65 |
this.btnOK.Size = new System.Drawing.Size(91, 36); |
66 |
this.btnOK.TabIndex = 4; |
67 |
this.btnOK.Text = "OK"; |
68 |
this.btnOK.UseVisualStyleBackColor = true; |
69 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
70 |
// |
71 |
// btnCancel |
72 |
// |
73 |
this.btnCancel.Location = new System.Drawing.Point(542, 47); |
74 |
this.btnCancel.Name = "btnCancel"; |
75 |
this.btnCancel.Size = new System.Drawing.Size(91, 36); |
76 |
this.btnCancel.TabIndex = 5; |
77 |
this.btnCancel.Text = "CANCEL"; |
78 |
this.btnCancel.UseVisualStyleBackColor = true; |
79 |
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
80 |
// |
81 |
// btnCopyAddressToClipboard |
82 |
// |
83 |
this.btnCopyAddressToClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
84 |
this.btnCopyAddressToClipboard.Location = new System.Drawing.Point(480, 13); |
85 |
this.btnCopyAddressToClipboard.Name = "btnCopyAddressToClipboard"; |
86 |
this.btnCopyAddressToClipboard.Size = new System.Drawing.Size(40, 24); |
87 |
this.btnCopyAddressToClipboard.TabIndex = 6; |
88 |
this.btnCopyAddressToClipboard.Text = "[C]"; |
89 |
this.btnCopyAddressToClipboard.UseVisualStyleBackColor = true; |
90 |
this.btnCopyAddressToClipboard.Click += new System.EventHandler(this.btnCopyAddressToClipboard_Click); |
91 |
// |
92 |
// btnCopyvaluetoClipboard |
93 |
// |
94 |
this.btnCopyvaluetoClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
95 |
this.btnCopyvaluetoClipboard.Location = new System.Drawing.Point(480, 54); |
96 |
this.btnCopyvaluetoClipboard.Name = "btnCopyvaluetoClipboard"; |
97 |
this.btnCopyvaluetoClipboard.Size = new System.Drawing.Size(40, 24); |
98 |
this.btnCopyvaluetoClipboard.TabIndex = 7; |
99 |
this.btnCopyvaluetoClipboard.Text = "[C]"; |
100 |
this.btnCopyvaluetoClipboard.UseVisualStyleBackColor = true; |
101 |
this.btnCopyvaluetoClipboard.Click += new System.EventHandler(this.btnCopyvaluetoClipboard_Click); |
102 |
// |
103 |
// txtAddress |
104 |
// |
105 |
this.txtAddress.isAddressMask = true; |
106 |
this.txtAddress.Location = new System.Drawing.Point(102, 12); |
107 |
this.txtAddress.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
108 |
this.txtAddress.MaxLength = 8; |
109 |
this.txtAddress.Name = "txtAddress"; |
110 |
this.txtAddress.ReadOnly = false; |
111 |
this.txtAddress.Size = new System.Drawing.Size(370, 25); |
112 |
this.txtAddress.TabIndex = 2; |
113 |
this.txtAddress.TextLength = 8; |
114 |
// |
115 |
// txtValue |
116 |
// |
117 |
this.txtValue.isAddressMask = true; |
118 |
this.txtValue.Location = new System.Drawing.Point(102, 53); |
119 |
this.txtValue.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
120 |
this.txtValue.MaxLength = 8; |
121 |
this.txtValue.Name = "txtValue"; |
122 |
this.txtValue.ReadOnly = true; |
123 |
this.txtValue.Size = new System.Drawing.Size(370, 25); |
124 |
this.txtValue.TabIndex = 3; |
125 |
this.txtValue.TextLength = 8; |
126 |
// |
127 |
// SearchPatcher |
128 |
// |
129 |
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
130 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
131 |
this.ClientSize = new System.Drawing.Size(678, 95); |
132 |
this.Controls.Add(this.btnCopyvaluetoClipboard); |
133 |
this.Controls.Add(this.btnCopyAddressToClipboard); |
134 |
this.Controls.Add(this.btnCancel); |
135 |
this.Controls.Add(this.btnOK); |
136 |
this.Controls.Add(this.txtValue); |
137 |
this.Controls.Add(this.txtAddress); |
138 |
this.Controls.Add(this.lblValue); |
139 |
this.Controls.Add(this.lblAddress); |
140 |
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
141 |
this.KeyPreview = true; |
142 |
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
143 |
this.Name = "SearchPatcher"; |
144 |
this.Text = "SearchPatcher"; |
145 |
this.Load += new System.EventHandler(this.SearchPatcher_Load); |
146 |
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchPatcher_KeyDown); |
147 |
this.ResumeLayout(false); |
148 |
this.PerformLayout(); |
149 |
|
150 |
} |
151 |
|
152 |
#endregion |
153 |
|
154 |
private System.Windows.Forms.Label lblAddress; |
155 |
private System.Windows.Forms.Label lblValue; |
156 |
private System.Windows.Forms.Button btnOK; |
157 |
private System.Windows.Forms.Button btnCancel; |
158 |
private System.Windows.Forms.Button btnCopyAddressToClipboard; |
159 |
private System.Windows.Forms.Button btnCopyvaluetoClipboard; |
160 |
private System.Windows.Forms.MaskedHexBox txtAddress; |
161 |
private System.Windows.Forms.MaskedHexBox txtValue; |
162 |
} |
163 |
} |