namespace RomCheater.Docking.MemorySearch
{
partial class PatchAdder
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.lblAddress = new System.Windows.Forms.Label();
this.txtAddress = new System.Windows.Forms.MaskedHexBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.comboDataBitSize = new System.Windows.Forms.ComboBox();
this.chkIsUnsigned = new System.Windows.Forms.CheckBox();
this.lblDataType = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// lblAddress
//
this.lblAddress.AutoSize = true;
this.lblAddress.Location = new System.Drawing.Point(4, 15);
this.lblAddress.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.lblAddress.Name = "lblAddress";
this.lblAddress.Size = new System.Drawing.Size(88, 18);
this.lblAddress.TabIndex = 0;
this.lblAddress.Text = "Address:";
//
// txtAddress
//
this.txtAddress.isAddressMask = true;
this.txtAddress.Location = new System.Drawing.Point(100, 12);
this.txtAddress.MaxLength = 8;
this.txtAddress.Name = "txtAddress";
this.txtAddress.ReadOnly = true;
this.txtAddress.Size = new System.Drawing.Size(374, 26);
this.txtAddress.TabIndex = 2;
this.txtAddress.TextLength = 8;
//
// btnOK
//
this.btnOK.AutoSize = true;
this.btnOK.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnOK.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnOK.Location = new System.Drawing.Point(489, 12);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(34, 26);
this.btnOK.TabIndex = 4;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.AutoSize = true;
this.btnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
this.btnCancel.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnCancel.Location = new System.Drawing.Point(538, 12);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(66, 26);
this.btnCancel.TabIndex = 5;
this.btnCancel.Text = "CANCEL";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// comboDataBitSize
//
this.comboDataBitSize.FormattingEnabled = true;
this.comboDataBitSize.Location = new System.Drawing.Point(158, 55);
this.comboDataBitSize.Name = "comboDataBitSize";
this.comboDataBitSize.Size = new System.Drawing.Size(166, 26);
this.comboDataBitSize.TabIndex = 6;
this.comboDataBitSize.SelectedIndexChanged += new System.EventHandler(this.comboDataBitSize_SelectedIndexChanged);
//
// chkIsUnsigned
//
this.chkIsUnsigned.AutoSize = true;
this.chkIsUnsigned.Location = new System.Drawing.Point(346, 57);
this.chkIsUnsigned.Name = "chkIsUnsigned";
this.chkIsUnsigned.Size = new System.Drawing.Size(137, 22);
this.chkIsUnsigned.TabIndex = 7;
this.chkIsUnsigned.Text = "Is Unsigned";
this.chkIsUnsigned.UseVisualStyleBackColor = true;
this.chkIsUnsigned.CheckedChanged += new System.EventHandler(this.chkIsUnsigned_CheckedChanged);
//
// lblDataType
//
this.lblDataType.AutoSize = true;
this.lblDataType.Location = new System.Drawing.Point(4, 58);
this.lblDataType.Name = "lblDataType";
this.lblDataType.Size = new System.Drawing.Size(148, 18);
this.lblDataType.TabIndex = 8;
this.lblDataType.Text = "Data Bit Size:";
//
// PatchAdder
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 18F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(616, 96);
this.Controls.Add(this.lblDataType);
this.Controls.Add(this.chkIsUnsigned);
this.Controls.Add(this.comboDataBitSize);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.txtAddress);
this.Controls.Add(this.lblAddress);
this.Font = new System.Drawing.Font("Courier New", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.KeyPreview = true;
this.Margin = new System.Windows.Forms.Padding(5, 4, 5, 4);
this.Name = "PatchAdder";
this.Text = "Patch Adder";
this.Load += new System.EventHandler(this.SearchPatcher_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.PatchAdder_KeyDown);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label lblAddress;
private System.Windows.Forms.MaskedHexBox txtAddress;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.ComboBox comboDataBitSize;
private System.Windows.Forms.CheckBox chkIsUnsigned;
private System.Windows.Forms.Label lblDataType;
}
}