101 lines
3.7 KiB
C#
101 lines
3.7 KiB
C#
|
namespace Mesen.GUI.Debugger
|
|||
|
{
|
|||
|
partial class frmGoToLine
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if(disposing && (components != null)) {
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|||
|
this.lblAddress = new System.Windows.Forms.Label();
|
|||
|
this.txtAddress = new System.Windows.Forms.TextBox();
|
|||
|
this.tableLayoutPanel1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// baseConfigPanel
|
|||
|
//
|
|||
|
this.baseConfigPanel.Location = new System.Drawing.Point(0, 28);
|
|||
|
this.baseConfigPanel.Size = new System.Drawing.Size(219, 29);
|
|||
|
//
|
|||
|
// tableLayoutPanel1
|
|||
|
//
|
|||
|
this.tableLayoutPanel1.ColumnCount = 2;
|
|||
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
|
|||
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
this.tableLayoutPanel1.Controls.Add(this.lblAddress, 0, 0);
|
|||
|
this.tableLayoutPanel1.Controls.Add(this.txtAddress, 1, 0);
|
|||
|
this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|||
|
this.tableLayoutPanel1.RowCount = 2;
|
|||
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle());
|
|||
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
|
|||
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(219, 57);
|
|||
|
this.tableLayoutPanel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// lblAddress
|
|||
|
//
|
|||
|
this.lblAddress.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
|||
|
this.lblAddress.AutoSize = true;
|
|||
|
this.lblAddress.Location = new System.Drawing.Point(3, 6);
|
|||
|
this.lblAddress.Name = "lblAddress";
|
|||
|
this.lblAddress.Size = new System.Drawing.Size(48, 13);
|
|||
|
this.lblAddress.TabIndex = 0;
|
|||
|
this.lblAddress.Text = "Address:";
|
|||
|
//
|
|||
|
// txtAddress
|
|||
|
//
|
|||
|
this.txtAddress.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.txtAddress.Location = new System.Drawing.Point(57, 3);
|
|||
|
this.txtAddress.MaxLength = 4;
|
|||
|
this.txtAddress.Name = "txtAddress";
|
|||
|
this.txtAddress.Size = new System.Drawing.Size(159, 20);
|
|||
|
this.txtAddress.TabIndex = 1;
|
|||
|
//
|
|||
|
// frmGoToLine
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(219, 57);
|
|||
|
this.Controls.Add(this.tableLayoutPanel1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|||
|
this.Name = "frmGoToLine";
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "Go To...";
|
|||
|
this.Controls.SetChildIndex(this.tableLayoutPanel1, 0);
|
|||
|
this.Controls.SetChildIndex(this.baseConfigPanel, 0);
|
|||
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|||
|
this.tableLayoutPanel1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|||
|
private System.Windows.Forms.Label lblAddress;
|
|||
|
private System.Windows.Forms.TextBox txtAddress;
|
|||
|
}
|
|||
|
}
|