144 lines
6.6 KiB
C#
144 lines
6.6 KiB
C#
|
namespace ShiftOS.Modding.VirtualMachine
|
|||
|
{
|
|||
|
partial class Form1
|
|||
|
{
|
|||
|
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
|
|||
|
this.vMToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.openBinaryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.debugToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.viewStackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.viewRegistersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.viewMemoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|||
|
this.screen = new System.Windows.Forms.Panel();
|
|||
|
this.menuStrip1.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// menuStrip1
|
|||
|
//
|
|||
|
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.vMToolStripMenuItem,
|
|||
|
this.debugToolStripMenuItem});
|
|||
|
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.menuStrip1.Name = "menuStrip1";
|
|||
|
this.menuStrip1.Size = new System.Drawing.Size(448, 24);
|
|||
|
this.menuStrip1.TabIndex = 0;
|
|||
|
this.menuStrip1.Text = "menuStrip1";
|
|||
|
//
|
|||
|
// vMToolStripMenuItem
|
|||
|
//
|
|||
|
this.vMToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.openBinaryToolStripMenuItem,
|
|||
|
this.exitToolStripMenuItem});
|
|||
|
this.vMToolStripMenuItem.Name = "vMToolStripMenuItem";
|
|||
|
this.vMToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
|
|||
|
this.vMToolStripMenuItem.Text = "VM";
|
|||
|
//
|
|||
|
// openBinaryToolStripMenuItem
|
|||
|
//
|
|||
|
this.openBinaryToolStripMenuItem.Name = "openBinaryToolStripMenuItem";
|
|||
|
this.openBinaryToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|||
|
this.openBinaryToolStripMenuItem.Text = "Open binary";
|
|||
|
this.openBinaryToolStripMenuItem.Click += new System.EventHandler(this.openBinaryToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// exitToolStripMenuItem
|
|||
|
//
|
|||
|
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
|
|||
|
this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|||
|
this.exitToolStripMenuItem.Text = "Exit";
|
|||
|
this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
|
|||
|
//
|
|||
|
// debugToolStripMenuItem
|
|||
|
//
|
|||
|
this.debugToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|||
|
this.viewStackToolStripMenuItem,
|
|||
|
this.viewRegistersToolStripMenuItem,
|
|||
|
this.viewMemoryToolStripMenuItem});
|
|||
|
this.debugToolStripMenuItem.Name = "debugToolStripMenuItem";
|
|||
|
this.debugToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
|
|||
|
this.debugToolStripMenuItem.Text = "Debug";
|
|||
|
//
|
|||
|
// viewStackToolStripMenuItem
|
|||
|
//
|
|||
|
this.viewStackToolStripMenuItem.Name = "viewStackToolStripMenuItem";
|
|||
|
this.viewStackToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
|||
|
this.viewStackToolStripMenuItem.Text = "View stack";
|
|||
|
//
|
|||
|
// viewRegistersToolStripMenuItem
|
|||
|
//
|
|||
|
this.viewRegistersToolStripMenuItem.Name = "viewRegistersToolStripMenuItem";
|
|||
|
this.viewRegistersToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
|||
|
this.viewRegistersToolStripMenuItem.Text = "View registers";
|
|||
|
//
|
|||
|
// viewMemoryToolStripMenuItem
|
|||
|
//
|
|||
|
this.viewMemoryToolStripMenuItem.Name = "viewMemoryToolStripMenuItem";
|
|||
|
this.viewMemoryToolStripMenuItem.Size = new System.Drawing.Size(147, 22);
|
|||
|
this.viewMemoryToolStripMenuItem.Text = "View memory";
|
|||
|
//
|
|||
|
// screen
|
|||
|
//
|
|||
|
this.screen.BackColor = System.Drawing.Color.Black;
|
|||
|
this.screen.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.screen.Location = new System.Drawing.Point(0, 24);
|
|||
|
this.screen.Name = "screen";
|
|||
|
this.screen.Size = new System.Drawing.Size(448, 267);
|
|||
|
this.screen.TabIndex = 1;
|
|||
|
this.screen.Tag = "keepbg";
|
|||
|
//
|
|||
|
// Form1
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.Controls.Add(this.screen);
|
|||
|
this.Controls.Add(this.menuStrip1);
|
|||
|
this.Name = "Form1";
|
|||
|
this.Size = new System.Drawing.Size(448, 291);
|
|||
|
this.menuStrip1.ResumeLayout(false);
|
|||
|
this.menuStrip1.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.MenuStrip menuStrip1;
|
|||
|
private System.Windows.Forms.Panel screen;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem vMToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem openBinaryToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem debugToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem viewStackToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem viewRegistersToolStripMenuItem;
|
|||
|
private System.Windows.Forms.ToolStripMenuItem viewMemoryToolStripMenuItem;
|
|||
|
}
|
|||
|
}
|
|||
|
|