Exemplo n.º 1
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.listBoxRegisters = new System.Windows.Forms.ListBox();
            this.textBoxGotoAddress = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.panelMemory = new System.Windows.Forms.Panel();
            this.memoryControl = new AbortHandlerClient.MemoryControl();
            this.vScrollBarMemory = new System.Windows.Forms.VScrollBar();
            this.mainMenu1 = new System.Windows.Forms.MainMenu();
            this.menuItem_File = new System.Windows.Forms.MenuItem();
            this.menuItem_LoadSym = new System.Windows.Forms.MenuItem();
            this.menuItem_SaveMemory = new System.Windows.Forms.MenuItem();
            this.menuItem_Exit = new System.Windows.Forms.MenuItem();
            this.menuItem_View = new System.Windows.Forms.MenuItem();
            this.menuItem_Bytes = new System.Windows.Forms.MenuItem();
            this.menuItem_Shorts = new System.Windows.Forms.MenuItem();
            this.menuItem_Words = new System.Windows.Forms.MenuItem();
            this.menuItem_Disassembly = new System.Windows.Forms.MenuItem();
            this.menuItem_HeapBlocks = new System.Windows.Forms.MenuItem();
            this.menuItem_Window = new System.Windows.Forms.MenuItem();
            this.menuItem_Window_New = new System.Windows.Forms.MenuItem();
            this.groupBox1.SuspendLayout();
            this.panelMemory.SuspendLayout();
            this.SuspendLayout();
            // 
            // groupBox1
            // 
            this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
                | System.Windows.Forms.AnchorStyles.Left)));
            this.groupBox1.Controls.Add(this.listBoxRegisters);
            this.groupBox1.Location = new System.Drawing.Point(8, 8);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(200, 480);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Registers";
            // 
            // listBoxRegisters
            // 
            this.listBoxRegisters.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listBoxRegisters.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.listBoxRegisters.ItemHeight = 14;
            this.listBoxRegisters.Location = new System.Drawing.Point(3, 16);
            this.listBoxRegisters.Name = "listBoxRegisters";
            this.listBoxRegisters.Size = new System.Drawing.Size(194, 452);
            this.listBoxRegisters.TabIndex = 0;
            this.listBoxRegisters.DoubleClick += new System.EventHandler(this.listBoxRegisters_DoubleClick);
            // 
            // textBoxGotoAddress
            // 
            this.textBoxGotoAddress.Location = new System.Drawing.Point(320, 16);
            this.textBoxGotoAddress.Name = "textBoxGotoAddress";
            this.textBoxGotoAddress.Size = new System.Drawing.Size(248, 20);
            this.textBoxGotoAddress.TabIndex = 3;
            this.textBoxGotoAddress.Text = "";
            this.textBoxGotoAddress.KeyUp += new System.Windows.Forms.KeyEventHandler(this.textBoxGotoAddress_KeyUp);
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(224, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(88, 23);
            this.label1.TabIndex = 4;
            this.label1.Text = "Go To Address:";
            this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // panelMemory
            // 
            this.panelMemory.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
                | System.Windows.Forms.AnchorStyles.Left) 
                | System.Windows.Forms.AnchorStyles.Right)));
            this.panelMemory.BackColor = System.Drawing.SystemColors.Window;
            this.panelMemory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.panelMemory.Controls.Add(this.memoryControl);
            this.panelMemory.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.panelMemory.Location = new System.Drawing.Point(216, 48);
            this.panelMemory.Name = "panelMemory";
            this.panelMemory.Size = new System.Drawing.Size(672, 440);
            this.panelMemory.TabIndex = 5;
            // 
            // memoryControl
            // 
            this.memoryControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this.memoryControl.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
            this.memoryControl.Location = new System.Drawing.Point(0, 0);
            this.memoryControl.Name = "memoryControl";
            this.memoryControl.Size = new System.Drawing.Size(668, 436);
            this.memoryControl.TabIndex = 0;
            // 
            // vScrollBarMemory
            // 
            this.vScrollBarMemory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
                | System.Windows.Forms.AnchorStyles.Right)));
            this.vScrollBarMemory.LargeChange = 30;
            this.vScrollBarMemory.Location = new System.Drawing.Point(888, 48);
            this.vScrollBarMemory.Maximum = 250;
            this.vScrollBarMemory.Minimum = -250;
            this.vScrollBarMemory.Name = "vScrollBarMemory";
            this.vScrollBarMemory.Size = new System.Drawing.Size(16, 440);
            this.vScrollBarMemory.TabIndex = 6;
            this.vScrollBarMemory.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBarMemory_Scroll);
            // 
            // mainMenu1
            // 
            this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                      this.menuItem_File,
                                                                                      this.menuItem_View,
                                                                                      this.menuItem_Window});
            // 
            // menuItem_File
            // 
            this.menuItem_File.Index = 0;
            this.menuItem_File.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                          this.menuItem_LoadSym,
                                                                                          this.menuItem_SaveMemory,
                                                                                          this.menuItem_Exit});
            this.menuItem_File.Text = "&File";
            // 
            // menuItem_LoadSym
            // 
            this.menuItem_LoadSym.Index = 0;
            this.menuItem_LoadSym.Text = "Load S&ymdefs...";
            this.menuItem_LoadSym.Click += new System.EventHandler(this.menuItem_LoadSym_Click);
            // 
            // menuItem_SaveMemory
            // 
            this.menuItem_SaveMemory.Index = 1;
            this.menuItem_SaveMemory.Text = "Save Memory...";
            this.menuItem_SaveMemory.Click += new System.EventHandler(this.menuItem_SaveMemory_Click);
            // 
            // menuItem_Exit
            // 
            this.menuItem_Exit.Index = 2;
            this.menuItem_Exit.Text = "E&xit";
            this.menuItem_Exit.Click += new System.EventHandler(this.menuItem_Exit_Click);
            // 
            // menuItem_View
            // 
            this.menuItem_View.Index = 1;
            this.menuItem_View.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                          this.menuItem_Bytes,
                                                                                          this.menuItem_Shorts,
                                                                                          this.menuItem_Words,
                                                                                          this.menuItem_Disassembly,
                                                                                          this.menuItem_HeapBlocks});
            this.menuItem_View.Text = "&View";
            // 
            // menuItem_Bytes
            // 
            this.menuItem_Bytes.Index = 0;
            this.menuItem_Bytes.RadioCheck = true;
            this.menuItem_Bytes.Text = "&Bytes";
            this.menuItem_Bytes.Click += new System.EventHandler(this.menuItem_Bytes_Click);
            // 
            // menuItem_Shorts
            // 
            this.menuItem_Shorts.Index = 1;
            this.menuItem_Shorts.RadioCheck = true;
            this.menuItem_Shorts.Text = "&Shorts";
            this.menuItem_Shorts.Click += new System.EventHandler(this.menuItem_Shorts_Click);
            // 
            // menuItem_Words
            // 
            this.menuItem_Words.Index = 2;
            this.menuItem_Words.RadioCheck = true;
            this.menuItem_Words.Text = "&Words";
            this.menuItem_Words.Click += new System.EventHandler(this.menuItem_Words_Click);
            // 
            // menuItem_Disassembly
            // 
            this.menuItem_Disassembly.Checked = true;
            this.menuItem_Disassembly.Index = 3;
            this.menuItem_Disassembly.RadioCheck = true;
            this.menuItem_Disassembly.Text = "&Disassembly";
            this.menuItem_Disassembly.Click += new System.EventHandler(this.menuItem_Disassembly_Click);
            // 
            // menuItem_HeapBlocks
            // 
            this.menuItem_HeapBlocks.Index = 4;
            this.menuItem_HeapBlocks.Text = "&Heap Blocks";
            this.menuItem_HeapBlocks.Click += new System.EventHandler(this.menuItem_HeapBlocks_Click);
            // 
            // menuItem_Window
            // 
            this.menuItem_Window.Index = 2;
            this.menuItem_Window.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
                                                                                            this.menuItem_Window_New});
            this.menuItem_Window.Text = "&Window";
            // 
            // menuItem_Window_New
            // 
            this.menuItem_Window_New.Index = 0;
            this.menuItem_Window_New.Text = "&New Window";
            this.menuItem_Window_New.Click += new System.EventHandler(this.menuItem_Window_New_Click);
            // 
            // FormAbortHandler
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF( 5, 13 );
            this.ClientSize = new System.Drawing.Size(912, 493);
            this.Controls.Add(this.vScrollBarMemory);
            this.Controls.Add(this.panelMemory);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.textBoxGotoAddress);
            this.Controls.Add(this.groupBox1);
            this.Menu = this.mainMenu1;
            this.Name = "FormAbortHandler";
            this.Text = "Abort Handler Client";
            this.Load += new System.EventHandler(this.FormAbortHandler_Load);
            this.groupBox1.ResumeLayout(false);
            this.panelMemory.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.listBoxRegisters     = new System.Windows.Forms.ListBox();
     this.textBoxGotoAddress   = new System.Windows.Forms.TextBox();
     this.label1               = new System.Windows.Forms.Label();
     this.panelMemory          = new System.Windows.Forms.Panel();
     this.memoryControl        = new AbortHandlerClient.MemoryControl();
     this.vScrollBarMemory     = new System.Windows.Forms.VScrollBar();
     this.mainMenu1            = new System.Windows.Forms.MainMenu();
     this.menuItem_File        = new System.Windows.Forms.MenuItem();
     this.menuItem_LoadSym     = new System.Windows.Forms.MenuItem();
     this.menuItem_SaveMemory  = new System.Windows.Forms.MenuItem();
     this.menuItem_Exit        = new System.Windows.Forms.MenuItem();
     this.menuItem_View        = new System.Windows.Forms.MenuItem();
     this.menuItem_Bytes       = new System.Windows.Forms.MenuItem();
     this.menuItem_Shorts      = new System.Windows.Forms.MenuItem();
     this.menuItem_Words       = new System.Windows.Forms.MenuItem();
     this.menuItem_Disassembly = new System.Windows.Forms.MenuItem();
     this.menuItem_HeapBlocks  = new System.Windows.Forms.MenuItem();
     this.menuItem_Window      = new System.Windows.Forms.MenuItem();
     this.menuItem_Window_New  = new System.Windows.Forms.MenuItem();
     this.groupBox1.SuspendLayout();
     this.panelMemory.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox1.Controls.Add(this.listBoxRegisters);
     this.groupBox1.Location = new System.Drawing.Point(8, 8);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(200, 480);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Registers";
     //
     // listBoxRegisters
     //
     this.listBoxRegisters.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.listBoxRegisters.Font         = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.listBoxRegisters.ItemHeight   = 14;
     this.listBoxRegisters.Location     = new System.Drawing.Point(3, 16);
     this.listBoxRegisters.Name         = "listBoxRegisters";
     this.listBoxRegisters.Size         = new System.Drawing.Size(194, 452);
     this.listBoxRegisters.TabIndex     = 0;
     this.listBoxRegisters.DoubleClick += new System.EventHandler(this.listBoxRegisters_DoubleClick);
     //
     // textBoxGotoAddress
     //
     this.textBoxGotoAddress.Location = new System.Drawing.Point(320, 16);
     this.textBoxGotoAddress.Name     = "textBoxGotoAddress";
     this.textBoxGotoAddress.Size     = new System.Drawing.Size(248, 20);
     this.textBoxGotoAddress.TabIndex = 3;
     this.textBoxGotoAddress.Text     = "";
     this.textBoxGotoAddress.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.textBoxGotoAddress_KeyUp);
     //
     // label1
     //
     this.label1.Location  = new System.Drawing.Point(224, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(88, 23);
     this.label1.TabIndex  = 4;
     this.label1.Text      = "Go To Address:";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panelMemory
     //
     this.panelMemory.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.panelMemory.BackColor   = System.Drawing.SystemColors.Window;
     this.panelMemory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panelMemory.Controls.Add(this.memoryControl);
     this.panelMemory.Font     = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.panelMemory.Location = new System.Drawing.Point(216, 48);
     this.panelMemory.Name     = "panelMemory";
     this.panelMemory.Size     = new System.Drawing.Size(672, 440);
     this.panelMemory.TabIndex = 5;
     //
     // memoryControl
     //
     this.memoryControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.memoryControl.Font     = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
     this.memoryControl.Location = new System.Drawing.Point(0, 0);
     this.memoryControl.Name     = "memoryControl";
     this.memoryControl.Size     = new System.Drawing.Size(668, 436);
     this.memoryControl.TabIndex = 0;
     //
     // vScrollBarMemory
     //
     this.vScrollBarMemory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Right)));
     this.vScrollBarMemory.LargeChange = 30;
     this.vScrollBarMemory.Location    = new System.Drawing.Point(888, 48);
     this.vScrollBarMemory.Maximum     = 250;
     this.vScrollBarMemory.Minimum     = -250;
     this.vScrollBarMemory.Name        = "vScrollBarMemory";
     this.vScrollBarMemory.Size        = new System.Drawing.Size(16, 440);
     this.vScrollBarMemory.TabIndex    = 6;
     this.vScrollBarMemory.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vScrollBarMemory_Scroll);
     //
     // mainMenu1
     //
     this.mainMenu1.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_File,
         this.menuItem_View,
         this.menuItem_Window
     });
     //
     // menuItem_File
     //
     this.menuItem_File.Index = 0;
     this.menuItem_File.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_LoadSym,
         this.menuItem_SaveMemory,
         this.menuItem_Exit
     });
     this.menuItem_File.Text = "&File";
     //
     // menuItem_LoadSym
     //
     this.menuItem_LoadSym.Index  = 0;
     this.menuItem_LoadSym.Text   = "Load S&ymdefs...";
     this.menuItem_LoadSym.Click += new System.EventHandler(this.menuItem_LoadSym_Click);
     //
     // menuItem_SaveMemory
     //
     this.menuItem_SaveMemory.Index  = 1;
     this.menuItem_SaveMemory.Text   = "Save Memory...";
     this.menuItem_SaveMemory.Click += new System.EventHandler(this.menuItem_SaveMemory_Click);
     //
     // menuItem_Exit
     //
     this.menuItem_Exit.Index  = 2;
     this.menuItem_Exit.Text   = "E&xit";
     this.menuItem_Exit.Click += new System.EventHandler(this.menuItem_Exit_Click);
     //
     // menuItem_View
     //
     this.menuItem_View.Index = 1;
     this.menuItem_View.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_Bytes,
         this.menuItem_Shorts,
         this.menuItem_Words,
         this.menuItem_Disassembly,
         this.menuItem_HeapBlocks
     });
     this.menuItem_View.Text = "&View";
     //
     // menuItem_Bytes
     //
     this.menuItem_Bytes.Index      = 0;
     this.menuItem_Bytes.RadioCheck = true;
     this.menuItem_Bytes.Text       = "&Bytes";
     this.menuItem_Bytes.Click     += new System.EventHandler(this.menuItem_Bytes_Click);
     //
     // menuItem_Shorts
     //
     this.menuItem_Shorts.Index      = 1;
     this.menuItem_Shorts.RadioCheck = true;
     this.menuItem_Shorts.Text       = "&Shorts";
     this.menuItem_Shorts.Click     += new System.EventHandler(this.menuItem_Shorts_Click);
     //
     // menuItem_Words
     //
     this.menuItem_Words.Index      = 2;
     this.menuItem_Words.RadioCheck = true;
     this.menuItem_Words.Text       = "&Words";
     this.menuItem_Words.Click     += new System.EventHandler(this.menuItem_Words_Click);
     //
     // menuItem_Disassembly
     //
     this.menuItem_Disassembly.Checked    = true;
     this.menuItem_Disassembly.Index      = 3;
     this.menuItem_Disassembly.RadioCheck = true;
     this.menuItem_Disassembly.Text       = "&Disassembly";
     this.menuItem_Disassembly.Click     += new System.EventHandler(this.menuItem_Disassembly_Click);
     //
     // menuItem_HeapBlocks
     //
     this.menuItem_HeapBlocks.Index  = 4;
     this.menuItem_HeapBlocks.Text   = "&Heap Blocks";
     this.menuItem_HeapBlocks.Click += new System.EventHandler(this.menuItem_HeapBlocks_Click);
     //
     // menuItem_Window
     //
     this.menuItem_Window.Index = 2;
     this.menuItem_Window.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.menuItem_Window_New
     });
     this.menuItem_Window.Text = "&Window";
     //
     // menuItem_Window_New
     //
     this.menuItem_Window_New.Index  = 0;
     this.menuItem_Window_New.Text   = "&New Window";
     this.menuItem_Window_New.Click += new System.EventHandler(this.menuItem_Window_New_Click);
     //
     // FormAbortHandler
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(5, 13);
     this.ClientSize          = new System.Drawing.Size(912, 493);
     this.Controls.Add(this.vScrollBarMemory);
     this.Controls.Add(this.panelMemory);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.textBoxGotoAddress);
     this.Controls.Add(this.groupBox1);
     this.Menu  = this.mainMenu1;
     this.Name  = "FormAbortHandler";
     this.Text  = "Abort Handler Client";
     this.Load += new System.EventHandler(this.FormAbortHandler_Load);
     this.groupBox1.ResumeLayout(false);
     this.panelMemory.ResumeLayout(false);
     this.ResumeLayout(false);
 }