namespace Desktop { partial class DebuggerForm { /// /// 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() { lblAF = new Label(); lblBC = new Label(); lblDE = new Label(); lblHL = new Label(); lblPC = new Label(); lblSP = new Label(); lblFlags = new Label(); lblTStates = new Label(); txtMemoryStart = new TextBox(); btnStep = new Button(); btnRun = new Button(); btnRefreshMemory = new Button(); txtMemoryView = new RichTextBox(); lstDisassembly = new ListBox(); lstStack = new ListBox(); btnExit = new Button(); SuspendLayout(); // // lblAF // lblAF.AutoSize = true; lblAF.Location = new Point(12, 9); lblAF.Name = "lblAF"; lblAF.Size = new Size(33, 25); lblAF.TabIndex = 0; lblAF.Text = "AF"; // // lblBC // lblBC.AutoSize = true; lblBC.Location = new Point(11, 60); lblBC.Name = "lblBC"; lblBC.Size = new Size(33, 25); lblBC.TabIndex = 1; lblBC.Text = "BC"; // // lblDE // lblDE.AutoSize = true; lblDE.Location = new Point(12, 125); lblDE.Name = "lblDE"; lblDE.Size = new Size(34, 25); lblDE.TabIndex = 2; lblDE.Text = "DE"; // // lblHL // lblHL.AutoSize = true; lblHL.Location = new Point(13, 187); lblHL.Name = "lblHL"; lblHL.Size = new Size(33, 25); lblHL.TabIndex = 3; lblHL.Text = "HL"; // // lblPC // lblPC.AutoSize = true; lblPC.Location = new Point(11, 250); lblPC.Name = "lblPC"; lblPC.Size = new Size(33, 25); lblPC.TabIndex = 4; lblPC.Text = "PC"; // // lblSP // lblSP.AutoSize = true; lblSP.Location = new Point(11, 315); lblSP.Name = "lblSP"; lblSP.Size = new Size(32, 25); lblSP.TabIndex = 6; lblSP.Text = "SP"; // // lblFlags // lblFlags.AutoSize = true; lblFlags.Location = new Point(110, 65); lblFlags.Name = "lblFlags"; lblFlags.Size = new Size(53, 25); lblFlags.TabIndex = 7; lblFlags.Text = "Flags"; // // lblTStates // lblTStates.AutoSize = true; lblTStates.Location = new Point(110, 9); lblTStates.Name = "lblTStates"; lblTStates.Size = new Size(75, 25); lblTStates.TabIndex = 8; lblTStates.Text = "T-States"; // // txtMemoryStart // txtMemoryStart.Location = new Point(298, 12); txtMemoryStart.Name = "txtMemoryStart"; txtMemoryStart.Size = new Size(150, 31); txtMemoryStart.TabIndex = 9; txtMemoryStart.Text = "Memory Start"; txtMemoryStart.TextAlign = HorizontalAlignment.Center; txtMemoryStart.TextChanged += btnRefreshMemory_Click; // // btnStep // btnStep.Location = new Point(11, 394); btnStep.Name = "btnStep"; btnStep.Size = new Size(112, 34); btnStep.TabIndex = 12; btnStep.Text = "Step"; btnStep.UseVisualStyleBackColor = true; btnStep.Click += btnStep_Click; // // btnRun // btnRun.Location = new Point(152, 394); btnRun.Name = "btnRun"; btnRun.Size = new Size(112, 34); btnRun.TabIndex = 13; btnRun.Text = "Run"; btnRun.UseVisualStyleBackColor = true; // // btnRefreshMemory // btnRefreshMemory.Location = new Point(470, 9); btnRefreshMemory.Name = "btnRefreshMemory"; btnRefreshMemory.Size = new Size(112, 34); btnRefreshMemory.TabIndex = 14; btnRefreshMemory.Text = "Refresh Memory"; btnRefreshMemory.UseVisualStyleBackColor = true; btnRefreshMemory.Click += btnRefreshMemory_Click; // // txtMemoryView // txtMemoryView.Location = new Point(110, 100); txtMemoryView.Name = "txtMemoryView"; txtMemoryView.Size = new Size(472, 266); txtMemoryView.TabIndex = 15; txtMemoryView.Text = "Memory View Window"; // // lstDisassembly // lstDisassembly.FormattingEnabled = true; lstDisassembly.ItemHeight = 25; lstDisassembly.Location = new Point(635, 12); lstDisassembly.Name = "lstDisassembly"; lstDisassembly.Size = new Size(231, 354); lstDisassembly.TabIndex = 16; // // lstStack // lstStack.FormattingEnabled = true; lstStack.ItemHeight = 25; lstStack.Location = new Point(904, 12); lstStack.Name = "lstStack"; lstStack.Size = new Size(231, 354); lstStack.TabIndex = 17; // // btnExit // btnExit.Location = new Point(1023, 391); btnExit.Name = "btnExit"; btnExit.Size = new Size(112, 34); btnExit.TabIndex = 18; btnExit.Text = "Full Exit"; btnExit.UseVisualStyleBackColor = true; btnExit.Click += btnExit_Click; // // DebuggerForm // AutoScaleDimensions = new SizeF(10F, 25F); AutoScaleMode = AutoScaleMode.Font; ClientSize = new Size(1157, 437); Controls.Add(btnExit); Controls.Add(lstStack); Controls.Add(lstDisassembly); Controls.Add(txtMemoryView); Controls.Add(btnRefreshMemory); Controls.Add(btnRun); Controls.Add(btnStep); Controls.Add(txtMemoryStart); Controls.Add(lblTStates); Controls.Add(lblFlags); Controls.Add(lblSP); Controls.Add(lblPC); Controls.Add(lblHL); Controls.Add(lblDE); Controls.Add(lblBC); Controls.Add(lblAF); Name = "DebuggerForm"; Text = "DebuggerForm"; ResumeLayout(false); PerformLayout(); } #endregion private Label lblAF; private Label lblBC; private Label lblDE; private Label lblHL; private Label lblPC; private Label lblSP; private Label lblFlags; private Label lblTStates; private TextBox txtMemoryStart; private Button btnStep; private Button btnRun; private Button btnRefreshMemory; private RichTextBox txtMemoryView; private ListBox lstDisassembly; private ListBox lstStack; private Button btnExit; //private TextBox textBox4; } }