namespace BizHawk.Client.EmuHawk
{
partial class AddBreakpointDialog
{
///
/// 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.components = new System.ComponentModel.Container();
this.AddBtn = new System.Windows.Forms.Button();
this.BreakpointTypeGroupbox = new System.Windows.Forms.GroupBox();
this.ExecuteRadio = new System.Windows.Forms.RadioButton();
this.WriteRadio = new System.Windows.Forms.RadioButton();
this.ReadRadio = new System.Windows.Forms.RadioButton();
this.label1 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.CancelBtn = new System.Windows.Forms.Button();
this.AddressBox = new BizHawk.Client.EmuHawk.HexTextBox();
this.label2 = new System.Windows.Forms.Label();
this.AddressMaskBox = new BizHawk.Client.EmuHawk.HexTextBox();
this.BreakpointTypeGroupbox.SuspendLayout();
this.SuspendLayout();
//
// AddBtn
//
this.AddBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.AddBtn.Location = new System.Drawing.Point(152, 115);
this.AddBtn.Name = "AddBtn";
this.AddBtn.Size = new System.Drawing.Size(60, 23);
this.AddBtn.TabIndex = 100;
this.AddBtn.Text = "&Add";
this.AddBtn.UseVisualStyleBackColor = true;
this.AddBtn.Click += new System.EventHandler(this.AddButton_Click);
//
// BreakpointTypeGroupbox
//
this.BreakpointTypeGroupbox.Controls.Add(this.ExecuteRadio);
this.BreakpointTypeGroupbox.Controls.Add(this.WriteRadio);
this.BreakpointTypeGroupbox.Controls.Add(this.ReadRadio);
this.BreakpointTypeGroupbox.Location = new System.Drawing.Point(16, 57);
this.BreakpointTypeGroupbox.Name = "BreakpointTypeGroupbox";
this.BreakpointTypeGroupbox.Size = new System.Drawing.Size(196, 52);
this.BreakpointTypeGroupbox.TabIndex = 3;
this.BreakpointTypeGroupbox.TabStop = false;
//
// ExecuteRadio
//
this.ExecuteRadio.AutoSize = true;
this.ExecuteRadio.Location = new System.Drawing.Point(119, 19);
this.ExecuteRadio.Name = "ExecuteRadio";
this.ExecuteRadio.Size = new System.Drawing.Size(64, 17);
this.ExecuteRadio.TabIndex = 12;
this.ExecuteRadio.Text = "Execute";
this.ExecuteRadio.UseVisualStyleBackColor = true;
//
// WriteRadio
//
this.WriteRadio.AutoSize = true;
this.WriteRadio.Location = new System.Drawing.Point(63, 19);
this.WriteRadio.Name = "WriteRadio";
this.WriteRadio.Size = new System.Drawing.Size(50, 17);
this.WriteRadio.TabIndex = 11;
this.WriteRadio.Text = "Write";
this.WriteRadio.UseVisualStyleBackColor = true;
//
// ReadRadio
//
this.ReadRadio.AutoSize = true;
this.ReadRadio.Checked = true;
this.ReadRadio.Location = new System.Drawing.Point(6, 19);
this.ReadRadio.Name = "ReadRadio";
this.ReadRadio.Size = new System.Drawing.Size(51, 17);
this.ReadRadio.TabIndex = 10;
this.ReadRadio.TabStop = true;
this.ReadRadio.Text = "Read";
this.ReadRadio.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(59, 13);
this.label1.TabIndex = 4;
this.label1.Text = "Address 0x";
//
// CancelBtn
//
this.CancelBtn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.CancelBtn.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBtn.Location = new System.Drawing.Point(83, 115);
this.CancelBtn.Name = "CancelBtn";
this.CancelBtn.Size = new System.Drawing.Size(60, 23);
this.CancelBtn.TabIndex = 101;
this.CancelBtn.Text = "&Cancel";
this.CancelBtn.UseVisualStyleBackColor = true;
this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
//
// AddressBox
//
this.AddressBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.AddressBox.Location = new System.Drawing.Point(77, 5);
this.AddressBox.Name = "AddressBox";
this.AddressBox.Nullable = false;
this.AddressBox.Size = new System.Drawing.Size(135, 20);
this.AddressBox.TabIndex = 1;
this.AddressBox.Text = "0";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(13, 32);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(47, 13);
this.label2.TabIndex = 5;
this.label2.Text = "Mask 0x";
//
// AddressMaskBox
//
this.AddressMaskBox.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
this.AddressMaskBox.Location = new System.Drawing.Point(77, 31);
this.AddressMaskBox.Name = "AddressMaskBox";
this.AddressMaskBox.Nullable = false;
this.AddressMaskBox.Size = new System.Drawing.Size(135, 20);
this.AddressMaskBox.TabIndex = 2;
this.AddressMaskBox.Text = "FFFFFFFF";
//
// AddBreakpointDialog
//
this.AcceptButton = this.AddBtn;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelBtn;
this.ClientSize = new System.Drawing.Size(224, 146);
this.Controls.Add(this.AddressMaskBox);
this.Controls.Add(this.label2);
this.Controls.Add(this.CancelBtn);
this.Controls.Add(this.label1);
this.Controls.Add(this.AddressBox);
this.Controls.Add(this.BreakpointTypeGroupbox);
this.Controls.Add(this.AddBtn);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "AddBreakpointDialog";
this.ShowIcon = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Add Breakpoint";
this.Load += new System.EventHandler(this.AddBreakpointDialog_Load);
this.BreakpointTypeGroupbox.ResumeLayout(false);
this.BreakpointTypeGroupbox.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button AddBtn;
private System.Windows.Forms.GroupBox BreakpointTypeGroupbox;
private System.Windows.Forms.RadioButton ExecuteRadio;
private System.Windows.Forms.RadioButton WriteRadio;
private System.Windows.Forms.RadioButton ReadRadio;
private HexTextBox AddressBox;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.Button CancelBtn;
private System.Windows.Forms.Label label2;
private HexTextBox AddressMaskBox;
}
}