1 |
namespace RomCheater.Docking.MemorySearch |
2 |
{ |
3 |
partial class SearchRangePatcher |
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.lblValue = new System.Windows.Forms.Label(); |
32 |
this.btnOK = new System.Windows.Forms.Button(); |
33 |
this.btnCancel = new System.Windows.Forms.Button(); |
34 |
this.btnCopyvaluetoClipboard = new System.Windows.Forms.Button(); |
35 |
this.txtValue = new System.Windows.Forms.MaskedHexBox(); |
36 |
this.SuspendLayout(); |
37 |
// |
38 |
// lblValue |
39 |
// |
40 |
this.lblValue.AutoSize = true; |
41 |
this.lblValue.Location = new System.Drawing.Point(22, 20); |
42 |
this.lblValue.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
43 |
this.lblValue.Name = "lblValue"; |
44 |
this.lblValue.Size = new System.Drawing.Size(68, 18); |
45 |
this.lblValue.TabIndex = 1; |
46 |
this.lblValue.Text = "Value:"; |
47 |
// |
48 |
// btnOK |
49 |
// |
50 |
this.btnOK.Location = new System.Drawing.Point(537, 10); |
51 |
this.btnOK.Name = "btnOK"; |
52 |
this.btnOK.Size = new System.Drawing.Size(91, 36); |
53 |
this.btnOK.TabIndex = 4; |
54 |
this.btnOK.Text = "OK"; |
55 |
this.btnOK.UseVisualStyleBackColor = true; |
56 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
57 |
// |
58 |
// btnCancel |
59 |
// |
60 |
this.btnCancel.Location = new System.Drawing.Point(634, 10); |
61 |
this.btnCancel.Name = "btnCancel"; |
62 |
this.btnCancel.Size = new System.Drawing.Size(91, 36); |
63 |
this.btnCancel.TabIndex = 5; |
64 |
this.btnCancel.Text = "CANCEL"; |
65 |
this.btnCancel.UseVisualStyleBackColor = true; |
66 |
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
67 |
// |
68 |
// btnCopyvaluetoClipboard |
69 |
// |
70 |
this.btnCopyvaluetoClipboard.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
71 |
this.btnCopyvaluetoClipboard.Location = new System.Drawing.Point(473, 17); |
72 |
this.btnCopyvaluetoClipboard.Name = "btnCopyvaluetoClipboard"; |
73 |
this.btnCopyvaluetoClipboard.Size = new System.Drawing.Size(40, 24); |
74 |
this.btnCopyvaluetoClipboard.TabIndex = 7; |
75 |
this.btnCopyvaluetoClipboard.Text = "[C]"; |
76 |
this.btnCopyvaluetoClipboard.UseVisualStyleBackColor = true; |
77 |
this.btnCopyvaluetoClipboard.Click += new System.EventHandler(this.btnCopyvaluetoClipboard_Click); |
78 |
// |
79 |
// txtValue |
80 |
// |
81 |
this.txtValue.isAddressMask = true; |
82 |
this.txtValue.Location = new System.Drawing.Point(98, 20); |
83 |
this.txtValue.MaxLength = 8; |
84 |
this.txtValue.Name = "txtValue"; |
85 |
this.txtValue.ReadOnly = false; |
86 |
this.txtValue.Size = new System.Drawing.Size(355, 18); |
87 |
this.txtValue.TabIndex = 3; |
88 |
this.txtValue.TextLength = 8; |
89 |
// |
90 |
// SearchRangePatcher |
91 |
// |
92 |
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
93 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
94 |
this.ClientSize = new System.Drawing.Size(736, 67); |
95 |
this.Controls.Add(this.btnCopyvaluetoClipboard); |
96 |
this.Controls.Add(this.btnCancel); |
97 |
this.Controls.Add(this.btnOK); |
98 |
this.Controls.Add(this.txtValue); |
99 |
this.Controls.Add(this.lblValue); |
100 |
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
101 |
this.KeyPreview = true; |
102 |
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
103 |
this.Name = "SearchRangePatcher"; |
104 |
this.Text = "SearchPatcher"; |
105 |
this.Load += new System.EventHandler(this.SearchPatcher_Load); |
106 |
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SearchPatcher_KeyDown); |
107 |
this.ResumeLayout(false); |
108 |
this.PerformLayout(); |
109 |
|
110 |
} |
111 |
|
112 |
#endregion |
113 |
|
114 |
private System.Windows.Forms.Label lblValue; |
115 |
private System.Windows.Forms.Button btnOK; |
116 |
private System.Windows.Forms.Button btnCancel; |
117 |
private System.Windows.Forms.Button btnCopyvaluetoClipboard; |
118 |
private System.Windows.Forms.MaskedHexBox txtValue; |
119 |
} |
120 |
} |