1 |
namespace RomCheater.Docking.MemorySearch |
2 |
{ |
3 |
partial class PatchAdder |
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.txtAddress = new System.Windows.Forms.MaskedHexBox(); |
33 |
this.btnOK = new System.Windows.Forms.Button(); |
34 |
this.btnCancel = new System.Windows.Forms.Button(); |
35 |
this.comboDataBitSize = new System.Windows.Forms.ComboBox(); |
36 |
this.chkIsUnsigned = new System.Windows.Forms.CheckBox(); |
37 |
this.lblDataType = new System.Windows.Forms.Label(); |
38 |
this.SuspendLayout(); |
39 |
// |
40 |
// lblAddress |
41 |
// |
42 |
this.lblAddress.AutoSize = true; |
43 |
this.lblAddress.Location = new System.Drawing.Point(4, 15); |
44 |
this.lblAddress.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0); |
45 |
this.lblAddress.Name = "lblAddress"; |
46 |
this.lblAddress.Size = new System.Drawing.Size(88, 18); |
47 |
this.lblAddress.TabIndex = 0; |
48 |
this.lblAddress.Text = "Address:"; |
49 |
// |
50 |
// txtAddress |
51 |
// |
52 |
this.txtAddress.isAddressMask = true; |
53 |
this.txtAddress.Location = new System.Drawing.Point(100, 12); |
54 |
this.txtAddress.MaxLength = 8; |
55 |
this.txtAddress.Name = "txtAddress"; |
56 |
this.txtAddress.ReadOnly = true; |
57 |
this.txtAddress.Size = new System.Drawing.Size(374, 26); |
58 |
this.txtAddress.TabIndex = 2; |
59 |
this.txtAddress.TextLength = 8; |
60 |
// |
61 |
// btnOK |
62 |
// |
63 |
this.btnOK.AutoSize = true; |
64 |
this.btnOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
65 |
this.btnOK.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
66 |
this.btnOK.Location = new System.Drawing.Point(489, 12); |
67 |
this.btnOK.Name = "btnOK"; |
68 |
this.btnOK.Size = new System.Drawing.Size(34, 26); |
69 |
this.btnOK.TabIndex = 4; |
70 |
this.btnOK.Text = "OK"; |
71 |
this.btnOK.UseVisualStyleBackColor = true; |
72 |
this.btnOK.Click += new System.EventHandler(this.btnOK_Click); |
73 |
// |
74 |
// btnCancel |
75 |
// |
76 |
this.btnCancel.AutoSize = true; |
77 |
this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; |
78 |
this.btnCancel.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
79 |
this.btnCancel.Location = new System.Drawing.Point(538, 12); |
80 |
this.btnCancel.Name = "btnCancel"; |
81 |
this.btnCancel.Size = new System.Drawing.Size(66, 26); |
82 |
this.btnCancel.TabIndex = 5; |
83 |
this.btnCancel.Text = "CANCEL"; |
84 |
this.btnCancel.UseVisualStyleBackColor = true; |
85 |
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); |
86 |
// |
87 |
// comboDataBitSize |
88 |
// |
89 |
this.comboDataBitSize.FormattingEnabled = true; |
90 |
this.comboDataBitSize.Location = new System.Drawing.Point(158, 55); |
91 |
this.comboDataBitSize.Name = "comboDataBitSize"; |
92 |
this.comboDataBitSize.Size = new System.Drawing.Size(166, 26); |
93 |
this.comboDataBitSize.TabIndex = 6; |
94 |
this.comboDataBitSize.SelectedIndexChanged += new System.EventHandler(this.comboDataBitSize_SelectedIndexChanged); |
95 |
// |
96 |
// chkIsUnsigned |
97 |
// |
98 |
this.chkIsUnsigned.AutoSize = true; |
99 |
this.chkIsUnsigned.Location = new System.Drawing.Point(346, 57); |
100 |
this.chkIsUnsigned.Name = "chkIsUnsigned"; |
101 |
this.chkIsUnsigned.Size = new System.Drawing.Size(137, 22); |
102 |
this.chkIsUnsigned.TabIndex = 7; |
103 |
this.chkIsUnsigned.Text = "Is Unsigned"; |
104 |
this.chkIsUnsigned.UseVisualStyleBackColor = true; |
105 |
this.chkIsUnsigned.CheckedChanged += new System.EventHandler(this.chkIsUnsigned_CheckedChanged); |
106 |
// |
107 |
// lblDataType |
108 |
// |
109 |
this.lblDataType.AutoSize = true; |
110 |
this.lblDataType.Location = new System.Drawing.Point(4, 58); |
111 |
this.lblDataType.Name = "lblDataType"; |
112 |
this.lblDataType.Size = new System.Drawing.Size(148, 18); |
113 |
this.lblDataType.TabIndex = 8; |
114 |
this.lblDataType.Text = "Data Bit Size:"; |
115 |
// |
116 |
// PatchAdder |
117 |
// |
118 |
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F); |
119 |
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
120 |
this.ClientSize = new System.Drawing.Size(616, 96); |
121 |
this.Controls.Add(this.lblDataType); |
122 |
this.Controls.Add(this.chkIsUnsigned); |
123 |
this.Controls.Add(this.comboDataBitSize); |
124 |
this.Controls.Add(this.btnCancel); |
125 |
this.Controls.Add(this.btnOK); |
126 |
this.Controls.Add(this.txtAddress); |
127 |
this.Controls.Add(this.lblAddress); |
128 |
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); |
129 |
this.KeyPreview = true; |
130 |
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4); |
131 |
this.Name = "PatchAdder"; |
132 |
this.Text = "Patch Adder"; |
133 |
this.Load += new System.EventHandler(this.SearchPatcher_Load); |
134 |
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatchAdder_KeyDown); |
135 |
this.ResumeLayout(false); |
136 |
this.PerformLayout(); |
137 |
|
138 |
} |
139 |
|
140 |
#endregion |
141 |
|
142 |
private System.Windows.Forms.Label lblAddress; |
143 |
private System.Windows.Forms.MaskedHexBox txtAddress; |
144 |
private System.Windows.Forms.Button btnOK; |
145 |
private System.Windows.Forms.Button btnCancel; |
146 |
private System.Windows.Forms.ComboBox comboDataBitSize; |
147 |
private System.Windows.Forms.CheckBox chkIsUnsigned; |
148 |
private System.Windows.Forms.Label lblDataType; |
149 |
} |
150 |
} |