예제 #1
0
 public void Init(int r, int c, int width, int[] items)
 {
     this.SuspendLayout();
     this.Font   = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, (byte)134);
     this.Height = 21 * r + HeadHeight;
     this.Width  = width + ScrollWidth;
     scroll      = new System.Windows.Forms.VScrollBar();
     body        = new System.Windows.Forms.TextBox();
     head        = new System.Windows.Forms.Label();
     CalControls();
     foreach (int v in items)
     {
         cnt += v;
     }
     chars        = items;
     row          = r;
     col          = c;
     buf          = new char[cnt + 2];
     buf[cnt]     = '\r';
     buf[cnt + 1] = '\n';
     data         = new System.Text.StringBuilder();
     this.Controls.Add(scroll);
     this.Controls.Add(body);
     this.Controls.Add(head);
     this.ResumeLayout(false);
 }
예제 #2
0
파일: Game1.cs 프로젝트: RaulPB/videogames
        public Game1(IntPtr drawSurface,
                    System.Windows.Forms.Form parentForm,
                    System.Windows.Forms.PictureBox surfacePictureBox)
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            this.drawSurface = drawSurface;
            this.parentForm = parentForm;
            this.pictureBox = surfacePictureBox;

            graphics.PreparingDeviceSettings +=
                new EventHandler<PreparingDeviceSettingsEventArgs>(
                graphics_PreparingDeviceSettings);

            Mouse.WindowHandle = drawSurface;

            gameForm =
                System.Windows.Forms.Control.FromHandle(this.Window.Handle);
            gameForm.VisibleChanged += new EventHandler(gameForm_VisibleChanged);
            pictureBox.SizeChanged += new EventHandler(pictureBox_SizeChanged);

            vscroll =
                (System.Windows.Forms.VScrollBar)parentForm.Controls["vScrollBar1"];
            hscroll =
                (System.Windows.Forms.HScrollBar)parentForm.Controls["hScrollBar1"];

        }
예제 #3
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TextWindow));
     this.vScrollBar = new System.Windows.Forms.VScrollBar();
     this.SuspendLayout();
     //
     // vScrollBar
     //
     this.vScrollBar.Dock = System.Windows.Forms.DockStyle.Right;
     this.vScrollBar.LargeChange = 1;
     this.vScrollBar.Location = new System.Drawing.Point(278, 0);
     this.vScrollBar.Maximum = 1;
     this.vScrollBar.Minimum = 1;
     this.vScrollBar.Name = "vScrollBar";
     this.vScrollBar.Size = new System.Drawing.Size(17, 239);
     this.vScrollBar.TabIndex = 0;
     this.vScrollBar.Value = 1;
     //
     // TextWindow
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.Controls.Add(this.vScrollBar);
     this.DoubleBuffered = true;
     this.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "TextWindow";
     this.Size = new System.Drawing.Size(295, 239);
     this.ResumeLayout(false);
 }
예제 #4
0
        public Game1(IntPtr drawSurface,
                     System.Windows.Forms.Form parentForm,
                     System.Windows.Forms.PictureBox surfacePictureBox)
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            this.drawSurface = drawSurface;
            this.parentForm  = parentForm;
            this.pictureBox  = surfacePictureBox;

            graphics.PreparingDeviceSettings +=
                new EventHandler <PreparingDeviceSettingsEventArgs>(
                    graphics_PreparingDeviceSettings);

            Mouse.WindowHandle = drawSurface;

            gameForm =
                System.Windows.Forms.Control.FromHandle(this.Window.Handle);
            gameForm.VisibleChanged += new EventHandler(gameForm_VisibleChanged);
            pictureBox.SizeChanged  += new EventHandler(pictureBox_SizeChanged);

            vscroll =
                (System.Windows.Forms.VScrollBar)parentForm.Controls["vScrollBar1"];
            hscroll =
                (System.Windows.Forms.HScrollBar)parentForm.Controls["hScrollBar1"];
        }
예제 #5
0
        public OwnerPaintPanel()
        {
            this.contentSize = new System.Drawing.Size();

            this.panel        = new DoubleBufferedPanel();
            this.panel.Paint += new System.Windows.Forms.PaintEventHandler(panel_Paint);
            this.Controls.Add(this.panel);

            this.barV = new System.Windows.Forms.VScrollBar();
            this.Controls.Add(this.barV);
            this.barH = new System.Windows.Forms.HScrollBar();
            this.Controls.Add(this.barH);

            this.Layout      += MapEditor_Resize;
            this.barH.Scroll += new System.Windows.Forms.ScrollEventHandler(bar_Scroll);
            this.barV.Scroll += new System.Windows.Forms.ScrollEventHandler(bar_Scroll);

            base.MouseWheel       += new System.Windows.Forms.MouseEventHandler(barV_MouseWheel);
            this.panel.MouseWheel += new System.Windows.Forms.MouseEventHandler(barV_MouseWheel);
            this.barV.MouseWheel  += new System.Windows.Forms.MouseEventHandler(barV_MouseWheel);
            this.barH.MouseWheel  += new System.Windows.Forms.MouseEventHandler(barH_MouseWheel);

            this.panel.MouseUp          += new System.Windows.Forms.MouseEventHandler(panel_MouseUp);
            this.panel.MouseDown        += new System.Windows.Forms.MouseEventHandler(panel_MouseDown);
            this.panel.MouseMove        += new System.Windows.Forms.MouseEventHandler(panel_MouseMove);
            this.panel.MouseClick       += new System.Windows.Forms.MouseEventHandler(panel_MouseClick);
            this.panel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(panel_MouseDoubleClick);
            this.panel.MouseWheel       += new System.Windows.Forms.MouseEventHandler(panel_MouseWheel);
            this.panel.MouseHover       += new EventHandler(panel_MouseHover);
            this.panel.MouseLeave       += new EventHandler(panel_MouseLeave);
            this.panel.MouseEnter       += new EventHandler(panel_MouseEnter);

            UpdateScrollbars();
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.hScrollBar = new System.Windows.Forms.HScrollBar();
     this.panel = new System.Windows.Forms.Panel();
     this.vScrollBar = new System.Windows.Forms.VScrollBar();
     this.SuspendLayout();
     //
     // hScrollBar
     //
     this.hScrollBar.Location = new System.Drawing.Point(3, 581);
     this.hScrollBar.Name = "hScrollBar";
     this.hScrollBar.Size = new System.Drawing.Size(776, 17);
     this.hScrollBar.TabIndex = 0;
     this.hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
     //
     // panel
     //
     this.panel.BackColor = System.Drawing.SystemColors.Control;
     this.panel.Location = new System.Drawing.Point(3, 3);
     this.panel.Name = "panel";
     this.panel.Size = new System.Drawing.Size(776, 576);
     this.panel.TabIndex = 1;
     this.panel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel_MouseMove);
     this.panel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel_MouseDown);
     this.panel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.panel_MouseUp);
     //
     // vScrollBar
     //
     this.vScrollBar.Location = new System.Drawing.Point(781, 3);
     this.vScrollBar.Name = "vScrollBar";
     this.vScrollBar.Size = new System.Drawing.Size(17, 576);
     this.vScrollBar.TabIndex = 2;
     this.vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
     //
     // ImagePanelControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.Controls.Add(this.vScrollBar);
     this.Controls.Add(this.panel);
     this.Controls.Add(this.hScrollBar);
     this.Name = "ImagePanelControl";
     this.Size = new System.Drawing.Size(800, 600);
     this.Paint += new System.Windows.Forms.PaintEventHandler(this.ImagePanel_Paint);
     this.Resize += new System.EventHandler(this.ImagePanelControl_Resize);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.picBlank = new System.Windows.Forms.PictureBox();
     this.scrollH = new System.Windows.Forms.HScrollBar();
     this.scrollV = new System.Windows.Forms.VScrollBar();
     ((System.ComponentModel.ISupportInitialize)(this.picBlank)).BeginInit();
     this.SuspendLayout();
     //
     // picBlank
     //
     this.picBlank.BackColor = System.Drawing.SystemColors.Control;
     this.picBlank.Location = new System.Drawing.Point(283, 283);
     this.picBlank.Name = "picBlank";
     this.picBlank.Size = new System.Drawing.Size(17, 17);
     this.picBlank.TabIndex = 5;
     this.picBlank.TabStop = false;
     //
     // scrollH
     //
     this.scrollH.Location = new System.Drawing.Point(0, 283);
     this.scrollH.Name = "scrollH";
     this.scrollH.Size = new System.Drawing.Size(283, 17);
     this.scrollH.TabIndex = 4;
     //
     // scrollV
     //
     this.scrollV.Location = new System.Drawing.Point(283, 0);
     this.scrollV.Name = "scrollV";
     this.scrollV.Size = new System.Drawing.Size(17, 283);
     this.scrollV.TabIndex = 3;
     //
     // ScrollBlank
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.picBlank);
     this.Controls.Add(this.scrollH);
     this.Controls.Add(this.scrollV);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "ScrollBlank";
     this.Size = new System.Drawing.Size(300, 300);
     ((System.ComponentModel.ISupportInitialize)(this.picBlank)).EndInit();
     this.ResumeLayout(false);
 }
예제 #8
0
 private void InitComponents()
 {
     this.SuspendLayout();
     //
     // vscroll
     //
     this.vscroll       = new System.Windows.Forms.VScrollBar();
     this.vscroll.Name  = "vscroll";
     this.vscroll.Width = 16;
     this.vscroll.Dock  = System.Windows.Forms.DockStyle.Right;
     //
     // eblcGlyphList
     //
     this.BackColor   = System.Drawing.Color.White;
     this.MouseWheel += new System.Windows.Forms.MouseEventHandler(eblcGlyphList_MouseWheel);
     this.Controls.Add(vscroll);
     this.ResumeLayout();
 }
예제 #9
0
        /// <summary>
        /// Требуемый метод для поддержки конструктора — не изменяйте
        /// содержимое этого метода с помощью редактора кода.
        /// </summary>
        private void InitializeComponent()
        {
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            components         = new System.ComponentModel.Container();
            vScrollBar         = new System.Windows.Forms.VScrollBar();
            hScrollBar         = new System.Windows.Forms.HScrollBar();
            panel = new System.Windows.Forms.Panel();

            vScrollBar.Visible = false;
            hScrollBar.Visible = false;
            panel.Visible      = false;

            vScrollBar.Anchor =
                System.Windows.Forms.AnchorStyles.Top
                | System.Windows.Forms.AnchorStyles.Right
                | System.Windows.Forms.AnchorStyles.Bottom;

            hScrollBar.Anchor =
                System.Windows.Forms.AnchorStyles.Left
                | System.Windows.Forms.AnchorStyles.Right
                | System.Windows.Forms.AnchorStyles.Bottom;

            this.Controls.Add(vScrollBar);
            this.Controls.Add(hScrollBar);
            this.Controls.Add(panel);

            vScrollBar.Top    = 0;
            vScrollBar.Left   = this.Width - vScrollBar.Width;
            vScrollBar.Height = this.Height;

            hScrollBar.Top   = this.Height - hScrollBar.Height;
            hScrollBar.Left  = 0;
            hScrollBar.Width = this.Width;

            panel.Size   = new System.Drawing.Size(vScrollBar.Width, hScrollBar.Height);
            panel.Anchor =
                System.Windows.Forms.AnchorStyles.Bottom
                | System.Windows.Forms.AnchorStyles.Right;
        }
예제 #10
0
        public LevelEditorGame(IntPtr drawSurface, System.Windows.Forms.Form parentForm, System.Windows.Forms.PictureBox surfacePictureBox)
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            #region Redirects the game1 class methods to the windows form
            this.drawSurface = drawSurface;
            this.parentForm  = parentForm;
            this.pictureBox  = surfacePictureBox;

            graphics.PreparingDeviceSettings += new EventHandler <PreparingDeviceSettingsEventArgs>(graphics_PreparingDeviceSettings);

            Mouse.WindowHandle = drawSurface;
            #endregion

            #region Changes the visibility and size behaviour to the winform
            gameForm = System.Windows.Forms.Control.FromHandle(this.Window.Handle);
            gameForm.VisibleChanged += new EventHandler(gameForm_VisibleChanged);
            pictureBox.SizeChanged  += new EventHandler(pictureBox_SizeChanged);
            #endregion

            vscroll_pctSurface = (System.Windows.Forms.VScrollBar)parentForm.Controls["tabControl_Editor"].Controls["tabPage_Map"].Controls["vScrollBar_pctSurface"];
            hscroll_pctSurface = (System.Windows.Forms.HScrollBar)parentForm.Controls["tabControl_Editor"].Controls["tabPage_Map"].Controls["hScrollBar_pctSurface"];
        }
 /// <summary> 
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel_TemperatureLayout = new System.Windows.Forms.TableLayoutPanel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.panel_Display = new System.Windows.Forms.Panel();
     this.panel_Info = new System.Windows.Forms.Panel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.panel_ColorMotice = new System.Windows.Forms.Panel();
     this.groupBox_ScalingRate = new System.Windows.Forms.GroupBox();
     this.label_Value = new System.Windows.Forms.Label();
     this.vScrollBar_PixelLength = new System.Windows.Forms.VScrollBar();
     this.doubleBufferPanel1 = new Nova.Control.DoubleBufferControl.DoubleBufferPanel();
     this.label_NoneUpdate = new System.Windows.Forms.Label();
     this.label_LastUpdateTimeValue = new System.Windows.Forms.Label();
     this.label_LastUpdateTime = new System.Windows.Forms.Label();
     this.tableLayoutPanel_TemperatureLayout.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel1.SuspendLayout();
     this.groupBox_ScalingRate.SuspendLayout();
     this.doubleBufferPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel_TemperatureLayout
     //
     this.tableLayoutPanel_TemperatureLayout.ColumnCount = 2;
     this.tableLayoutPanel_TemperatureLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel_TemperatureLayout.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 110F));
     this.tableLayoutPanel_TemperatureLayout.Controls.Add(this.panel2, 0, 0);
     this.tableLayoutPanel_TemperatureLayout.Controls.Add(this.panel_Info, 0, 2);
     this.tableLayoutPanel_TemperatureLayout.Controls.Add(this.panel1, 1, 0);
     this.tableLayoutPanel_TemperatureLayout.Controls.Add(this.doubleBufferPanel1, 0, 1);
     this.tableLayoutPanel_TemperatureLayout.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel_TemperatureLayout.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel_TemperatureLayout.Name = "tableLayoutPanel_TemperatureLayout";
     this.tableLayoutPanel_TemperatureLayout.RowCount = 3;
     this.tableLayoutPanel_TemperatureLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel_TemperatureLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 29F));
     this.tableLayoutPanel_TemperatureLayout.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 118F));
     this.tableLayoutPanel_TemperatureLayout.Size = new System.Drawing.Size(475, 350);
     this.tableLayoutPanel_TemperatureLayout.TabIndex = 0;
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.panel_Display);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 3);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(359, 197);
     this.panel2.TabIndex = 0;
     //
     // panel_Display
     //
     this.panel_Display.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.panel_Display.ImeMode = System.Windows.Forms.ImeMode.Off;
     this.panel_Display.Location = new System.Drawing.Point(10, 10);
     this.panel_Display.Name = "panel_Display";
     this.panel_Display.Size = new System.Drawing.Size(338, 178);
     this.panel_Display.TabIndex = 19;
     //
     // panel_Info
     //
     this.tableLayoutPanel_TemperatureLayout.SetColumnSpan(this.panel_Info, 2);
     this.panel_Info.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel_Info.Location = new System.Drawing.Point(3, 235);
     this.panel_Info.Name = "panel_Info";
     this.panel_Info.Size = new System.Drawing.Size(469, 112);
     this.panel_Info.TabIndex = 20;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.panel_ColorMotice);
     this.panel1.Controls.Add(this.groupBox_ScalingRate);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(368, 3);
     this.panel1.Name = "panel1";
     this.tableLayoutPanel_TemperatureLayout.SetRowSpan(this.panel1, 2);
     this.panel1.Size = new System.Drawing.Size(104, 226);
     this.panel1.TabIndex = 20;
     //
     // panel_ColorMotice
     //
     this.panel_ColorMotice.BackColor = System.Drawing.Color.Transparent;
     this.panel_ColorMotice.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel_ColorMotice.Location = new System.Drawing.Point(0, 115);
     this.panel_ColorMotice.Name = "panel_ColorMotice";
     this.panel_ColorMotice.Size = new System.Drawing.Size(104, 111);
     this.panel_ColorMotice.TabIndex = 17;
     //
     // groupBox_ScalingRate
     //
     this.groupBox_ScalingRate.Controls.Add(this.label_Value);
     this.groupBox_ScalingRate.Controls.Add(this.vScrollBar_PixelLength);
     this.groupBox_ScalingRate.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox_ScalingRate.ForeColor = System.Drawing.Color.Black;
     this.groupBox_ScalingRate.Location = new System.Drawing.Point(0, 0);
     this.groupBox_ScalingRate.Name = "groupBox_ScalingRate";
     this.groupBox_ScalingRate.Size = new System.Drawing.Size(104, 115);
     this.groupBox_ScalingRate.TabIndex = 16;
     this.groupBox_ScalingRate.TabStop = false;
     this.groupBox_ScalingRate.Text = "缩放率";
     //
     // label_Value
     //
     this.label_Value.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Value.AutoSize = true;
     this.label_Value.Location = new System.Drawing.Point(31, 99);
     this.label_Value.Name = "label_Value";
     this.label_Value.Size = new System.Drawing.Size(11, 12);
     this.label_Value.TabIndex = 8;
     this.label_Value.Text = "1";
     //
     // vScrollBar_PixelLength
     //
     this.vScrollBar_PixelLength.LargeChange = 1;
     this.vScrollBar_PixelLength.Location = new System.Drawing.Point(4, 18);
     this.vScrollBar_PixelLength.Maximum = 800;
     this.vScrollBar_PixelLength.Minimum = 10;
     this.vScrollBar_PixelLength.Name = "vScrollBar_PixelLength";
     this.vScrollBar_PixelLength.Size = new System.Drawing.Size(20, 90);
     this.vScrollBar_PixelLength.TabIndex = 6;
     this.vScrollBar_PixelLength.Value = 10;
     this.vScrollBar_PixelLength.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_PixelLength_Scroll);
     //
     // doubleBufferPanel1
     //
     this.doubleBufferPanel1.Controls.Add(this.label_NoneUpdate);
     this.doubleBufferPanel1.Controls.Add(this.label_LastUpdateTimeValue);
     this.doubleBufferPanel1.Controls.Add(this.label_LastUpdateTime);
     this.doubleBufferPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.doubleBufferPanel1.Location = new System.Drawing.Point(3, 206);
     this.doubleBufferPanel1.Name = "doubleBufferPanel1";
     this.doubleBufferPanel1.Size = new System.Drawing.Size(359, 23);
     this.doubleBufferPanel1.TabIndex = 21;
     //
     // label_NoneUpdate
     //
     this.label_NoneUpdate.AutoSize = true;
     this.label_NoneUpdate.Location = new System.Drawing.Point(276, 7);
     this.label_NoneUpdate.Name = "label_NoneUpdate";
     this.label_NoneUpdate.Size = new System.Drawing.Size(11, 12);
     this.label_NoneUpdate.TabIndex = 2;
     this.label_NoneUpdate.Text = "0";
     //
     // label_LastUpdateTimeValue
     //
     this.label_LastUpdateTimeValue.AutoSize = true;
     this.label_LastUpdateTimeValue.Location = new System.Drawing.Point(276, 7);
     this.label_LastUpdateTimeValue.Name = "label_LastUpdateTimeValue";
     this.label_LastUpdateTimeValue.Size = new System.Drawing.Size(41, 12);
     this.label_LastUpdateTimeValue.TabIndex = 1;
     this.label_LastUpdateTimeValue.Text = "label1";
     //
     // label_LastUpdateTime
     //
     this.label_LastUpdateTime.AutoSize = true;
     this.label_LastUpdateTime.Location = new System.Drawing.Point(3, 7);
     this.label_LastUpdateTime.Name = "label_LastUpdateTime";
     this.label_LastUpdateTime.Size = new System.Drawing.Size(131, 12);
     this.label_LastUpdateTime.TabIndex = 0;
     this.label_LastUpdateTime.Text = "当前监控数据获取时间:";
     //
     // MarsScreenMonitorDataViewer
     //
     this.BackColor = System.Drawing.Color.AliceBlue;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.Controls.Add(this.tableLayoutPanel_TemperatureLayout);
     this.DoubleBuffered = true;
     this.Name = "MarsScreenMonitorDataViewer";
     this.Size = new System.Drawing.Size(475, 350);
     this.VisibleChanged += new System.EventHandler(this.MarsScreenMonitorDataViewer_VisibleChanged);
     this.tableLayoutPanel_TemperatureLayout.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.groupBox_ScalingRate.ResumeLayout(false);
     this.groupBox_ScalingRate.PerformLayout();
     this.doubleBufferPanel1.ResumeLayout(false);
     this.doubleBufferPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #12
0
        /// <summary>
        /// This method is required for Windows Forms designer support.
        /// Do not change the method contents inside the source code editor. The Forms designer might
        /// not be able to load this method if it was changed manually.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager            resources  = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
            System.Windows.Forms.DataVisualization.Charting.ChartArea chartArea1 = new System.Windows.Forms.DataVisualization.Charting.ChartArea();
            System.Windows.Forms.DataVisualization.Charting.Legend    legend1    = new System.Windows.Forms.DataVisualization.Charting.Legend();
            System.Windows.Forms.DataVisualization.Charting.Series    series1    = new System.Windows.Forms.DataVisualization.Charting.Series();
            this.comboBox1       = new System.Windows.Forms.ComboBox();
            this.comboBox2       = new System.Windows.Forms.ComboBox();
            this.radioButton1    = new System.Windows.Forms.RadioButton();
            this.timer1          = new System.Windows.Forms.Timer(this.components);
            this.serialPort1     = new System.IO.Ports.SerialPort(this.components);
            this.button1         = new System.Windows.Forms.Button();
            this.button2         = new System.Windows.Forms.Button();
            this.button3         = new System.Windows.Forms.Button();
            this.button4         = new System.Windows.Forms.Button();
            this.button5         = new System.Windows.Forms.Button();
            this.button6         = new System.Windows.Forms.Button();
            this.button7         = new System.Windows.Forms.Button();
            this.button8         = new System.Windows.Forms.Button();
            this.button9         = new System.Windows.Forms.Button();
            this.button10        = new System.Windows.Forms.Button();
            this.button11        = new System.Windows.Forms.Button();
            this.button12        = new System.Windows.Forms.Button();
            this.vScrollBar1     = new System.Windows.Forms.VScrollBar();
            this.checkBox1       = new System.Windows.Forms.CheckBox();
            this.timer2          = new System.Windows.Forms.Timer(this.components);
            this.label1          = new System.Windows.Forms.Label();
            this.vScrollBar2     = new System.Windows.Forms.VScrollBar();
            this.vScrollBar3     = new System.Windows.Forms.VScrollBar();
            this.label2          = new System.Windows.Forms.Label();
            this.label3          = new System.Windows.Forms.Label();
            this.textBox1        = new System.Windows.Forms.TextBox();
            this.labelDataSerial = new System.Windows.Forms.Label();
            this.pictureBox1     = new System.Windows.Forms.PictureBox();
            this.pictureBox2     = new System.Windows.Forms.PictureBox();
            this.pictureBox3     = new System.Windows.Forms.PictureBox();
            this.pictureBox4     = new System.Windows.Forms.PictureBox();
            this.pictureBox5     = new System.Windows.Forms.PictureBox();
            this.pictureBox6     = new System.Windows.Forms.PictureBox();
            this.listBox1        = new System.Windows.Forms.ListBox();
            this.checkBox2       = new System.Windows.Forms.CheckBox();
            this.button13        = new System.Windows.Forms.Button();
            this.timer3          = new System.Windows.Forms.Timer(this.components);
            this.button14        = new System.Windows.Forms.Button();
            this.chart1          = new System.Windows.Forms.DataVisualization.Charting.Chart();
            this.button15        = new System.Windows.Forms.Button();
            this.label4          = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).BeginInit();
            this.SuspendLayout();
            //
            // comboBox1
            //
            this.comboBox1.FormattingEnabled = true;
            this.comboBox1.Location          = new System.Drawing.Point(41, 12);
            this.comboBox1.Name                  = "comboBox1";
            this.comboBox1.Size                  = new System.Drawing.Size(121, 21);
            this.comboBox1.TabIndex              = 0;
            this.comboBox1.Text                  = "COMPORT";
            this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.ComboBox1SelectedIndexChanged);
            this.comboBox1.MouseClick           += new System.Windows.Forms.MouseEventHandler(this.ComboBox1MouseClick);
            //
            // comboBox2
            //
            this.comboBox2.FormattingEnabled = true;
            this.comboBox2.Items.AddRange(new object[] {
                "9600",
                "19200",
                "38400",
                "57600",
                "115200"
            });
            this.comboBox2.Location = new System.Drawing.Point(41, 47);
            this.comboBox2.Name     = "comboBox2";
            this.comboBox2.Size     = new System.Drawing.Size(121, 21);
            this.comboBox2.TabIndex = 1;
            this.comboBox2.Text     = "BAUD RATE";
//			this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.ComboBox2SelectedIndexChanged);
            //
            // radioButton1
            //
            this.radioButton1.Location = new System.Drawing.Point(41, 88);
            this.radioButton1.Name     = "radioButton1";
            this.radioButton1.Size     = new System.Drawing.Size(158, 24);
            this.radioButton1.TabIndex = 2;
            this.radioButton1.TabStop  = true;
            this.radioButton1.Text     = "Status:Tidak Terkoneksi";
            this.radioButton1.UseVisualStyleBackColor = true;
            //
            // timer1
            //
            this.timer1.Enabled  = true;
            this.timer1.Interval = 500;
            this.timer1.Tick    += new System.EventHandler(this.Timer1Tick);
            //
            // serialPort1
            //
            this.serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.SerialPort1DataReceived);
            //
            // button1
            //
            this.button1.Location = new System.Drawing.Point(302, 191);
            this.button1.Name     = "button1";
            this.button1.Size     = new System.Drawing.Size(82, 61);
            this.button1.TabIndex = 3;
            this.button1.Text     = "Nyalakan Lampu";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.Button1Click);
            //
            // button2
            //
            this.button2.Location = new System.Drawing.Point(390, 191);
            this.button2.Name     = "button2";
            this.button2.Size     = new System.Drawing.Size(79, 61);
            this.button2.TabIndex = 4;
            this.button2.Text     = "Matikan Lampu";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.Button2Click);
            //
            // button3
            //
            this.button3.Location = new System.Drawing.Point(41, 158);
            this.button3.Name     = "button3";
            this.button3.Size     = new System.Drawing.Size(100, 32);
            this.button3.TabIndex = 5;
            this.button3.Text     = "Hubungkan";
            this.button3.UseVisualStyleBackColor = true;
            this.button3.Click += new System.EventHandler(this.Button3Click);
            //
            // button4
            //
            this.button4.Location = new System.Drawing.Point(41, 196);
            this.button4.Name     = "button4";
            this.button4.Size     = new System.Drawing.Size(100, 29);
            this.button4.TabIndex = 6;
            this.button4.Text     = "Putuskan";
            this.button4.UseVisualStyleBackColor = true;
            this.button4.Click += new System.EventHandler(this.Button4Click);
            //
            // button5
            //
            this.button5.Location = new System.Drawing.Point(313, 20);
            this.button5.Name     = "button5";
            this.button5.Size     = new System.Drawing.Size(75, 23);
            this.button5.TabIndex = 7;
            this.button5.Text     = "L1 ON";
            this.button5.UseVisualStyleBackColor = true;
            this.button5.Click += new System.EventHandler(this.Button5Click);
            //
            // button6
            //
            this.button6.Location = new System.Drawing.Point(313, 67);
            this.button6.Name     = "button6";
            this.button6.Size     = new System.Drawing.Size(75, 23);
            this.button6.TabIndex = 8;
            this.button6.Text     = "L2 ON";
            this.button6.UseVisualStyleBackColor = true;
            this.button6.Click += new System.EventHandler(this.Button6Click);
            //
            // button7
            //
            this.button7.Location = new System.Drawing.Point(313, 114);
            this.button7.Name     = "button7";
            this.button7.Size     = new System.Drawing.Size(75, 23);
            this.button7.TabIndex = 9;
            this.button7.Text     = "L3 ON";
            this.button7.UseVisualStyleBackColor = true;
            this.button7.Click += new System.EventHandler(this.Button7Click);
            //
            // button8
            //
            this.button8.Location = new System.Drawing.Point(313, 159);
            this.button8.Name     = "button8";
            this.button8.Size     = new System.Drawing.Size(75, 23);
            this.button8.TabIndex = 10;
            this.button8.Text     = "L4 ON";
            this.button8.UseVisualStyleBackColor = true;
            this.button8.Click += new System.EventHandler(this.Button8Click);
            //
            // button9
            //
            this.button9.Location = new System.Drawing.Point(403, 20);
            this.button9.Name     = "button9";
            this.button9.Size     = new System.Drawing.Size(75, 23);
            this.button9.TabIndex = 11;
            this.button9.Text     = "L1 OFF";
            this.button9.UseVisualStyleBackColor = true;
            this.button9.Click += new System.EventHandler(this.Button9Click);
            //
            // button10
            //
            this.button10.Location = new System.Drawing.Point(403, 67);
            this.button10.Name     = "button10";
            this.button10.Size     = new System.Drawing.Size(75, 23);
            this.button10.TabIndex = 12;
            this.button10.Text     = "L2 OFF";
            this.button10.UseVisualStyleBackColor = true;
            this.button10.Click += new System.EventHandler(this.Button10Click);
            //
            // button11
            //
            this.button11.Location = new System.Drawing.Point(403, 113);
            this.button11.Name     = "button11";
            this.button11.Size     = new System.Drawing.Size(75, 23);
            this.button11.TabIndex = 13;
            this.button11.Text     = "L3 OFF";
            this.button11.UseVisualStyleBackColor = true;
            this.button11.Click += new System.EventHandler(this.Button11Click);
            //
            // button12
            //
            this.button12.Location = new System.Drawing.Point(403, 158);
            this.button12.Name     = "button12";
            this.button12.Size     = new System.Drawing.Size(75, 23);
            this.button12.TabIndex = 14;
            this.button12.Text     = "L4 OFF";
            this.button12.UseVisualStyleBackColor = true;
            this.button12.Click += new System.EventHandler(this.Button12Click);
            //
            // vScrollBar1
            //
            this.vScrollBar1.Location = new System.Drawing.Point(502, 12);
            this.vScrollBar1.Maximum  = 1023;
            this.vScrollBar1.Name     = "vScrollBar1";
            this.vScrollBar1.Size     = new System.Drawing.Size(61, 192);
            this.vScrollBar1.TabIndex = 15;
            this.vScrollBar1.Value    = 1023;
            this.vScrollBar1.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.VScrollBar1Scroll);
            //
            // checkBox1
            //
            this.checkBox1.Location = new System.Drawing.Point(492, 262);
            this.checkBox1.Name     = "checkBox1";
            this.checkBox1.Size     = new System.Drawing.Size(82, 30);
            this.checkBox1.TabIndex = 16;
            this.checkBox1.Text     = "Aktif Timer";
            this.checkBox1.UseVisualStyleBackColor = true;
            this.checkBox1.CheckedChanged         += new System.EventHandler(this.CheckBox1CheckedChanged);
            //
            // timer2
            //
            this.timer2.Interval = 1000;
            this.timer2.Tick    += new System.EventHandler(this.Timer2Tick);
            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(492, 215);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(82, 23);
            this.label1.TabIndex = 17;
            this.label1.Text     = "Nilai : 1023";
            this.label1.Click   += new System.EventHandler(this.Label1Click);
            //
            // vScrollBar2
            //
            this.vScrollBar2.Location = new System.Drawing.Point(590, 9);
            this.vScrollBar2.Maximum  = 1023;
            this.vScrollBar2.Name     = "vScrollBar2";
            this.vScrollBar2.Size     = new System.Drawing.Size(65, 195);
            this.vScrollBar2.TabIndex = 18;
            this.vScrollBar2.Value    = 1023;
            this.vScrollBar2.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.VScrollBar2Scroll);
            //
            // vScrollBar3
            //
            this.vScrollBar3.Location = new System.Drawing.Point(685, 9);
            this.vScrollBar3.Maximum  = 1023;
            this.vScrollBar3.Name     = "vScrollBar3";
            this.vScrollBar3.Size     = new System.Drawing.Size(64, 195);
            this.vScrollBar3.TabIndex = 19;
            this.vScrollBar3.Value    = 1023;
            this.vScrollBar3.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.VScrollBar3Scroll);
            //
            // label2
            //
            this.label2.Location = new System.Drawing.Point(590, 217);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(75, 23);
            this.label2.TabIndex = 20;
            this.label2.Text     = "Nilai : 1023";
            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(685, 215);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(84, 23);
            this.label3.TabIndex = 21;
            this.label3.Text     = "Nilai :1023";
            //
            // textBox1
            //
            this.textBox1.Location     = new System.Drawing.Point(613, 267);
            this.textBox1.Name         = "textBox1";
            this.textBox1.Size         = new System.Drawing.Size(100, 20);
            this.textBox1.TabIndex     = 22;
            this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
            //
            // labelDataSerial
            //
            this.labelDataSerial.Font     = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.labelDataSerial.Location = new System.Drawing.Point(41, 124);
            this.labelDataSerial.Name     = "labelDataSerial";
            this.labelDataSerial.Size     = new System.Drawing.Size(137, 23);
            this.labelDataSerial.TabIndex = 23;
            this.labelDataSerial.Text     = "A12B255C3D";
            //
            // pictureBox1
            //
            this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
            this.pictureBox1.Location = new System.Drawing.Point(205, 12);
            this.pictureBox1.Name     = "pictureBox1";
            this.pictureBox1.Size     = new System.Drawing.Size(64, 100);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox1.TabIndex = 24;
            this.pictureBox1.TabStop  = false;
            //
            // pictureBox2
            //
            this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
            this.pictureBox2.Location = new System.Drawing.Point(205, 118);
            this.pictureBox2.Name     = "pictureBox2";
            this.pictureBox2.Size     = new System.Drawing.Size(64, 93);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox2.TabIndex = 25;
            this.pictureBox2.TabStop  = false;
            this.pictureBox2.Click   += new System.EventHandler(this.PictureBox2Click);
            //
            // pictureBox3
            //
            this.pictureBox3.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
            this.pictureBox3.Location = new System.Drawing.Point(205, 217);
            this.pictureBox3.Name     = "pictureBox3";
            this.pictureBox3.Size     = new System.Drawing.Size(64, 96);
            this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox3.TabIndex = 26;
            this.pictureBox3.TabStop  = false;
            //
            // pictureBox4
            //
            this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
            this.pictureBox4.Location = new System.Drawing.Point(205, 12);
            this.pictureBox4.Name     = "pictureBox4";
            this.pictureBox4.Size     = new System.Drawing.Size(64, 100);
            this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox4.TabIndex = 27;
            this.pictureBox4.TabStop  = false;
            this.pictureBox4.Click   += new System.EventHandler(this.PictureBox4Click);
            //
            // pictureBox5
            //
            this.pictureBox5.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox5.Image")));
            this.pictureBox5.Location = new System.Drawing.Point(205, 118);
            this.pictureBox5.Name     = "pictureBox5";
            this.pictureBox5.Size     = new System.Drawing.Size(64, 93);
            this.pictureBox5.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox5.TabIndex = 28;
            this.pictureBox5.TabStop  = false;
            //
            // pictureBox6
            //
            this.pictureBox6.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox6.Image")));
            this.pictureBox6.Location = new System.Drawing.Point(205, 217);
            this.pictureBox6.Name     = "pictureBox6";
            this.pictureBox6.Size     = new System.Drawing.Size(64, 96);
            this.pictureBox6.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            this.pictureBox6.TabIndex = 29;
            this.pictureBox6.TabStop  = false;
            //
            // listBox1
            //
            this.listBox1.FormattingEnabled = true;
            this.listBox1.Items.AddRange(new object[] {
                "Data Record"
            });
            this.listBox1.Location              = new System.Drawing.Point(775, 2);
            this.listBox1.Name                  = "listBox1";
            this.listBox1.Size                  = new System.Drawing.Size(191, 238);
            this.listBox1.TabIndex              = 30;
            this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1SelectedIndexChanged);
            //
            // checkBox2
            //
            this.checkBox2.Location = new System.Drawing.Point(773, 251);
            this.checkBox2.Name     = "checkBox2";
            this.checkBox2.Size     = new System.Drawing.Size(104, 24);
            this.checkBox2.TabIndex = 31;
            this.checkBox2.Text     = "Start Record";
            this.checkBox2.UseVisualStyleBackColor = true;
            this.checkBox2.CheckedChanged         += new System.EventHandler(this.CheckBox2CheckedChanged);
            //
            // button13
            //
            this.button13.Location = new System.Drawing.Point(775, 286);
            this.button13.Name     = "button13";
            this.button13.Size     = new System.Drawing.Size(75, 23);
            this.button13.TabIndex = 32;
            this.button13.Text     = "Clear";
            this.button13.UseVisualStyleBackColor = true;
            this.button13.Click += new System.EventHandler(this.Button13Click);
            //
            // timer3
            //
            this.timer3.Interval = 500;
            this.timer3.Tick    += new System.EventHandler(this.Timer3Tick);
            //
            // button14
            //
            this.button14.Location = new System.Drawing.Point(883, 253);
            this.button14.Name     = "button14";
            this.button14.Size     = new System.Drawing.Size(75, 34);
            this.button14.TabIndex = 33;
            this.button14.Text     = "Save Notepade";
            this.button14.UseVisualStyleBackColor = true;
            this.button14.Click += new System.EventHandler(this.Button14Click);
            //
            // chart1
            //
            chartArea1.Name = "ChartArea1";
            this.chart1.ChartAreas.Add(chartArea1);
            legend1.Name = "Legend1";
            this.chart1.Legends.Add(legend1);
            this.chart1.Location = new System.Drawing.Point(12, 319);
            this.chart1.Name     = "chart1";
            series1.ChartArea    = "ChartArea1";
            series1.Legend       = "Legend1";
            series1.Name         = "Series1";
            this.chart1.Series.Add(series1);
            this.chart1.Size     = new System.Drawing.Size(946, 250);
            this.chart1.TabIndex = 34;
            this.chart1.Text     = "chart1";
            //
            // button15
            //
            this.button15.Location = new System.Drawing.Point(883, 289);
            this.button15.Name     = "button15";
            this.button15.Size     = new System.Drawing.Size(75, 23);
            this.button15.TabIndex = 35;
            this.button15.Text     = "Save Excel";
            this.button15.UseVisualStyleBackColor = true;
            this.button15.Click += new System.EventHandler(this.Button15Click);
            //
            // label4
            //
            this.label4.Location = new System.Drawing.Point(41, 251);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(137, 58);
            this.label4.TabIndex = 36;
            this.label4.Text     = "label4";
            //
            // MainForm
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(978, 578);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.button15);
            this.Controls.Add(this.chart1);
            this.Controls.Add(this.button14);
            this.Controls.Add(this.button13);
            this.Controls.Add(this.checkBox2);
            this.Controls.Add(this.listBox1);
            this.Controls.Add(this.pictureBox6);
            this.Controls.Add(this.pictureBox5);
            this.Controls.Add(this.pictureBox4);
            this.Controls.Add(this.pictureBox3);
            this.Controls.Add(this.pictureBox2);
            this.Controls.Add(this.pictureBox1);
            this.Controls.Add(this.labelDataSerial);
            this.Controls.Add(this.textBox1);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.vScrollBar3);
            this.Controls.Add(this.vScrollBar2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.checkBox1);
            this.Controls.Add(this.vScrollBar1);
            this.Controls.Add(this.button12);
            this.Controls.Add(this.button11);
            this.Controls.Add(this.button10);
            this.Controls.Add(this.button9);
            this.Controls.Add(this.button8);
            this.Controls.Add(this.button7);
            this.Controls.Add(this.button6);
            this.Controls.Add(this.button5);
            this.Controls.Add(this.button4);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.radioButton1);
            this.Controls.Add(this.comboBox2);
            this.Controls.Add(this.comboBox1);
            this.Name  = "MainForm";
            this.Text  = "E32151372_RETNO_ANJARWATI";
            this.Load += new System.EventHandler(this.MainFormLoad);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.chart1)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
예제 #13
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.pnlDwellerList   = new System.Windows.Forms.Panel();
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.gridDwellers     = new System.Windows.Forms.DataGridView();
     this.FirstName        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LastName         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Gender           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Level            = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Strength         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Perception       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Endurance        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Charisma         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Intelligence     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Agility          = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Luck             = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Weapon           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Outfit           = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.vscrRow          = new System.Windows.Forms.VScrollBar();
     this.pnlDwellerList.SuspendLayout();
     this.tableLayoutPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDwellers)).BeginInit();
     this.SuspendLayout();
     //
     // pnlDwellerList
     //
     this.pnlDwellerList.AutoSize     = true;
     this.pnlDwellerList.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.pnlDwellerList.BorderStyle  = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pnlDwellerList.Controls.Add(this.tableLayoutPanel);
     this.pnlDwellerList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.pnlDwellerList.Location = new System.Drawing.Point(0, 0);
     this.pnlDwellerList.Name     = "pnlDwellerList";
     this.pnlDwellerList.Size     = new System.Drawing.Size(727, 567);
     this.pnlDwellerList.TabIndex = 30;
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.AutoSize     = true;
     this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.tableLayoutPanel.ColumnCount  = 2;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
     this.tableLayoutPanel.Controls.Add(this.gridDwellers, 0, 0);
     this.tableLayoutPanel.Controls.Add(this.vscrRow, 1, 0);
     this.tableLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel.Name     = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 1;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.Size     = new System.Drawing.Size(725, 565);
     this.tableLayoutPanel.TabIndex = 2;
     //
     // gridDwellers
     //
     this.gridDwellers.AllowUserToAddRows            = false;
     this.gridDwellers.AutoSizeColumnsMode           = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle1.Alignment                = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor                = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font                     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor                = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor       = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor       = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode                 = System.Windows.Forms.DataGridViewTriState.True;
     this.gridDwellers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridDwellers.ColumnHeadersHeightSizeMode   = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridDwellers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.FirstName,
         this.LastName,
         this.Gender,
         this.Level,
         this.Strength,
         this.Perception,
         this.Endurance,
         this.Charisma,
         this.Intelligence,
         this.Agility,
         this.Luck,
         this.Weapon,
         this.Outfit
     });
     this.gridDwellers.Location          = new System.Drawing.Point(3, 3);
     this.gridDwellers.Name              = "gridDwellers";
     this.gridDwellers.RowHeadersVisible = false;
     this.gridDwellers.ScrollBars        = System.Windows.Forms.ScrollBars.None;
     this.gridDwellers.Size              = new System.Drawing.Size(680, 558);
     this.gridDwellers.TabIndex          = 2;
     //
     // FirstName
     //
     this.FirstName.HeaderText = "Name";
     this.FirstName.Name       = "FirstName";
     //
     // LastName
     //
     this.LastName.HeaderText = "Last Name";
     this.LastName.Name       = "LastName";
     //
     // Gender
     //
     this.Gender.HeaderText = "Gender";
     this.Gender.Name       = "Gender";
     //
     // Level
     //
     this.Level.HeaderText = "Level";
     this.Level.Name       = "Level";
     //
     // Strength
     //
     this.Strength.HeaderText = "S";
     this.Strength.Name       = "Strength";
     //
     // Perception
     //
     this.Perception.HeaderText = "P";
     this.Perception.Name       = "Perception";
     //
     // Endurance
     //
     this.Endurance.HeaderText = "E";
     this.Endurance.Name       = "Endurance";
     //
     // Charisma
     //
     this.Charisma.HeaderText = "C";
     this.Charisma.Name       = "Charisma";
     //
     // Intelligence
     //
     this.Intelligence.HeaderText = "I";
     this.Intelligence.Name       = "Intelligence";
     //
     // Agility
     //
     this.Agility.HeaderText = "A";
     this.Agility.Name       = "Agility";
     //
     // Luck
     //
     this.Luck.HeaderText = "L";
     this.Luck.Name       = "Luck";
     //
     // Weapon
     //
     this.Weapon.HeaderText = "Weapon";
     this.Weapon.Name       = "Weapon";
     //
     // Outfit
     //
     this.Outfit.HeaderText = "Outfit";
     this.Outfit.Name       = "Outfit";
     //
     // vscrRow
     //
     this.vscrRow.Dock     = System.Windows.Forms.DockStyle.Left;
     this.vscrRow.Location = new System.Drawing.Point(686, 0);
     this.vscrRow.Name     = "vscrRow";
     this.vscrRow.Size     = new System.Drawing.Size(17, 565);
     this.vscrRow.TabIndex = 3;
     this.vscrRow.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.VscrRowScroll);
     //
     // DwellerList
     //
     this.AutoSize = true;
     this.Controls.Add(this.pnlDwellerList);
     this.Name = "DwellerList";
     this.Size = new System.Drawing.Size(727, 567);
     this.pnlDwellerList.ResumeLayout(false);
     this.pnlDwellerList.PerformLayout();
     this.tableLayoutPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDwellers)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SettingsForm));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.button2 = new System.Windows.Forms.Button();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar7 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar6 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar5 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar4 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar3 = new System.Windows.Forms.VScrollBar();
     this.vScrollBar2 = new System.Windows.Forms.VScrollBar();
     this.button1 = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.trackBar1 = new System.Windows.Forms.TrackBar();
     this.label2 = new System.Windows.Forms.Label();
     this.tabPage2 = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.button4 = new System.Windows.Forms.Button();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.button3 = new System.Windows.Forms.Button();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.button7 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.trackBar2 = new System.Windows.Forms.TrackBar();
     this.tabPage3 = new System.Windows.Forms.TabPage();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.label1 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox9.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     this.tabPage2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
     this.tabPage3.SuspendLayout();
     this.groupBox8.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.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.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage2);
     this.tabControl1.Controls.Add(this.tabPage3);
     this.tabControl1.Location = new System.Drawing.Point(12, 12);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(159, 337);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.groupBox9);
     this.tabPage1.Controls.Add(this.groupBox6);
     this.tabPage1.Controls.Add(this.groupBox5);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(151, 311);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = " Generate";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // groupBox9
     //
     this.groupBox9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox9.Controls.Add(this.button2);
     this.groupBox9.Location = new System.Drawing.Point(6, 212);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(139, 38);
     this.groupBox9.TabIndex = 15;
     this.groupBox9.TabStop = false;
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.Location = new System.Drawing.Point(6, 10);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(127, 23);
     this.button2.TabIndex = 12;
     this.button2.Text = "Generate";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // groupBox6
     //
     this.groupBox6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox6.Controls.Add(this.tableLayoutPanel1);
     this.groupBox6.Controls.Add(this.button1);
     this.groupBox6.Location = new System.Drawing.Point(6, 79);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(139, 127);
     this.groupBox6.TabIndex = 14;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Genetics";
     this.groupBox6.Enter += new System.EventHandler(this.groupBox6_Enter);
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel1.ColumnCount = 7;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 14.28572F));
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar1, 0, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar7, 6, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar6, 5, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar5, 4, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar4, 3, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar3, 2, 0);
     this.tableLayoutPanel1.Controls.Add(this.vScrollBar2, 1, 0);
     this.tableLayoutPanel1.Location = new System.Drawing.Point(6, 19);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 1;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(127, 74);
     this.tableLayoutPanel1.TabIndex = 8;
     //
     // vScrollBar1
     //
     this.vScrollBar1.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.vScrollBar1.Location = new System.Drawing.Point(0, 0);
     this.vScrollBar1.Name = "vScrollBar1";
     this.vScrollBar1.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar1.TabIndex = 7;
     this.vScrollBar1.Value = 100;
     //
     // vScrollBar7
     //
     this.vScrollBar7.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.vScrollBar7.Location = new System.Drawing.Point(108, 0);
     this.vScrollBar7.Name = "vScrollBar7";
     this.vScrollBar7.Size = new System.Drawing.Size(19, 74);
     this.vScrollBar7.TabIndex = 6;
     this.vScrollBar7.Value = 100;
     //
     // vScrollBar6
     //
     this.vScrollBar6.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.vScrollBar6.Location = new System.Drawing.Point(90, 0);
     this.vScrollBar6.Name = "vScrollBar6";
     this.vScrollBar6.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar6.TabIndex = 5;
     this.vScrollBar6.Value = 100;
     //
     // vScrollBar5
     //
     this.vScrollBar5.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.vScrollBar5.Location = new System.Drawing.Point(72, 0);
     this.vScrollBar5.Name = "vScrollBar5";
     this.vScrollBar5.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar5.TabIndex = 4;
     this.vScrollBar5.Value = 100;
     //
     // vScrollBar4
     //
     this.vScrollBar4.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.vScrollBar4.Location = new System.Drawing.Point(54, 0);
     this.vScrollBar4.Name = "vScrollBar4";
     this.vScrollBar4.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar4.TabIndex = 3;
     this.vScrollBar4.Value = 100;
     //
     // vScrollBar3
     //
     this.vScrollBar3.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.vScrollBar3.Location = new System.Drawing.Point(36, 0);
     this.vScrollBar3.Name = "vScrollBar3";
     this.vScrollBar3.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar3.TabIndex = 2;
     this.vScrollBar3.Value = 100;
     //
     // vScrollBar2
     //
     this.vScrollBar2.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.vScrollBar2.Location = new System.Drawing.Point(18, 0);
     this.vScrollBar2.Name = "vScrollBar2";
     this.vScrollBar2.Size = new System.Drawing.Size(18, 74);
     this.vScrollBar2.TabIndex = 1;
     this.vScrollBar2.Value = 100;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(6, 99);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(127, 23);
     this.button1.TabIndex = 7;
     this.button1.Text = "Randomize";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.trackBar1);
     this.groupBox5.Controls.Add(this.label2);
     this.groupBox5.Location = new System.Drawing.Point(6, 6);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(139, 67);
     this.groupBox5.TabIndex = 13;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Detail Level";
     //
     // trackBar1
     //
     this.trackBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBar1.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.trackBar1.Location = new System.Drawing.Point(6, 19);
     this.trackBar1.Maximum = 7;
     this.trackBar1.Name = "trackBar1";
     this.trackBar1.Size = new System.Drawing.Size(127, 42);
     this.trackBar1.TabIndex = 9;
     this.trackBar1.Scroll += new System.EventHandler(this.trackBar1_Scroll);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(119, 30);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(0, 13);
     this.label2.TabIndex = 11;
     //
     // tabPage2
     //
     this.tabPage2.Controls.Add(this.groupBox4);
     this.tabPage2.Controls.Add(this.GroupBox3);
     this.tabPage2.Controls.Add(this.groupBox2);
     this.tabPage2.Controls.Add(this.groupBox1);
     this.tabPage2.Location = new System.Drawing.Point(4, 22);
     this.tabPage2.Name = "tabPage2";
     this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage2.Size = new System.Drawing.Size(151, 311);
     this.tabPage2.TabIndex = 1;
     this.tabPage2.Text = "Modify";
     this.tabPage2.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox4.Controls.Add(this.button4);
     this.groupBox4.Controls.Add(this.comboBox2);
     this.groupBox4.Location = new System.Drawing.Point(6, 228);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(136, 77);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Fill Mode";
     //
     // button4
     //
     this.button4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button4.Location = new System.Drawing.Point(6, 46);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(124, 23);
     this.button4.TabIndex = 9;
     this.button4.Text = "Randomize";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // comboBox2
     //
     this.comboBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "Colored",
     "Textured",
     "Wireframe"});
     this.comboBox2.Location = new System.Drawing.Point(6, 19);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(124, 21);
     this.comboBox2.TabIndex = 0;
     this.comboBox2.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
     //
     // GroupBox3
     //
     this.GroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.GroupBox3.Controls.Add(this.button3);
     this.GroupBox3.Controls.Add(this.comboBox1);
     this.GroupBox3.Location = new System.Drawing.Point(6, 146);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(136, 76);
     this.GroupBox3.TabIndex = 7;
     this.GroupBox3.TabStop = false;
     this.GroupBox3.Text = "Light Mode";
     //
     // button3
     //
     this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button3.Location = new System.Drawing.Point(6, 46);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(124, 23);
     this.button3.TabIndex = 6;
     this.button3.Text = "Randomize";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // comboBox1
     //
     this.comboBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "Directional Light",
     "One Point Light",
     "Two Point Lights"});
     this.comboBox1.Location = new System.Drawing.Point(6, 19);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(124, 21);
     this.comboBox1.TabIndex = 5;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // groupBox2
     //
     this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Location = new System.Drawing.Point(6, 82);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(136, 58);
     this.groupBox2.TabIndex = 6;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Detail";
     this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
     //
     // splitContainer1
     //
     this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.splitContainer1.Location = new System.Drawing.Point(6, 19);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.button7);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.button6);
     this.splitContainer1.Size = new System.Drawing.Size(124, 31);
     this.splitContainer1.SplitterDistance = 62;
     this.splitContainer1.TabIndex = 3;
     //
     // button7
     //
     this.button7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button7.Location = new System.Drawing.Point(3, 3);
     this.button7.Name = "button7";
     this.button7.Size = new System.Drawing.Size(56, 23);
     this.button7.TabIndex = 2;
     this.button7.Text = "-";
     this.button7.UseVisualStyleBackColor = true;
     this.button7.Click += new System.EventHandler(this.button7_Click);
     //
     // button6
     //
     this.button6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.button6.Location = new System.Drawing.Point(3, 3);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(52, 23);
     this.button6.TabIndex = 1;
     this.button6.Text = "+";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.Controls.Add(this.trackBar2);
     this.groupBox1.Location = new System.Drawing.Point(6, 6);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(136, 70);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Rotate";
     //
     // trackBar2
     //
     this.trackBar2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.trackBar2.BackColor = System.Drawing.SystemColors.ActiveBorder;
     this.trackBar2.LargeChange = 1;
     this.trackBar2.Location = new System.Drawing.Point(6, 20);
     this.trackBar2.Maximum = 3;
     this.trackBar2.Minimum = -3;
     this.trackBar2.Name = "trackBar2";
     this.trackBar2.Size = new System.Drawing.Size(121, 42);
     this.trackBar2.TabIndex = 0;
     this.trackBar2.TickFrequency = 3;
     this.trackBar2.Scroll += new System.EventHandler(this.trackBar2_Scroll);
     //
     // tabPage3
     //
     this.tabPage3.Controls.Add(this.groupBox8);
     this.tabPage3.Controls.Add(this.groupBox7);
     this.tabPage3.Location = new System.Drawing.Point(4, 22);
     this.tabPage3.Name = "tabPage3";
     this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage3.Size = new System.Drawing.Size(151, 311);
     this.tabPage3.TabIndex = 2;
     this.tabPage3.Text = "Info";
     this.tabPage3.UseVisualStyleBackColor = true;
     //
     // groupBox8
     //
     this.groupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox8.Controls.Add(this.richTextBox1);
     this.groupBox8.Location = new System.Drawing.Point(6, 139);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(139, 141);
     this.groupBox8.TabIndex = 1;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Control";
     //
     // richTextBox1
     //
     this.richTextBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.richTextBox1.Location = new System.Drawing.Point(7, 20);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.Size = new System.Drawing.Size(126, 115);
     this.richTextBox1.TabIndex = 0;
     this.richTextBox1.Text = "Rotate the camera with the mouse. You can move through the world with the forward" +
         ", backward, left, right, page up and page down key. ";
     this.richTextBox1.TextChanged += new System.EventHandler(this.richTextBox1_TextChanged);
     //
     // groupBox7
     //
     this.groupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox7.Controls.Add(this.tableLayoutPanel2);
     this.groupBox7.Location = new System.Drawing.Point(7, 7);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(138, 126);
     this.groupBox7.TabIndex = 0;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "Stats";
     this.groupBox7.Enter += new System.EventHandler(this.groupBox7_Enter);
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 52.8F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 47.2F));
     this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0);
     this.tableLayoutPanel2.Controls.Add(this.label3, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.label6, 0, 1);
     this.tableLayoutPanel2.Controls.Add(this.label7, 1, 1);
     this.tableLayoutPanel2.Controls.Add(this.label4, 0, 4);
     this.tableLayoutPanel2.Controls.Add(this.label5, 1, 4);
     this.tableLayoutPanel2.Controls.Add(this.label10, 0, 3);
     this.tableLayoutPanel2.Controls.Add(this.label8, 0, 2);
     this.tableLayoutPanel2.Controls.Add(this.label11, 1, 3);
     this.tableLayoutPanel2.Controls.Add(this.label9, 1, 2);
     this.tableLayoutPanel2.Location = new System.Drawing.Point(7, 19);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 5;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(125, 100);
     this.tableLayoutPanel2.TabIndex = 6;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(3, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(57, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Framerate:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(68, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(13, 13);
     this.label3.TabIndex = 1;
     this.label3.Text = "0";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(3, 20);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 13);
     this.label6.TabIndex = 4;
     this.label6.Text = "Variance:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(68, 20);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(13, 13);
     this.label7.TabIndex = 5;
     this.label7.Text = "0";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(3, 80);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(53, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Triangles:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(68, 80);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(13, 13);
     this.label5.TabIndex = 3;
     this.label5.Text = "0";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(3, 60);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(59, 13);
     this.label10.TabIndex = 6;
     this.label10.Text = "Dimension:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(3, 40);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(37, 13);
     this.label8.TabIndex = 6;
     this.label8.Text = "Detail:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(68, 60);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(13, 13);
     this.label11.TabIndex = 7;
     this.label11.Text = "0";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(68, 40);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(13, 13);
     this.label9.TabIndex = 7;
     this.label9.Text = "0";
     //
     // SettingsForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(183, 361);
     this.Controls.Add(this.tabControl1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "SettingsForm";
     this.Text = "Settings";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     this.tabPage2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.GroupBox3.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
     this.tabPage3.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     this.groupBox7.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.tableLayoutPanel2.PerformLayout();
     this.ResumeLayout(false);
 }
예제 #15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     scrlAzulejoX      = new System.Windows.Forms.HScrollBar();
     scrlAzulejoY      = new System.Windows.Forms.VScrollBar();
     picAzulejo        = new System.Windows.Forms.PictureBox();
     grpAtributos      = new System.Windows.Forms.GroupBox();
     optBloqueio       = new System.Windows.Forms.RadioButton();
     butLimpar         = new System.Windows.Forms.Button();
     butCancelar       = new System.Windows.Forms.Button();
     butSalvar         = new System.Windows.Forms.Button();
     grpAzulejo        = new System.Windows.Forms.GroupBox();
     scrlAzulejo       = new System.Windows.Forms.HScrollBar();
     groupBox2         = new System.Windows.Forms.GroupBox();
     optBloqDirecional = new System.Windows.Forms.RadioButton();
     optAtributos      = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(picAzulejo)).BeginInit();
     grpAtributos.SuspendLayout();
     grpAzulejo.SuspendLayout();
     groupBox2.SuspendLayout();
     SuspendLayout();
     //
     // scrlAzulejoX
     //
     scrlAzulejoX.LargeChange = 1;
     scrlAzulejoX.Location    = new System.Drawing.Point(14, 453);
     scrlAzulejoX.Name        = "scrlAzulejoX";
     scrlAzulejoX.Size        = new System.Drawing.Size(256, 19);
     scrlAzulejoX.TabIndex    = 69;
     //
     // scrlAzulejoY
     //
     scrlAzulejoY.Cursor      = System.Windows.Forms.Cursors.Default;
     scrlAzulejoY.LargeChange = 1;
     scrlAzulejoY.Location    = new System.Drawing.Point(270, 69);
     scrlAzulejoY.Maximum     = 255;
     scrlAzulejoY.Name        = "scrlAzulejoY";
     scrlAzulejoY.Size        = new System.Drawing.Size(19, 384);
     scrlAzulejoY.TabIndex    = 70;
     //
     // picAzulejo
     //
     picAzulejo.BackColor   = System.Drawing.Color.Black;
     picAzulejo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     picAzulejo.Location    = new System.Drawing.Point(14, 69);
     picAzulejo.Name        = "picAzulejo";
     picAzulejo.Size        = new System.Drawing.Size(256, 384);
     picAzulejo.TabIndex    = 68;
     picAzulejo.TabStop     = false;
     picAzulejo.MouseDown  += new System.Windows.Forms.MouseEventHandler(picAzulejo_MouseDown);
     //
     // grpAtributos
     //
     grpAtributos.Controls.Add(optBloqueio);
     grpAtributos.Location = new System.Drawing.Point(303, 141);
     grpAtributos.Name     = "grpAtributos";
     grpAtributos.Size     = new System.Drawing.Size(98, 264);
     grpAtributos.TabIndex = 71;
     grpAtributos.TabStop  = false;
     grpAtributos.Text     = "Atributos";
     //
     // optBloqueio
     //
     optBloqueio.AutoSize = true;
     optBloqueio.Location = new System.Drawing.Point(6, 19);
     optBloqueio.Name     = "optBloqueio";
     optBloqueio.Size     = new System.Drawing.Size(66, 17);
     optBloqueio.TabIndex = 75;
     optBloqueio.TabStop  = true;
     optBloqueio.Text     = "Bloqueio";
     optBloqueio.UseVisualStyleBackColor = true;
     optBloqueio.CheckedChanged         += new System.EventHandler(optBloqueio_CheckedChanged);
     //
     // butLimpar
     //
     butLimpar.Location = new System.Drawing.Point(303, 431);
     butLimpar.Name     = "butLimpar";
     butLimpar.Size     = new System.Drawing.Size(97, 21);
     butLimpar.TabIndex = 74;
     butLimpar.Text     = "Limpar";
     butLimpar.UseVisualStyleBackColor = true;
     butLimpar.Click += new System.EventHandler(butLimpar_Click);
     //
     // butCancelar
     //
     butCancelar.Location = new System.Drawing.Point(303, 451);
     butCancelar.Name     = "butCancelar";
     butCancelar.Size     = new System.Drawing.Size(97, 21);
     butCancelar.TabIndex = 73;
     butCancelar.Text     = "Cancelar";
     butCancelar.UseVisualStyleBackColor = true;
     butCancelar.Click += new System.EventHandler(butCancelar_Click);
     //
     // butSalvar
     //
     butSalvar.Location = new System.Drawing.Point(303, 411);
     butSalvar.Name     = "butSalvar";
     butSalvar.Size     = new System.Drawing.Size(97, 21);
     butSalvar.TabIndex = 72;
     butSalvar.Text     = "Salvar";
     butSalvar.UseVisualStyleBackColor = true;
     butSalvar.Click += new System.EventHandler(butSalvar_Click);
     //
     // grpAzulejo
     //
     grpAzulejo.Controls.Add(scrlAzulejo);
     grpAzulejo.Location = new System.Drawing.Point(12, 12);
     grpAzulejo.Name     = "grpAzulejo";
     grpAzulejo.Size     = new System.Drawing.Size(389, 49);
     grpAzulejo.TabIndex = 75;
     grpAzulejo.TabStop  = false;
     grpAzulejo.Text     = "Azulejo: 1";
     //
     // scrlAzulejo
     //
     scrlAzulejo.LargeChange   = 1;
     scrlAzulejo.Location      = new System.Drawing.Point(9, 18);
     scrlAzulejo.Minimum       = 1;
     scrlAzulejo.Name          = "scrlAzulejo";
     scrlAzulejo.Size          = new System.Drawing.Size(374, 19);
     scrlAzulejo.TabIndex      = 16;
     scrlAzulejo.Value         = 1;
     scrlAzulejo.ValueChanged += new System.EventHandler(scrlAzulejo_ValueChanged);
     //
     // groupBox2
     //
     groupBox2.Controls.Add(optAtributos);
     groupBox2.Controls.Add(optBloqDirecional);
     groupBox2.Location = new System.Drawing.Point(303, 69);
     groupBox2.Name     = "groupBox2";
     groupBox2.Size     = new System.Drawing.Size(98, 66);
     groupBox2.TabIndex = 76;
     groupBox2.TabStop  = false;
     groupBox2.Text     = "Definir";
     //
     // optBloqDirecional
     //
     optBloqDirecional.BackColor = System.Drawing.Color.Transparent;
     optBloqDirecional.Location  = new System.Drawing.Point(6, 42);
     optBloqDirecional.Name      = "optBloqDirecional";
     optBloqDirecional.Size      = new System.Drawing.Size(91, 17);
     optBloqDirecional.TabIndex  = 76;
     optBloqDirecional.Text      = "Bloqueio Dire.";
     optBloqDirecional.UseVisualStyleBackColor = false;
     optBloqDirecional.CheckedChanged         += new System.EventHandler(optBloqDirecional_CheckedChanged);
     //
     // optAtributos
     //
     optAtributos.AutoSize = true;
     optAtributos.Checked  = true;
     optAtributos.Location = new System.Drawing.Point(6, 19);
     optAtributos.Name     = "optAtributos";
     optAtributos.Size     = new System.Drawing.Size(66, 17);
     optAtributos.TabIndex = 75;
     optAtributos.TabStop  = true;
     optAtributos.Text     = "Atributos";
     optAtributos.UseVisualStyleBackColor = true;
     optAtributos.CheckedChanged         += new System.EventHandler(optAtributos_CheckedChanged);
     //
     // Editor_Azulejos
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(413, 487);
     ControlBox          = false;
     Controls.Add(groupBox2);
     Controls.Add(butCancelar);
     Controls.Add(grpAzulejo);
     Controls.Add(butLimpar);
     Controls.Add(butSalvar);
     Controls.Add(grpAtributos);
     Controls.Add(scrlAzulejoX);
     Controls.Add(scrlAzulejoY);
     Controls.Add(picAzulejo);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     Name            = "Editor_Azulejos";
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text            = "Editor de Azulejos";
     ((System.ComponentModel.ISupportInitialize)(picAzulejo)).EndInit();
     grpAtributos.ResumeLayout(false);
     grpAtributos.PerformLayout();
     grpAzulejo.ResumeLayout(false);
     groupBox2.ResumeLayout(false);
     groupBox2.PerformLayout();
     ResumeLayout(false);
 }
예제 #16
0
 public bool ShouldSerializeIndex(System.Windows.Forms.VScrollBar o)
 {
 }
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     _vscroller = new System.Windows.Forms.VScrollBar();
     _vscroller.ValueChanged += vscroll_ValueChanged;
     _tt1                                 = new System.Windows.Forms.ToolTip(components);
     _PulldownMenu                        = new System.Windows.Forms.ContextMenu();
     _miAutoArrange                       = new System.Windows.Forms.MenuItem();
     _miAutoArrange.Click                += miAutoArrange_Click;
     _miPushtoBack                        = new System.Windows.Forms.MenuItem();
     _miPushtoBack.Click                 += miPushtoBack_Click;
     _miPullAllTearAwaysToTheFront        = new System.Windows.Forms.MenuItem();
     _miPullAllTearAwaysToTheFront.Click += miPullAllTearAwaysToTheFront_Click;
     _miHideAllTearAways                  = new System.Windows.Forms.MenuItem();
     _miHideAllTearAways.Click           += miHideAllTearAways_Click;
     SuspendLayout();
     //
     // vscroller
     //
     _vscroller.Dock     = System.Windows.Forms.DockStyle.Right;
     _vscroller.Location = new Point(256, 0);
     _vscroller.Name     = "vscroller";
     _vscroller.Size     = new Size(12, 340);
     _vscroller.TabIndex = 0;
     //
     // tt1
     //
     _tt1.ShowAlways = true;
     //
     // PulldownMenu
     //
     _PulldownMenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] { _miAutoArrange, _miHideAllTearAways, _miPushtoBack, _miPullAllTearAwaysToTheFront });
     //
     // miAutoArrange
     //
     _miAutoArrange.Index = 0;
     _miAutoArrange.Text  = "Auto Arrange All Tear Away Columns";
     //
     // miPushtoBack
     //
     _miPushtoBack.Index = 2;
     _miPushtoBack.Text  = "Push All Tear Away's to the Back";
     //
     // miPullAllTearAwaysToTheFront
     //
     _miPullAllTearAwaysToTheFront.Index = 3;
     _miPullAllTearAwaysToTheFront.Text  = "Pull All Tear Away's to the Front";
     //
     // miHideAllTearAways
     //
     _miHideAllTearAways.Index = 1;
     _miHideAllTearAways.Text  = "Hide All Tear Away Columns";
     //
     // frmColumnTearAway
     //
     AutoScaleBaseSize = new Size(5, 13);
     ClientSize        = new Size(268, 340);
     Controls.Add(_vscroller);
     FormBorderStyle   = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     KeyPreview        = true;
     MaximizeBox       = false;
     MinimizeBox       = false;
     Name              = "frmColumnTearAway";
     ShowInTaskbar     = false;
     Text              = "frmColumnTearAway";
     TopMost           = true;
     base.Paint       += frmColumnTearAway_Paint;
     base.MouseMove   += frmColumnTearAway_MouseMove;
     base.MouseUp     += frmColumnTearAway_MouseUp;
     base.Resize      += frmColumnTearAway_Resize;
     base.MouseWheel  += frmColumnTearAway_MouseWheel;
     base.KeyUp       += frmColumnTearAway_KeyUp;
     base.SizeChanged += frmColumnTearAway_SizeChanged;
     base.MouseDown   += frmColumnTearAway_MouseDown;
     base.Click       += frmColumnTearAway_Click;
     base.DoubleClick += frmColumnTearAway_DoubleClick;
     ResumeLayout(false);
 }
 /// <summary>
 /// Erforderliche Methode für die Designerunterstützung.
 /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ToolStripSeparator toolStripMenuItem1;
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("hupa");
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.memViewGrid = new System.Windows.Forms.DataGridView();
     this.address = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.c1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.c2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.c3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.c4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.memViewContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.goBackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.goForwardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.memViewSetBP = new System.Windows.Forms.ToolStripMenuItem();
     this.memViewAddToWatch = new System.Windows.Forms.ToolStripMenuItem();
     this.memViewAddGCTCode = new System.Windows.Forms.ToolStripMenuItem();
     this.gCTWizardToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.disassemblerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.memViewUpload = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripSeparator();
     this.copySelectionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyAllCellsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem16 = new System.Windows.Forms.ToolStripSeparator();
     this.jumpToOffsetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBoxMemViewOffset = new System.Windows.Forms.ToolStripTextBox();
     this.fontSizeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBoxMemViewFontSize = new System.Windows.Forms.ToolStripTextBox();
     this.MainControl = new System.Windows.Forms.TabControl();
     this.searchPage = new System.Windows.Forms.TabPage();
     this.buttonSerialPoke = new System.Windows.Forms.Button();
     this.numericUpDownNewSearchIndex = new System.Windows.Forms.NumericUpDown();
     this.buttonUndoSearch = new System.Windows.Forms.Button();
     this.labelSearchDataType = new System.Windows.Forms.Label();
     this.numericUpDownOldSearchIndex = new System.Windows.Forms.NumericUpDown();
     this.Search = new System.Windows.Forms.Button();
     this.comboBoxSearchDataType = new System.Windows.Forms.ComboBox();
     this.buttonCancelSearch = new System.Windows.Forms.Button();
     this.buttonSaveSearch = new System.Windows.Forms.Button();
     this.UpDownSearchResultPage = new System.Windows.Forms.NumericUpDown();
     this.buttonLoadSearch = new System.Windows.Forms.Button();
     this.PValue = new System.Windows.Forms.TextBox();
     this.InputConvert = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.CvDecHex = new System.Windows.Forms.ToolStripMenuItem();
     this.CvFloatHex = new System.Windows.Forms.ToolStripMenuItem();
     this.convertASCIIToHexToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.CvHexDec = new System.Windows.Forms.ToolStripMenuItem();
     this.cvHexFloat = new System.Windows.Forms.ToolStripMenuItem();
     this.convertHexToASCIIToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.InputCvCopy = new System.Windows.Forms.ToolStripMenuItem();
     this.InputCvCut = new System.Windows.Forms.ToolStripMenuItem();
     this.InputCvPaste = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripSeparator();
     this.InputCvSelectAll = new System.Windows.Forms.ToolStripMenuItem();
     this.InputCvUndo = new System.Windows.Forms.ToolStripMenuItem();
     this.comboBoxDisplayType = new System.Windows.Forms.ComboBox();
     this.PButton = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.PAddress = new GeckoApp.external.AddressTextBox();
     this.HistoryContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem8 = new System.Windows.Forms.ToolStripSeparator();
     this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.removeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem6 = new System.Windows.Forms.ToolStripSeparator();
     this.clearAllHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cutAllHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.copyAllHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteAllHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem7 = new System.Windows.Forms.ToolStripSeparator();
     this.showHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.autoHistoryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem19 = new System.Windows.Forms.ToolStripSeparator();
     this.addOffsetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBoxAddressAddOffset = new System.Windows.Forms.ToolStripTextBox();
     this.NxtPage = new System.Windows.Forms.Button();
     this.ResList = new System.Windows.Forms.Label();
     this.SearchResults = new System.Windows.Forms.DataGridView();
     this.ACol = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.OVal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NVal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DifferCol = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.SearchResMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.PkAddress = new System.Windows.Forms.ToolStripMenuItem();
     this.ShowInMemView = new System.Windows.Forms.ToolStripMenuItem();
     this.BpSAddress = new System.Windows.Forms.ToolStripMenuItem();
     this.ShowInDiss = new System.Windows.Forms.ToolStripMenuItem();
     this.showInWatchList = new System.Windows.Forms.ToolStripMenuItem();
     this.makeCode = new System.Windows.Forms.ToolStripMenuItem();
     this.gCTWizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripSeparator();
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.SortToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripSeparator();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.PrvPage = new System.Windows.Forms.Button();
     this.ResSrch = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.memEnd = new GeckoApp.external.AddressTextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.memStart = new GeckoApp.external.AddressTextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.memRange = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.textBoxComparisonValue = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.comboBoxComparisonType = new System.Windows.Forms.ComboBox();
     this.comboBoxComparisonRHS = new System.Windows.Forms.ComboBox();
     this.groupBoxSearchGroups = new System.Windows.Forms.GroupBox();
     this.buttonClearSearchGroup = new System.Windows.Forms.Button();
     this.buttonRemoveGroup = new System.Windows.Forms.Button();
     this.buttonAddSearchGroup = new System.Windows.Forms.Button();
     this.numericUpDownSearchGroup = new System.Windows.Forms.NumericUpDown();
     this.MemView = new System.Windows.Forms.TabPage();
     this.vScrollBarMemViewGrid = new System.Windows.Forms.VScrollBar();
     this.groupBox27 = new System.Windows.Forms.GroupBox();
     this.MemViewSearchType = new System.Windows.Forms.ComboBox();
     this.MemViewSearchPerfom = new System.Windows.Forms.Button();
     this.MemViewSearchString = new System.Windows.Forms.TextBox();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.MemViewFPValue = new System.Windows.Forms.Label();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.comboBoxPokeOperation = new System.Windows.Forms.ComboBox();
     this.memViewPButton = new System.Windows.Forms.Button();
     this.memViewPValue = new System.Windows.Forms.TextBox();
     this.memViewPAddress = new GeckoApp.external.AddressTextBox();
     this.MemViewAutoUp = new System.Windows.Forms.CheckBox();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.MemViewShowMode = new System.Windows.Forms.ComboBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.memViewAValue = new GeckoApp.external.AddressTextBox();
     this.MemViewScrollbar = new System.Windows.Forms.NumericUpDown();
     this.MemViewUpdate = new System.Windows.Forms.Button();
     this.MemViewARange = new System.Windows.Forms.ComboBox();
     this.BreakpointPage = new System.Windows.Forms.TabPage();
     this.panel7 = new System.Windows.Forms.Panel();
     this.groupBox26 = new System.Windows.Forms.GroupBox();
     this.checkBoxBPCondEnable = new System.Windows.Forms.CheckBox();
     this.BPCondList = new System.Windows.Forms.ListBox();
     this.BPCondMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.copyToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.pasteToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem9 = new System.Windows.Forms.ToolStripSeparator();
     this.sRR0ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.sRR0ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem10 = new System.Windows.Forms.ToolStripSeparator();
     this.deleteToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.clearAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem12 = new System.Windows.Forms.ToolStripSeparator();
     this.setConditionGroupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.SetConditionGroupTextBox = new System.Windows.Forms.ToolStripTextBox();
     this.panel5 = new System.Windows.Forms.Panel();
     this.checkBoxLogSteps = new System.Windows.Forms.CheckBox();
     this.BPSkipCount = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.panel3 = new System.Windows.Forms.Panel();
     this.groupBox25 = new System.Windows.Forms.GroupBox();
     this.BPCondClear = new System.Windows.Forms.Button();
     this.BPConditionAdd = new System.Windows.Forms.Button();
     this.BPCondDel = new System.Windows.Forms.Button();
     this.BPCondValue = new System.Windows.Forms.TextBox();
     this.BPConditionCompare = new System.Windows.Forms.ComboBox();
     this.BPConditionRegSelect = new System.Windows.Forms.ComboBox();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.BPCancel = new System.Windows.Forms.Button();
     this.BPFire = new System.Windows.Forms.Button();
     this.ShowMemContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.ShowMemAddressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBoxShowMemAddress = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripMenuItem14 = new System.Windows.Forms.ToolStripSeparator();
     this.ShowMemValueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripTextBoxShowMemValue = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripMenuItem15 = new System.Windows.Forms.ToolStripSeparator();
     this.SRR0NEQToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.SRR0EQToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem17 = new System.Windows.Forms.ToolStripSeparator();
     this.viewFloatsInHexToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.BPType = new System.Windows.Forms.ComboBox();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.BPExact = new System.Windows.Forms.CheckBox();
     this.BPAddress = new GeckoApp.external.AddressTextBox();
     this.DebugTabPage = new System.Windows.Forms.TabPage();
     this.ThreadBox = new System.Windows.Forms.GroupBox();
     this.threadStateLabel = new System.Windows.Forms.Label();
     this.ThreadDisplayComboBox = new System.Windows.Forms.ComboBox();
     this.ThreadListGroupBox = new System.Windows.Forms.GroupBox();
     this.ThreadGridView = new System.Windows.Forms.DataGridView();
     this.ThreadNameColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ThreadStateColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ThreadAddressColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BPOutSwap = new System.Windows.Forms.Button();
     this.groupBoxStep = new System.Windows.Forms.GroupBox();
     this.buttonStepUntil = new System.Windows.Forms.Button();
     this.BPStepButton = new System.Windows.Forms.Button();
     this.BPStepOverButton = new System.Windows.Forms.Button();
     this.buttonStepOutOf = new System.Windows.Forms.Button();
     this.StepOutContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.walkToBlrToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.stackFrameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.leafToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.splitContainerRegASM = new System.Windows.Forms.SplitContainer();
     this.panel6 = new System.Windows.Forms.Panel();
     this.BPList = new GeckoApp.BPList();
     this.BPClassic = new System.Windows.Forms.TextBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.BPDiss = new System.Windows.Forms.TextBox();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.buttonShowMem = new System.Windows.Forms.Button();
     this.DisPage = new System.Windows.Forms.TabPage();
     this.groupBoxDisasmCallStack = new System.Windows.Forms.GroupBox();
     this.listBoxCallStack = new System.Windows.Forms.ListBox();
     this.CallStackContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.copyAllToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.groupBoxDisasm = new System.Windows.Forms.GroupBox();
     this.radioButtonSearchDisassemblyDown = new System.Windows.Forms.RadioButton();
     this.radioButtonSearchDisassemblyUp = new System.Windows.Forms.RadioButton();
     this.buttonDisassemblySearch = new System.Windows.Forms.Button();
     this.textBoxDisassemblySearch = new System.Windows.Forms.TextBox();
     this.groupBox13 = new System.Windows.Forms.GroupBox();
     this.AsText = new GeckoApp.external.HistoryTextBox();
     this.Assemble = new System.Windows.Forms.Button();
     this.AsAddress = new GeckoApp.external.AddressTextBox();
     this.groupBox12 = new System.Windows.Forms.GroupBox();
     this.DisUpDown = new System.Windows.Forms.NumericUpDown();
     this.DisRegion = new GeckoApp.external.AddressTextBox();
     this.DisUpdateBtn = new System.Windows.Forms.Button();
     this.DisScroll = new System.Windows.Forms.VScrollBar();
     this.DisAssBox = new System.Windows.Forms.ListBox();
     this.disAssContextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.copyFunctionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem11 = new System.Windows.Forms.ToolStripSeparator();
     this.DisAssSetBP = new System.Windows.Forms.ToolStripMenuItem();
     this.DisAssPoke = new System.Windows.Forms.ToolStripMenuItem();
     this.disAssGCTCode = new System.Windows.Forms.ToolStripMenuItem();
     this.memoryViewerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem13 = new System.Windows.Forms.ToolStripSeparator();
     this.setSRR0HereToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem18 = new System.Windows.Forms.ToolStripSeparator();
     this.gotoFunctionStartToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.gotoFunctionEndToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.shotPage = new System.Windows.Forms.TabPage();
     this.checkBoxAutoPreview = new System.Windows.Forms.CheckBox();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.label10 = new System.Windows.Forms.Label();
     this.JPGQualLabel = new System.Windows.Forms.Label();
     this.JPGQual = new System.Windows.Forms.TrackBar();
     this.ImgFormat = new System.Windows.Forms.ComboBox();
     this.ShotPreview = new System.Windows.Forms.Button();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.ShotSizingType = new System.Windows.Forms.ComboBox();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.label9 = new System.Windows.Forms.Label();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.ShotFilename = new System.Windows.Forms.TextBox();
     this.ShotCapture = new System.Windows.Forms.Button();
     this.ScreenshotCapBox = new System.Windows.Forms.PictureBox();
     this.GCTPage = new System.Windows.Forms.TabPage();
     this.checkBoxPauseCodes = new System.Windows.Forms.CheckBox();
     this.GCTStoreImm = new System.Windows.Forms.Button();
     this.GCTDisable = new System.Windows.Forms.Button();
     this.GCTListFileName = new System.Windows.Forms.Label();
     this.GCTLoadList = new System.Windows.Forms.Button();
     this.GCTSaveList = new System.Windows.Forms.Button();
     this.GCTSndButton = new System.Windows.Forms.Button();
     this.GCTDelBtn = new System.Windows.Forms.Button();
     this.GCTAddCode = new System.Windows.Forms.Button();
     this.GCTCodeValues = new System.Windows.Forms.TextBox();
     this.GCTCodeList = new System.Windows.Forms.ListView();
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.gctCodeMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.gctMenuAddCode = new System.Windows.Forms.ToolStripMenuItem();
     this.gctMenuDeleteCode = new System.Windows.Forms.ToolStripMenuItem();
     this.gCTWizardToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.DisableCodeLinesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.enableToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.WatchTab = new System.Windows.Forms.TabPage();
     this.WatchListClear = new System.Windows.Forms.Button();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.WatchIntervalSet = new System.Windows.Forms.NumericUpDown();
     this.WatchListOpenButton = new System.Windows.Forms.Button();
     this.WatchListSaveButton = new System.Windows.Forms.Button();
     this.WatchAdd = new System.Windows.Forms.Button();
     this.WatchList = new System.Windows.Forms.DataGridView();
     this.WatchCName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WatchCAddress = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WatchCType = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WatchCValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WatchCM = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.WatchAddWatchCM = new System.Windows.Forms.ToolStripMenuItem();
     this.WatchDeleteCM = new System.Windows.Forms.ToolStripMenuItem();
     this.WatchPokeCM = new System.Windows.Forms.ToolStripMenuItem();
     this.WatchEditCM = new System.Windows.Forms.ToolStripMenuItem();
     this.FSATab = new System.Windows.Forms.TabPage();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.FSACodeData = new System.Windows.Forms.TextBox();
     this.FSARead = new System.Windows.Forms.Button();
     this.FSATreeView = new System.Windows.Forms.TreeView();
     this.fsaContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.extractFsaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.ToolPage = new System.Windows.Forms.TabPage();
     this.groupBox24 = new System.Windows.Forms.GroupBox();
     this.ToolsDump = new System.Windows.Forms.Button();
     this.ToolsBrowseDump = new System.Windows.Forms.Button();
     this.ToolsDumpFileName = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.ToolsDumpEnd = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.ToolsDumpStart = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.ToolsDumpRegions = new System.Windows.Forms.ComboBox();
     this.groupBox23 = new System.Windows.Forms.GroupBox();
     this.label13 = new System.Windows.Forms.Label();
     this.ToolsDisableWatchProtection = new System.Windows.Forms.CheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.ToolsDisableProtection = new System.Windows.Forms.CheckBox();
     this.label11 = new System.Windows.Forms.Label();
     this.AbtPage = new System.Windows.Forms.TabPage();
     this.checkBoxRegexSearch = new System.Windows.Forms.CheckBox();
     this.checkBoxBPNext = new System.Windows.Forms.CheckBox();
     this.numericUpDownFPS = new System.Windows.Forms.NumericUpDown();
     this.checkBoxFPS = new System.Windows.Forms.CheckBox();
     this.checkBoxAlwaysOnTop = new System.Windows.Forms.CheckBox();
     this.AbtText = new System.Windows.Forms.Label();
     this.addressTextBoxBPNext = new GeckoApp.external.AddressTextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.OpenNotePad = new System.Windows.Forms.Button();
     this.RGame = new System.Windows.Forms.Button();
     this.PGame = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.DisconnectButton = new System.Windows.Forms.Button();
     this.CTCPGecko = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.PCent = new System.Windows.Forms.Label();
     this.StatusCap = new System.Windows.Forms.Label();
     this.progressBar = new System.Windows.Forms.ProgressBar();
     this.WatchListOpen = new System.Windows.Forms.OpenFileDialog();
     this.WatchListSave = new System.Windows.Forms.SaveFileDialog();
     this.ToolsDumpSave = new System.Windows.Forms.SaveFileDialog();
     this.openBinary = new System.Windows.Forms.OpenFileDialog();
     this.timerFPS = new System.Windows.Forms.Timer(this.components);
     this.openFileDialogSearch = new System.Windows.Forms.OpenFileDialog();
     this.saveFileDialogSearch = new System.Windows.Forms.SaveFileDialog();
     this.saveFileDialogLogSteps = new System.Windows.Forms.SaveFileDialog();
     this.hostTextBox = new System.Windows.Forms.TextBox();
     this.ThreadContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.runningToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.unpauseThreadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.memoryViewerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.memViewGrid)).BeginInit();
     this.memViewContextMenu.SuspendLayout();
     this.MainControl.SuspendLayout();
     this.searchPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownNewSearchIndex)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownOldSearchIndex)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.UpDownSearchResultPage)).BeginInit();
     this.InputConvert.SuspendLayout();
     this.HistoryContextMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SearchResults)).BeginInit();
     this.SearchResMenu.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBoxSearchGroups.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownSearchGroup)).BeginInit();
     this.MemView.SuspendLayout();
     this.groupBox27.SuspendLayout();
     this.groupBox9.SuspendLayout();
     this.groupBox8.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MemViewScrollbar)).BeginInit();
     this.BreakpointPage.SuspendLayout();
     this.panel7.SuspendLayout();
     this.groupBox26.SuspendLayout();
     this.BPCondMenu.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel3.SuspendLayout();
     this.groupBox25.SuspendLayout();
     this.groupBox11.SuspendLayout();
     this.ShowMemContextMenu.SuspendLayout();
     this.groupBox10.SuspendLayout();
     this.DebugTabPage.SuspendLayout();
     this.ThreadBox.SuspendLayout();
     this.ThreadListGroupBox.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThreadGridView)).BeginInit();
     this.groupBoxStep.SuspendLayout();
     this.StepOutContextMenu.SuspendLayout();
     this.splitContainerRegASM.Panel1.SuspendLayout();
     this.splitContainerRegASM.Panel2.SuspendLayout();
     this.splitContainerRegASM.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel4.SuspendLayout();
     this.DisPage.SuspendLayout();
     this.groupBoxDisasmCallStack.SuspendLayout();
     this.CallStackContextMenu.SuspendLayout();
     this.groupBoxDisasm.SuspendLayout();
     this.groupBox13.SuspendLayout();
     this.groupBox12.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DisUpDown)).BeginInit();
     this.disAssContextMenu.SuspendLayout();
     this.shotPage.SuspendLayout();
     this.groupBox17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.JPGQual)).BeginInit();
     this.groupBox16.SuspendLayout();
     this.groupBox15.SuspendLayout();
     this.groupBox14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ScreenshotCapBox)).BeginInit();
     this.GCTPage.SuspendLayout();
     this.gctCodeMenu.SuspendLayout();
     this.WatchTab.SuspendLayout();
     this.groupBox18.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.WatchIntervalSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.WatchList)).BeginInit();
     this.WatchCM.SuspendLayout();
     this.FSATab.SuspendLayout();
     this.groupBox19.SuspendLayout();
     this.fsaContextMenuStrip.SuspendLayout();
     this.ToolPage.SuspendLayout();
     this.groupBox24.SuspendLayout();
     this.groupBox23.SuspendLayout();
     this.AbtPage.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownFPS)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.ThreadContextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripMenuItem1
     //
     toolStripMenuItem1.Name = "toolStripMenuItem1";
     toolStripMenuItem1.Size = new System.Drawing.Size(181, 6);
     //
     // memViewGrid
     //
     this.memViewGrid.AllowUserToAddRows = false;
     this.memViewGrid.AllowUserToDeleteRows = false;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Courier New", 20F);
     this.memViewGrid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.memViewGrid.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.memViewGrid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
     this.memViewGrid.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.DisplayedCells;
     this.memViewGrid.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.Disable;
     this.memViewGrid.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Courier New", 10F);
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.memViewGrid.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.memViewGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.memViewGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.address,
     this.c1,
     this.c2,
     this.c3,
     this.c4});
     this.memViewGrid.ContextMenuStrip = this.memViewContextMenu;
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Courier New", 18F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.memViewGrid.DefaultCellStyle = dataGridViewCellStyle8;
     this.memViewGrid.Location = new System.Drawing.Point(198, 12);
     this.memViewGrid.MultiSelect = false;
     this.memViewGrid.Name = "memViewGrid";
     this.memViewGrid.ReadOnly = true;
     this.memViewGrid.RightToLeft = System.Windows.Forms.RightToLeft.No;
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle9.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle9.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle9.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.memViewGrid.RowHeadersDefaultCellStyle = dataGridViewCellStyle9;
     this.memViewGrid.RowHeadersVisible = false;
     this.memViewGrid.RowHeadersWidth = 80;
     this.memViewGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle10.Font = new System.Drawing.Font("Courier New", 12F);
     dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.memViewGrid.RowsDefaultCellStyle = dataGridViewCellStyle10;
     this.memViewGrid.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     this.memViewGrid.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 10F);
     this.memViewGrid.RowTemplate.DefaultCellStyle.Padding = new System.Windows.Forms.Padding(4, 0, 0, 0);
     this.memViewGrid.RowTemplate.DefaultCellStyle.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.memViewGrid.RowTemplate.Height = 16;
     this.memViewGrid.RowTemplate.ReadOnly = true;
     this.memViewGrid.ScrollBars = System.Windows.Forms.ScrollBars.None;
     this.memViewGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.memViewGrid.ShowCellErrors = false;
     this.memViewGrid.ShowCellToolTips = false;
     this.memViewGrid.ShowEditingIcon = false;
     this.memViewGrid.ShowRowErrors = false;
     this.memViewGrid.Size = new System.Drawing.Size(397, 317);
     this.memViewGrid.TabIndex = 0;
     this.memViewGrid.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.memViewGrid_CellMouseClick);
     this.memViewGrid.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.memViewGrid_CellMouseDoubleClick);
     this.memViewGrid.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.memViewGrid_CellMouseDown);
     this.memViewGrid.CellMouseMove += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.memViewGrid_CellMouseMove);
     this.memViewGrid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.memViewGrid_KeyDown);
     //
     // address
     //
     this.address.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.ActiveCaptionText;
     this.address.DefaultCellStyle = dataGridViewCellStyle3;
     this.address.Frozen = true;
     this.address.HeaderText = "80000000";
     this.address.MaxInputLength = 8;
     this.address.Name = "address";
     this.address.ReadOnly = true;
     this.address.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.address.Width = 78;
     //
     // c1
     //
     this.c1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c1.DefaultCellStyle = dataGridViewCellStyle4;
     this.c1.HeaderText = "00010203";
     this.c1.MaxInputLength = 8;
     this.c1.Name = "c1";
     this.c1.ReadOnly = true;
     this.c1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.c1.Width = 78;
     //
     // c2
     //
     this.c2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle5.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c2.DefaultCellStyle = dataGridViewCellStyle5;
     this.c2.HeaderText = "04050607";
     this.c2.MaxInputLength = 8;
     this.c2.Name = "c2";
     this.c2.ReadOnly = true;
     this.c2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.c2.Width = 78;
     //
     // c3
     //
     this.c3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle6.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c3.DefaultCellStyle = dataGridViewCellStyle6;
     this.c3.HeaderText = "08090A0B";
     this.c3.MaxInputLength = 8;
     this.c3.Name = "c3";
     this.c3.ReadOnly = true;
     this.c3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.c3.Width = 78;
     //
     // c4
     //
     this.c4.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopLeft;
     dataGridViewCellStyle7.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.c4.DefaultCellStyle = dataGridViewCellStyle7;
     this.c4.HeaderText = "0C0D0E0F";
     this.c4.MaxInputLength = 8;
     this.c4.Name = "c4";
     this.c4.ReadOnly = true;
     this.c4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.c4.Width = 78;
     //
     // memViewContextMenu
     //
     this.memViewContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.goBackToolStripMenuItem,
     this.goForwardToolStripMenuItem,
     this.toolStripSeparator1,
     this.memViewSetBP,
     this.memViewAddToWatch,
     this.memViewAddGCTCode,
     this.gCTWizardToolStripMenuItem2,
     this.disassemblerToolStripMenuItem,
     this.memViewUpload,
     this.toolStripMenuItem5,
     this.copySelectionToolStripMenuItem,
     this.copyAllCellsToolStripMenuItem,
     this.toolStripMenuItem16,
     this.jumpToOffsetToolStripMenuItem,
     this.fontSizeToolStripMenuItem});
     this.memViewContextMenu.Name = "memViewContextMenu";
     this.memViewContextMenu.Size = new System.Drawing.Size(247, 286);
     //
     // goBackToolStripMenuItem
     //
     this.goBackToolStripMenuItem.Name = "goBackToolStripMenuItem";
     this.goBackToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.goBackToolStripMenuItem.Text = "Go Bac&k";
     this.goBackToolStripMenuItem.Click += new System.EventHandler(this.goBackToolStripMenuItem_Click);
     //
     // goForwardToolStripMenuItem
     //
     this.goForwardToolStripMenuItem.Name = "goForwardToolStripMenuItem";
     this.goForwardToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.goForwardToolStripMenuItem.Text = "Go &Forward";
     this.goForwardToolStripMenuItem.Click += new System.EventHandler(this.goForwardToolStripMenuItem_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(243, 6);
     //
     // memViewSetBP
     //
     this.memViewSetBP.Name = "memViewSetBP";
     this.memViewSetBP.Size = new System.Drawing.Size(246, 22);
     this.memViewSetBP.Text = "&Breakpoint";
     this.memViewSetBP.Click += new System.EventHandler(this.memViewSetBP_Click);
     //
     // memViewAddToWatch
     //
     this.memViewAddToWatch.Name = "memViewAddToWatch";
     this.memViewAddToWatch.Size = new System.Drawing.Size(246, 22);
     this.memViewAddToWatch.Text = "&Watchlist";
     this.memViewAddToWatch.Click += new System.EventHandler(this.memViewAddToWatch_Click);
     //
     // memViewAddGCTCode
     //
     this.memViewAddGCTCode.Name = "memViewAddGCTCode";
     this.memViewAddGCTCode.Size = new System.Drawing.Size(246, 22);
     this.memViewAddGCTCode.Text = "GCT code";
     this.memViewAddGCTCode.Click += new System.EventHandler(this.memViewAddGCTCode_Click);
     //
     // gCTWizardToolStripMenuItem2
     //
     this.gCTWizardToolStripMenuItem2.Name = "gCTWizardToolStripMenuItem2";
     this.gCTWizardToolStripMenuItem2.Size = new System.Drawing.Size(246, 22);
     this.gCTWizardToolStripMenuItem2.Text = "&GCT wizard...";
     this.gCTWizardToolStripMenuItem2.Click += new System.EventHandler(this.gCTWizardToolStripMenuItemMemView_Click);
     //
     // disassemblerToolStripMenuItem
     //
     this.disassemblerToolStripMenuItem.Name = "disassemblerToolStripMenuItem";
     this.disassemblerToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.disassemblerToolStripMenuItem.Text = "&Disassembler";
     this.disassemblerToolStripMenuItem.Click += new System.EventHandler(this.disassemblerToolStripMenuItem_Click);
     //
     // memViewUpload
     //
     this.memViewUpload.Name = "memViewUpload";
     this.memViewUpload.Size = new System.Drawing.Size(246, 22);
     this.memViewUpload.Text = "Upload data";
     this.memViewUpload.Click += new System.EventHandler(this.memViewUpload_Click);
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(243, 6);
     //
     // copySelectionToolStripMenuItem
     //
     this.copySelectionToolStripMenuItem.Name = "copySelectionToolStripMenuItem";
     this.copySelectionToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.copySelectionToolStripMenuItem.Text = "&Copy Selection  ( Ctrl + C )";
     this.copySelectionToolStripMenuItem.Click += new System.EventHandler(this.copySelectionToolStripMenuItem_Click);
     //
     // copyAllCellsToolStripMenuItem
     //
     this.copyAllCellsToolStripMenuItem.Name = "copyAllCellsToolStripMenuItem";
     this.copyAllCellsToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.copyAllCellsToolStripMenuItem.Text = "Copy &All Cells  ( Ctrl + Shift + C )";
     this.copyAllCellsToolStripMenuItem.Click += new System.EventHandler(this.copyAllCellsToolStripMenuItem_Click);
     //
     // toolStripMenuItem16
     //
     this.toolStripMenuItem16.Name = "toolStripMenuItem16";
     this.toolStripMenuItem16.Size = new System.Drawing.Size(243, 6);
     //
     // jumpToOffsetToolStripMenuItem
     //
     this.jumpToOffsetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTextBoxMemViewOffset});
     this.jumpToOffsetToolStripMenuItem.Name = "jumpToOffsetToolStripMenuItem";
     this.jumpToOffsetToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.jumpToOffsetToolStripMenuItem.Text = "Jump To &Offset";
     this.jumpToOffsetToolStripMenuItem.MouseMove += new System.Windows.Forms.MouseEventHandler(this.jumpToOffsetToolStripMenuItem_MouseMove);
     //
     // toolStripTextBoxMemViewOffset
     //
     this.toolStripTextBoxMemViewOffset.Name = "toolStripTextBoxMemViewOffset";
     this.toolStripTextBoxMemViewOffset.Size = new System.Drawing.Size(80, 23);
     this.toolStripTextBoxMemViewOffset.Text = "0";
     this.toolStripTextBoxMemViewOffset.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBoxMemViewOffset_KeyDown);
     //
     // fontSizeToolStripMenuItem
     //
     this.fontSizeToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTextBoxMemViewFontSize});
     this.fontSizeToolStripMenuItem.Name = "fontSizeToolStripMenuItem";
     this.fontSizeToolStripMenuItem.Size = new System.Drawing.Size(246, 22);
     this.fontSizeToolStripMenuItem.Text = "Font Size";
     this.fontSizeToolStripMenuItem.MouseMove += new System.Windows.Forms.MouseEventHandler(this.fontSizeToolStripMenuItem_MouseMove);
     //
     // toolStripTextBoxMemViewFontSize
     //
     this.toolStripTextBoxMemViewFontSize.MaxLength = 8;
     this.toolStripTextBoxMemViewFontSize.Name = "toolStripTextBoxMemViewFontSize";
     this.toolStripTextBoxMemViewFontSize.Size = new System.Drawing.Size(80, 23);
     this.toolStripTextBoxMemViewFontSize.Text = "8.75";
     this.toolStripTextBoxMemViewFontSize.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBoxMemViewFontSize_KeyDown);
     //
     // MainControl
     //
     this.MainControl.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.MainControl.Controls.Add(this.searchPage);
     this.MainControl.Controls.Add(this.MemView);
     this.MainControl.Controls.Add(this.BreakpointPage);
     this.MainControl.Controls.Add(this.DebugTabPage);
     this.MainControl.Controls.Add(this.DisPage);
     this.MainControl.Controls.Add(this.shotPage);
     this.MainControl.Controls.Add(this.GCTPage);
     this.MainControl.Controls.Add(this.WatchTab);
     this.MainControl.Controls.Add(this.FSATab);
     this.MainControl.Controls.Add(this.ToolPage);
     this.MainControl.Controls.Add(this.AbtPage);
     this.MainControl.Location = new System.Drawing.Point(1, 1);
     this.MainControl.MinimumSize = new System.Drawing.Size(565, 322);
     this.MainControl.Name = "MainControl";
     this.MainControl.Padding = new System.Drawing.Point(4, 3);
     this.MainControl.SelectedIndex = 0;
     this.MainControl.Size = new System.Drawing.Size(622, 361);
     this.MainControl.TabIndex = 0;
     this.MainControl.Selecting += new System.Windows.Forms.TabControlCancelEventHandler(this.MainControl_Selecting);
     //
     // searchPage
     //
     this.searchPage.BackColor = System.Drawing.Color.Transparent;
     this.searchPage.Controls.Add(this.buttonSerialPoke);
     this.searchPage.Controls.Add(this.numericUpDownNewSearchIndex);
     this.searchPage.Controls.Add(this.buttonUndoSearch);
     this.searchPage.Controls.Add(this.labelSearchDataType);
     this.searchPage.Controls.Add(this.numericUpDownOldSearchIndex);
     this.searchPage.Controls.Add(this.Search);
     this.searchPage.Controls.Add(this.comboBoxSearchDataType);
     this.searchPage.Controls.Add(this.buttonCancelSearch);
     this.searchPage.Controls.Add(this.buttonSaveSearch);
     this.searchPage.Controls.Add(this.UpDownSearchResultPage);
     this.searchPage.Controls.Add(this.buttonLoadSearch);
     this.searchPage.Controls.Add(this.PValue);
     this.searchPage.Controls.Add(this.comboBoxDisplayType);
     this.searchPage.Controls.Add(this.PButton);
     this.searchPage.Controls.Add(this.label5);
     this.searchPage.Controls.Add(this.PAddress);
     this.searchPage.Controls.Add(this.NxtPage);
     this.searchPage.Controls.Add(this.ResList);
     this.searchPage.Controls.Add(this.SearchResults);
     this.searchPage.Controls.Add(this.PrvPage);
     this.searchPage.Controls.Add(this.ResSrch);
     this.searchPage.Controls.Add(this.groupBox1);
     this.searchPage.Controls.Add(this.groupBox4);
     this.searchPage.Controls.Add(this.groupBoxSearchGroups);
     this.searchPage.Location = new System.Drawing.Point(4, 22);
     this.searchPage.Name = "searchPage";
     this.searchPage.Padding = new System.Windows.Forms.Padding(3);
     this.searchPage.Size = new System.Drawing.Size(614, 335);
     this.searchPage.TabIndex = 0;
     this.searchPage.Text = "Search";
     this.searchPage.UseVisualStyleBackColor = true;
     //
     // buttonSerialPoke
     //
     this.buttonSerialPoke.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonSerialPoke.Location = new System.Drawing.Point(539, 308);
     this.buttonSerialPoke.Name = "buttonSerialPoke";
     this.buttonSerialPoke.Size = new System.Drawing.Size(69, 21);
     this.buttonSerialPoke.TabIndex = 23;
     this.buttonSerialPoke.Tag = "0";
     this.buttonSerialPoke.Text = "Serial Poke";
     this.buttonSerialPoke.UseVisualStyleBackColor = true;
     this.buttonSerialPoke.Click += new System.EventHandler(this.buttonSerialPoke_Click);
     //
     // numericUpDownNewSearchIndex
     //
     this.numericUpDownNewSearchIndex.Location = new System.Drawing.Point(436, 3);
     this.numericUpDownNewSearchIndex.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.numericUpDownNewSearchIndex.Name = "numericUpDownNewSearchIndex";
     this.numericUpDownNewSearchIndex.Size = new System.Drawing.Size(44, 20);
     this.numericUpDownNewSearchIndex.TabIndex = 21;
     this.numericUpDownNewSearchIndex.ValueChanged += new System.EventHandler(this.numericUpDownNewSearchIndex_ValueChanged);
     //
     // buttonUndoSearch
     //
     this.buttonUndoSearch.Location = new System.Drawing.Point(7, 258);
     this.buttonUndoSearch.Name = "buttonUndoSearch";
     this.buttonUndoSearch.Size = new System.Drawing.Size(87, 32);
     this.buttonUndoSearch.TabIndex = 18;
     this.buttonUndoSearch.Text = "Undo Search";
     this.buttonUndoSearch.UseVisualStyleBackColor = true;
     this.buttonUndoSearch.Click += new System.EventHandler(this.buttonUndoSearch_Click);
     //
     // labelSearchDataType
     //
     this.labelSearchDataType.AutoSize = true;
     this.labelSearchDataType.Location = new System.Drawing.Point(10, 59);
     this.labelSearchDataType.Name = "labelSearchDataType";
     this.labelSearchDataType.Size = new System.Drawing.Size(57, 13);
     this.labelSearchDataType.TabIndex = 22;
     this.labelSearchDataType.Text = "Data Type";
     //
     // numericUpDownOldSearchIndex
     //
     this.numericUpDownOldSearchIndex.Location = new System.Drawing.Point(373, 3);
     this.numericUpDownOldSearchIndex.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.numericUpDownOldSearchIndex.Name = "numericUpDownOldSearchIndex";
     this.numericUpDownOldSearchIndex.Size = new System.Drawing.Size(44, 20);
     this.numericUpDownOldSearchIndex.TabIndex = 19;
     this.numericUpDownOldSearchIndex.ValueChanged += new System.EventHandler(this.numericUpDownOldSearchIndex_ValueChanged);
     //
     // Search
     //
     this.Search.Location = new System.Drawing.Point(7, 220);
     this.Search.Name = "Search";
     this.Search.Size = new System.Drawing.Size(87, 32);
     this.Search.TabIndex = 4;
     this.Search.Text = "Search";
     this.Search.UseVisualStyleBackColor = true;
     this.Search.Click += new System.EventHandler(this.Search_Click);
     //
     // comboBoxSearchDataType
     //
     this.comboBoxSearchDataType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxSearchDataType.FormattingEnabled = true;
     this.comboBoxSearchDataType.Items.AddRange(new object[] {
     "8 bit",
     "16 bit",
     "32 bit",
     "Single"});
     this.comboBoxSearchDataType.Location = new System.Drawing.Point(72, 56);
     this.comboBoxSearchDataType.Name = "comboBoxSearchDataType";
     this.comboBoxSearchDataType.Size = new System.Drawing.Size(68, 21);
     this.comboBoxSearchDataType.TabIndex = 1;
     this.comboBoxSearchDataType.SelectedIndexChanged += new System.EventHandler(this.ValueLength_SelectedIndexChanged);
     //
     // buttonCancelSearch
     //
     this.buttonCancelSearch.Location = new System.Drawing.Point(98, 220);
     this.buttonCancelSearch.Name = "buttonCancelSearch";
     this.buttonCancelSearch.Size = new System.Drawing.Size(87, 32);
     this.buttonCancelSearch.TabIndex = 15;
     this.buttonCancelSearch.Text = "Cancel Search";
     this.buttonCancelSearch.UseVisualStyleBackColor = true;
     this.buttonCancelSearch.Click += new System.EventHandler(this.buttonCancelSearch_Click);
     //
     // buttonSaveSearch
     //
     this.buttonSaveSearch.Location = new System.Drawing.Point(98, 258);
     this.buttonSaveSearch.Name = "buttonSaveSearch";
     this.buttonSaveSearch.Size = new System.Drawing.Size(87, 32);
     this.buttonSaveSearch.TabIndex = 14;
     this.buttonSaveSearch.Text = "Save Search";
     this.buttonSaveSearch.UseVisualStyleBackColor = true;
     this.buttonSaveSearch.Click += new System.EventHandler(this.buttonSaveSearch_Click);
     //
     // UpDownSearchResultPage
     //
     this.UpDownSearchResultPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.UpDownSearchResultPage.Location = new System.Drawing.Point(471, 281);
     this.UpDownSearchResultPage.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.UpDownSearchResultPage.Name = "UpDownSearchResultPage";
     this.UpDownSearchResultPage.Size = new System.Drawing.Size(62, 20);
     this.UpDownSearchResultPage.TabIndex = 16;
     this.UpDownSearchResultPage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.UpDownSearchResultPage.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // buttonLoadSearch
     //
     this.buttonLoadSearch.Location = new System.Drawing.Point(190, 258);
     this.buttonLoadSearch.Name = "buttonLoadSearch";
     this.buttonLoadSearch.Size = new System.Drawing.Size(87, 32);
     this.buttonLoadSearch.TabIndex = 13;
     this.buttonLoadSearch.Text = "Load Search";
     this.buttonLoadSearch.UseVisualStyleBackColor = true;
     this.buttonLoadSearch.Click += new System.EventHandler(this.buttonLoadSearch_Click);
     //
     // PValue
     //
     this.PValue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.PValue.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.PValue.ContextMenuStrip = this.InputConvert;
     this.PValue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PValue.Location = new System.Drawing.Point(399, 308);
     this.PValue.MaxLength = 8;
     this.PValue.Name = "PValue";
     this.PValue.Size = new System.Drawing.Size(62, 20);
     this.PValue.TabIndex = 11;
     this.PValue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.PValue_KeyPress);
     this.PValue.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lowerValue_MouseClick);
     //
     // InputConvert
     //
     this.InputConvert.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.CvDecHex,
     this.CvFloatHex,
     this.convertASCIIToHexToolStripMenuItem,
     this.CvHexDec,
     this.cvHexFloat,
     this.convertHexToASCIIToolStripMenuItem,
     toolStripMenuItem1,
     this.InputCvCopy,
     this.InputCvCut,
     this.InputCvPaste,
     this.toolStripMenuItem2,
     this.InputCvSelectAll,
     this.InputCvUndo});
     this.InputConvert.Name = "InputEdit";
     this.InputConvert.Size = new System.Drawing.Size(185, 258);
     //
     // CvDecHex
     //
     this.CvDecHex.Name = "CvDecHex";
     this.CvDecHex.Size = new System.Drawing.Size(184, 22);
     this.CvDecHex.Text = "Convert Dec to Hex";
     this.CvDecHex.Click += new System.EventHandler(this.CvDecHexClick);
     //
     // CvFloatHex
     //
     this.CvFloatHex.Name = "CvFloatHex";
     this.CvFloatHex.Size = new System.Drawing.Size(184, 22);
     this.CvFloatHex.Text = "Convert Float to Hex";
     this.CvFloatHex.Click += new System.EventHandler(this.CvFloatHex_Click);
     //
     // convertASCIIToHexToolStripMenuItem
     //
     this.convertASCIIToHexToolStripMenuItem.Name = "convertASCIIToHexToolStripMenuItem";
     this.convertASCIIToHexToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.convertASCIIToHexToolStripMenuItem.Text = "Convert ASCII to Hex";
     this.convertASCIIToHexToolStripMenuItem.Click += new System.EventHandler(this.convertASCIIToHexToolStripMenuItem_Click);
     //
     // CvHexDec
     //
     this.CvHexDec.Name = "CvHexDec";
     this.CvHexDec.Size = new System.Drawing.Size(184, 22);
     this.CvHexDec.Text = "Convert Hex to Dec";
     this.CvHexDec.Click += new System.EventHandler(this.CvHexDec_Click);
     //
     // cvHexFloat
     //
     this.cvHexFloat.Name = "cvHexFloat";
     this.cvHexFloat.Size = new System.Drawing.Size(184, 22);
     this.cvHexFloat.Text = "Convert Hex to Float";
     this.cvHexFloat.Click += new System.EventHandler(this.cvHexFloat_Click);
     //
     // convertHexToASCIIToolStripMenuItem
     //
     this.convertHexToASCIIToolStripMenuItem.Name = "convertHexToASCIIToolStripMenuItem";
     this.convertHexToASCIIToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
     this.convertHexToASCIIToolStripMenuItem.Text = "Convert Hex to ASCII";
     this.convertHexToASCIIToolStripMenuItem.Click += new System.EventHandler(this.convertHexToASCIIToolStripMenuItem_Click);
     //
     // InputCvCopy
     //
     this.InputCvCopy.Name = "InputCvCopy";
     this.InputCvCopy.Size = new System.Drawing.Size(184, 22);
     this.InputCvCopy.Text = "Copy";
     this.InputCvCopy.Click += new System.EventHandler(this.InputCvCopy_Click);
     //
     // InputCvCut
     //
     this.InputCvCut.Name = "InputCvCut";
     this.InputCvCut.Size = new System.Drawing.Size(184, 22);
     this.InputCvCut.Text = "Cut";
     this.InputCvCut.Click += new System.EventHandler(this.InputCvCut_Click);
     //
     // InputCvPaste
     //
     this.InputCvPaste.Name = "InputCvPaste";
     this.InputCvPaste.Size = new System.Drawing.Size(184, 22);
     this.InputCvPaste.Text = "Paste";
     this.InputCvPaste.Click += new System.EventHandler(this.InputCvPaste_Click);
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(181, 6);
     //
     // InputCvSelectAll
     //
     this.InputCvSelectAll.Name = "InputCvSelectAll";
     this.InputCvSelectAll.Size = new System.Drawing.Size(184, 22);
     this.InputCvSelectAll.Text = "Select All";
     this.InputCvSelectAll.Click += new System.EventHandler(this.InputCvSelectAll_Click);
     //
     // InputCvUndo
     //
     this.InputCvUndo.Name = "InputCvUndo";
     this.InputCvUndo.Size = new System.Drawing.Size(184, 22);
     this.InputCvUndo.Text = "Undo";
     this.InputCvUndo.Click += new System.EventHandler(this.InputCvUndo_Click);
     //
     // comboBoxDisplayType
     //
     this.comboBoxDisplayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxDisplayType.FormattingEnabled = true;
     this.comboBoxDisplayType.Items.AddRange(new object[] {
     "Hex",
     "Dec",
     "Single"});
     this.comboBoxDisplayType.Location = new System.Drawing.Point(211, 56);
     this.comboBoxDisplayType.Name = "comboBoxDisplayType";
     this.comboBoxDisplayType.Size = new System.Drawing.Size(63, 21);
     this.comboBoxDisplayType.TabIndex = 17;
     this.comboBoxDisplayType.SelectedIndexChanged += new System.EventHandler(this.comboBoxDisplayType_SelectedIndexChanged);
     //
     // PButton
     //
     this.PButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.PButton.Location = new System.Drawing.Point(471, 308);
     this.PButton.Name = "PButton";
     this.PButton.Size = new System.Drawing.Size(62, 21);
     this.PButton.TabIndex = 12;
     this.PButton.Tag = "0";
     this.PButton.Text = "Poke";
     this.PButton.UseVisualStyleBackColor = true;
     this.PButton.Click += new System.EventHandler(this.PButton_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(151, 59);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(60, 13);
     this.label5.TabIndex = 6;
     this.label5.Text = "View Mode";
     this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // PAddress
     //
     this.PAddress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.PAddress.AutoHistory = true;
     this.PAddress.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.PAddress.ContextMenuStrip = this.HistoryContextMenu;
     this.PAddress.EndingAddress = false;
     this.PAddress.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PAddress.Location = new System.Drawing.Point(331, 308);
     this.PAddress.MaxLength = 8;
     this.PAddress.MultiPokeAddress = true;
     this.PAddress.Name = "PAddress";
     this.PAddress.Size = new System.Drawing.Size(62, 20);
     this.PAddress.TabIndex = 10;
     this.PAddress.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.PAddress_KeyPress);
     //
     // HistoryContextMenu
     //
     this.HistoryContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem1,
     this.pasteToolStripMenuItem,
     this.toolStripMenuItem8,
     this.addToolStripMenuItem,
     this.removeToolStripMenuItem,
     this.toolStripMenuItem6,
     this.clearAllHistoryToolStripMenuItem,
     this.cutAllHistoryToolStripMenuItem,
     this.copyAllHistoryToolStripMenuItem,
     this.pasteAllHistoryToolStripMenuItem,
     this.toolStripMenuItem7,
     this.showHistoryToolStripMenuItem,
     this.autoHistoryToolStripMenuItem,
     this.toolStripMenuItem19,
     this.addOffsetToolStripMenuItem});
     this.HistoryContextMenu.Name = "addressContextMenu";
     this.HistoryContextMenu.Size = new System.Drawing.Size(268, 270);
     this.HistoryContextMenu.Opened += new System.EventHandler(this.addressContextMenu_Opened);
     //
     // copyToolStripMenuItem1
     //
     this.copyToolStripMenuItem1.Name = "copyToolStripMenuItem1";
     this.copyToolStripMenuItem1.Size = new System.Drawing.Size(267, 22);
     this.copyToolStripMenuItem1.Text = "&Copy  ( Ctrl + C )";
     this.copyToolStripMenuItem1.Click += new System.EventHandler(this.copyToolStripMenuItem1_Click);
     //
     // pasteToolStripMenuItem
     //
     this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
     this.pasteToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.pasteToolStripMenuItem.Text = "&Paste  ( Ctrl + V )";
     this.pasteToolStripMenuItem.Click += new System.EventHandler(this.pasteToolStripMenuItem_Click);
     //
     // toolStripMenuItem8
     //
     this.toolStripMenuItem8.Name = "toolStripMenuItem8";
     this.toolStripMenuItem8.Size = new System.Drawing.Size(264, 6);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.addToolStripMenuItem.Text = "Add to History  ( Ctrl + Enter )";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
     //
     // removeToolStripMenuItem
     //
     this.removeToolStripMenuItem.Name = "removeToolStripMenuItem";
     this.removeToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.removeToolStripMenuItem.Text = "Remove from History  ( Ctrl + Del )";
     this.removeToolStripMenuItem.Click += new System.EventHandler(this.removeToolStripMenuItem_Click);
     //
     // toolStripMenuItem6
     //
     this.toolStripMenuItem6.Name = "toolStripMenuItem6";
     this.toolStripMenuItem6.Size = new System.Drawing.Size(264, 6);
     //
     // clearAllHistoryToolStripMenuItem
     //
     this.clearAllHistoryToolStripMenuItem.Name = "clearAllHistoryToolStripMenuItem";
     this.clearAllHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.clearAllHistoryToolStripMenuItem.Text = "Clear All History  ( Ctrl + Shift + Del )";
     this.clearAllHistoryToolStripMenuItem.Click += new System.EventHandler(this.clearAllHistoryToolStripMenuItem_Click);
     //
     // cutAllHistoryToolStripMenuItem
     //
     this.cutAllHistoryToolStripMenuItem.Name = "cutAllHistoryToolStripMenuItem";
     this.cutAllHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.cutAllHistoryToolStripMenuItem.Text = "Cut All History  ( Ctrl + Shift + X )";
     this.cutAllHistoryToolStripMenuItem.Click += new System.EventHandler(this.cutAllHistoryToolStripMenuItem_Click);
     //
     // copyAllHistoryToolStripMenuItem
     //
     this.copyAllHistoryToolStripMenuItem.Name = "copyAllHistoryToolStripMenuItem";
     this.copyAllHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.copyAllHistoryToolStripMenuItem.Text = "Copy All History  ( Ctrl + Shift + C )";
     this.copyAllHistoryToolStripMenuItem.Click += new System.EventHandler(this.copyAllHistoryToolStripMenuItem_Click);
     //
     // pasteAllHistoryToolStripMenuItem
     //
     this.pasteAllHistoryToolStripMenuItem.Name = "pasteAllHistoryToolStripMenuItem";
     this.pasteAllHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.pasteAllHistoryToolStripMenuItem.Text = "Paste All History  ( Ctrl + Shift + V )";
     this.pasteAllHistoryToolStripMenuItem.Click += new System.EventHandler(this.pasteAllHistoryToolStripMenuItem_Click);
     //
     // toolStripMenuItem7
     //
     this.toolStripMenuItem7.Name = "toolStripMenuItem7";
     this.toolStripMenuItem7.Size = new System.Drawing.Size(264, 6);
     //
     // showHistoryToolStripMenuItem
     //
     this.showHistoryToolStripMenuItem.Name = "showHistoryToolStripMenuItem";
     this.showHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.showHistoryToolStripMenuItem.Text = "Show History  ( double-click )";
     this.showHistoryToolStripMenuItem.Click += new System.EventHandler(this.showHistoryToolStripMenuItem_Click);
     //
     // autoHistoryToolStripMenuItem
     //
     this.autoHistoryToolStripMenuItem.Name = "autoHistoryToolStripMenuItem";
     this.autoHistoryToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.autoHistoryToolStripMenuItem.Text = "&Auto Add History";
     this.autoHistoryToolStripMenuItem.Click += new System.EventHandler(this.autoHistoryToolStripMenuItem_Click);
     //
     // toolStripMenuItem19
     //
     this.toolStripMenuItem19.Name = "toolStripMenuItem19";
     this.toolStripMenuItem19.Size = new System.Drawing.Size(264, 6);
     //
     // addOffsetToolStripMenuItem
     //
     this.addOffsetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTextBoxAddressAddOffset});
     this.addOffsetToolStripMenuItem.Name = "addOffsetToolStripMenuItem";
     this.addOffsetToolStripMenuItem.Size = new System.Drawing.Size(267, 22);
     this.addOffsetToolStripMenuItem.Text = "Add &Offset";
     this.addOffsetToolStripMenuItem.MouseMove += new System.Windows.Forms.MouseEventHandler(this.addOffsetToolStripMenuItem_MouseMove);
     //
     // toolStripTextBoxAddressAddOffset
     //
     this.toolStripTextBoxAddressAddOffset.Name = "toolStripTextBoxAddressAddOffset";
     this.toolStripTextBoxAddressAddOffset.Size = new System.Drawing.Size(80, 23);
     this.toolStripTextBoxAddressAddOffset.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBoxAddressAddOffset_KeyDown);
     //
     // NxtPage
     //
     this.NxtPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.NxtPage.Enabled = false;
     this.NxtPage.Location = new System.Drawing.Point(576, 281);
     this.NxtPage.Name = "NxtPage";
     this.NxtPage.Size = new System.Drawing.Size(32, 21);
     this.NxtPage.TabIndex = 9;
     this.NxtPage.Text = "-->";
     this.NxtPage.UseVisualStyleBackColor = true;
     //
     // ResList
     //
     this.ResList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.ResList.AutoEllipsis = true;
     this.ResList.Location = new System.Drawing.Point(280, 281);
     this.ResList.Name = "ResList";
     this.ResList.Size = new System.Drawing.Size(193, 20);
     this.ResList.TabIndex = 7;
     this.ResList.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // SearchResults
     //
     this.SearchResults.AllowUserToAddRows = false;
     this.SearchResults.AllowUserToResizeRows = false;
     this.SearchResults.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.SearchResults.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight;
     this.SearchResults.ClipboardCopyMode = System.Windows.Forms.DataGridViewClipboardCopyMode.EnableWithoutHeaderText;
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle11.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle11.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle11.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.SearchResults.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle11;
     this.SearchResults.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.SearchResults.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ACol,
     this.OVal,
     this.NVal,
     this.DifferCol});
     this.SearchResults.ContextMenuStrip = this.SearchResMenu;
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle12.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle12.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle12.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle12.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle12.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.SearchResults.DefaultCellStyle = dataGridViewCellStyle12;
     this.SearchResults.GridColor = System.Drawing.SystemColors.ActiveBorder;
     this.SearchResults.Location = new System.Drawing.Point(285, 25);
     this.SearchResults.Name = "SearchResults";
     this.SearchResults.ReadOnly = true;
     dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle13.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle13.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle13.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle13.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle13.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.SearchResults.RowHeadersDefaultCellStyle = dataGridViewCellStyle13;
     this.SearchResults.RowHeadersVisible = false;
     this.SearchResults.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     dataGridViewCellStyle14.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SearchResults.RowsDefaultCellStyle = dataGridViewCellStyle14;
     this.SearchResults.RowTemplate.Height = 24;
     this.SearchResults.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.SearchResults.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.SearchResults.ShowCellErrors = false;
     this.SearchResults.ShowCellToolTips = false;
     this.SearchResults.ShowEditingIcon = false;
     this.SearchResults.ShowRowErrors = false;
     this.SearchResults.Size = new System.Drawing.Size(322, 250);
     this.SearchResults.TabIndex = 6;
     this.SearchResults.CellMouseDown += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.SearchResults_CellMouseDown);
     this.SearchResults.ColumnDividerDoubleClick += new System.Windows.Forms.DataGridViewColumnDividerDoubleClickEventHandler(this.SearchResults_ColumnDividerDoubleClick);
     this.SearchResults.Sorted += new System.EventHandler(this.SearchResults_Sorted);
     this.SearchResults.UserDeletingRow += new System.Windows.Forms.DataGridViewRowCancelEventHandler(this.SearchResults_UserDeletingRow);
     //
     // ACol
     //
     this.ACol.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None;
     this.ACol.HeaderText = "Address";
     this.ACol.Name = "ACol";
     this.ACol.ReadOnly = true;
     this.ACol.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.ACol.Width = 80;
     //
     // OVal
     //
     this.OVal.HeaderText = "Old";
     this.OVal.Name = "OVal";
     this.OVal.ReadOnly = true;
     this.OVal.Width = 53;
     //
     // NVal
     //
     this.NVal.HeaderText = "New";
     this.NVal.Name = "NVal";
     this.NVal.ReadOnly = true;
     this.NVal.Width = 53;
     //
     // DifferCol
     //
     this.DifferCol.HeaderText = "Diff";
     this.DifferCol.Name = "DifferCol";
     this.DifferCol.ReadOnly = true;
     this.DifferCol.Width = 60;
     //
     // SearchResMenu
     //
     this.SearchResMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.PkAddress,
     this.ShowInMemView,
     this.BpSAddress,
     this.ShowInDiss,
     this.showInWatchList,
     this.makeCode,
     this.gCTWizardToolStripMenuItem,
     this.toolStripMenuItem3,
     this.copyToolStripMenuItem,
     this.SortToolStripMenuItem,
     this.toolStripMenuItem4,
     this.deleteToolStripMenuItem});
     this.SearchResMenu.Name = "SearchResMenu";
     this.SearchResMenu.Size = new System.Drawing.Size(161, 236);
     //
     // PkAddress
     //
     this.PkAddress.Name = "PkAddress";
     this.PkAddress.Size = new System.Drawing.Size(160, 22);
     this.PkAddress.Text = "&Poke";
     this.PkAddress.Click += new System.EventHandler(this.PkAddress_Click);
     //
     // ShowInMemView
     //
     this.ShowInMemView.Name = "ShowInMemView";
     this.ShowInMemView.Size = new System.Drawing.Size(160, 22);
     this.ShowInMemView.Text = "&Memory Viewer";
     this.ShowInMemView.Click += new System.EventHandler(this.ShowInMemView_Click);
     //
     // BpSAddress
     //
     this.BpSAddress.Name = "BpSAddress";
     this.BpSAddress.Size = new System.Drawing.Size(160, 22);
     this.BpSAddress.Text = "&Breakpoint";
     this.BpSAddress.Click += new System.EventHandler(this.BpSAddress_Click);
     //
     // ShowInDiss
     //
     this.ShowInDiss.Name = "ShowInDiss";
     this.ShowInDiss.Size = new System.Drawing.Size(160, 22);
     this.ShowInDiss.Text = "&Disassembler";
     this.ShowInDiss.Click += new System.EventHandler(this.ShowInDiss_Click);
     //
     // showInWatchList
     //
     this.showInWatchList.Name = "showInWatchList";
     this.showInWatchList.Size = new System.Drawing.Size(160, 22);
     this.showInWatchList.Text = "Add to &watchlist";
     this.showInWatchList.Click += new System.EventHandler(this.showInWatchList_Click);
     //
     // makeCode
     //
     this.makeCode.Name = "makeCode";
     this.makeCode.Size = new System.Drawing.Size(160, 22);
     this.makeCode.Text = "New GCT code";
     this.makeCode.Click += new System.EventHandler(this.makeCode_Click);
     //
     // gCTWizardToolStripMenuItem
     //
     this.gCTWizardToolStripMenuItem.Name = "gCTWizardToolStripMenuItem";
     this.gCTWizardToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.gCTWizardToolStripMenuItem.Text = "&GCT Wizard...";
     this.gCTWizardToolStripMenuItem.Click += new System.EventHandler(this.gCTWizardToolStripMenuItem_Click);
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(157, 6);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     this.copyToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.copyToolStripMenuItem.Text = "&Copy";
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // SortToolStripMenuItem
     //
     this.SortToolStripMenuItem.Name = "SortToolStripMenuItem";
     this.SortToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.SortToolStripMenuItem.Text = "&Sort";
     this.SortToolStripMenuItem.Click += new System.EventHandler(this.SortToolStripMenuItem_Click);
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(157, 6);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // PrvPage
     //
     this.PrvPage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.PrvPage.Enabled = false;
     this.PrvPage.Location = new System.Drawing.Point(539, 281);
     this.PrvPage.Name = "PrvPage";
     this.PrvPage.Size = new System.Drawing.Size(32, 21);
     this.PrvPage.TabIndex = 8;
     this.PrvPage.Text = "<--";
     this.PrvPage.UseVisualStyleBackColor = true;
     //
     // ResSrch
     //
     this.ResSrch.Enabled = false;
     this.ResSrch.Location = new System.Drawing.Point(190, 220);
     this.ResSrch.Name = "ResSrch";
     this.ResSrch.Size = new System.Drawing.Size(87, 32);
     this.ResSrch.TabIndex = 5;
     this.ResSrch.Text = "Restart search";
     this.ResSrch.UseVisualStyleBackColor = true;
     this.ResSrch.Click += new System.EventHandler(this.ResSrch_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.memEnd);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.memStart);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.memRange);
     this.groupBox1.Location = new System.Drawing.Point(7, 6);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(272, 44);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Memory Range";
     //
     // memEnd
     //
     this.memEnd.AutoHistory = true;
     this.memEnd.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.memEnd.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.memEnd.ContextMenuStrip = this.HistoryContextMenu;
     this.memEnd.EndingAddress = true;
     this.memEnd.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memEnd.Location = new System.Drawing.Point(199, 19);
     this.memEnd.MaxLength = 8;
     this.memEnd.MultiPokeAddress = false;
     this.memEnd.Name = "memEnd";
     this.memEnd.Size = new System.Drawing.Size(62, 20);
     this.memEnd.TabIndex = 4;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(164, 22);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(29, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "End:";
     //
     // memStart
     //
     this.memStart.AutoHistory = true;
     this.memStart.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.memStart.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.memStart.ContextMenuStrip = this.HistoryContextMenu;
     this.memStart.EndingAddress = false;
     this.memStart.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memStart.Location = new System.Drawing.Point(93, 19);
     this.memStart.MaxLength = 8;
     this.memStart.MultiPokeAddress = false;
     this.memStart.Name = "memStart";
     this.memStart.Size = new System.Drawing.Size(62, 20);
     this.memStart.TabIndex = 2;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(55, 22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(32, 13);
     this.label1.TabIndex = 1;
     this.label1.Text = "Start:";
     //
     // memRange
     //
     this.memRange.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.memRange.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memRange.FormattingEnabled = true;
     this.memRange.Location = new System.Drawing.Point(6, 19);
     this.memRange.Name = "memRange";
     this.memRange.Size = new System.Drawing.Size(43, 22);
     this.memRange.TabIndex = 0;
     this.memRange.SelectedIndexChanged += new System.EventHandler(this.memRange_SelectedIndexChanged);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.textBoxComparisonValue);
     this.groupBox4.Controls.Add(this.label6);
     this.groupBox4.Controls.Add(this.comboBoxComparisonType);
     this.groupBox4.Controls.Add(this.comboBoxComparisonRHS);
     this.groupBox4.Location = new System.Drawing.Point(7, 83);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(133, 105);
     this.groupBox4.TabIndex = 3;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Search Condition";
     //
     // textBoxComparisonValue
     //
     this.textBoxComparisonValue.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.textBoxComparisonValue.ContextMenuStrip = this.InputConvert;
     this.textBoxComparisonValue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxComparisonValue.Location = new System.Drawing.Point(52, 77);
     this.textBoxComparisonValue.MaxLength = 8;
     this.textBoxComparisonValue.Name = "textBoxComparisonValue";
     this.textBoxComparisonValue.Size = new System.Drawing.Size(62, 20);
     this.textBoxComparisonValue.TabIndex = 3;
     this.textBoxComparisonValue.Text = "00000000";
     this.textBoxComparisonValue.TextChanged += new System.EventHandler(this.lowerValue_TextChanged);
     this.textBoxComparisonValue.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lowerValue_MouseClick);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(17, 80);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(37, 13);
     this.label6.TabIndex = 6;
     this.label6.Text = "Value:";
     //
     // comboBoxComparisonType
     //
     this.comboBoxComparisonType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxComparisonType.FormattingEnabled = true;
     this.comboBoxComparisonType.Items.AddRange(new object[] {
     "Equal",
     "Not equal",
     "Less than",
     "Less or equal",
     "Greater than",
     "Greater or equal",
     "Different by",
     "Different by less than",
     "Different by more than"});
     this.comboBoxComparisonType.Location = new System.Drawing.Point(6, 50);
     this.comboBoxComparisonType.MaxDropDownItems = 11;
     this.comboBoxComparisonType.Name = "comboBoxComparisonType";
     this.comboBoxComparisonType.Size = new System.Drawing.Size(121, 21);
     this.comboBoxComparisonType.TabIndex = 0;
     this.comboBoxComparisonType.SelectedIndexChanged += new System.EventHandler(this.cmpType_SelectedIndexChanged);
     //
     // comboBoxComparisonRHS
     //
     this.comboBoxComparisonRHS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxComparisonRHS.FormattingEnabled = true;
     this.comboBoxComparisonRHS.Items.AddRange(new object[] {
     "Specific Value",
     "Unknown Value"});
     this.comboBoxComparisonRHS.Location = new System.Drawing.Point(6, 19);
     this.comboBoxComparisonRHS.Name = "comboBoxComparisonRHS";
     this.comboBoxComparisonRHS.Size = new System.Drawing.Size(121, 21);
     this.comboBoxComparisonRHS.TabIndex = 0;
     this.comboBoxComparisonRHS.SelectedIndexChanged += new System.EventHandler(this.comboBoxComparisonRHS_SelectedIndexChanged);
     //
     // groupBoxSearchGroups
     //
     this.groupBoxSearchGroups.Controls.Add(this.buttonClearSearchGroup);
     this.groupBoxSearchGroups.Controls.Add(this.buttonRemoveGroup);
     this.groupBoxSearchGroups.Controls.Add(this.buttonAddSearchGroup);
     this.groupBoxSearchGroups.Controls.Add(this.numericUpDownSearchGroup);
     this.groupBoxSearchGroups.Location = new System.Drawing.Point(146, 83);
     this.groupBoxSearchGroups.Name = "groupBoxSearchGroups";
     this.groupBoxSearchGroups.Size = new System.Drawing.Size(133, 74);
     this.groupBoxSearchGroups.TabIndex = 2;
     this.groupBoxSearchGroups.TabStop = false;
     this.groupBoxSearchGroups.Text = "Search Groups (1)";
     //
     // buttonClearSearchGroup
     //
     this.buttonClearSearchGroup.Location = new System.Drawing.Point(6, 46);
     this.buttonClearSearchGroup.Name = "buttonClearSearchGroup";
     this.buttonClearSearchGroup.Size = new System.Drawing.Size(55, 21);
     this.buttonClearSearchGroup.TabIndex = 3;
     this.buttonClearSearchGroup.Text = "Clear";
     this.buttonClearSearchGroup.UseVisualStyleBackColor = true;
     this.buttonClearSearchGroup.Click += new System.EventHandler(this.buttonClearSearchGroup_Click);
     //
     // buttonRemoveGroup
     //
     this.buttonRemoveGroup.Location = new System.Drawing.Point(6, 19);
     this.buttonRemoveGroup.Name = "buttonRemoveGroup";
     this.buttonRemoveGroup.Size = new System.Drawing.Size(55, 21);
     this.buttonRemoveGroup.TabIndex = 2;
     this.buttonRemoveGroup.Text = "Remove";
     this.buttonRemoveGroup.UseVisualStyleBackColor = true;
     this.buttonRemoveGroup.Click += new System.EventHandler(this.buttonRemoveGroup_Click);
     //
     // buttonAddSearchGroup
     //
     this.buttonAddSearchGroup.Location = new System.Drawing.Point(79, 19);
     this.buttonAddSearchGroup.Name = "buttonAddSearchGroup";
     this.buttonAddSearchGroup.Size = new System.Drawing.Size(49, 21);
     this.buttonAddSearchGroup.TabIndex = 1;
     this.buttonAddSearchGroup.Text = "Add";
     this.buttonAddSearchGroup.UseVisualStyleBackColor = true;
     this.buttonAddSearchGroup.Click += new System.EventHandler(this.buttonAddSearchGroup_Click);
     //
     // numericUpDownSearchGroup
     //
     this.numericUpDownSearchGroup.Location = new System.Drawing.Point(79, 47);
     this.numericUpDownSearchGroup.Maximum = new decimal(new int[] {
     9999,
     0,
     0,
     0});
     this.numericUpDownSearchGroup.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownSearchGroup.Name = "numericUpDownSearchGroup";
     this.numericUpDownSearchGroup.Size = new System.Drawing.Size(49, 20);
     this.numericUpDownSearchGroup.TabIndex = 0;
     this.numericUpDownSearchGroup.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.numericUpDownSearchGroup.ValueChanged += new System.EventHandler(this.numericUpDownSearchGroup_ValueChanged);
     //
     // MemView
     //
     this.MemView.Controls.Add(this.vScrollBarMemViewGrid);
     this.MemView.Controls.Add(this.memViewGrid);
     this.MemView.Controls.Add(this.groupBox27);
     this.MemView.Controls.Add(this.groupBox9);
     this.MemView.Controls.Add(this.groupBox8);
     this.MemView.Controls.Add(this.MemViewAutoUp);
     this.MemView.Controls.Add(this.groupBox7);
     this.MemView.Controls.Add(this.groupBox6);
     this.MemView.Location = new System.Drawing.Point(4, 22);
     this.MemView.Name = "MemView";
     this.MemView.Padding = new System.Windows.Forms.Padding(3);
     this.MemView.Size = new System.Drawing.Size(614, 335);
     this.MemView.TabIndex = 1;
     this.MemView.Text = "Memory Viewer";
     this.MemView.UseVisualStyleBackColor = true;
     this.MemView.Enter += new System.EventHandler(this.tabPage2_Enter);
     //
     // vScrollBarMemViewGrid
     //
     this.vScrollBarMemViewGrid.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.vScrollBarMemViewGrid.LargeChange = 256;
     this.vScrollBarMemViewGrid.Location = new System.Drawing.Point(589, 12);
     this.vScrollBarMemViewGrid.Maximum = 25165824;
     this.vScrollBarMemViewGrid.Name = "vScrollBarMemViewGrid";
     this.vScrollBarMemViewGrid.Size = new System.Drawing.Size(17, 317);
     this.vScrollBarMemViewGrid.SmallChange = 16;
     this.vScrollBarMemViewGrid.TabIndex = 8;
     this.vScrollBarMemViewGrid.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBarMemViewGrid_Scroll);
     //
     // groupBox27
     //
     this.groupBox27.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox27.Controls.Add(this.MemViewSearchType);
     this.groupBox27.Controls.Add(this.MemViewSearchPerfom);
     this.groupBox27.Controls.Add(this.MemViewSearchString);
     this.groupBox27.Location = new System.Drawing.Point(3, 190);
     this.groupBox27.Name = "groupBox27";
     this.groupBox27.Size = new System.Drawing.Size(187, 139);
     this.groupBox27.TabIndex = 7;
     this.groupBox27.TabStop = false;
     this.groupBox27.Text = "Search";
     //
     // MemViewSearchType
     //
     this.MemViewSearchType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.MemViewSearchType.FormattingEnabled = true;
     this.MemViewSearchType.Items.AddRange(new object[] {
     "ANSI",
     "ANSI case sensitive",
     "Unicode",
     "Unicode case sensitive",
     "Hex"});
     this.MemViewSearchType.Location = new System.Drawing.Point(6, 15);
     this.MemViewSearchType.Name = "MemViewSearchType";
     this.MemViewSearchType.Size = new System.Drawing.Size(112, 21);
     this.MemViewSearchType.TabIndex = 9;
     //
     // MemViewSearchPerfom
     //
     this.MemViewSearchPerfom.Location = new System.Drawing.Point(124, 15);
     this.MemViewSearchPerfom.Name = "MemViewSearchPerfom";
     this.MemViewSearchPerfom.Size = new System.Drawing.Size(57, 22);
     this.MemViewSearchPerfom.TabIndex = 8;
     this.MemViewSearchPerfom.Tag = "1";
     this.MemViewSearchPerfom.Text = "Search";
     this.MemViewSearchPerfom.UseVisualStyleBackColor = true;
     this.MemViewSearchPerfom.Click += new System.EventHandler(this.MemViewSearchPerfom_Click);
     //
     // MemViewSearchString
     //
     this.MemViewSearchString.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.MemViewSearchString.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MemViewSearchString.Location = new System.Drawing.Point(6, 42);
     this.MemViewSearchString.MaxLength = 256;
     this.MemViewSearchString.Multiline = true;
     this.MemViewSearchString.Name = "MemViewSearchString";
     this.MemViewSearchString.Size = new System.Drawing.Size(175, 91);
     this.MemViewSearchString.TabIndex = 5;
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.MemViewFPValue);
     this.groupBox9.Location = new System.Drawing.Point(87, 68);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(103, 45);
     this.groupBox9.TabIndex = 6;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "Floating point";
     //
     // MemViewFPValue
     //
     this.MemViewFPValue.Location = new System.Drawing.Point(6, 16);
     this.MemViewFPValue.Name = "MemViewFPValue";
     this.MemViewFPValue.Size = new System.Drawing.Size(94, 20);
     this.MemViewFPValue.TabIndex = 0;
     this.MemViewFPValue.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.comboBoxPokeOperation);
     this.groupBox8.Controls.Add(this.memViewPButton);
     this.groupBox8.Controls.Add(this.memViewPValue);
     this.groupBox8.Controls.Add(this.memViewPAddress);
     this.groupBox8.Location = new System.Drawing.Point(3, 113);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(187, 71);
     this.groupBox8.TabIndex = 5;
     this.groupBox8.TabStop = false;
     this.groupBox8.Text = "Value poke";
     //
     // comboBoxPokeOperation
     //
     this.comboBoxPokeOperation.FormattingEnabled = true;
     this.comboBoxPokeOperation.Items.AddRange(new object[] {
     "Write",
     "OR",
     "AND",
     "XOR",
     "ADD",
     "SUB",
     "MUL",
     "DIV"});
     this.comboBoxPokeOperation.Location = new System.Drawing.Point(100, 45);
     this.comboBoxPokeOperation.Name = "comboBoxPokeOperation";
     this.comboBoxPokeOperation.Size = new System.Drawing.Size(67, 21);
     this.comboBoxPokeOperation.TabIndex = 13;
     //
     // memViewPButton
     //
     this.memViewPButton.Location = new System.Drawing.Point(27, 43);
     this.memViewPButton.Name = "memViewPButton";
     this.memViewPButton.Size = new System.Drawing.Size(62, 22);
     this.memViewPButton.TabIndex = 8;
     this.memViewPButton.Tag = "1";
     this.memViewPButton.Text = "Poke";
     this.memViewPButton.UseVisualStyleBackColor = true;
     this.memViewPButton.Click += new System.EventHandler(this.PButton_Click);
     //
     // memViewPValue
     //
     this.memViewPValue.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.memViewPValue.ContextMenuStrip = this.InputConvert;
     this.memViewPValue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memViewPValue.Location = new System.Drawing.Point(100, 19);
     this.memViewPValue.MaxLength = 8;
     this.memViewPValue.Name = "memViewPValue";
     this.memViewPValue.Size = new System.Drawing.Size(62, 20);
     this.memViewPValue.TabIndex = 7;
     this.memViewPValue.Text = "00000000";
     this.memViewPValue.MouseDown += new System.Windows.Forms.MouseEventHandler(this.lowerValue_MouseClick);
     //
     // memViewPAddress
     //
     this.memViewPAddress.AutoHistory = true;
     this.memViewPAddress.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.memViewPAddress.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.memViewPAddress.ContextMenuStrip = this.HistoryContextMenu;
     this.memViewPAddress.EndingAddress = false;
     this.memViewPAddress.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memViewPAddress.Location = new System.Drawing.Point(27, 19);
     this.memViewPAddress.MaxLength = 8;
     this.memViewPAddress.MultiPokeAddress = false;
     this.memViewPAddress.Name = "memViewPAddress";
     this.memViewPAddress.Size = new System.Drawing.Size(62, 20);
     this.memViewPAddress.TabIndex = 5;
     this.memViewPAddress.Text = "80000000";
     //
     // MemViewAutoUp
     //
     this.MemViewAutoUp.AutoSize = true;
     this.MemViewAutoUp.Location = new System.Drawing.Point(10, 51);
     this.MemViewAutoUp.Name = "MemViewAutoUp";
     this.MemViewAutoUp.Size = new System.Drawing.Size(84, 17);
     this.MemViewAutoUp.TabIndex = 3;
     this.MemViewAutoUp.Text = "Auto update";
     this.MemViewAutoUp.UseVisualStyleBackColor = true;
     this.MemViewAutoUp.Click += new System.EventHandler(this.MemViewAutoUp_Click);
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.MemViewShowMode);
     this.groupBox7.Location = new System.Drawing.Point(3, 68);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(78, 45);
     this.groupBox7.TabIndex = 2;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "View mode";
     //
     // MemViewShowMode
     //
     this.MemViewShowMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.MemViewShowMode.FormattingEnabled = true;
     this.MemViewShowMode.Items.AddRange(new object[] {
     "Hex",
     "ASCII",
     "ANSI",
     "Unicode",
     "Single",
     "Auto 0",
     "Auto ."});
     this.MemViewShowMode.Location = new System.Drawing.Point(6, 16);
     this.MemViewShowMode.Name = "MemViewShowMode";
     this.MemViewShowMode.Size = new System.Drawing.Size(66, 21);
     this.MemViewShowMode.TabIndex = 0;
     this.MemViewShowMode.SelectedIndexChanged += new System.EventHandler(this.MemViewShowMode_SelectedIndexChanged);
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.memViewAValue);
     this.groupBox6.Controls.Add(this.MemViewScrollbar);
     this.groupBox6.Controls.Add(this.MemViewUpdate);
     this.groupBox6.Controls.Add(this.MemViewARange);
     this.groupBox6.Location = new System.Drawing.Point(3, 3);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(187, 47);
     this.groupBox6.TabIndex = 1;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Address";
     //
     // memViewAValue
     //
     this.memViewAValue.AutoHistory = true;
     this.memViewAValue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.memViewAValue.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.memViewAValue.ContextMenuStrip = this.HistoryContextMenu;
     this.memViewAValue.EndingAddress = false;
     this.memViewAValue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.memViewAValue.Location = new System.Drawing.Point(48, 19);
     this.memViewAValue.MaxLength = 8;
     this.memViewAValue.MultiPokeAddress = false;
     this.memViewAValue.Name = "memViewAValue";
     this.memViewAValue.Size = new System.Drawing.Size(62, 20);
     this.memViewAValue.TabIndex = 6;
     this.memViewAValue.Text = "80000000";
     this.memViewAValue.TextChanged += new System.EventHandler(this.memViewAValue_TextChanged);
     this.memViewAValue.KeyDown += new System.Windows.Forms.KeyEventHandler(this.memViewAValue_KeyDown);
     this.memViewAValue.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.PAddress_KeyPress);
     //
     // MemViewScrollbar
     //
     this.MemViewScrollbar.DecimalPlaces = 8;
     this.MemViewScrollbar.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MemViewScrollbar.Location = new System.Drawing.Point(110, 19);
     this.MemViewScrollbar.Margin = new System.Windows.Forms.Padding(0);
     this.MemViewScrollbar.Maximum = new decimal(new int[] {
     2,
     0,
     0,
     0});
     this.MemViewScrollbar.Name = "MemViewScrollbar";
     this.MemViewScrollbar.Size = new System.Drawing.Size(16, 20);
     this.MemViewScrollbar.TabIndex = 2;
     this.MemViewScrollbar.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.MemViewScrollbar.ValueChanged += new System.EventHandler(this.MemViewScrollbar_ValueChanged);
     this.MemViewScrollbar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.MemViewScrollbar_KeyDown);
     //
     // MemViewUpdate
     //
     this.MemViewUpdate.Location = new System.Drawing.Point(131, 19);
     this.MemViewUpdate.Name = "MemViewUpdate";
     this.MemViewUpdate.Size = new System.Drawing.Size(50, 22);
     this.MemViewUpdate.TabIndex = 5;
     this.MemViewUpdate.Text = "Update";
     this.MemViewUpdate.UseVisualStyleBackColor = true;
     this.MemViewUpdate.Click += new System.EventHandler(this.MemViewUpdate_Click);
     //
     // MemViewARange
     //
     this.MemViewARange.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.MemViewARange.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MemViewARange.FormattingEnabled = true;
     this.MemViewARange.Location = new System.Drawing.Point(4, 19);
     this.MemViewARange.Name = "MemViewARange";
     this.MemViewARange.Size = new System.Drawing.Size(38, 22);
     this.MemViewARange.TabIndex = 4;
     this.MemViewARange.SelectedIndexChanged += new System.EventHandler(this.MemViewARange_SelectedIndexChanged);
     //
     // BreakpointPage
     //
     this.BreakpointPage.Controls.Add(this.panel7);
     this.BreakpointPage.Controls.Add(this.panel5);
     this.BreakpointPage.Controls.Add(this.panel3);
     this.BreakpointPage.Controls.Add(this.groupBox11);
     this.BreakpointPage.Controls.Add(this.groupBox10);
     this.BreakpointPage.Location = new System.Drawing.Point(4, 22);
     this.BreakpointPage.Name = "BreakpointPage";
     this.BreakpointPage.Size = new System.Drawing.Size(614, 335);
     this.BreakpointPage.TabIndex = 2;
     this.BreakpointPage.Text = "Breakpoints";
     this.BreakpointPage.UseVisualStyleBackColor = true;
     //
     // panel7
     //
     this.panel7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.panel7.Controls.Add(this.groupBox26);
     this.panel7.Location = new System.Drawing.Point(160, 85);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(150, 245);
     this.panel7.TabIndex = 15;
     //
     // groupBox26
     //
     this.groupBox26.Controls.Add(this.checkBoxBPCondEnable);
     this.groupBox26.Controls.Add(this.BPCondList);
     this.groupBox26.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox26.Location = new System.Drawing.Point(0, 0);
     this.groupBox26.Name = "groupBox26";
     this.groupBox26.Size = new System.Drawing.Size(150, 245);
     this.groupBox26.TabIndex = 9;
     this.groupBox26.TabStop = false;
     this.groupBox26.Text = "    Active conditions";
     //
     // checkBoxBPCondEnable
     //
     this.checkBoxBPCondEnable.AutoSize = true;
     this.checkBoxBPCondEnable.Location = new System.Drawing.Point(6, 0);
     this.checkBoxBPCondEnable.Name = "checkBoxBPCondEnable";
     this.checkBoxBPCondEnable.Size = new System.Drawing.Size(15, 14);
     this.checkBoxBPCondEnable.TabIndex = 11;
     this.checkBoxBPCondEnable.UseVisualStyleBackColor = true;
     //
     // BPCondList
     //
     this.BPCondList.ContextMenuStrip = this.BPCondMenu;
     this.BPCondList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.BPCondList.FormattingEnabled = true;
     this.BPCondList.Location = new System.Drawing.Point(3, 16);
     this.BPCondList.Name = "BPCondList";
     this.BPCondList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.BPCondList.Size = new System.Drawing.Size(144, 226);
     this.BPCondList.TabIndex = 12;
     //
     // BPCondMenu
     //
     this.BPCondMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem4,
     this.copyToolStripMenuItem2,
     this.pasteToolStripMenuItem1,
     this.toolStripMenuItem9,
     this.sRR0ToolStripMenuItem,
     this.sRR0ToolStripMenuItem1,
     this.toolStripMenuItem10,
     this.deleteToolStripMenuItem1,
     this.clearAllToolStripMenuItem,
     this.toolStripMenuItem12,
     this.setConditionGroupToolStripMenuItem});
     this.BPCondMenu.Name = "BPCondMenu";
     this.BPCondMenu.Size = new System.Drawing.Size(183, 198);
     this.BPCondMenu.Opened += new System.EventHandler(this.BPCondMenu_Opened);
     //
     // copyToolStripMenuItem4
     //
     this.copyToolStripMenuItem4.Name = "copyToolStripMenuItem4";
     this.copyToolStripMenuItem4.Size = new System.Drawing.Size(182, 22);
     this.copyToolStripMenuItem4.Text = "Copy";
     this.copyToolStripMenuItem4.Click += new System.EventHandler(this.copyToolStripMenuItem4_Click);
     //
     // copyToolStripMenuItem2
     //
     this.copyToolStripMenuItem2.Name = "copyToolStripMenuItem2";
     this.copyToolStripMenuItem2.Size = new System.Drawing.Size(182, 22);
     this.copyToolStripMenuItem2.Text = "Copy All";
     this.copyToolStripMenuItem2.Click += new System.EventHandler(this.copyToolStripMenuItem2_Click);
     //
     // pasteToolStripMenuItem1
     //
     this.pasteToolStripMenuItem1.Name = "pasteToolStripMenuItem1";
     this.pasteToolStripMenuItem1.Size = new System.Drawing.Size(182, 22);
     this.pasteToolStripMenuItem1.Text = "Paste";
     this.pasteToolStripMenuItem1.Click += new System.EventHandler(this.pasteToolStripMenuItem1_Click);
     //
     // toolStripMenuItem9
     //
     this.toolStripMenuItem9.Name = "toolStripMenuItem9";
     this.toolStripMenuItem9.Size = new System.Drawing.Size(179, 6);
     //
     // sRR0ToolStripMenuItem
     //
     this.sRR0ToolStripMenuItem.Name = "sRR0ToolStripMenuItem";
     this.sRR0ToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
     this.sRR0ToolStripMenuItem.Text = "SRR0 !=";
     this.sRR0ToolStripMenuItem.Click += new System.EventHandler(this.SRR0NEQToolStripMenuItem_Click);
     //
     // sRR0ToolStripMenuItem1
     //
     this.sRR0ToolStripMenuItem1.Name = "sRR0ToolStripMenuItem1";
     this.sRR0ToolStripMenuItem1.Size = new System.Drawing.Size(182, 22);
     this.sRR0ToolStripMenuItem1.Text = "SRR0 ==";
     this.sRR0ToolStripMenuItem1.Click += new System.EventHandler(this.SRR0EQToolStripMenuItem_Click);
     //
     // toolStripMenuItem10
     //
     this.toolStripMenuItem10.Name = "toolStripMenuItem10";
     this.toolStripMenuItem10.Size = new System.Drawing.Size(179, 6);
     //
     // deleteToolStripMenuItem1
     //
     this.deleteToolStripMenuItem1.Name = "deleteToolStripMenuItem1";
     this.deleteToolStripMenuItem1.Size = new System.Drawing.Size(182, 22);
     this.deleteToolStripMenuItem1.Text = "Delete";
     this.deleteToolStripMenuItem1.Click += new System.EventHandler(this.deleteToolStripMenuItem1_Click);
     //
     // clearAllToolStripMenuItem
     //
     this.clearAllToolStripMenuItem.Name = "clearAllToolStripMenuItem";
     this.clearAllToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
     this.clearAllToolStripMenuItem.Text = "Clear All";
     this.clearAllToolStripMenuItem.Click += new System.EventHandler(this.clearAllToolStripMenuItem_Click);
     //
     // toolStripMenuItem12
     //
     this.toolStripMenuItem12.Name = "toolStripMenuItem12";
     this.toolStripMenuItem12.Size = new System.Drawing.Size(179, 6);
     //
     // setConditionGroupToolStripMenuItem
     //
     this.setConditionGroupToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.SetConditionGroupTextBox});
     this.setConditionGroupToolStripMenuItem.Name = "setConditionGroupToolStripMenuItem";
     this.setConditionGroupToolStripMenuItem.Size = new System.Drawing.Size(182, 22);
     this.setConditionGroupToolStripMenuItem.Text = "Set Condition Group";
     this.setConditionGroupToolStripMenuItem.MouseMove += new System.Windows.Forms.MouseEventHandler(this.setConditionGroupToolStripMenuItem_MouseMove);
     //
     // SetConditionGroupTextBox
     //
     this.SetConditionGroupTextBox.HideSelection = false;
     this.SetConditionGroupTextBox.Name = "SetConditionGroupTextBox";
     this.SetConditionGroupTextBox.Size = new System.Drawing.Size(100, 23);
     this.SetConditionGroupTextBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SetConditionGroupTextBox_KeyDown);
     this.SetConditionGroupTextBox.TextChanged += new System.EventHandler(this.SetConditionGroupTextBox_TextChanged);
     //
     // panel5
     //
     this.panel5.Controls.Add(this.checkBoxLogSteps);
     this.panel5.Controls.Add(this.BPSkipCount);
     this.panel5.Controls.Add(this.label17);
     this.panel5.Location = new System.Drawing.Point(217, 12);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(93, 67);
     this.panel5.TabIndex = 11;
     //
     // checkBoxLogSteps
     //
     this.checkBoxLogSteps.AutoSize = true;
     this.checkBoxLogSteps.Location = new System.Drawing.Point(9, 16);
     this.checkBoxLogSteps.Name = "checkBoxLogSteps";
     this.checkBoxLogSteps.Size = new System.Drawing.Size(74, 17);
     this.checkBoxLogSteps.TabIndex = 11;
     this.checkBoxLogSteps.Text = "Log Steps";
     this.checkBoxLogSteps.UseVisualStyleBackColor = true;
     this.checkBoxLogSteps.CheckedChanged += new System.EventHandler(this.checkBoxLogSteps_CheckedChanged);
     //
     // BPSkipCount
     //
     this.BPSkipCount.AutoSize = true;
     this.BPSkipCount.Location = new System.Drawing.Point(58, 39);
     this.BPSkipCount.Name = "BPSkipCount";
     this.BPSkipCount.Size = new System.Drawing.Size(25, 13);
     this.BPSkipCount.TabIndex = 7;
     this.BPSkipCount.Text = "000";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(6, 39);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(49, 13);
     this.label17.TabIndex = 6;
     this.label17.Text = "Skipped:";
     //
     // panel3
     //
     this.panel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.panel3.Controls.Add(this.groupBox25);
     this.panel3.Location = new System.Drawing.Point(9, 85);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(145, 251);
     this.panel3.TabIndex = 14;
     //
     // groupBox25
     //
     this.groupBox25.Controls.Add(this.BPCondClear);
     this.groupBox25.Controls.Add(this.BPConditionAdd);
     this.groupBox25.Controls.Add(this.BPCondDel);
     this.groupBox25.Controls.Add(this.BPCondValue);
     this.groupBox25.Controls.Add(this.BPConditionCompare);
     this.groupBox25.Controls.Add(this.BPConditionRegSelect);
     this.groupBox25.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupBox25.Location = new System.Drawing.Point(0, 0);
     this.groupBox25.Name = "groupBox25";
     this.groupBox25.Size = new System.Drawing.Size(145, 103);
     this.groupBox25.TabIndex = 7;
     this.groupBox25.TabStop = false;
     this.groupBox25.Text = "Add BP condition";
     //
     // BPCondClear
     //
     this.BPCondClear.Location = new System.Drawing.Point(87, 75);
     this.BPCondClear.Name = "BPCondClear";
     this.BPCondClear.Size = new System.Drawing.Size(52, 24);
     this.BPCondClear.TabIndex = 11;
     this.BPCondClear.Text = "Clear all";
     this.BPCondClear.UseVisualStyleBackColor = true;
     this.BPCondClear.Click += new System.EventHandler(this.BPCondClear_Click);
     //
     // BPConditionAdd
     //
     this.BPConditionAdd.Location = new System.Drawing.Point(87, 15);
     this.BPConditionAdd.Name = "BPConditionAdd";
     this.BPConditionAdd.Size = new System.Drawing.Size(52, 24);
     this.BPConditionAdd.TabIndex = 9;
     this.BPConditionAdd.Text = "Add";
     this.BPConditionAdd.UseVisualStyleBackColor = true;
     this.BPConditionAdd.Click += new System.EventHandler(this.BPConditionAdd_Click);
     //
     // BPCondDel
     //
     this.BPCondDel.Location = new System.Drawing.Point(87, 45);
     this.BPCondDel.Name = "BPCondDel";
     this.BPCondDel.Size = new System.Drawing.Size(52, 24);
     this.BPCondDel.TabIndex = 10;
     this.BPCondDel.Text = "Delete";
     this.BPCondDel.UseVisualStyleBackColor = true;
     this.BPCondDel.Click += new System.EventHandler(this.BPCondDel_Click);
     //
     // BPCondValue
     //
     this.BPCondValue.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.BPCondValue.ContextMenuStrip = this.InputConvert;
     this.BPCondValue.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BPCondValue.Location = new System.Drawing.Point(6, 75);
     this.BPCondValue.MaxLength = 8;
     this.BPCondValue.Name = "BPCondValue";
     this.BPCondValue.Size = new System.Drawing.Size(62, 20);
     this.BPCondValue.TabIndex = 8;
     this.BPCondValue.Text = "00000000";
     //
     // BPConditionCompare
     //
     this.BPConditionCompare.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BPConditionCompare.Font = new System.Drawing.Font("Courier New", 8.25F);
     this.BPConditionCompare.FormattingEnabled = true;
     this.BPConditionCompare.Items.AddRange(new object[] {
     "==",
     "!=",
     ">=",
     ">",
     "<=",
     "<"});
     this.BPConditionCompare.Location = new System.Drawing.Point(26, 45);
     this.BPConditionCompare.Name = "BPConditionCompare";
     this.BPConditionCompare.Size = new System.Drawing.Size(42, 22);
     this.BPConditionCompare.TabIndex = 1;
     //
     // BPConditionRegSelect
     //
     this.BPConditionRegSelect.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BPConditionRegSelect.Font = new System.Drawing.Font("Courier New", 8.25F);
     this.BPConditionRegSelect.FormattingEnabled = true;
     this.BPConditionRegSelect.Location = new System.Drawing.Point(12, 15);
     this.BPConditionRegSelect.Name = "BPConditionRegSelect";
     this.BPConditionRegSelect.Size = new System.Drawing.Size(56, 22);
     this.BPConditionRegSelect.TabIndex = 0;
     this.BPConditionRegSelect.SelectedIndexChanged += new System.EventHandler(this.BPConditionRegSelect_SelectedIndexChanged);
     //
     // groupBox11
     //
     this.groupBox11.Controls.Add(this.BPCancel);
     this.groupBox11.Controls.Add(this.BPFire);
     this.groupBox11.Controls.Add(this.BPType);
     this.groupBox11.Location = new System.Drawing.Point(113, 3);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(98, 76);
     this.groupBox11.TabIndex = 1;
     this.groupBox11.TabStop = false;
     this.groupBox11.Text = "Breakpoint type";
     //
     // BPCancel
     //
     this.BPCancel.Enabled = false;
     this.BPCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BPCancel.Location = new System.Drawing.Point(42, 46);
     this.BPCancel.Name = "BPCancel";
     this.BPCancel.Size = new System.Drawing.Size(50, 24);
     this.BPCancel.TabIndex = 5;
     this.BPCancel.Text = "Cancel";
     this.BPCancel.UseVisualStyleBackColor = true;
     this.BPCancel.Click += new System.EventHandler(this.BPCancel_Click);
     //
     // BPFire
     //
     this.BPFire.ContextMenuStrip = this.ShowMemContextMenu;
     this.BPFire.Location = new System.Drawing.Point(6, 46);
     this.BPFire.Name = "BPFire";
     this.BPFire.Size = new System.Drawing.Size(31, 24);
     this.BPFire.TabIndex = 10;
     this.BPFire.Text = "Set";
     this.BPFire.UseVisualStyleBackColor = true;
     this.BPFire.Click += new System.EventHandler(this.BPFire_Click);
     //
     // ShowMemContextMenu
     //
     this.ShowMemContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ShowMemAddressToolStripMenuItem,
     this.toolStripTextBoxShowMemAddress,
     this.toolStripMenuItem14,
     this.ShowMemValueToolStripMenuItem,
     this.toolStripTextBoxShowMemValue,
     this.toolStripMenuItem15,
     this.SRR0NEQToolStripMenuItem2,
     this.SRR0EQToolStripMenuItem2,
     this.toolStripMenuItem17,
     this.viewFloatsInHexToolStripMenuItem});
     this.ShowMemContextMenu.Name = "ShowMemContextMenu";
     this.ShowMemContextMenu.Size = new System.Drawing.Size(170, 182);
     this.ShowMemContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.ShowMemContextMenu_Opening);
     //
     // ShowMemAddressToolStripMenuItem
     //
     this.ShowMemAddressToolStripMenuItem.Name = "ShowMemAddressToolStripMenuItem";
     this.ShowMemAddressToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
     this.ShowMemAddressToolStripMenuItem.Text = "&Address";
     this.ShowMemAddressToolStripMenuItem.Click += new System.EventHandler(this.ShowMemAddressToolStripMenuItem_Click);
     //
     // toolStripTextBoxShowMemAddress
     //
     this.toolStripTextBoxShowMemAddress.Name = "toolStripTextBoxShowMemAddress";
     this.toolStripTextBoxShowMemAddress.Size = new System.Drawing.Size(80, 23);
     //
     // toolStripMenuItem14
     //
     this.toolStripMenuItem14.Name = "toolStripMenuItem14";
     this.toolStripMenuItem14.Size = new System.Drawing.Size(166, 6);
     //
     // ShowMemValueToolStripMenuItem
     //
     this.ShowMemValueToolStripMenuItem.Name = "ShowMemValueToolStripMenuItem";
     this.ShowMemValueToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
     this.ShowMemValueToolStripMenuItem.Text = "&Value";
     this.ShowMemValueToolStripMenuItem.Click += new System.EventHandler(this.ShowMemValueToolStripMenuItem_Click);
     //
     // toolStripTextBoxShowMemValue
     //
     this.toolStripTextBoxShowMemValue.Name = "toolStripTextBoxShowMemValue";
     this.toolStripTextBoxShowMemValue.Size = new System.Drawing.Size(80, 23);
     this.toolStripTextBoxShowMemValue.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBoxShowMemValue_KeyDown);
     //
     // toolStripMenuItem15
     //
     this.toolStripMenuItem15.Name = "toolStripMenuItem15";
     this.toolStripMenuItem15.Size = new System.Drawing.Size(166, 6);
     //
     // SRR0NEQToolStripMenuItem2
     //
     this.SRR0NEQToolStripMenuItem2.Name = "SRR0NEQToolStripMenuItem2";
     this.SRR0NEQToolStripMenuItem2.Size = new System.Drawing.Size(169, 22);
     this.SRR0NEQToolStripMenuItem2.Text = "&SRR0 !=";
     this.SRR0NEQToolStripMenuItem2.Click += new System.EventHandler(this.SRR0NEQToolStripMenuItem_Click);
     //
     // SRR0EQToolStripMenuItem2
     //
     this.SRR0EQToolStripMenuItem2.Name = "SRR0EQToolStripMenuItem2";
     this.SRR0EQToolStripMenuItem2.Size = new System.Drawing.Size(169, 22);
     this.SRR0EQToolStripMenuItem2.Text = "S&RR0 ==";
     this.SRR0EQToolStripMenuItem2.Click += new System.EventHandler(this.SRR0EQToolStripMenuItem_Click);
     //
     // toolStripMenuItem17
     //
     this.toolStripMenuItem17.Name = "toolStripMenuItem17";
     this.toolStripMenuItem17.Size = new System.Drawing.Size(166, 6);
     //
     // viewFloatsInHexToolStripMenuItem
     //
     this.viewFloatsInHexToolStripMenuItem.CheckOnClick = true;
     this.viewFloatsInHexToolStripMenuItem.Name = "viewFloatsInHexToolStripMenuItem";
     this.viewFloatsInHexToolStripMenuItem.Size = new System.Drawing.Size(169, 22);
     this.viewFloatsInHexToolStripMenuItem.Text = "View Floats in Hex";
     this.viewFloatsInHexToolStripMenuItem.CheckedChanged += new System.EventHandler(this.viewFloatsInHexToolStripMenuItem_CheckedChanged);
     //
     // BPType
     //
     this.BPType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.BPType.FormattingEnabled = true;
     this.BPType.Items.AddRange(new object[] {
     "Read",
     "Write",
     "Read / Write",
     "Execute"});
     this.BPType.Location = new System.Drawing.Point(6, 19);
     this.BPType.Name = "BPType";
     this.BPType.Size = new System.Drawing.Size(85, 21);
     this.BPType.TabIndex = 9;
     this.BPType.SelectedIndexChanged += new System.EventHandler(this.BPType_SelectedIndexChanged);
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.BPExact);
     this.groupBox10.Controls.Add(this.BPAddress);
     this.groupBox10.Location = new System.Drawing.Point(3, 3);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(98, 76);
     this.groupBox10.TabIndex = 0;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "Address";
     //
     // BPExact
     //
     this.BPExact.AutoSize = true;
     this.BPExact.Checked = true;
     this.BPExact.CheckState = System.Windows.Forms.CheckState.Checked;
     this.BPExact.Location = new System.Drawing.Point(6, 50);
     this.BPExact.Name = "BPExact";
     this.BPExact.Size = new System.Drawing.Size(85, 17);
     this.BPExact.TabIndex = 8;
     this.BPExact.Text = "Exact match";
     this.BPExact.UseVisualStyleBackColor = true;
     //
     // BPAddress
     //
     this.BPAddress.AutoHistory = true;
     this.BPAddress.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.BPAddress.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.BPAddress.ContextMenuStrip = this.HistoryContextMenu;
     this.BPAddress.EndingAddress = false;
     this.BPAddress.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BPAddress.Location = new System.Drawing.Point(18, 19);
     this.BPAddress.MaxLength = 8;
     this.BPAddress.MultiPokeAddress = false;
     this.BPAddress.Name = "BPAddress";
     this.BPAddress.Size = new System.Drawing.Size(62, 20);
     this.BPAddress.TabIndex = 7;
     this.BPAddress.Text = "80000000";
     this.BPAddress.TextChanged += new System.EventHandler(this.BPAddress_TextChanged);
     //
     // DebugTabPage
     //
     this.DebugTabPage.Controls.Add(this.ThreadBox);
     this.DebugTabPage.Controls.Add(this.ThreadListGroupBox);
     this.DebugTabPage.Controls.Add(this.BPOutSwap);
     this.DebugTabPage.Controls.Add(this.groupBoxStep);
     this.DebugTabPage.Controls.Add(this.splitContainerRegASM);
     this.DebugTabPage.Controls.Add(this.buttonShowMem);
     this.DebugTabPage.Location = new System.Drawing.Point(4, 22);
     this.DebugTabPage.Name = "DebugTabPage";
     this.DebugTabPage.Padding = new System.Windows.Forms.Padding(3);
     this.DebugTabPage.Size = new System.Drawing.Size(614, 335);
     this.DebugTabPage.TabIndex = 10;
     this.DebugTabPage.Text = "Debug";
     this.DebugTabPage.UseVisualStyleBackColor = true;
     //
     // ThreadBox
     //
     this.ThreadBox.Controls.Add(this.threadStateLabel);
     this.ThreadBox.Controls.Add(this.ThreadDisplayComboBox);
     this.ThreadBox.Location = new System.Drawing.Point(3, 6);
     this.ThreadBox.Name = "ThreadBox";
     this.ThreadBox.Size = new System.Drawing.Size(218, 76);
     this.ThreadBox.TabIndex = 19;
     this.ThreadBox.TabStop = false;
     this.ThreadBox.Text = "Displayed Thread";
     //
     // threadStateLabel
     //
     this.threadStateLabel.AutoSize = true;
     this.threadStateLabel.Location = new System.Drawing.Point(145, 22);
     this.threadStateLabel.Name = "threadStateLabel";
     this.threadStateLabel.Size = new System.Drawing.Size(63, 13);
     this.threadStateLabel.TabIndex = 1;
     this.threadStateLabel.Text = "<-- SELECT";
     //
     // ThreadDisplayComboBox
     //
     this.ThreadDisplayComboBox.FormattingEnabled = true;
     this.ThreadDisplayComboBox.Location = new System.Drawing.Point(2, 19);
     this.ThreadDisplayComboBox.Name = "ThreadDisplayComboBox";
     this.ThreadDisplayComboBox.Size = new System.Drawing.Size(137, 21);
     this.ThreadDisplayComboBox.TabIndex = 0;
     this.ThreadDisplayComboBox.SelectedIndexChanged += new System.EventHandler(this.ThreadDisplayComboBox_SelectedIndexChanged);
     //
     // ThreadListGroupBox
     //
     this.ThreadListGroupBox.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.ThreadListGroupBox.Controls.Add(this.ThreadGridView);
     this.ThreadListGroupBox.Location = new System.Drawing.Point(473, 6);
     this.ThreadListGroupBox.Name = "ThreadListGroupBox";
     this.ThreadListGroupBox.Size = new System.Drawing.Size(138, 326);
     this.ThreadListGroupBox.TabIndex = 18;
     this.ThreadListGroupBox.TabStop = false;
     this.ThreadListGroupBox.Text = "Threads";
     //
     // ThreadGridView
     //
     this.ThreadGridView.AllowUserToAddRows = false;
     this.ThreadGridView.AllowUserToDeleteRows = false;
     this.ThreadGridView.AllowUserToOrderColumns = true;
     this.ThreadGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.ThreadGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ThreadNameColumn,
     this.ThreadStateColumn,
     this.ThreadAddressColumn});
     this.ThreadGridView.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ThreadGridView.Location = new System.Drawing.Point(3, 16);
     this.ThreadGridView.MultiSelect = false;
     this.ThreadGridView.Name = "ThreadGridView";
     this.ThreadGridView.ReadOnly = true;
     this.ThreadGridView.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.ThreadGridView.ShowEditingIcon = false;
     this.ThreadGridView.Size = new System.Drawing.Size(132, 307);
     this.ThreadGridView.TabIndex = 0;
     this.ThreadGridView.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.ThreadGridView_CellMouseClick);
     //
     // ThreadNameColumn
     //
     this.ThreadNameColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.ThreadNameColumn.HeaderText = "Name";
     this.ThreadNameColumn.Name = "ThreadNameColumn";
     this.ThreadNameColumn.ReadOnly = true;
     this.ThreadNameColumn.Width = 60;
     //
     // ThreadStateColumn
     //
     this.ThreadStateColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.ThreadStateColumn.HeaderText = "State";
     this.ThreadStateColumn.Name = "ThreadStateColumn";
     this.ThreadStateColumn.ReadOnly = true;
     this.ThreadStateColumn.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ThreadStateColumn.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ThreadStateColumn.Width = 38;
     //
     // ThreadAddressColumn
     //
     this.ThreadAddressColumn.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.DisplayedCells;
     this.ThreadAddressColumn.HeaderText = "Address";
     this.ThreadAddressColumn.Name = "ThreadAddressColumn";
     this.ThreadAddressColumn.ReadOnly = true;
     this.ThreadAddressColumn.Width = 70;
     //
     // BPOutSwap
     //
     this.BPOutSwap.Location = new System.Drawing.Point(391, 22);
     this.BPOutSwap.Name = "BPOutSwap";
     this.BPOutSwap.Size = new System.Drawing.Size(68, 24);
     this.BPOutSwap.TabIndex = 14;
     this.BPOutSwap.Text = "Text view";
     this.BPOutSwap.UseVisualStyleBackColor = true;
     this.BPOutSwap.Visible = false;
     //
     // groupBoxStep
     //
     this.groupBoxStep.Controls.Add(this.buttonStepUntil);
     this.groupBoxStep.Controls.Add(this.BPStepButton);
     this.groupBoxStep.Controls.Add(this.BPStepOverButton);
     this.groupBoxStep.Controls.Add(this.buttonStepOutOf);
     this.groupBoxStep.Location = new System.Drawing.Point(227, 6);
     this.groupBoxStep.Name = "groupBoxStep";
     this.groupBoxStep.Size = new System.Drawing.Size(158, 76);
     this.groupBoxStep.TabIndex = 17;
     this.groupBoxStep.TabStop = false;
     this.groupBoxStep.Text = "Step";
     this.groupBoxStep.Visible = false;
     //
     // buttonStepUntil
     //
     this.buttonStepUntil.Location = new System.Drawing.Point(81, 46);
     this.buttonStepUntil.Name = "buttonStepUntil";
     this.buttonStepUntil.Size = new System.Drawing.Size(69, 23);
     this.buttonStepUntil.TabIndex = 12;
     this.buttonStepUntil.Text = "Step until";
     this.buttonStepUntil.UseVisualStyleBackColor = true;
     //
     // BPStepButton
     //
     this.BPStepButton.ContextMenuStrip = this.ShowMemContextMenu;
     this.BPStepButton.Location = new System.Drawing.Point(6, 16);
     this.BPStepButton.Name = "BPStepButton";
     this.BPStepButton.Size = new System.Drawing.Size(69, 24);
     this.BPStepButton.TabIndex = 6;
     this.BPStepButton.Text = "Step into";
     this.BPStepButton.UseVisualStyleBackColor = true;
     //
     // BPStepOverButton
     //
     this.BPStepOverButton.ContextMenuStrip = this.ShowMemContextMenu;
     this.BPStepOverButton.Location = new System.Drawing.Point(6, 46);
     this.BPStepOverButton.Name = "BPStepOverButton";
     this.BPStepOverButton.Size = new System.Drawing.Size(69, 24);
     this.BPStepOverButton.TabIndex = 9;
     this.BPStepOverButton.Text = "Step over";
     this.BPStepOverButton.UseVisualStyleBackColor = true;
     //
     // buttonStepOutOf
     //
     this.buttonStepOutOf.ContextMenuStrip = this.StepOutContextMenu;
     this.buttonStepOutOf.Location = new System.Drawing.Point(81, 16);
     this.buttonStepOutOf.Name = "buttonStepOutOf";
     this.buttonStepOutOf.Size = new System.Drawing.Size(69, 24);
     this.buttonStepOutOf.TabIndex = 11;
     this.buttonStepOutOf.Text = "Step out";
     this.buttonStepOutOf.UseVisualStyleBackColor = true;
     //
     // StepOutContextMenu
     //
     this.StepOutContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.walkToBlrToolStripMenuItem,
     this.stackFrameToolStripMenuItem,
     this.leafToolStripMenuItem});
     this.StepOutContextMenu.Name = "StepOutContextMenu";
     this.StepOutContextMenu.Size = new System.Drawing.Size(137, 70);
     //
     // walkToBlrToolStripMenuItem
     //
     this.walkToBlrToolStripMenuItem.Name = "walkToBlrToolStripMenuItem";
     this.walkToBlrToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.walkToBlrToolStripMenuItem.Text = "&Walk to blr";
     this.walkToBlrToolStripMenuItem.Click += new System.EventHandler(this.walkToBlrToolStripMenuItem_Click);
     //
     // stackFrameToolStripMenuItem
     //
     this.stackFrameToolStripMenuItem.Name = "stackFrameToolStripMenuItem";
     this.stackFrameToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.stackFrameToolStripMenuItem.Text = "&Stack frame";
     this.stackFrameToolStripMenuItem.Click += new System.EventHandler(this.stackFrameToolStripMenuItem_Click);
     //
     // leafToolStripMenuItem
     //
     this.leafToolStripMenuItem.Name = "leafToolStripMenuItem";
     this.leafToolStripMenuItem.Size = new System.Drawing.Size(136, 22);
     this.leafToolStripMenuItem.Text = "&Leaf";
     this.leafToolStripMenuItem.Click += new System.EventHandler(this.leafToolStripMenuItem_Click);
     //
     // splitContainerRegASM
     //
     this.splitContainerRegASM.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.splitContainerRegASM.Location = new System.Drawing.Point(0, 83);
     this.splitContainerRegASM.Name = "splitContainerRegASM";
     this.splitContainerRegASM.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainerRegASM.Panel1
     //
     this.splitContainerRegASM.Panel1.Controls.Add(this.panel6);
     //
     // splitContainerRegASM.Panel2
     //
     this.splitContainerRegASM.Panel2.Controls.Add(this.panel4);
     this.splitContainerRegASM.Size = new System.Drawing.Size(467, 251);
     this.splitContainerRegASM.SplitterDistance = 147;
     this.splitContainerRegASM.TabIndex = 16;
     //
     // panel6
     //
     this.panel6.Controls.Add(this.BPList);
     this.panel6.Controls.Add(this.BPClassic);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel6.Location = new System.Drawing.Point(0, 0);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(467, 147);
     this.panel6.TabIndex = 12;
     //
     // BPList
     //
     this.BPList.AutoScroll = true;
     this.BPList.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.BPList.Cursor = System.Windows.Forms.Cursors.Default;
     this.BPList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.BPList.Location = new System.Drawing.Point(0, 0);
     this.BPList.Margin = new System.Windows.Forms.Padding(4);
     this.BPList.Name = "BPList";
     this.BPList.Size = new System.Drawing.Size(467, 147);
     this.BPList.TabIndex = 2;
     //
     // BPClassic
     //
     this.BPClassic.Dock = System.Windows.Forms.DockStyle.Fill;
     this.BPClassic.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BPClassic.Location = new System.Drawing.Point(0, 0);
     this.BPClassic.Multiline = true;
     this.BPClassic.Name = "BPClassic";
     this.BPClassic.ReadOnly = true;
     this.BPClassic.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.BPClassic.Size = new System.Drawing.Size(467, 147);
     this.BPClassic.TabIndex = 4;
     this.BPClassic.Visible = false;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.BPDiss);
     this.panel4.Controls.Add(this.richTextBox1);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(467, 100);
     this.panel4.TabIndex = 9;
     //
     // BPDiss
     //
     this.BPDiss.Dock = System.Windows.Forms.DockStyle.Fill;
     this.BPDiss.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BPDiss.Location = new System.Drawing.Point(0, 0);
     this.BPDiss.Multiline = true;
     this.BPDiss.Name = "BPDiss";
     this.BPDiss.ReadOnly = true;
     this.BPDiss.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.BPDiss.Size = new System.Drawing.Size(467, 100);
     this.BPDiss.TabIndex = 3;
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(394, 0);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.ReadOnly = true;
     this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     this.richTextBox1.Size = new System.Drawing.Size(17, 17);
     this.richTextBox1.TabIndex = 4;
     this.richTextBox1.Text = "";
     //
     // buttonShowMem
     //
     this.buttonShowMem.ContextMenuStrip = this.ShowMemContextMenu;
     this.buttonShowMem.Location = new System.Drawing.Point(391, 51);
     this.buttonShowMem.Name = "buttonShowMem";
     this.buttonShowMem.Size = new System.Drawing.Size(68, 24);
     this.buttonShowMem.TabIndex = 15;
     this.buttonShowMem.Text = "Show Mem";
     this.buttonShowMem.UseVisualStyleBackColor = true;
     this.buttonShowMem.Visible = false;
     //
     // DisPage
     //
     this.DisPage.Controls.Add(this.groupBoxDisasmCallStack);
     this.DisPage.Controls.Add(this.groupBoxDisasm);
     this.DisPage.Controls.Add(this.groupBox13);
     this.DisPage.Controls.Add(this.groupBox12);
     this.DisPage.Controls.Add(this.DisScroll);
     this.DisPage.Controls.Add(this.DisAssBox);
     this.DisPage.Location = new System.Drawing.Point(4, 22);
     this.DisPage.Name = "DisPage";
     this.DisPage.Size = new System.Drawing.Size(614, 335);
     this.DisPage.TabIndex = 3;
     this.DisPage.Text = "Disassembler";
     this.DisPage.UseVisualStyleBackColor = true;
     this.DisPage.Enter += new System.EventHandler(this.DisPage_Enter);
     //
     // groupBoxDisasmCallStack
     //
     this.groupBoxDisasmCallStack.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBoxDisasmCallStack.Controls.Add(this.listBoxCallStack);
     this.groupBoxDisasmCallStack.Location = new System.Drawing.Point(3, 213);
     this.groupBoxDisasmCallStack.Name = "groupBoxDisasmCallStack";
     this.groupBoxDisasmCallStack.Size = new System.Drawing.Size(192, 116);
     this.groupBoxDisasmCallStack.TabIndex = 8;
     this.groupBoxDisasmCallStack.TabStop = false;
     this.groupBoxDisasmCallStack.Text = "Call Stack";
     //
     // listBoxCallStack
     //
     this.listBoxCallStack.ContextMenuStrip = this.CallStackContextMenu;
     this.listBoxCallStack.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listBoxCallStack.FormattingEnabled = true;
     this.listBoxCallStack.Location = new System.Drawing.Point(3, 16);
     this.listBoxCallStack.Name = "listBoxCallStack";
     this.listBoxCallStack.Size = new System.Drawing.Size(186, 97);
     this.listBoxCallStack.TabIndex = 0;
     this.listBoxCallStack.DoubleClick += new System.EventHandler(this.listBoxCallStack_DoubleClick);
     //
     // CallStackContextMenu
     //
     this.CallStackContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem5,
     this.copyAllToolStripMenuItem,
     this.loadToolStripMenuItem});
     this.CallStackContextMenu.Name = "CallStackContextMenu";
     this.CallStackContextMenu.Size = new System.Drawing.Size(120, 70);
     //
     // copyToolStripMenuItem5
     //
     this.copyToolStripMenuItem5.Name = "copyToolStripMenuItem5";
     this.copyToolStripMenuItem5.Size = new System.Drawing.Size(119, 22);
     this.copyToolStripMenuItem5.Text = "&Copy";
     this.copyToolStripMenuItem5.Click += new System.EventHandler(this.copyToolStripMenuItem5_Click);
     //
     // copyAllToolStripMenuItem
     //
     this.copyAllToolStripMenuItem.Name = "copyAllToolStripMenuItem";
     this.copyAllToolStripMenuItem.Size = new System.Drawing.Size(119, 22);
     this.copyAllToolStripMenuItem.Text = "Copy &All";
     this.copyAllToolStripMenuItem.Click += new System.EventHandler(this.copyAllToolStripMenuItem_Click);
     //
     // loadToolStripMenuItem
     //
     this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
     this.loadToolStripMenuItem.Size = new System.Drawing.Size(119, 22);
     this.loadToolStripMenuItem.Text = "&Load";
     this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
     //
     // groupBoxDisasm
     //
     this.groupBoxDisasm.Controls.Add(this.radioButtonSearchDisassemblyDown);
     this.groupBoxDisasm.Controls.Add(this.radioButtonSearchDisassemblyUp);
     this.groupBoxDisasm.Controls.Add(this.buttonDisassemblySearch);
     this.groupBoxDisasm.Controls.Add(this.textBoxDisassemblySearch);
     this.groupBoxDisasm.Location = new System.Drawing.Point(3, 58);
     this.groupBoxDisasm.Name = "groupBoxDisasm";
     this.groupBoxDisasm.Size = new System.Drawing.Size(192, 69);
     this.groupBoxDisasm.TabIndex = 7;
     this.groupBoxDisasm.TabStop = false;
     this.groupBoxDisasm.Text = "Regex Search";
     //
     // radioButtonSearchDisassemblyDown
     //
     this.radioButtonSearchDisassemblyDown.AutoSize = true;
     this.radioButtonSearchDisassemblyDown.Location = new System.Drawing.Point(46, 18);
     this.radioButtonSearchDisassemblyDown.Name = "radioButtonSearchDisassemblyDown";
     this.radioButtonSearchDisassemblyDown.Size = new System.Drawing.Size(51, 17);
     this.radioButtonSearchDisassemblyDown.TabIndex = 5;
     this.radioButtonSearchDisassemblyDown.Text = "down";
     this.radioButtonSearchDisassemblyDown.UseVisualStyleBackColor = true;
     //
     // radioButtonSearchDisassemblyUp
     //
     this.radioButtonSearchDisassemblyUp.AutoSize = true;
     this.radioButtonSearchDisassemblyUp.Checked = true;
     this.radioButtonSearchDisassemblyUp.Location = new System.Drawing.Point(6, 18);
     this.radioButtonSearchDisassemblyUp.Name = "radioButtonSearchDisassemblyUp";
     this.radioButtonSearchDisassemblyUp.Size = new System.Drawing.Size(37, 17);
     this.radioButtonSearchDisassemblyUp.TabIndex = 4;
     this.radioButtonSearchDisassemblyUp.TabStop = true;
     this.radioButtonSearchDisassemblyUp.Text = "up";
     this.radioButtonSearchDisassemblyUp.UseVisualStyleBackColor = true;
     //
     // buttonDisassemblySearch
     //
     this.buttonDisassemblySearch.Location = new System.Drawing.Point(103, 12);
     this.buttonDisassemblySearch.Name = "buttonDisassemblySearch";
     this.buttonDisassemblySearch.Size = new System.Drawing.Size(79, 23);
     this.buttonDisassemblySearch.TabIndex = 3;
     this.buttonDisassemblySearch.Text = "Search";
     this.buttonDisassemblySearch.UseVisualStyleBackColor = true;
     this.buttonDisassemblySearch.Click += new System.EventHandler(this.buttonDisassemblySearch_Click);
     //
     // textBoxDisassemblySearch
     //
     this.textBoxDisassemblySearch.Location = new System.Drawing.Point(6, 41);
     this.textBoxDisassemblySearch.Name = "textBoxDisassemblySearch";
     this.textBoxDisassemblySearch.Size = new System.Drawing.Size(176, 20);
     this.textBoxDisassemblySearch.TabIndex = 2;
     //
     // groupBox13
     //
     this.groupBox13.Controls.Add(this.AsText);
     this.groupBox13.Controls.Add(this.Assemble);
     this.groupBox13.Controls.Add(this.AsAddress);
     this.groupBox13.Location = new System.Drawing.Point(3, 133);
     this.groupBox13.Name = "groupBox13";
     this.groupBox13.Size = new System.Drawing.Size(192, 73);
     this.groupBox13.TabIndex = 6;
     this.groupBox13.TabStop = false;
     this.groupBox13.Text = "Selected Address";
     //
     // AsText
     //
     this.AsText.AutoHistory = false;
     this.AsText.ContextMenuStrip = this.HistoryContextMenu;
     this.AsText.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AsText.Location = new System.Drawing.Point(6, 46);
     this.AsText.MaxLength = 100;
     this.AsText.Name = "AsText";
     this.AsText.Size = new System.Drawing.Size(177, 20);
     this.AsText.TabIndex = 7;
     this.AsText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.AsText_KeyDown);
     //
     // Assemble
     //
     this.Assemble.Location = new System.Drawing.Point(76, 19);
     this.Assemble.Name = "Assemble";
     this.Assemble.Size = new System.Drawing.Size(106, 22);
     this.Assemble.TabIndex = 8;
     this.Assemble.Tag = "1";
     this.Assemble.Text = "Assemble";
     this.Assemble.UseVisualStyleBackColor = true;
     this.Assemble.Click += new System.EventHandler(this.Assemble_Click);
     //
     // AsAddress
     //
     this.AsAddress.AutoHistory = true;
     this.AsAddress.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.AsAddress.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.AsAddress.ContextMenuStrip = this.HistoryContextMenu;
     this.AsAddress.EndingAddress = false;
     this.AsAddress.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AsAddress.Location = new System.Drawing.Point(7, 20);
     this.AsAddress.MaxLength = 8;
     this.AsAddress.MultiPokeAddress = false;
     this.AsAddress.Name = "AsAddress";
     this.AsAddress.Size = new System.Drawing.Size(62, 20);
     this.AsAddress.TabIndex = 5;
     this.AsAddress.Text = "80000000";
     //
     // groupBox12
     //
     this.groupBox12.Controls.Add(this.DisUpDown);
     this.groupBox12.Controls.Add(this.DisRegion);
     this.groupBox12.Controls.Add(this.DisUpdateBtn);
     this.groupBox12.Location = new System.Drawing.Point(3, 6);
     this.groupBox12.Name = "groupBox12";
     this.groupBox12.Size = new System.Drawing.Size(192, 46);
     this.groupBox12.TabIndex = 2;
     this.groupBox12.TabStop = false;
     this.groupBox12.Text = "Visible Address";
     this.groupBox12.UseCompatibleTextRendering = true;
     //
     // DisUpDown
     //
     this.DisUpDown.DecimalPlaces = 8;
     this.DisUpDown.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DisUpDown.Location = new System.Drawing.Point(73, 18);
     this.DisUpDown.Margin = new System.Windows.Forms.Padding(0);
     this.DisUpDown.Maximum = new decimal(new int[] {
     2,
     0,
     0,
     0});
     this.DisUpDown.Name = "DisUpDown";
     this.DisUpDown.Size = new System.Drawing.Size(16, 20);
     this.DisUpDown.TabIndex = 2;
     this.DisUpDown.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.DisUpDown.ValueChanged += new System.EventHandler(this.DisUpDown_ValueChanged);
     //
     // DisRegion
     //
     this.DisRegion.AutoHistory = true;
     this.DisRegion.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.DisRegion.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.DisRegion.ContextMenuStrip = this.HistoryContextMenu;
     this.DisRegion.EndingAddress = false;
     this.DisRegion.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DisRegion.Location = new System.Drawing.Point(11, 18);
     this.DisRegion.MaxLength = 8;
     this.DisRegion.MultiPokeAddress = false;
     this.DisRegion.Name = "DisRegion";
     this.DisRegion.Size = new System.Drawing.Size(62, 20);
     this.DisRegion.TabIndex = 6;
     this.DisRegion.Text = "80000000";
     this.DisRegion.TextChanged += new System.EventHandler(this.DisRegion_TextChanged);
     this.DisRegion.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.DisRegion_KeyPress);
     //
     // DisUpdateBtn
     //
     this.DisUpdateBtn.Location = new System.Drawing.Point(95, 16);
     this.DisUpdateBtn.Name = "DisUpdateBtn";
     this.DisUpdateBtn.Size = new System.Drawing.Size(87, 22);
     this.DisUpdateBtn.TabIndex = 5;
     this.DisUpdateBtn.Text = "Update";
     this.DisUpdateBtn.UseVisualStyleBackColor = true;
     this.DisUpdateBtn.Click += new System.EventHandler(this.DisUpdateBtn_Click);
     //
     // DisScroll
     //
     this.DisScroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.DisScroll.LargeChange = 0;
     this.DisScroll.Location = new System.Drawing.Point(576, 6);
     this.DisScroll.Maximum = 2;
     this.DisScroll.Name = "DisScroll";
     this.DisScroll.Size = new System.Drawing.Size(21, 323);
     this.DisScroll.SmallChange = 0;
     this.DisScroll.TabIndex = 1;
     this.DisScroll.Value = 1;
     //
     // DisAssBox
     //
     this.DisAssBox.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.DisAssBox.ContextMenuStrip = this.disAssContextMenu;
     this.DisAssBox.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DisAssBox.ItemHeight = 14;
     this.DisAssBox.Location = new System.Drawing.Point(197, 6);
     this.DisAssBox.Name = "DisAssBox";
     this.DisAssBox.Size = new System.Drawing.Size(400, 312);
     this.DisAssBox.TabIndex = 0;
     //
     // disAssContextMenu
     //
     this.disAssContextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem3,
     this.copyFunctionToolStripMenuItem,
     this.toolStripMenuItem11,
     this.DisAssSetBP,
     this.DisAssPoke,
     this.disAssGCTCode,
     this.memoryViewerToolStripMenuItem,
     this.toolStripMenuItem13,
     this.setSRR0HereToolStripMenuItem,
     this.toolStripMenuItem18,
     this.gotoFunctionStartToolStripMenuItem,
     this.gotoFunctionEndToolStripMenuItem});
     this.disAssContextMenu.Name = "contextMenuStrip1";
     this.disAssContextMenu.Size = new System.Drawing.Size(178, 220);
     this.disAssContextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.disAssContextMenu_Opening);
     //
     // copyToolStripMenuItem3
     //
     this.copyToolStripMenuItem3.Name = "copyToolStripMenuItem3";
     this.copyToolStripMenuItem3.Size = new System.Drawing.Size(177, 22);
     this.copyToolStripMenuItem3.Text = "&Copy";
     this.copyToolStripMenuItem3.Click += new System.EventHandler(this.copyToolStripMenuItem3_Click);
     //
     // copyFunctionToolStripMenuItem
     //
     this.copyFunctionToolStripMenuItem.Name = "copyFunctionToolStripMenuItem";
     this.copyFunctionToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.copyFunctionToolStripMenuItem.Text = "Copy &Function";
     this.copyFunctionToolStripMenuItem.Click += new System.EventHandler(this.copyFunctionToolStripMenuItem_Click);
     //
     // toolStripMenuItem11
     //
     this.toolStripMenuItem11.Name = "toolStripMenuItem11";
     this.toolStripMenuItem11.Size = new System.Drawing.Size(174, 6);
     //
     // DisAssSetBP
     //
     this.DisAssSetBP.Name = "DisAssSetBP";
     this.DisAssSetBP.Size = new System.Drawing.Size(177, 22);
     this.DisAssSetBP.Text = "&Breakpoint";
     this.DisAssSetBP.Click += new System.EventHandler(this.DisAssSetBP_Click);
     //
     // DisAssPoke
     //
     this.DisAssPoke.Name = "DisAssPoke";
     this.DisAssPoke.Size = new System.Drawing.Size(177, 22);
     this.DisAssPoke.Text = "&Poke";
     this.DisAssPoke.Click += new System.EventHandler(this.DisAssPoke_Click);
     //
     // disAssGCTCode
     //
     this.disAssGCTCode.Name = "disAssGCTCode";
     this.disAssGCTCode.Size = new System.Drawing.Size(177, 22);
     this.disAssGCTCode.Text = "&GCT code";
     this.disAssGCTCode.Click += new System.EventHandler(this.disAssGCTCode_Click);
     //
     // memoryViewerToolStripMenuItem
     //
     this.memoryViewerToolStripMenuItem.Name = "memoryViewerToolStripMenuItem";
     this.memoryViewerToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.memoryViewerToolStripMenuItem.Text = "&Memory Viewer";
     this.memoryViewerToolStripMenuItem.Click += new System.EventHandler(this.memoryViewerToolStripMenuItem_Click);
     //
     // toolStripMenuItem13
     //
     this.toolStripMenuItem13.Name = "toolStripMenuItem13";
     this.toolStripMenuItem13.Size = new System.Drawing.Size(174, 6);
     //
     // setSRR0HereToolStripMenuItem
     //
     this.setSRR0HereToolStripMenuItem.Name = "setSRR0HereToolStripMenuItem";
     this.setSRR0HereToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.setSRR0HereToolStripMenuItem.Text = "&Set SRR0 Here";
     this.setSRR0HereToolStripMenuItem.Click += new System.EventHandler(this.setSRR0HereToolStripMenuItem_Click);
     //
     // toolStripMenuItem18
     //
     this.toolStripMenuItem18.Name = "toolStripMenuItem18";
     this.toolStripMenuItem18.Size = new System.Drawing.Size(174, 6);
     //
     // gotoFunctionStartToolStripMenuItem
     //
     this.gotoFunctionStartToolStripMenuItem.Name = "gotoFunctionStartToolStripMenuItem";
     this.gotoFunctionStartToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.gotoFunctionStartToolStripMenuItem.Text = "Goto Function S&tart";
     this.gotoFunctionStartToolStripMenuItem.Click += new System.EventHandler(this.gotoFunctionStartToolStripMenuItem_Click);
     //
     // gotoFunctionEndToolStripMenuItem
     //
     this.gotoFunctionEndToolStripMenuItem.Name = "gotoFunctionEndToolStripMenuItem";
     this.gotoFunctionEndToolStripMenuItem.Size = new System.Drawing.Size(177, 22);
     this.gotoFunctionEndToolStripMenuItem.Text = "Goto Function &End";
     this.gotoFunctionEndToolStripMenuItem.Click += new System.EventHandler(this.gotoFunctionEndToolStripMenuItem_Click);
     //
     // shotPage
     //
     this.shotPage.Controls.Add(this.checkBoxAutoPreview);
     this.shotPage.Controls.Add(this.groupBox17);
     this.shotPage.Controls.Add(this.ShotPreview);
     this.shotPage.Controls.Add(this.groupBox16);
     this.shotPage.Controls.Add(this.groupBox15);
     this.shotPage.Controls.Add(this.groupBox14);
     this.shotPage.Controls.Add(this.ScreenshotCapBox);
     this.shotPage.Location = new System.Drawing.Point(4, 22);
     this.shotPage.Name = "shotPage";
     this.shotPage.Size = new System.Drawing.Size(614, 335);
     this.shotPage.TabIndex = 4;
     this.shotPage.Text = "Screenshots";
     this.shotPage.UseVisualStyleBackColor = true;
     this.shotPage.Enter += new System.EventHandler(this.shotPage_Enter);
     //
     // checkBoxAutoPreview
     //
     this.checkBoxAutoPreview.AutoSize = true;
     this.checkBoxAutoPreview.Location = new System.Drawing.Point(127, 266);
     this.checkBoxAutoPreview.Name = "checkBoxAutoPreview";
     this.checkBoxAutoPreview.Size = new System.Drawing.Size(89, 17);
     this.checkBoxAutoPreview.TabIndex = 6;
     this.checkBoxAutoPreview.Text = "Auto-Preview";
     this.checkBoxAutoPreview.UseVisualStyleBackColor = true;
     this.checkBoxAutoPreview.Click += new System.EventHandler(this.checkBoxAutoPreview_Click);
     //
     // groupBox17
     //
     this.groupBox17.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.groupBox17.Controls.Add(this.label10);
     this.groupBox17.Controls.Add(this.JPGQualLabel);
     this.groupBox17.Controls.Add(this.JPGQual);
     this.groupBox17.Controls.Add(this.ImgFormat);
     this.groupBox17.Location = new System.Drawing.Point(5, 178);
     this.groupBox17.Name = "groupBox17";
     this.groupBox17.Size = new System.Drawing.Size(211, 73);
     this.groupBox17.TabIndex = 5;
     this.groupBox17.TabStop = false;
     this.groupBox17.Text = "Image format";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(6, 44);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(72, 23);
     this.label10.TabIndex = 3;
     this.label10.Text = "JPEG Quality:";
     this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // JPGQualLabel
     //
     this.JPGQualLabel.Location = new System.Drawing.Point(172, 44);
     this.JPGQualLabel.Name = "JPGQualLabel";
     this.JPGQualLabel.Size = new System.Drawing.Size(33, 23);
     this.JPGQualLabel.TabIndex = 2;
     this.JPGQualLabel.Text = "85%";
     this.JPGQualLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // JPGQual
     //
     this.JPGQual.AutoSize = false;
     this.JPGQual.BackColor = System.Drawing.SystemColors.ControlLightLight;
     this.JPGQual.Location = new System.Drawing.Point(68, 44);
     this.JPGQual.Maximum = 100;
     this.JPGQual.Minimum = 1;
     this.JPGQual.Name = "JPGQual";
     this.JPGQual.Size = new System.Drawing.Size(98, 23);
     this.JPGQual.TabIndex = 1;
     this.JPGQual.TickStyle = System.Windows.Forms.TickStyle.None;
     this.JPGQual.Value = 85;
     this.JPGQual.Scroll += new System.EventHandler(this.JPGQual_Scroll);
     //
     // ImgFormat
     //
     this.ImgFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ImgFormat.FormattingEnabled = true;
     this.ImgFormat.Items.AddRange(new object[] {
     "PNG (recommended)",
     "BMP",
     "JPEG",
     "TIFF"});
     this.ImgFormat.Location = new System.Drawing.Point(5, 19);
     this.ImgFormat.Name = "ImgFormat";
     this.ImgFormat.Size = new System.Drawing.Size(200, 21);
     this.ImgFormat.TabIndex = 0;
     this.ImgFormat.SelectedIndexChanged += new System.EventHandler(this.ImgFormat_SelectedIndexChanged);
     //
     // ShotPreview
     //
     this.ShotPreview.Location = new System.Drawing.Point(5, 257);
     this.ShotPreview.Name = "ShotPreview";
     this.ShotPreview.Size = new System.Drawing.Size(116, 33);
     this.ShotPreview.TabIndex = 4;
     this.ShotPreview.Text = "Preview";
     this.ShotPreview.UseVisualStyleBackColor = true;
     this.ShotPreview.Click += new System.EventHandler(this.ShotPreview_Click);
     //
     // groupBox16
     //
     this.groupBox16.Controls.Add(this.ShotSizingType);
     this.groupBox16.Location = new System.Drawing.Point(5, 123);
     this.groupBox16.Name = "groupBox16";
     this.groupBox16.Size = new System.Drawing.Size(211, 49);
     this.groupBox16.TabIndex = 3;
     this.groupBox16.TabStop = false;
     this.groupBox16.Text = "Sizing";
     //
     // ShotSizingType
     //
     this.ShotSizingType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ShotSizingType.FormattingEnabled = true;
     this.ShotSizingType.Items.AddRange(new object[] {
     "Do not resize",
     "Resize to 16:9",
     "Resize to 4:3"});
     this.ShotSizingType.Location = new System.Drawing.Point(5, 19);
     this.ShotSizingType.Name = "ShotSizingType";
     this.ShotSizingType.Size = new System.Drawing.Size(200, 21);
     this.ShotSizingType.TabIndex = 0;
     this.ShotSizingType.SelectedIndexChanged += new System.EventHandler(this.ShotSizingType_SelectedIndexChanged);
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.label9);
     this.groupBox15.Location = new System.Drawing.Point(5, 50);
     this.groupBox15.Name = "groupBox15";
     this.groupBox15.Size = new System.Drawing.Size(211, 65);
     this.groupBox15.TabIndex = 2;
     this.groupBox15.TabStop = false;
     this.groupBox15.Text = "Information";
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(10, 20);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(197, 42);
     this.label9.TabIndex = 0;
     this.label9.Text = "Files will not be overwritten. They will all end with a number at the end countin" +
     "g up!";
     //
     // groupBox14
     //
     this.groupBox14.Controls.Add(this.ShotFilename);
     this.groupBox14.Controls.Add(this.ShotCapture);
     this.groupBox14.Location = new System.Drawing.Point(5, 0);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(552, 44);
     this.groupBox14.TabIndex = 1;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "Filename";
     //
     // ShotFilename
     //
     this.ShotFilename.Location = new System.Drawing.Point(106, 16);
     this.ShotFilename.Name = "ShotFilename";
     this.ShotFilename.Size = new System.Drawing.Size(436, 20);
     this.ShotFilename.TabIndex = 1;
     //
     // ShotCapture
     //
     this.ShotCapture.Location = new System.Drawing.Point(7, 13);
     this.ShotCapture.Name = "ShotCapture";
     this.ShotCapture.Size = new System.Drawing.Size(93, 25);
     this.ShotCapture.TabIndex = 0;
     this.ShotCapture.Text = "Capture";
     this.ShotCapture.UseVisualStyleBackColor = true;
     this.ShotCapture.Click += new System.EventHandler(this.ShotCapture_Click);
     //
     // ScreenshotCapBox
     //
     this.ScreenshotCapBox.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.ScreenshotCapBox.BackColor = System.Drawing.Color.Black;
     this.ScreenshotCapBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.ScreenshotCapBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ScreenshotCapBox.Location = new System.Drawing.Point(229, 50);
     this.ScreenshotCapBox.Name = "ScreenshotCapBox";
     this.ScreenshotCapBox.Size = new System.Drawing.Size(368, 279);
     this.ScreenshotCapBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.ScreenshotCapBox.TabIndex = 0;
     this.ScreenshotCapBox.TabStop = false;
     //
     // GCTPage
     //
     this.GCTPage.Controls.Add(this.checkBoxPauseCodes);
     this.GCTPage.Controls.Add(this.GCTStoreImm);
     this.GCTPage.Controls.Add(this.GCTDisable);
     this.GCTPage.Controls.Add(this.GCTListFileName);
     this.GCTPage.Controls.Add(this.GCTLoadList);
     this.GCTPage.Controls.Add(this.GCTSaveList);
     this.GCTPage.Controls.Add(this.GCTSndButton);
     this.GCTPage.Controls.Add(this.GCTDelBtn);
     this.GCTPage.Controls.Add(this.GCTAddCode);
     this.GCTPage.Controls.Add(this.GCTCodeValues);
     this.GCTPage.Controls.Add(this.GCTCodeList);
     this.GCTPage.Location = new System.Drawing.Point(4, 22);
     this.GCTPage.Name = "GCTPage";
     this.GCTPage.Size = new System.Drawing.Size(614, 335);
     this.GCTPage.TabIndex = 5;
     this.GCTPage.Text = "GCT codes";
     this.GCTPage.UseVisualStyleBackColor = true;
     this.GCTPage.Enter += new System.EventHandler(this.GCTPage_Enter);
     //
     // checkBoxPauseCodes
     //
     this.checkBoxPauseCodes.AutoSize = true;
     this.checkBoxPauseCodes.Location = new System.Drawing.Point(10, 271);
     this.checkBoxPauseCodes.Name = "checkBoxPauseCodes";
     this.checkBoxPauseCodes.Size = new System.Drawing.Size(128, 17);
     this.checkBoxPauseCodes.TabIndex = 14;
     this.checkBoxPauseCodes.Text = "Pause While Sending";
     this.checkBoxPauseCodes.UseVisualStyleBackColor = true;
     this.checkBoxPauseCodes.CheckedChanged += new System.EventHandler(this.checkBoxPauseCodes_CheckedChanged);
     //
     // GCTStoreImm
     //
     this.GCTStoreImm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.GCTStoreImm.Location = new System.Drawing.Point(424, 306);
     this.GCTStoreImm.Name = "GCTStoreImm";
     this.GCTStoreImm.Size = new System.Drawing.Size(173, 23);
     this.GCTStoreImm.TabIndex = 13;
     this.GCTStoreImm.Text = "Store immediantely";
     this.GCTStoreImm.UseVisualStyleBackColor = true;
     this.GCTStoreImm.Click += new System.EventHandler(this.GCTStoreImm_Click);
     //
     // GCTDisable
     //
     this.GCTDisable.Location = new System.Drawing.Point(10, 193);
     this.GCTDisable.Name = "GCTDisable";
     this.GCTDisable.Size = new System.Drawing.Size(145, 25);
     this.GCTDisable.TabIndex = 12;
     this.GCTDisable.Text = "Disable codes";
     this.GCTDisable.UseVisualStyleBackColor = true;
     this.GCTDisable.Click += new System.EventHandler(this.GCTDisable_Click);
     //
     // GCTListFileName
     //
     this.GCTListFileName.Location = new System.Drawing.Point(5, 161);
     this.GCTListFileName.Name = "GCTListFileName";
     this.GCTListFileName.Size = new System.Drawing.Size(150, 20);
     this.GCTListFileName.TabIndex = 11;
     this.GCTListFileName.Text = "code list file name here";
     this.GCTListFileName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // GCTLoadList
     //
     this.GCTLoadList.Location = new System.Drawing.Point(5, 131);
     this.GCTLoadList.Name = "GCTLoadList";
     this.GCTLoadList.Size = new System.Drawing.Size(150, 27);
     this.GCTLoadList.TabIndex = 10;
     this.GCTLoadList.Text = "Load code list";
     this.GCTLoadList.UseVisualStyleBackColor = true;
     this.GCTLoadList.Click += new System.EventHandler(this.GCTLoadList_Click);
     //
     // GCTSaveList
     //
     this.GCTSaveList.Location = new System.Drawing.Point(5, 98);
     this.GCTSaveList.Name = "GCTSaveList";
     this.GCTSaveList.Size = new System.Drawing.Size(150, 27);
     this.GCTSaveList.TabIndex = 9;
     this.GCTSaveList.Text = "Save code list";
     this.GCTSaveList.UseVisualStyleBackColor = true;
     this.GCTSaveList.Click += new System.EventHandler(this.GCTSaveList_Click);
     //
     // GCTSndButton
     //
     this.GCTSndButton.Location = new System.Drawing.Point(10, 226);
     this.GCTSndButton.Name = "GCTSndButton";
     this.GCTSndButton.Size = new System.Drawing.Size(145, 39);
     this.GCTSndButton.TabIndex = 8;
     this.GCTSndButton.Text = "Send to game";
     this.GCTSndButton.UseVisualStyleBackColor = true;
     this.GCTSndButton.Click += new System.EventHandler(this.GCTSndButton_Click);
     //
     // GCTDelBtn
     //
     this.GCTDelBtn.Location = new System.Drawing.Point(5, 45);
     this.GCTDelBtn.Name = "GCTDelBtn";
     this.GCTDelBtn.Size = new System.Drawing.Size(150, 27);
     this.GCTDelBtn.TabIndex = 7;
     this.GCTDelBtn.Text = "Delete code";
     this.GCTDelBtn.UseVisualStyleBackColor = true;
     this.GCTDelBtn.Click += new System.EventHandler(this.GCTDelBtn_Click);
     //
     // GCTAddCode
     //
     this.GCTAddCode.Location = new System.Drawing.Point(5, 12);
     this.GCTAddCode.Name = "GCTAddCode";
     this.GCTAddCode.Size = new System.Drawing.Size(150, 27);
     this.GCTAddCode.TabIndex = 6;
     this.GCTAddCode.Text = "Add code";
     this.GCTAddCode.UseVisualStyleBackColor = true;
     this.GCTAddCode.Click += new System.EventHandler(this.GCTAddCode_Click);
     //
     // GCTCodeValues
     //
     this.GCTCodeValues.AcceptsReturn = true;
     this.GCTCodeValues.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.GCTCodeValues.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.GCTCodeValues.Enabled = false;
     this.GCTCodeValues.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GCTCodeValues.Location = new System.Drawing.Point(424, 12);
     this.GCTCodeValues.MaxLength = 32000;
     this.GCTCodeValues.Multiline = true;
     this.GCTCodeValues.Name = "GCTCodeValues";
     this.GCTCodeValues.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.GCTCodeValues.Size = new System.Drawing.Size(173, 288);
     this.GCTCodeValues.TabIndex = 5;
     this.GCTCodeValues.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GCTCodeValues_KeyDown);
     //
     // GCTCodeList
     //
     this.GCTCodeList.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.GCTCodeList.CheckBoxes = true;
     this.GCTCodeList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2});
     this.GCTCodeList.ContextMenuStrip = this.gctCodeMenu;
     this.GCTCodeList.FullRowSelect = true;
     this.GCTCodeList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     listViewItem1.StateImageIndex = 0;
     this.GCTCodeList.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1});
     this.GCTCodeList.LabelEdit = true;
     this.GCTCodeList.Location = new System.Drawing.Point(161, 12);
     this.GCTCodeList.MultiSelect = false;
     this.GCTCodeList.Name = "GCTCodeList";
     this.GCTCodeList.ShowGroups = false;
     this.GCTCodeList.Size = new System.Drawing.Size(257, 317);
     this.GCTCodeList.TabIndex = 4;
     this.GCTCodeList.UseCompatibleStateImageBehavior = false;
     this.GCTCodeList.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Width = 185;
     //
     // gctCodeMenu
     //
     this.gctCodeMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.gctMenuAddCode,
     this.gctMenuDeleteCode,
     this.gCTWizardToolStripMenuItem1,
     this.DisableCodeLinesToolStripMenuItem,
     this.enableToolStripMenuItem});
     this.gctCodeMenu.Name = "gctCodeMenu";
     this.gctCodeMenu.Size = new System.Drawing.Size(174, 114);
     //
     // gctMenuAddCode
     //
     this.gctMenuAddCode.Name = "gctMenuAddCode";
     this.gctMenuAddCode.Size = new System.Drawing.Size(173, 22);
     this.gctMenuAddCode.Text = "Add code";
     this.gctMenuAddCode.Click += new System.EventHandler(this.GCTAddCode_Click);
     //
     // gctMenuDeleteCode
     //
     this.gctMenuDeleteCode.Name = "gctMenuDeleteCode";
     this.gctMenuDeleteCode.Size = new System.Drawing.Size(173, 22);
     this.gctMenuDeleteCode.Text = "Delete selected";
     this.gctMenuDeleteCode.Click += new System.EventHandler(this.GCTDelBtn_Click);
     //
     // gCTWizardToolStripMenuItem1
     //
     this.gCTWizardToolStripMenuItem1.Name = "gCTWizardToolStripMenuItem1";
     this.gCTWizardToolStripMenuItem1.Size = new System.Drawing.Size(173, 22);
     this.gCTWizardToolStripMenuItem1.Text = "GCT Wizard...";
     this.gCTWizardToolStripMenuItem1.Click += new System.EventHandler(this.gCTWizardToolStripMenuItem_Click);
     //
     // DisableCodeLinesToolStripMenuItem
     //
     this.DisableCodeLinesToolStripMenuItem.Name = "DisableCodeLinesToolStripMenuItem";
     this.DisableCodeLinesToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
     this.DisableCodeLinesToolStripMenuItem.Text = "Disable Code Lines";
     this.DisableCodeLinesToolStripMenuItem.Click += new System.EventHandler(this.disableToolStripMenuItem_Click);
     //
     // enableToolStripMenuItem
     //
     this.enableToolStripMenuItem.Name = "enableToolStripMenuItem";
     this.enableToolStripMenuItem.Size = new System.Drawing.Size(173, 22);
     this.enableToolStripMenuItem.Text = "Enable Code Lines";
     this.enableToolStripMenuItem.Click += new System.EventHandler(this.enableToolStripMenuItem_Click);
     //
     // WatchTab
     //
     this.WatchTab.Controls.Add(this.WatchListClear);
     this.WatchTab.Controls.Add(this.groupBox18);
     this.WatchTab.Controls.Add(this.WatchListOpenButton);
     this.WatchTab.Controls.Add(this.WatchListSaveButton);
     this.WatchTab.Controls.Add(this.WatchAdd);
     this.WatchTab.Controls.Add(this.WatchList);
     this.WatchTab.Location = new System.Drawing.Point(4, 22);
     this.WatchTab.Name = "WatchTab";
     this.WatchTab.Size = new System.Drawing.Size(614, 335);
     this.WatchTab.TabIndex = 7;
     this.WatchTab.Text = "Watch List";
     this.WatchTab.UseVisualStyleBackColor = true;
     //
     // WatchListClear
     //
     this.WatchListClear.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.WatchListClear.Location = new System.Drawing.Point(106, 289);
     this.WatchListClear.Name = "WatchListClear";
     this.WatchListClear.Size = new System.Drawing.Size(90, 40);
     this.WatchListClear.TabIndex = 5;
     this.WatchListClear.Text = "Clear list";
     this.WatchListClear.UseVisualStyleBackColor = true;
     this.WatchListClear.Click += new System.EventHandler(this.WatchListClear_Click);
     //
     // groupBox18
     //
     this.groupBox18.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox18.Controls.Add(this.WatchIntervalSet);
     this.groupBox18.Location = new System.Drawing.Point(432, 289);
     this.groupBox18.Name = "groupBox18";
     this.groupBox18.Size = new System.Drawing.Size(116, 40);
     this.groupBox18.TabIndex = 4;
     this.groupBox18.TabStop = false;
     this.groupBox18.Text = "Update interval (ms)";
     //
     // WatchIntervalSet
     //
     this.WatchIntervalSet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.WatchIntervalSet.Increment = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.WatchIntervalSet.Location = new System.Drawing.Point(10, 14);
     this.WatchIntervalSet.Maximum = new decimal(new int[] {
     15000,
     0,
     0,
     0});
     this.WatchIntervalSet.Minimum = new decimal(new int[] {
     300,
     0,
     0,
     0});
     this.WatchIntervalSet.Name = "WatchIntervalSet";
     this.WatchIntervalSet.Size = new System.Drawing.Size(100, 20);
     this.WatchIntervalSet.TabIndex = 0;
     this.WatchIntervalSet.Value = new decimal(new int[] {
     2000,
     0,
     0,
     0});
     //
     // WatchListOpenButton
     //
     this.WatchListOpenButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.WatchListOpenButton.Location = new System.Drawing.Point(315, 289);
     this.WatchListOpenButton.Name = "WatchListOpenButton";
     this.WatchListOpenButton.Size = new System.Drawing.Size(107, 40);
     this.WatchListOpenButton.TabIndex = 3;
     this.WatchListOpenButton.Text = "Load watch list";
     this.WatchListOpenButton.UseVisualStyleBackColor = true;
     this.WatchListOpenButton.Click += new System.EventHandler(this.WatchListOpenButton_Click);
     //
     // WatchListSaveButton
     //
     this.WatchListSaveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.WatchListSaveButton.Location = new System.Drawing.Point(202, 289);
     this.WatchListSaveButton.Name = "WatchListSaveButton";
     this.WatchListSaveButton.Size = new System.Drawing.Size(107, 40);
     this.WatchListSaveButton.TabIndex = 2;
     this.WatchListSaveButton.Text = "Save watch list";
     this.WatchListSaveButton.UseVisualStyleBackColor = true;
     this.WatchListSaveButton.Click += new System.EventHandler(this.WatchListSaveButton_Click);
     //
     // WatchAdd
     //
     this.WatchAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.WatchAdd.Location = new System.Drawing.Point(10, 289);
     this.WatchAdd.Name = "WatchAdd";
     this.WatchAdd.Size = new System.Drawing.Size(90, 40);
     this.WatchAdd.TabIndex = 1;
     this.WatchAdd.Text = "Add watch";
     this.WatchAdd.UseVisualStyleBackColor = true;
     this.WatchAdd.Click += new System.EventHandler(this.WatchAdd_Click);
     //
     // WatchList
     //
     this.WatchList.AllowUserToAddRows = false;
     this.WatchList.AllowUserToDeleteRows = false;
     this.WatchList.AllowUserToResizeRows = false;
     this.WatchList.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)));
     dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle15.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle15.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle15.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle15.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.WatchList.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle15;
     this.WatchList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.WatchList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.WatchCName,
     this.WatchCAddress,
     this.WatchCType,
     this.WatchCValue});
     this.WatchList.ContextMenuStrip = this.WatchCM;
     dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle18.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle18.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.WatchList.DefaultCellStyle = dataGridViewCellStyle18;
     this.WatchList.Location = new System.Drawing.Point(9, 8);
     this.WatchList.Name = "WatchList";
     this.WatchList.ReadOnly = true;
     dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle19.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle19.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.WatchList.RowHeadersDefaultCellStyle = dataGridViewCellStyle19;
     this.WatchList.RowHeadersVisible = false;
     this.WatchList.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.WatchList.RowTemplate.Height = 24;
     this.WatchList.RowTemplate.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.WatchList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.WatchList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.WatchList.ShowCellErrors = false;
     this.WatchList.ShowCellToolTips = false;
     this.WatchList.ShowEditingIcon = false;
     this.WatchList.ShowRowErrors = false;
     this.WatchList.Size = new System.Drawing.Size(588, 275);
     this.WatchList.TabIndex = 0;
     this.WatchList.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.WatchList_CellContentDoubleClick);
     //
     // WatchCName
     //
     this.WatchCName.HeaderText = "Name";
     this.WatchCName.Name = "WatchCName";
     this.WatchCName.ReadOnly = true;
     this.WatchCName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.WatchCName.Width = 200;
     //
     // WatchCAddress
     //
     dataGridViewCellStyle16.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.WatchCAddress.DefaultCellStyle = dataGridViewCellStyle16;
     this.WatchCAddress.HeaderText = "Address";
     this.WatchCAddress.Name = "WatchCAddress";
     this.WatchCAddress.ReadOnly = true;
     this.WatchCAddress.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // WatchCType
     //
     this.WatchCType.HeaderText = "Type";
     this.WatchCType.Name = "WatchCType";
     this.WatchCType.ReadOnly = true;
     this.WatchCType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.WatchCType.Width = 80;
     //
     // WatchCValue
     //
     dataGridViewCellStyle17.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.WatchCValue.DefaultCellStyle = dataGridViewCellStyle17;
     this.WatchCValue.HeaderText = "Value";
     this.WatchCValue.Name = "WatchCValue";
     this.WatchCValue.ReadOnly = true;
     this.WatchCValue.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // WatchCM
     //
     this.WatchCM.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.WatchAddWatchCM,
     this.WatchDeleteCM,
     this.WatchPokeCM,
     this.WatchEditCM});
     this.WatchCM.Name = "contextMenuStrip1";
     this.WatchCM.Size = new System.Drawing.Size(178, 92);
     this.WatchCM.Opening += new System.ComponentModel.CancelEventHandler(this.WatchCM_Opening);
     //
     // WatchAddWatchCM
     //
     this.WatchAddWatchCM.Name = "WatchAddWatchCM";
     this.WatchAddWatchCM.Size = new System.Drawing.Size(177, 22);
     this.WatchAddWatchCM.Text = "Add watch";
     this.WatchAddWatchCM.Click += new System.EventHandler(this.WatchAddWatchCM_Click);
     //
     // WatchDeleteCM
     //
     this.WatchDeleteCM.Enabled = false;
     this.WatchDeleteCM.Name = "WatchDeleteCM";
     this.WatchDeleteCM.Size = new System.Drawing.Size(177, 22);
     this.WatchDeleteCM.Text = "Delete";
     this.WatchDeleteCM.Click += new System.EventHandler(this.WatchDeleteCM_Click);
     //
     // WatchPokeCM
     //
     this.WatchPokeCM.Enabled = false;
     this.WatchPokeCM.Name = "WatchPokeCM";
     this.WatchPokeCM.Size = new System.Drawing.Size(177, 22);
     this.WatchPokeCM.Text = "Poke (first selected)";
     this.WatchPokeCM.Click += new System.EventHandler(this.WatchPokeCM_Click);
     //
     // WatchEditCM
     //
     this.WatchEditCM.Enabled = false;
     this.WatchEditCM.Name = "WatchEditCM";
     this.WatchEditCM.Size = new System.Drawing.Size(177, 22);
     this.WatchEditCM.Text = "Edit (first selected)";
     this.WatchEditCM.Click += new System.EventHandler(this.WatchEditCM_Click);
     //
     // FSATab
     //
     this.FSATab.Controls.Add(this.groupBox19);
     this.FSATab.Controls.Add(this.FSARead);
     this.FSATab.Controls.Add(this.FSATreeView);
     this.FSATab.Location = new System.Drawing.Point(4, 22);
     this.FSATab.Name = "FSATab";
     this.FSATab.Size = new System.Drawing.Size(614, 335);
     this.FSATab.TabIndex = 8;
     this.FSATab.Text = "FSA";
     this.FSATab.UseVisualStyleBackColor = true;
     //
     // groupBox19
     //
     this.groupBox19.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.groupBox19.Controls.Add(this.FSACodeData);
     this.groupBox19.Location = new System.Drawing.Point(8, 32);
     this.groupBox19.Name = "groupBox19";
     this.groupBox19.Size = new System.Drawing.Size(146, 297);
     this.groupBox19.TabIndex = 2;
     this.groupBox19.TabStop = false;
     this.groupBox19.Text = "Properties";
     //
     // FSACodeData
     //
     this.FSACodeData.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.FSACodeData.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FSACodeData.Location = new System.Drawing.Point(10, 14);
     this.FSACodeData.Multiline = true;
     this.FSACodeData.Name = "FSACodeData";
     this.FSACodeData.ReadOnly = true;
     this.FSACodeData.Size = new System.Drawing.Size(127, 277);
     this.FSACodeData.TabIndex = 0;
     //
     // FSARead
     //
     this.FSARead.Location = new System.Drawing.Point(8, 9);
     this.FSARead.Name = "FSARead";
     this.FSARead.Size = new System.Drawing.Size(146, 20);
     this.FSARead.TabIndex = 1;
     this.FSARead.Text = "Read FSA";
     this.FSARead.UseVisualStyleBackColor = true;
     this.FSARead.Click += new System.EventHandler(this.FSARead_Click);
     //
     // FSATreeView
     //
     this.FSATreeView.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.FSATreeView.ContextMenuStrip = this.fsaContextMenuStrip;
     this.FSATreeView.Location = new System.Drawing.Point(160, 9);
     this.FSATreeView.Name = "FSATreeView";
     this.FSATreeView.Size = new System.Drawing.Size(436, 320);
     this.FSATreeView.TabIndex = 0;
     //
     // fsaContextMenuStrip
     //
     this.fsaContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.extractFsaToolStripMenuItem});
     this.fsaContextMenuStrip.Name = "fsaContextMenuStrip";
     this.fsaContextMenuStrip.Size = new System.Drawing.Size(110, 26);
     //
     // extractFsaToolStripMenuItem
     //
     this.extractFsaToolStripMenuItem.Name = "extractFsaToolStripMenuItem";
     this.extractFsaToolStripMenuItem.Size = new System.Drawing.Size(109, 22);
     this.extractFsaToolStripMenuItem.Text = "&Extract";
     //
     // ToolPage
     //
     this.ToolPage.Controls.Add(this.groupBox24);
     this.ToolPage.Controls.Add(this.groupBox23);
     this.ToolPage.Controls.Add(this.label11);
     this.ToolPage.Location = new System.Drawing.Point(4, 22);
     this.ToolPage.Name = "ToolPage";
     this.ToolPage.Size = new System.Drawing.Size(614, 335);
     this.ToolPage.TabIndex = 9;
     this.ToolPage.Text = "Tools";
     this.ToolPage.UseVisualStyleBackColor = true;
     //
     // groupBox24
     //
     this.groupBox24.Controls.Add(this.ToolsDump);
     this.groupBox24.Controls.Add(this.ToolsBrowseDump);
     this.groupBox24.Controls.Add(this.ToolsDumpFileName);
     this.groupBox24.Controls.Add(this.label16);
     this.groupBox24.Controls.Add(this.ToolsDumpEnd);
     this.groupBox24.Controls.Add(this.label14);
     this.groupBox24.Controls.Add(this.ToolsDumpStart);
     this.groupBox24.Controls.Add(this.label15);
     this.groupBox24.Controls.Add(this.ToolsDumpRegions);
     this.groupBox24.Location = new System.Drawing.Point(6, 203);
     this.groupBox24.Name = "groupBox24";
     this.groupBox24.Size = new System.Drawing.Size(543, 87);
     this.groupBox24.TabIndex = 2;
     this.groupBox24.TabStop = false;
     this.groupBox24.Text = "Memory dumping:";
     //
     // ToolsDump
     //
     this.ToolsDump.Location = new System.Drawing.Point(6, 47);
     this.ToolsDump.Name = "ToolsDump";
     this.ToolsDump.Size = new System.Drawing.Size(530, 34);
     this.ToolsDump.TabIndex = 8;
     this.ToolsDump.Text = "Dump";
     this.ToolsDump.UseVisualStyleBackColor = true;
     this.ToolsDump.Click += new System.EventHandler(this.ToolsDump_Click);
     //
     // ToolsBrowseDump
     //
     this.ToolsBrowseDump.Location = new System.Drawing.Point(475, 19);
     this.ToolsBrowseDump.Name = "ToolsBrowseDump";
     this.ToolsBrowseDump.Size = new System.Drawing.Size(61, 22);
     this.ToolsBrowseDump.TabIndex = 7;
     this.ToolsBrowseDump.Text = "Browse";
     this.ToolsBrowseDump.UseVisualStyleBackColor = true;
     this.ToolsBrowseDump.Click += new System.EventHandler(this.ToolsBrowseDump_Click);
     //
     // ToolsDumpFileName
     //
     this.ToolsDumpFileName.Location = new System.Drawing.Point(325, 19);
     this.ToolsDumpFileName.Name = "ToolsDumpFileName";
     this.ToolsDumpFileName.Size = new System.Drawing.Size(143, 20);
     this.ToolsDumpFileName.TabIndex = 6;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(267, 22);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(52, 13);
     this.label16.TabIndex = 5;
     this.label16.Text = "Filename:";
     //
     // ToolsDumpEnd
     //
     this.ToolsDumpEnd.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ToolsDumpEnd.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ToolsDumpEnd.Location = new System.Drawing.Point(199, 19);
     this.ToolsDumpEnd.MaxLength = 8;
     this.ToolsDumpEnd.Name = "ToolsDumpEnd";
     this.ToolsDumpEnd.Size = new System.Drawing.Size(62, 20);
     this.ToolsDumpEnd.TabIndex = 4;
     this.ToolsDumpEnd.Text = "00000000";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(164, 22);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(29, 13);
     this.label14.TabIndex = 3;
     this.label14.Text = "End:";
     //
     // ToolsDumpStart
     //
     this.ToolsDumpStart.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ToolsDumpStart.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ToolsDumpStart.Location = new System.Drawing.Point(93, 19);
     this.ToolsDumpStart.MaxLength = 8;
     this.ToolsDumpStart.Name = "ToolsDumpStart";
     this.ToolsDumpStart.Size = new System.Drawing.Size(62, 20);
     this.ToolsDumpStart.TabIndex = 2;
     this.ToolsDumpStart.Text = "00000000";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(55, 22);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(32, 13);
     this.label15.TabIndex = 1;
     this.label15.Text = "Start:";
     //
     // ToolsDumpRegions
     //
     this.ToolsDumpRegions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ToolsDumpRegions.Font = new System.Drawing.Font("Courier New", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ToolsDumpRegions.FormattingEnabled = true;
     this.ToolsDumpRegions.Location = new System.Drawing.Point(6, 19);
     this.ToolsDumpRegions.Name = "ToolsDumpRegions";
     this.ToolsDumpRegions.Size = new System.Drawing.Size(43, 22);
     this.ToolsDumpRegions.TabIndex = 0;
     this.ToolsDumpRegions.SelectedIndexChanged += new System.EventHandler(this.ToolsDumpRegions_SelectedIndexChanged);
     //
     // groupBox23
     //
     this.groupBox23.Controls.Add(this.label13);
     this.groupBox23.Controls.Add(this.ToolsDisableWatchProtection);
     this.groupBox23.Controls.Add(this.label12);
     this.groupBox23.Controls.Add(this.ToolsDisableProtection);
     this.groupBox23.Location = new System.Drawing.Point(6, 62);
     this.groupBox23.Name = "groupBox23";
     this.groupBox23.Size = new System.Drawing.Size(543, 135);
     this.groupBox23.TabIndex = 1;
     this.groupBox23.TabStop = false;
     this.groupBox23.Text = "Address protection settings";
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(8, 104);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(530, 28);
     this.label13.TabIndex = 3;
     this.label13.Text = "Even with the box above checked, the watch list will still use the address protec" +
     "tion. You can disable that behaviour here, but BE CAREFUL what you\'re doing here" +
     "!";
     this.label13.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // ToolsDisableWatchProtection
     //
     this.ToolsDisableWatchProtection.AutoSize = true;
     this.ToolsDisableWatchProtection.Enabled = false;
     this.ToolsDisableWatchProtection.Location = new System.Drawing.Point(11, 84);
     this.ToolsDisableWatchProtection.Name = "ToolsDisableWatchProtection";
     this.ToolsDisableWatchProtection.Size = new System.Drawing.Size(173, 17);
     this.ToolsDisableWatchProtection.TabIndex = 2;
     this.ToolsDisableWatchProtection.Text = "Disable it for the watch list, too!";
     this.ToolsDisableWatchProtection.UseVisualStyleBackColor = true;
     this.ToolsDisableWatchProtection.CheckedChanged += new System.EventHandler(this.ToolsDisableWatchProtection_CheckedChanged);
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(7, 38);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(530, 42);
     this.label12.TabIndex = 1;
     this.label12.Text = resources.GetString("label12.Text");
     this.label12.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // ToolsDisableProtection
     //
     this.ToolsDisableProtection.AutoSize = true;
     this.ToolsDisableProtection.Location = new System.Drawing.Point(11, 18);
     this.ToolsDisableProtection.Name = "ToolsDisableProtection";
     this.ToolsDisableProtection.Size = new System.Drawing.Size(151, 17);
     this.ToolsDisableProtection.TabIndex = 0;
     this.ToolsDisableProtection.Text = "Disable address protection";
     this.ToolsDisableProtection.UseVisualStyleBackColor = true;
     this.ToolsDisableProtection.CheckedChanged += new System.EventHandler(this.ToolsDisableProtection_CheckedChanged);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(7, 11);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(536, 42);
     this.label11.TabIndex = 0;
     this.label11.Text = resources.GetString("label11.Text");
     this.label11.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // AbtPage
     //
     this.AbtPage.Controls.Add(this.checkBoxRegexSearch);
     this.AbtPage.Controls.Add(this.checkBoxBPNext);
     this.AbtPage.Controls.Add(this.numericUpDownFPS);
     this.AbtPage.Controls.Add(this.checkBoxFPS);
     this.AbtPage.Controls.Add(this.checkBoxAlwaysOnTop);
     this.AbtPage.Controls.Add(this.AbtText);
     this.AbtPage.Controls.Add(this.addressTextBoxBPNext);
     this.AbtPage.Location = new System.Drawing.Point(4, 22);
     this.AbtPage.Name = "AbtPage";
     this.AbtPage.Size = new System.Drawing.Size(614, 335);
     this.AbtPage.TabIndex = 6;
     this.AbtPage.Text = "About";
     this.AbtPage.UseVisualStyleBackColor = true;
     //
     // checkBoxRegexSearch
     //
     this.checkBoxRegexSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxRegexSearch.AutoSize = true;
     this.checkBoxRegexSearch.Location = new System.Drawing.Point(359, 316);
     this.checkBoxRegexSearch.Name = "checkBoxRegexSearch";
     this.checkBoxRegexSearch.Size = new System.Drawing.Size(94, 17);
     this.checkBoxRegexSearch.TabIndex = 6;
     this.checkBoxRegexSearch.Text = "Regex Search";
     this.checkBoxRegexSearch.UseVisualStyleBackColor = true;
     //
     // checkBoxBPNext
     //
     this.checkBoxBPNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxBPNext.AutoSize = true;
     this.checkBoxBPNext.Location = new System.Drawing.Point(222, 316);
     this.checkBoxBPNext.Name = "checkBoxBPNext";
     this.checkBoxBPNext.Size = new System.Drawing.Size(62, 17);
     this.checkBoxBPNext.TabIndex = 4;
     this.checkBoxBPNext.Text = "BPNext";
     this.checkBoxBPNext.UseVisualStyleBackColor = true;
     this.checkBoxBPNext.CheckedChanged += new System.EventHandler(this.checkBoxBPNext_CheckedChanged);
     //
     // numericUpDownFPS
     //
     this.numericUpDownFPS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.numericUpDownFPS.DecimalPlaces = 1;
     this.numericUpDownFPS.Location = new System.Drawing.Point(157, 312);
     this.numericUpDownFPS.Maximum = new decimal(new int[] {
     60,
     0,
     0,
     0});
     this.numericUpDownFPS.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     65536});
     this.numericUpDownFPS.Name = "numericUpDownFPS";
     this.numericUpDownFPS.Size = new System.Drawing.Size(50, 20);
     this.numericUpDownFPS.TabIndex = 2;
     this.numericUpDownFPS.Value = new decimal(new int[] {
     6,
     0,
     0,
     0});
     this.numericUpDownFPS.ValueChanged += new System.EventHandler(this.numericUpDownFPS_ValueChanged);
     //
     // checkBoxFPS
     //
     this.checkBoxFPS.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxFPS.AutoSize = true;
     this.checkBoxFPS.Location = new System.Drawing.Point(98, 316);
     this.checkBoxFPS.Name = "checkBoxFPS";
     this.checkBoxFPS.Size = new System.Drawing.Size(49, 17);
     this.checkBoxFPS.TabIndex = 3;
     this.checkBoxFPS.Text = "Slow";
     this.checkBoxFPS.UseVisualStyleBackColor = true;
     this.checkBoxFPS.CheckedChanged += new System.EventHandler(this.checkBoxFPS_CheckedChanged);
     //
     // checkBoxAlwaysOnTop
     //
     this.checkBoxAlwaysOnTop.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.checkBoxAlwaysOnTop.AutoSize = true;
     this.checkBoxAlwaysOnTop.Location = new System.Drawing.Point(3, 316);
     this.checkBoxAlwaysOnTop.Name = "checkBoxAlwaysOnTop";
     this.checkBoxAlwaysOnTop.Size = new System.Drawing.Size(92, 17);
     this.checkBoxAlwaysOnTop.TabIndex = 1;
     this.checkBoxAlwaysOnTop.Text = "Always on top";
     this.checkBoxAlwaysOnTop.UseVisualStyleBackColor = true;
     this.checkBoxAlwaysOnTop.CheckedChanged += new System.EventHandler(this.checkBoxAlwaysOnTop_CheckedChanged);
     //
     // AbtText
     //
     this.AbtText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.AbtText.Location = new System.Drawing.Point(6, 7);
     this.AbtText.Name = "AbtText";
     this.AbtText.Size = new System.Drawing.Size(543, 235);
     this.AbtText.TabIndex = 0;
     this.AbtText.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // addressTextBoxBPNext
     //
     this.addressTextBoxBPNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.addressTextBoxBPNext.AutoHistory = true;
     this.addressTextBoxBPNext.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(200)))), ((int)(((byte)(200)))));
     this.addressTextBoxBPNext.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.addressTextBoxBPNext.ContextMenuStrip = this.HistoryContextMenu;
     this.addressTextBoxBPNext.EndingAddress = false;
     this.addressTextBoxBPNext.Font = new System.Drawing.Font("Courier New", 8.25F);
     this.addressTextBoxBPNext.Location = new System.Drawing.Point(291, 311);
     this.addressTextBoxBPNext.MaxLength = 8;
     this.addressTextBoxBPNext.MultiPokeAddress = false;
     this.addressTextBoxBPNext.Name = "addressTextBoxBPNext";
     this.addressTextBoxBPNext.Size = new System.Drawing.Size(62, 20);
     this.addressTextBoxBPNext.TabIndex = 5;
     this.addressTextBoxBPNext.Text = "800018A8";
     //
     // panel1
     //
     this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel1.Controls.Add(this.OpenNotePad);
     this.panel1.Controls.Add(this.RGame);
     this.panel1.Controls.Add(this.PGame);
     this.panel1.Location = new System.Drawing.Point(1, 359);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(291, 31);
     this.panel1.TabIndex = 1;
     //
     // OpenNotePad
     //
     this.OpenNotePad.Enabled = false;
     this.OpenNotePad.Location = new System.Drawing.Point(193, 4);
     this.OpenNotePad.Name = "OpenNotePad";
     this.OpenNotePad.Size = new System.Drawing.Size(90, 21);
     this.OpenNotePad.TabIndex = 8;
     this.OpenNotePad.Text = "Open notepad";
     this.OpenNotePad.UseVisualStyleBackColor = true;
     this.OpenNotePad.Click += new System.EventHandler(this.OpenNotePad_Click);
     //
     // RGame
     //
     this.RGame.Enabled = false;
     this.RGame.Location = new System.Drawing.Point(101, 4);
     this.RGame.Name = "RGame";
     this.RGame.Size = new System.Drawing.Size(85, 21);
     this.RGame.TabIndex = 7;
     this.RGame.Text = "Run game";
     this.RGame.UseVisualStyleBackColor = true;
     this.RGame.Click += new System.EventHandler(this.RGame_Click);
     //
     // PGame
     //
     this.PGame.Location = new System.Drawing.Point(8, 4);
     this.PGame.Name = "PGame";
     this.PGame.Size = new System.Drawing.Size(85, 21);
     this.PGame.TabIndex = 6;
     this.PGame.Text = "Pause game";
     this.PGame.UseVisualStyleBackColor = true;
     this.PGame.Click += new System.EventHandler(this.PGame_Click);
     //
     // panel2
     //
     this.panel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.DisconnectButton);
     this.panel2.Controls.Add(this.CTCPGecko);
     this.panel2.Location = new System.Drawing.Point(334, 359);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(289, 31);
     this.panel2.TabIndex = 2;
     //
     // DisconnectButton
     //
     this.DisconnectButton.Enabled = false;
     this.DisconnectButton.Location = new System.Drawing.Point(148, 4);
     this.DisconnectButton.Name = "DisconnectButton";
     this.DisconnectButton.Size = new System.Drawing.Size(130, 21);
     this.DisconnectButton.TabIndex = 1;
     this.DisconnectButton.Text = "Disconnect";
     this.DisconnectButton.UseVisualStyleBackColor = true;
     this.DisconnectButton.Click += new System.EventHandler(this.DisconnectButton_Click);
     //
     // CTCPGecko
     //
     this.CTCPGecko.Location = new System.Drawing.Point(7, 4);
     this.CTCPGecko.Name = "CTCPGecko";
     this.CTCPGecko.Size = new System.Drawing.Size(130, 21);
     this.CTCPGecko.TabIndex = 0;
     this.CTCPGecko.Text = "Connect to Gecko";
     this.CTCPGecko.UseVisualStyleBackColor = true;
     this.CTCPGecko.Click += new System.EventHandler(this.CTCPGecko_Click);
     //
     // groupBox5
     //
     this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox5.Controls.Add(this.PCent);
     this.groupBox5.Controls.Add(this.StatusCap);
     this.groupBox5.Controls.Add(this.progressBar);
     this.groupBox5.Location = new System.Drawing.Point(1, 392);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(622, 55);
     this.groupBox5.TabIndex = 3;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Status";
     //
     // PCent
     //
     this.PCent.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.PCent.Location = new System.Drawing.Point(549, 16);
     this.PCent.Name = "PCent";
     this.PCent.Size = new System.Drawing.Size(62, 13);
     this.PCent.TabIndex = 2;
     this.PCent.Text = "0%";
     this.PCent.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // StatusCap
     //
     this.StatusCap.AutoSize = true;
     this.StatusCap.Location = new System.Drawing.Point(11, 16);
     this.StatusCap.Name = "StatusCap";
     this.StatusCap.Size = new System.Drawing.Size(38, 13);
     this.StatusCap.TabIndex = 1;
     this.StatusCap.Text = "Ready";
     //
     // progressBar
     //
     this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.progressBar.Location = new System.Drawing.Point(9, 32);
     this.progressBar.Name = "progressBar";
     this.progressBar.Size = new System.Drawing.Size(602, 19);
     this.progressBar.TabIndex = 0;
     //
     // WatchListOpen
     //
     this.WatchListOpen.DefaultExt = "xwl";
     this.WatchListOpen.Filter = "Watch list (*.xwl)|*.xwl|All files (*.*)|*.*";
     //
     // WatchListSave
     //
     this.WatchListSave.DefaultExt = "xwl";
     this.WatchListSave.Filter = "Watch list (*.xwl)|*.xwl|All files (*.*)|*.*";
     //
     // ToolsDumpSave
     //
     this.ToolsDumpSave.DefaultExt = "bin";
     this.ToolsDumpSave.Filter = "Binary files (*.bin)|*.bin|All files (*.*)|*.*";
     //
     // openBinary
     //
     this.openBinary.FileName = "binary.bin";
     this.openBinary.Filter = "All files (*.*)|*.*";
     this.openBinary.ReadOnlyChecked = true;
     this.openBinary.Title = "Select a file to upload";
     //
     // timerFPS
     //
     this.timerFPS.Tick += new System.EventHandler(this.timerFPS_Tick);
     //
     // openFileDialogSearch
     //
     this.openFileDialogSearch.DefaultExt = "bin";
     this.openFileDialogSearch.FileName = "results.zip";
     this.openFileDialogSearch.Filter = "\"Search Results|*.zip|All Files|*.*\"";
     this.openFileDialogSearch.Title = "Load Search Result";
     //
     // saveFileDialogSearch
     //
     this.saveFileDialogSearch.DefaultExt = "bin";
     this.saveFileDialogSearch.FileName = "results.zip";
     this.saveFileDialogSearch.Filter = "\"Search Results|*.zip|All Files|*.*\"";
     this.saveFileDialogSearch.Title = "Save Search Result";
     //
     // saveFileDialogLogSteps
     //
     this.saveFileDialogLogSteps.DefaultExt = "log";
     this.saveFileDialogLogSteps.FileName = "BPSteps";
     this.saveFileDialogLogSteps.Filter = "Logs|*.log|All Files|*.*";
     this.saveFileDialogLogSteps.Title = "Save Step Log";
     //
     // hostTextBox
     //
     this.hostTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.hostTextBox.Location = new System.Drawing.Point(341, 385);
     this.hostTextBox.Name = "hostTextBox";
     this.hostTextBox.Size = new System.Drawing.Size(131, 20);
     this.hostTextBox.TabIndex = 12;
     //
     // ThreadContextMenuStrip
     //
     this.ThreadContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.runningToolStripMenuItem,
     this.unpauseThreadToolStripMenuItem,
     this.memoryViewerToolStripMenuItem1});
     this.ThreadContextMenuStrip.Name = "ThreadContextMenuStrip";
     this.ThreadContextMenuStrip.Size = new System.Drawing.Size(161, 70);
     //
     // runningToolStripMenuItem
     //
     this.runningToolStripMenuItem.Name = "runningToolStripMenuItem";
     this.runningToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.runningToolStripMenuItem.Text = "Pause Thread";
     this.runningToolStripMenuItem.Click += new System.EventHandler(this.pauseToolStripMenuItem_Click);
     //
     // unpauseThreadToolStripMenuItem
     //
     this.unpauseThreadToolStripMenuItem.Name = "unpauseThreadToolStripMenuItem";
     this.unpauseThreadToolStripMenuItem.Size = new System.Drawing.Size(160, 22);
     this.unpauseThreadToolStripMenuItem.Text = "Unpause Thread";
     this.unpauseThreadToolStripMenuItem.Click += new System.EventHandler(this.unpauseThreadToolStripMenuItem_Click);
     //
     // memoryViewerToolStripMenuItem1
     //
     this.memoryViewerToolStripMenuItem1.Name = "memoryViewerToolStripMenuItem1";
     this.memoryViewerToolStripMenuItem1.Size = new System.Drawing.Size(160, 22);
     this.memoryViewerToolStripMenuItem1.Text = "Memory Viewer";
     this.memoryViewerToolStripMenuItem1.Click += new System.EventHandler(this.memoryViewerToolStripMenuItem1_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(632, 453);
     this.Controls.Add(this.hostTextBox);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.MainControl);
     this.Controls.Add(this.panel2);
     this.MinimumSize = new System.Drawing.Size(591, 441);
     this.Name = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "tcpGecko dotNET";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.Load += new System.EventHandler(this.MainForm_Load);
     this.Shown += new System.EventHandler(this.MainForm_Shown);
     this.ResizeEnd += new System.EventHandler(this.MainForm_ResizeEnd);
     ((System.ComponentModel.ISupportInitialize)(this.memViewGrid)).EndInit();
     this.memViewContextMenu.ResumeLayout(false);
     this.MainControl.ResumeLayout(false);
     this.searchPage.ResumeLayout(false);
     this.searchPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownNewSearchIndex)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownOldSearchIndex)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.UpDownSearchResultPage)).EndInit();
     this.InputConvert.ResumeLayout(false);
     this.HistoryContextMenu.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.SearchResults)).EndInit();
     this.SearchResMenu.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBoxSearchGroups.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownSearchGroup)).EndInit();
     this.MemView.ResumeLayout(false);
     this.MemView.PerformLayout();
     this.groupBox27.ResumeLayout(false);
     this.groupBox27.PerformLayout();
     this.groupBox9.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     this.groupBox8.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MemViewScrollbar)).EndInit();
     this.BreakpointPage.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.groupBox26.ResumeLayout(false);
     this.groupBox26.PerformLayout();
     this.BPCondMenu.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel5.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.groupBox25.ResumeLayout(false);
     this.groupBox25.PerformLayout();
     this.groupBox11.ResumeLayout(false);
     this.ShowMemContextMenu.ResumeLayout(false);
     this.ShowMemContextMenu.PerformLayout();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     this.DebugTabPage.ResumeLayout(false);
     this.ThreadBox.ResumeLayout(false);
     this.ThreadBox.PerformLayout();
     this.ThreadListGroupBox.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ThreadGridView)).EndInit();
     this.groupBoxStep.ResumeLayout(false);
     this.StepOutContextMenu.ResumeLayout(false);
     this.splitContainerRegASM.Panel1.ResumeLayout(false);
     this.splitContainerRegASM.Panel2.ResumeLayout(false);
     this.splitContainerRegASM.ResumeLayout(false);
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.DisPage.ResumeLayout(false);
     this.groupBoxDisasmCallStack.ResumeLayout(false);
     this.CallStackContextMenu.ResumeLayout(false);
     this.groupBoxDisasm.ResumeLayout(false);
     this.groupBoxDisasm.PerformLayout();
     this.groupBox13.ResumeLayout(false);
     this.groupBox13.PerformLayout();
     this.groupBox12.ResumeLayout(false);
     this.groupBox12.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DisUpDown)).EndInit();
     this.disAssContextMenu.ResumeLayout(false);
     this.shotPage.ResumeLayout(false);
     this.shotPage.PerformLayout();
     this.groupBox17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.JPGQual)).EndInit();
     this.groupBox16.ResumeLayout(false);
     this.groupBox15.ResumeLayout(false);
     this.groupBox14.ResumeLayout(false);
     this.groupBox14.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ScreenshotCapBox)).EndInit();
     this.GCTPage.ResumeLayout(false);
     this.GCTPage.PerformLayout();
     this.gctCodeMenu.ResumeLayout(false);
     this.WatchTab.ResumeLayout(false);
     this.groupBox18.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.WatchIntervalSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.WatchList)).EndInit();
     this.WatchCM.ResumeLayout(false);
     this.FSATab.ResumeLayout(false);
     this.groupBox19.ResumeLayout(false);
     this.groupBox19.PerformLayout();
     this.fsaContextMenuStrip.ResumeLayout(false);
     this.ToolPage.ResumeLayout(false);
     this.groupBox24.ResumeLayout(false);
     this.groupBox24.PerformLayout();
     this.groupBox23.ResumeLayout(false);
     this.groupBox23.PerformLayout();
     this.AbtPage.ResumeLayout(false);
     this.AbtPage.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDownFPS)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.ThreadContextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #19
0
 /// <summary>
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.scrollBarV = new System.Windows.Forms.VScrollBar();
     this.scrollBarH = new System.Windows.Forms.HScrollBar();
     this.hScrollBarPanel = new System.Windows.Forms.Panel();
     this.displayContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.dummyItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.hScrollBarPanel.SuspendLayout();
     this.displayContextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // scrollBarV
     //
     this.scrollBarV.Dock = System.Windows.Forms.DockStyle.Right;
     this.scrollBarV.Location = new System.Drawing.Point(616, 0);
     this.scrollBarV.Name = "scrollBarV";
     this.scrollBarV.Size = new System.Drawing.Size(17, 453);
     this.scrollBarV.TabIndex = 3;
     //
     // scrollBarH
     //
     this.scrollBarH.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                     | System.Windows.Forms.AnchorStyles.Right)));
     this.scrollBarH.Location = new System.Drawing.Point(0, 0);
     this.scrollBarH.Name = "scrollBarH";
     this.scrollBarH.Size = new System.Drawing.Size(616, 17);
     this.scrollBarH.TabIndex = 6;
     //
     // hScrollBarPanel
     //
     this.hScrollBarPanel.Controls.Add(this.scrollBarH);
     this.hScrollBarPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.hScrollBarPanel.Location = new System.Drawing.Point(0, 453);
     this.hScrollBarPanel.Name = "hScrollBarPanel";
     this.hScrollBarPanel.Size = new System.Drawing.Size(633, 17);
     this.hScrollBarPanel.TabIndex = 7;
     //
     // displayContextMenuStrip
     //
     this.displayContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.dummyItem});
     this.displayContextMenuStrip.Name = "contextMenuStrip1";
     this.displayContextMenuStrip.Size = new System.Drawing.Size(79, 26);
     this.displayContextMenuStrip.Closed += new System.Windows.Forms.ToolStripDropDownClosedEventHandler(this.displayContextMenuStrip_Closed);
     this.displayContextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.displayContextMenuStrip_Opening);
     //
     // dummyItem
     //
     this.dummyItem.Name = "dummyItem";
     this.dummyItem.Size = new System.Drawing.Size(78, 22);
     //
     // toolTip
     //
     this.toolTip.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     //
     // Display
     //
     this.AllowDrop = true;
     //this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     //this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.Controls.Add(this.scrollBarV);
     this.Controls.Add(this.hScrollBarPanel);
     this.DoubleBuffered = true;
     this.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Name = "Display";
     this.Size = new System.Drawing.Size(633, 470);
     this.hScrollBarPanel.ResumeLayout(false);
     this.displayContextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lstControls = new System.Windows.Forms.ListBox();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.loadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.undoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.redoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.scrlY = new System.Windows.Forms.VScrollBar();
     this.scrlX = new System.Windows.Forms.HScrollBar();
     this.widgetPropertyGrid = new System.Windows.Forms.PropertyGrid();
     this.grpSceneProperties = new System.Windows.Forms.GroupBox();
     this.lblHeight = new System.Windows.Forms.Label();
     this.lblWidth = new System.Windows.Forms.Label();
     this.txtHeight = new System.Windows.Forms.TextBox();
     this.txtWidth = new System.Windows.Forms.TextBox();
     this.guiDisplay = new Dominus_GUI_Editor.Controls.GUIDisplay();
     this.menuStrip1.SuspendLayout();
     this.grpSceneProperties.SuspendLayout();
     this.SuspendLayout();
     //
     // lstControls
     //
     this.lstControls.FormattingEnabled = true;
     this.lstControls.Items.AddRange(new object[] {
     "Button",
     "Textbox",
     "Label"});
     this.lstControls.Location = new System.Drawing.Point(12, 28);
     this.lstControls.Name = "lstControls";
     this.lstControls.Size = new System.Drawing.Size(162, 355);
     this.lstControls.TabIndex = 1;
     this.lstControls.SelectedIndexChanged += new System.EventHandler(this.lstControls_SelectedIndexChanged);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.editToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1219, 24);
     this.menuStrip1.TabIndex = 2;
     this.menuStrip1.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.newToolStripMenuItem,
     this.closeToolStripMenuItem,
     this.loadToolStripMenuItem,
     this.saveToolStripMenuItem,
     this.saveAsToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "File";
     //
     // newToolStripMenuItem
     //
     this.newToolStripMenuItem.Name = "newToolStripMenuItem";
     this.newToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.newToolStripMenuItem.Text = "New";
     this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
     //
     // closeToolStripMenuItem
     //
     this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
     this.closeToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.closeToolStripMenuItem.Text = "Close";
     this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
     //
     // loadToolStripMenuItem
     //
     this.loadToolStripMenuItem.Name = "loadToolStripMenuItem";
     this.loadToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.loadToolStripMenuItem.Text = "Load";
     this.loadToolStripMenuItem.Click += new System.EventHandler(this.loadToolStripMenuItem_Click);
     //
     // saveToolStripMenuItem
     //
     this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
     this.saveToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.saveToolStripMenuItem.Text = "Save";
     this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
     //
     // saveAsToolStripMenuItem
     //
     this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
     this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.saveAsToolStripMenuItem.Text = "Save As";
     this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(114, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.undoToolStripMenuItem,
     this.redoToolStripMenuItem,
     this.deleteToolStripMenuItem});
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(39, 20);
     this.editToolStripMenuItem.Text = "Edit";
     //
     // undoToolStripMenuItem
     //
     this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
     this.undoToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.undoToolStripMenuItem.Text = "Undo";
     //
     // redoToolStripMenuItem
     //
     this.redoToolStripMenuItem.Name = "redoToolStripMenuItem";
     this.redoToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.redoToolStripMenuItem.Text = "Redo";
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem.Text = "About";
     //
     // scrlY
     //
     this.scrlY.Location = new System.Drawing.Point(992, 28);
     this.scrlY.Name = "scrlY";
     this.scrlY.Size = new System.Drawing.Size(17, 600);
     this.scrlY.TabIndex = 3;
     //
     // scrlX
     //
     this.scrlX.Location = new System.Drawing.Point(189, 631);
     this.scrlX.Name = "scrlX";
     this.scrlX.Size = new System.Drawing.Size(800, 17);
     this.scrlX.TabIndex = 4;
     //
     // widgetPropertyGrid
     //
     this.widgetPropertyGrid.Location = new System.Drawing.Point(1030, 28);
     this.widgetPropertyGrid.Name = "widgetPropertyGrid";
     this.widgetPropertyGrid.Size = new System.Drawing.Size(177, 600);
     this.widgetPropertyGrid.TabIndex = 6;
     //
     // grpSceneProperties
     //
     this.grpSceneProperties.Controls.Add(this.lblHeight);
     this.grpSceneProperties.Controls.Add(this.lblWidth);
     this.grpSceneProperties.Controls.Add(this.txtHeight);
     this.grpSceneProperties.Controls.Add(this.txtWidth);
     this.grpSceneProperties.Location = new System.Drawing.Point(12, 389);
     this.grpSceneProperties.Name = "grpSceneProperties";
     this.grpSceneProperties.Size = new System.Drawing.Size(162, 259);
     this.grpSceneProperties.TabIndex = 7;
     this.grpSceneProperties.TabStop = false;
     this.grpSceneProperties.Text = "Properties:";
     //
     // lblHeight
     //
     this.lblHeight.AutoSize = true;
     this.lblHeight.Location = new System.Drawing.Point(4, 58);
     this.lblHeight.Name = "lblHeight";
     this.lblHeight.Size = new System.Drawing.Size(41, 13);
     this.lblHeight.TabIndex = 3;
     this.lblHeight.Text = "Height:";
     //
     // lblWidth
     //
     this.lblWidth.AutoSize = true;
     this.lblWidth.Location = new System.Drawing.Point(4, 32);
     this.lblWidth.Name = "lblWidth";
     this.lblWidth.Size = new System.Drawing.Size(38, 13);
     this.lblWidth.TabIndex = 2;
     this.lblWidth.Text = "Width:";
     //
     // txtHeight
     //
     this.txtHeight.Location = new System.Drawing.Point(45, 55);
     this.txtHeight.Name = "txtHeight";
     this.txtHeight.ReadOnly = true;
     this.txtHeight.Size = new System.Drawing.Size(100, 20);
     this.txtHeight.TabIndex = 1;
     this.txtHeight.Text = "600";
     //
     // txtWidth
     //
     this.txtWidth.Location = new System.Drawing.Point(45, 29);
     this.txtWidth.Name = "txtWidth";
     this.txtWidth.ReadOnly = true;
     this.txtWidth.Size = new System.Drawing.Size(100, 20);
     this.txtWidth.TabIndex = 0;
     this.txtWidth.Text = "800";
     //
     // guiDisplay
     //
     this.guiDisplay.GUIHandler = null;
     this.guiDisplay.Location = new System.Drawing.Point(189, 28);
     this.guiDisplay.Name = "guiDisplay";
     this.guiDisplay.Size = new System.Drawing.Size(800, 600);
     this.guiDisplay.TabIndex = 5;
     this.guiDisplay.Text = "guiDisplay1";
     this.guiDisplay.Click += new System.EventHandler(this.guiDisplay_Click);
     this.guiDisplay.MouseClick += new System.Windows.Forms.MouseEventHandler(this.guiDisplay_MouseClick);
     this.guiDisplay.MouseDown += new System.Windows.Forms.MouseEventHandler(this.guiDisplay_MouseDown);
     this.guiDisplay.MouseMove += new System.Windows.Forms.MouseEventHandler(this.guiDisplay_MouseMove);
     this.guiDisplay.MouseUp += new System.Windows.Forms.MouseEventHandler(this.guiDisplay_MouseUp);
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1219, 657);
     this.Controls.Add(this.grpSceneProperties);
     this.Controls.Add(this.widgetPropertyGrid);
     this.Controls.Add(this.guiDisplay);
     this.Controls.Add(this.scrlX);
     this.Controls.Add(this.scrlY);
     this.Controls.Add(this.lstControls);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "frmMain";
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.grpSceneProperties.ResumeLayout(false);
     this.grpSceneProperties.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #21
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.hScrollBar = new System.Windows.Forms.HScrollBar();
     this.vScrollBar = new System.Windows.Forms.VScrollBar();
     this.canvas = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize) (this.canvas)).BeginInit();
     this.SuspendLayout();
     //
     // hScrollBar
     //
     this.hScrollBar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.hScrollBar.Location = new System.Drawing.Point(0, 418);
     this.hScrollBar.Minimum = 20;
     this.hScrollBar.Name = "hScrollBar";
     this.hScrollBar.Size = new System.Drawing.Size(446, 17);
     this.hScrollBar.TabIndex = 0;
     this.hScrollBar.Value = 50;
     this.hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
     //
     // vScrollBar
     //
     this.vScrollBar.Dock = System.Windows.Forms.DockStyle.Right;
     this.vScrollBar.Location = new System.Drawing.Point(429, 0);
     this.vScrollBar.Name = "vScrollBar";
     this.vScrollBar.Size = new System.Drawing.Size(17, 418);
     this.vScrollBar.TabIndex = 1;
     this.vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
     //
     // canvas
     //
     this.canvas.BackColor = System.Drawing.SystemColors.AppWorkspace;
     this.canvas.Dock = System.Windows.Forms.DockStyle.Fill;
     this.canvas.Location = new System.Drawing.Point(0, 0);
     this.canvas.Margin = new System.Windows.Forms.Padding(60, 28, 60, 28);
     this.canvas.Name = "canvas";
     this.canvas.Size = new System.Drawing.Size(429, 418);
     this.canvas.TabIndex = 2;
     this.canvas.TabStop = false;
     this.canvas.MouseWheel += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseWheel);
     this.canvas.MouseLeave += new System.EventHandler(this.canvas_MouseLeave);
     this.canvas.MouseDown += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseDown);
     this.canvas.MouseMove += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseMove);
     this.canvas.MouseCaptureChanged += new System.EventHandler(this.canvas_MouseCaptureChanged);
     this.canvas.Paint += new System.Windows.Forms.PaintEventHandler(this.canvas_Paint);
     this.canvas.Resize += new System.EventHandler(this.canvas_Resize);
     this.canvas.MouseUp += new System.Windows.Forms.MouseEventHandler(this.canvas_MouseUp);
     this.canvas.MouseEnter += new System.EventHandler(this.canvas_MouseEnter);
     //
     // BitmapViewer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Controls.Add(this.canvas);
     this.Controls.Add(this.vScrollBar);
     this.Controls.Add(this.hScrollBar);
     this.Margin = new System.Windows.Forms.Padding(60, 28, 60, 28);
     this.Name = "BitmapViewer";
     this.Size = new System.Drawing.Size(446, 435);
     ((System.ComponentModel.ISupportInitialize) (this.canvas)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmIncidenciasAlmacen));
     this.lblLocal = new System.Windows.Forms.Label();
     this.lblFecha = new System.Windows.Forms.Label();
     this.dtpFecha = new System.Windows.Forms.DateTimePicker();
     this.cmbLocal = new System.Windows.Forms.ComboBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
     this.rtbMotivo = new System.Windows.Forms.RichTextBox();
     this.btnAceptar = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.btnEliminaLinea = new System.Windows.Forms.Button();
     this.btnBuscarProducto = new System.Windows.Forms.Button();
     this.dgvArticulos = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.label2 = new System.Windows.Forms.Label();
     this.txbCantidadTotal = new System.Windows.Forms.TextBox();
     this.cmbTipoIncidencia = new System.Windows.Forms.ComboBox();
     this.lblTipoIncidencia = new System.Windows.Forms.Label();
     this.txbNroDoc = new System.Windows.Forms.TextBox();
     this.lblNroDoc = new System.Windows.Forms.Label();
     this.btnBuscarOC = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvArticulos)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // lblLocal
     //
     this.lblLocal.AutoSize = true;
     this.lblLocal.Location = new System.Drawing.Point(9, 29);
     this.lblLocal.Name = "lblLocal";
     this.lblLocal.Size = new System.Drawing.Size(34, 16);
     this.lblLocal.TabIndex = 0;
     this.lblLocal.Text = "Local";
     //
     // lblFecha
     //
     this.lblFecha.AutoSize = true;
     this.lblFecha.Location = new System.Drawing.Point(314, 29);
     this.lblFecha.Name = "lblFecha";
     this.lblFecha.Size = new System.Drawing.Size(38, 16);
     this.lblFecha.TabIndex = 2;
     this.lblFecha.Text = "Fecha";
     //
     // dtpFecha
     //
     this.dtpFecha.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpFecha.Location = new System.Drawing.Point(364, 25);
     this.dtpFecha.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.dtpFecha.Name = "dtpFecha";
     this.dtpFecha.Size = new System.Drawing.Size(199, 20);
     this.dtpFecha.TabIndex = 5;
     //
     // cmbLocal
     //
     this.cmbLocal.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbLocal.Enabled = false;
     this.cmbLocal.FormattingEnabled = true;
     this.cmbLocal.Location = new System.Drawing.Point(112, 25);
     this.cmbLocal.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmbLocal.Name = "cmbLocal";
     this.cmbLocal.Size = new System.Drawing.Size(147, 24);
     this.cmbLocal.TabIndex = 6;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.vScrollBar1);
     this.groupBox1.Controls.Add(this.rtbMotivo);
     this.groupBox1.Location = new System.Drawing.Point(23, 155);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupBox1.Size = new System.Drawing.Size(557, 117);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Motivo";
     //
     // vScrollBar1
     //
     this.vScrollBar1.Location = new System.Drawing.Point(521, 23);
     this.vScrollBar1.Name = "vScrollBar1";
     this.vScrollBar1.Size = new System.Drawing.Size(20, 77);
     this.vScrollBar1.TabIndex = 1;
     //
     // rtbMotivo
     //
     this.rtbMotivo.Location = new System.Drawing.Point(6, 23);
     this.rtbMotivo.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.rtbMotivo.Name = "rtbMotivo";
     this.rtbMotivo.Size = new System.Drawing.Size(535, 77);
     this.rtbMotivo.TabIndex = 0;
     this.rtbMotivo.Text = "";
     //
     // btnAceptar
     //
     this.btnAceptar.Location = new System.Drawing.Point(404, 527);
     this.btnAceptar.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnAceptar.Name = "btnAceptar";
     this.btnAceptar.Size = new System.Drawing.Size(85, 28);
     this.btnAceptar.TabIndex = 25;
     this.btnAceptar.Text = "Aceptar";
     this.btnAceptar.UseVisualStyleBackColor = true;
     this.btnAceptar.Click += new System.EventHandler(this.btnAceptar_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Location = new System.Drawing.Point(495, 527);
     this.btnCancelar.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(85, 28);
     this.btnCancelar.TabIndex = 24;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btnEliminaLinea);
     this.groupBox2.Controls.Add(this.btnBuscarProducto);
     this.groupBox2.Controls.Add(this.dgvArticulos);
     this.groupBox2.Location = new System.Drawing.Point(23, 296);
     this.groupBox2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupBox2.Size = new System.Drawing.Size(557, 204);
     this.groupBox2.TabIndex = 23;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Productos";
     //
     // btnEliminaLinea
     //
     this.btnEliminaLinea.Image = ((System.Drawing.Image)(resources.GetObject("btnEliminaLinea.Image")));
     this.btnEliminaLinea.Location = new System.Drawing.Point(519, 86);
     this.btnEliminaLinea.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnEliminaLinea.Name = "btnEliminaLinea";
     this.btnEliminaLinea.Size = new System.Drawing.Size(32, 26);
     this.btnEliminaLinea.TabIndex = 25;
     this.btnEliminaLinea.UseVisualStyleBackColor = true;
     this.btnEliminaLinea.Click += new System.EventHandler(this.btnEliminaLinea_Click);
     //
     // btnBuscarProducto
     //
     this.btnBuscarProducto.Image = ((System.Drawing.Image)(resources.GetObject("btnBuscarProducto.Image")));
     this.btnBuscarProducto.Location = new System.Drawing.Point(519, 52);
     this.btnBuscarProducto.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnBuscarProducto.Name = "btnBuscarProducto";
     this.btnBuscarProducto.Size = new System.Drawing.Size(32, 26);
     this.btnBuscarProducto.TabIndex = 24;
     this.btnBuscarProducto.UseVisualStyleBackColor = true;
     this.btnBuscarProducto.Click += new System.EventHandler(this.button1_Click);
     //
     // dgvArticulos
     //
     this.dgvArticulos.AllowUserToAddRows = false;
     this.dgvArticulos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvArticulos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3});
     this.dgvArticulos.Location = new System.Drawing.Point(20, 23);
     this.dgvArticulos.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.dgvArticulos.Name = "dgvArticulos";
     this.dgvArticulos.Size = new System.Drawing.Size(492, 161);
     this.dgvArticulos.TabIndex = 18;
     this.dgvArticulos.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvArticulos_CellValueChanged);
     this.dgvArticulos.CellParsing += new System.Windows.Forms.DataGridViewCellParsingEventHandler(this.dgvArticulos_CellParsing);
     //
     // Column1
     //
     this.Column1.HeaderText = "Código";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column2
     //
     this.Column2.HeaderText = "Descripción";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     this.Column2.Width = 248;
     //
     // Column3
     //
     this.Column3.HeaderText = "Cantidad";
     this.Column3.Name = "Column3";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(33, 534);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(155, 16);
     this.label2.TabIndex = 26;
     this.label2.Text = "Total Productos Perjudicados";
     //
     // txbCantidadTotal
     //
     this.txbCantidadTotal.Enabled = false;
     this.txbCantidadTotal.Location = new System.Drawing.Point(218, 530);
     this.txbCantidadTotal.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txbCantidadTotal.Name = "txbCantidadTotal";
     this.txbCantidadTotal.Size = new System.Drawing.Size(58, 20);
     this.txbCantidadTotal.TabIndex = 27;
     //
     // cmbTipoIncidencia
     //
     this.cmbTipoIncidencia.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbTipoIncidencia.FormattingEnabled = true;
     this.cmbTipoIncidencia.Items.AddRange(new object[] {
     "Devolucion",
     "Merma"});
     this.cmbTipoIncidencia.Location = new System.Drawing.Point(112, 75);
     this.cmbTipoIncidencia.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmbTipoIncidencia.Name = "cmbTipoIncidencia";
     this.cmbTipoIncidencia.Size = new System.Drawing.Size(147, 24);
     this.cmbTipoIncidencia.TabIndex = 29;
     this.cmbTipoIncidencia.SelectedIndexChanged += new System.EventHandler(this.cmbTipoIncidencia_SelectedIndexChanged);
     //
     // lblTipoIncidencia
     //
     this.lblTipoIncidencia.AutoSize = true;
     this.lblTipoIncidencia.Location = new System.Drawing.Point(9, 79);
     this.lblTipoIncidencia.Name = "lblTipoIncidencia";
     this.lblTipoIncidencia.Size = new System.Drawing.Size(84, 16);
     this.lblTipoIncidencia.TabIndex = 28;
     this.lblTipoIncidencia.Text = "Tipo Incidencia";
     //
     // txbNroDoc
     //
     this.txbNroDoc.Enabled = false;
     this.txbNroDoc.Location = new System.Drawing.Point(365, 74);
     this.txbNroDoc.Margin = new System.Windows.Forms.Padding(3, 5, 3, 5);
     this.txbNroDoc.Name = "txbNroDoc";
     this.txbNroDoc.Size = new System.Drawing.Size(153, 20);
     this.txbNroDoc.TabIndex = 30;
     //
     // lblNroDoc
     //
     this.lblNroDoc.AutoSize = true;
     this.lblNroDoc.Location = new System.Drawing.Point(314, 79);
     this.lblNroDoc.Name = "lblNroDoc";
     this.lblNroDoc.Size = new System.Drawing.Size(45, 16);
     this.lblNroDoc.TabIndex = 31;
     this.lblNroDoc.Text = "NroDoc";
     //
     // btnBuscarOC
     //
     this.btnBuscarOC.Image = ((System.Drawing.Image)(resources.GetObject("btnBuscarOC.Image")));
     this.btnBuscarOC.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnBuscarOC.Location = new System.Drawing.Point(530, 75);
     this.btnBuscarOC.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.btnBuscarOC.Name = "btnBuscarOC";
     this.btnBuscarOC.Size = new System.Drawing.Size(27, 25);
     this.btnBuscarOC.TabIndex = 32;
     this.btnBuscarOC.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnBuscarOC.UseVisualStyleBackColor = true;
     this.btnBuscarOC.Click += new System.EventHandler(this.btnBuscarOC_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.lblLocal);
     this.groupBox3.Controls.Add(this.btnBuscarOC);
     this.groupBox3.Controls.Add(this.lblFecha);
     this.groupBox3.Controls.Add(this.lblNroDoc);
     this.groupBox3.Controls.Add(this.dtpFecha);
     this.groupBox3.Controls.Add(this.txbNroDoc);
     this.groupBox3.Controls.Add(this.cmbLocal);
     this.groupBox3.Controls.Add(this.cmbTipoIncidencia);
     this.groupBox3.Controls.Add(this.lblTipoIncidencia);
     this.groupBox3.Location = new System.Drawing.Point(23, 13);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(569, 122);
     this.groupBox3.TabIndex = 33;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Incidencia";
     //
     // frmIncidenciasAlmacen
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(604, 582);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.txbCantidadTotal);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.btnAceptar);
     this.Controls.Add(this.btnCancelar);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Font = new System.Drawing.Font("Trebuchet MS", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmIncidenciasAlmacen";
     this.Text = ".:Papyrus Registrar Incidencias";
     this.Load += new System.EventHandler(this.frmIncidenciasAlmacen_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvArticulos)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent()
		{
			System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
			this.pnlDwellerList = new System.Windows.Forms.Panel();
			this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.gridDwellers = new System.Windows.Forms.DataGridView();
			this.FirstName = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.LastName = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Gender = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Level = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Strength = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Perception = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Endurance = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Charisma = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Intelligence = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Agility = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Luck = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Weapon = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.Outfit = new System.Windows.Forms.DataGridViewTextBoxColumn();
			this.vscrRow = new System.Windows.Forms.VScrollBar();
			this.pnlDwellerList.SuspendLayout();
			this.tableLayoutPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridDwellers)).BeginInit();
			this.SuspendLayout();
			// 
			// pnlDwellerList
			// 
			this.pnlDwellerList.AutoSize = true;
			this.pnlDwellerList.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.pnlDwellerList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.pnlDwellerList.Controls.Add(this.tableLayoutPanel);
			this.pnlDwellerList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.pnlDwellerList.Location = new System.Drawing.Point(0, 0);
			this.pnlDwellerList.Name = "pnlDwellerList";
			this.pnlDwellerList.Size = new System.Drawing.Size(727, 567);
			this.pnlDwellerList.TabIndex = 30;
			// 
			// tableLayoutPanel
			// 
			this.tableLayoutPanel.AutoSize = true;
			this.tableLayoutPanel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			this.tableLayoutPanel.ColumnCount = 2;
			this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.tableLayoutPanel.Controls.Add(this.gridDwellers, 0, 0);
			this.tableLayoutPanel.Controls.Add(this.vscrRow, 1, 0);
			this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
			this.tableLayoutPanel.Name = "tableLayoutPanel";
			this.tableLayoutPanel.RowCount = 1;
			this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.tableLayoutPanel.Size = new System.Drawing.Size(725, 565);
			this.tableLayoutPanel.TabIndex = 2;
			// 
			// gridDwellers
			// 
			this.gridDwellers.AllowUserToAddRows = false;
			this.gridDwellers.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
			dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
			dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
			dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
			dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
			dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
			dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
			dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
			this.gridDwellers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
			this.gridDwellers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
			this.gridDwellers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
			this.FirstName,
			this.LastName,
			this.Gender,
			this.Level,
			this.Strength,
			this.Perception,
			this.Endurance,
			this.Charisma,
			this.Intelligence,
			this.Agility,
			this.Luck,
			this.Weapon,
			this.Outfit});
			this.gridDwellers.Location = new System.Drawing.Point(3, 3);
			this.gridDwellers.Name = "gridDwellers";
			this.gridDwellers.RowHeadersVisible = false;
			this.gridDwellers.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.gridDwellers.Size = new System.Drawing.Size(680, 558);
			this.gridDwellers.TabIndex = 2;
			// 
			// FirstName
			// 
			this.FirstName.HeaderText = "Name";
			this.FirstName.Name = "FirstName";
			// 
			// LastName
			// 
			this.LastName.HeaderText = "Last Name";
			this.LastName.Name = "LastName";
			// 
			// Gender
			// 
			this.Gender.HeaderText = "Gender";
			this.Gender.Name = "Gender";
			// 
			// Level
			// 
			this.Level.HeaderText = "Level";
			this.Level.Name = "Level";
			// 
			// Strength
			// 
			this.Strength.HeaderText = "S";
			this.Strength.Name = "Strength";
			// 
			// Perception
			// 
			this.Perception.HeaderText = "P";
			this.Perception.Name = "Perception";
			// 
			// Endurance
			// 
			this.Endurance.HeaderText = "E";
			this.Endurance.Name = "Endurance";
			// 
			// Charisma
			// 
			this.Charisma.HeaderText = "C";
			this.Charisma.Name = "Charisma";
			// 
			// Intelligence
			// 
			this.Intelligence.HeaderText = "I";
			this.Intelligence.Name = "Intelligence";
			// 
			// Agility
			// 
			this.Agility.HeaderText = "A";
			this.Agility.Name = "Agility";
			// 
			// Luck
			// 
			this.Luck.HeaderText = "L";
			this.Luck.Name = "Luck";
			// 
			// Weapon
			// 
			this.Weapon.HeaderText = "Weapon";
			this.Weapon.Name = "Weapon";
			// 
			// Outfit
			// 
			this.Outfit.HeaderText = "Outfit";
			this.Outfit.Name = "Outfit";
			// 
			// vscrRow
			// 
			this.vscrRow.Dock = System.Windows.Forms.DockStyle.Left;
			this.vscrRow.Location = new System.Drawing.Point(686, 0);
			this.vscrRow.Name = "vscrRow";
			this.vscrRow.Size = new System.Drawing.Size(17, 565);
			this.vscrRow.TabIndex = 3;
			this.vscrRow.Scroll += new System.Windows.Forms.ScrollEventHandler(this.VscrRowScroll);
			// 
			// DwellerList
			// 
			this.AutoSize = true;
			this.Controls.Add(this.pnlDwellerList);
			this.Name = "DwellerList";
			this.Size = new System.Drawing.Size(727, 567);
			this.pnlDwellerList.ResumeLayout(false);
			this.pnlDwellerList.PerformLayout();
			this.tableLayoutPanel.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridDwellers)).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
예제 #24
0
 public void ResetIndex(System.Windows.Forms.VScrollBar o)
 {
 }
예제 #25
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.hScrollBar = new System.Windows.Forms.HScrollBar();
     this.vScrollBar = new System.Windows.Forms.VScrollBar();
     this.mapPanel = new System.Windows.Forms.Panel();
     this.tableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // tableLayoutPanel
     //
     this.tableLayoutPanel.ColumnCount = 2;
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel.Controls.Add(this.hScrollBar, 0, 1);
     this.tableLayoutPanel.Controls.Add(this.vScrollBar, 1, 0);
     this.tableLayoutPanel.Controls.Add(this.mapPanel, 0, 0);
     this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel.Name = "tableLayoutPanel";
     this.tableLayoutPanel.RowCount = 2;
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel.Size = new System.Drawing.Size(291, 295);
     this.tableLayoutPanel.TabIndex = 0;
     //
     // hScrollBar
     //
     this.hScrollBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.hScrollBar.Location = new System.Drawing.Point(0, 275);
     this.hScrollBar.Name = "hScrollBar";
     this.hScrollBar.Size = new System.Drawing.Size(271, 20);
     this.hScrollBar.TabIndex = 0;
     this.hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
     //
     // vScrollBar
     //
     this.vScrollBar.Dock = System.Windows.Forms.DockStyle.Fill;
     this.vScrollBar.Location = new System.Drawing.Point(271, 0);
     this.vScrollBar.Name = "vScrollBar";
     this.vScrollBar.Size = new System.Drawing.Size(20, 275);
     this.vScrollBar.TabIndex = 1;
     this.vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
     //
     // mapPanel
     //
     this.mapPanel.BackColor = System.Drawing.Color.AntiqueWhite;
     this.mapPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mapPanel.ForeColor = System.Drawing.SystemColors.ControlDark;
     this.mapPanel.Location = new System.Drawing.Point(0, 0);
     this.mapPanel.Margin = new System.Windows.Forms.Padding(0);
     this.mapPanel.Name = "mapPanel";
     this.mapPanel.Size = new System.Drawing.Size(271, 275);
     this.mapPanel.TabIndex = 2;
     this.mapPanel.Paint += new System.Windows.Forms.PaintEventHandler(this.mapPanel_Paint);
     this.mapPanel.MouseMove += new System.Windows.Forms.MouseEventHandler(this.mapPanel_MouseMove);
     this.mapPanel.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.mapPanel_MouseDoubleClick);
     this.mapPanel.MouseDown += new System.Windows.Forms.MouseEventHandler(this.mapPanel_MouseDown);
     this.mapPanel.MouseUp += new System.Windows.Forms.MouseEventHandler(this.mapPanel_MouseUp);
     //
     // MapControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.tableLayoutPanel);
     this.Name = "MapControl";
     this.Size = new System.Drawing.Size(291, 295);
     this.Load += new System.EventHandler(this.MapControl_Load);
     this.VisibleChanged += new System.EventHandler(this.MapControl_VisibleChanged);
     this.Leave += new System.EventHandler(this.MapControl_Leave);
     this.Resize += new System.EventHandler(this.MapControl_Resize);
     this.tableLayoutPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
예제 #26
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components   = new System.ComponentModel.Container();
     this.hScrollBar1  = new System.Windows.Forms.HScrollBar();
     this.vScrollBar1  = new System.Windows.Forms.VScrollBar();
     this.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.label1       = new System.Windows.Forms.Label();
     this.button1      = new System.Windows.Forms.Button();
     this.progressBar1 = new System.Windows.Forms.ProgressBar();
     this.button2      = new System.Windows.Forms.Button();
     this.button3      = new System.Windows.Forms.Button();
     this.timer1       = new System.Windows.Forms.Timer(this.components);
     this.button4      = new System.Windows.Forms.Button();
     this.button5      = new System.Windows.Forms.Button();
     this.textBox1     = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // hScrollBar1
     //
     this.hScrollBar1.Location = new System.Drawing.Point(29, 280);
     this.hScrollBar1.Name     = "hScrollBar1";
     this.hScrollBar1.Size     = new System.Drawing.Size(242, 13);
     this.hScrollBar1.TabIndex = 0;
     this.hScrollBar1.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.HScrollBar1Scroll);
     //
     // vScrollBar1
     //
     this.vScrollBar1.Location = new System.Drawing.Point(5, 50);
     this.vScrollBar1.Name     = "vScrollBar1";
     this.vScrollBar1.Size     = new System.Drawing.Size(17, 243);
     this.vScrollBar1.TabIndex = 1;
     this.vScrollBar1.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.VScrollBar1Scroll);
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(22, 53);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.Size     = new System.Drawing.Size(260, 224);
     this.richTextBox1.TabIndex = 2;
     this.richTextBox1.Text     = "";
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(22, 21);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(217, 29);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Envie sua reclamação para a anhanguera prometemos não joga-la fora por 3 dias!!";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(226, 12);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(56, 38);
     this.button1.TabIndex = 4;
     this.button1.Text     = "Enviar Opinião";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // progressBar1
     //
     this.progressBar1.Location = new System.Drawing.Point(299, 12);
     this.progressBar1.Name     = "progressBar1";
     this.progressBar1.Size     = new System.Drawing.Size(250, 23);
     this.progressBar1.TabIndex = 5;
     this.progressBar1.Click   += new System.EventHandler(this.ProgressBar1Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(299, 40);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 45);
     this.button2.TabIndex = 6;
     this.button2.Text     = "Aumentar";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(474, 40);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(75, 45);
     this.button3.TabIndex = 7;
     this.button3.Text     = "Diminuir";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.Button3Click);
     //
     // timer1
     //
     this.timer1.Interval = 1000;
     this.timer1.Tick    += new System.EventHandler(this.Timer1Tick);
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(368, 112);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(111, 72);
     this.button4.TabIndex = 8;
     this.button4.Text     = "Disparar Timer";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.Button4Click);
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(368, 190);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(111, 57);
     this.button5.TabIndex = 9;
     this.button5.Text     = "button5";
     this.button5.UseVisualStyleBackColor = true;
     this.button5.Click += new System.EventHandler(this.Button5Click);
     //
     // textBox1
     //
     this.textBox1.Location     = new System.Drawing.Point(357, 253);
     this.textBox1.Name         = "textBox1";
     this.textBox1.Size         = new System.Drawing.Size(136, 20);
     this.textBox1.TabIndex     = 10;
     this.textBox1.TextChanged += new System.EventHandler(this.TextBox1TextChanged);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(862, 382);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.progressBar1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.richTextBox1);
     this.Controls.Add(this.vScrollBar1);
     this.Controls.Add(this.hScrollBar1);
     this.Name        = "MainForm";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Text        = "Caixa de Opinião";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #27
0
 public void SetIndex(System.Windows.Forms.VScrollBar o, short Index)
 {
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DXControl));
            this.ZoomSlider = new System.Windows.Forms.TrackBar();
            this.hScrollBar = new System.Windows.Forms.HScrollBar();
            this.vScrollBar = new System.Windows.Forms.VScrollBar();
            this.toolStrip = new System.Windows.Forms.ToolStrip();
            this.comboBoxMaps = new System.Windows.Forms.ToolStripComboBox();
            this.labelCoords = new System.Windows.Forms.ToolStripLabel();
            this.labelObject = new System.Windows.Forms.ToolStripLabel();
            this.toolStripLabelRegion = new System.Windows.Forms.ToolStripLabel();
            this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.mobnameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
            this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.filterMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomInToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.zoomOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.resetZoomToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.panel1 = new System.Windows.Forms.Panel();
            this.objectToolTip = new System.Windows.Forms.ToolTip(this.components);
            toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).BeginInit();
            this.toolStrip.SuspendLayout();
            this.contextMenuStrip.SuspendLayout();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // toolStripSeparator1
            // 
            toolStripSeparator1.Name = "toolStripSeparator1";
            resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1");
            // 
            // ZoomSlider
            // 
            this.ZoomSlider.BackColor = System.Drawing.SystemColors.Control;
            resources.ApplyResources(this.ZoomSlider, "ZoomSlider");
            this.ZoomSlider.LargeChange = 250;
            this.ZoomSlider.Maximum = 1000;
            this.ZoomSlider.Minimum = 50;
            this.ZoomSlider.Name = "ZoomSlider";
            this.ZoomSlider.SmallChange = 100;
            this.ZoomSlider.TabStop = false;
            this.ZoomSlider.TickFrequency = 250;
            this.ZoomSlider.TickStyle = System.Windows.Forms.TickStyle.None;
            this.ZoomSlider.Value = 100;
            this.ZoomSlider.Scroll += new System.EventHandler(this.Zoom_Scroll);
            // 
            // hScrollBar
            // 
            resources.ApplyResources(this.hScrollBar, "hScrollBar");
            this.hScrollBar.LargeChange = 0;
            this.hScrollBar.Maximum = 0;
            this.hScrollBar.Name = "hScrollBar";
            this.hScrollBar.SmallChange = 0;
            this.hScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
            // 
            // vScrollBar
            // 
            resources.ApplyResources(this.vScrollBar, "vScrollBar");
            this.vScrollBar.LargeChange = 0;
            this.vScrollBar.Maximum = 0;
            this.vScrollBar.Name = "vScrollBar";
            this.vScrollBar.SmallChange = 0;
            this.vScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
            // 
            // toolStrip
            // 
            resources.ApplyResources(this.toolStrip, "toolStrip");
            this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.comboBoxMaps,
            this.labelCoords,
            this.labelObject,
            this.toolStripLabelRegion});
            this.toolStrip.Name = "toolStrip";
            this.toolStrip.Stretch = true;
            // 
            // comboBoxMaps
            // 
            this.comboBoxMaps.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.comboBoxMaps.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.comboBoxMaps.DropDownWidth = 200;
            resources.ApplyResources(this.comboBoxMaps, "comboBoxMaps");
            this.comboBoxMaps.Name = "comboBoxMaps";
            this.comboBoxMaps.SelectedIndexChanged += new System.EventHandler(this.comboBoxMaps_SelectionChangeCommitted);
            // 
            // labelCoords
            // 
            resources.ApplyResources(this.labelCoords, "labelCoords");
            this.labelCoords.Name = "labelCoords";
            // 
            // labelObject
            // 
            this.labelObject.Name = "labelObject";
            resources.ApplyResources(this.labelObject, "labelObject");
            // 
            // toolStripLabelRegion
            // 
            this.toolStripLabelRegion.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this.toolStripLabelRegion.Name = "toolStripLabelRegion";
            resources.ApplyResources(this.toolStripLabelRegion, "toolStripLabelRegion");
            this.toolStripLabelRegion.Text = global::DOL.Tools.QuestDesigner.Properties.Resources.lblRegion;
            // 
            // contextMenuStrip
            // 
            this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.mobnameToolStripMenuItem,
            this.toolStripSeparator3,
            this.copyLocationToolStripMenuItem,
            this.filterMenuItem,
            this.zoomToolStripMenuItem});
            this.contextMenuStrip.Name = "contextMenuStrip";
            resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
            // 
            // mobnameToolStripMenuItem
            // 
            this.mobnameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.importToolStripMenuItem});
            this.mobnameToolStripMenuItem.Name = "mobnameToolStripMenuItem";
            resources.ApplyResources(this.mobnameToolStripMenuItem, "mobnameToolStripMenuItem");
            // 
            // importToolStripMenuItem
            // 
            this.importToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.add;
            this.importToolStripMenuItem.Name = "importToolStripMenuItem";
            resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
            this.importToolStripMenuItem.Click += new System.EventHandler(this.importObjectToolStripMenuItem_Click);
            // 
            // toolStripSeparator3
            // 
            this.toolStripSeparator3.Name = "toolStripSeparator3";
            resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
            // 
            // copyLocationToolStripMenuItem
            // 
            this.copyLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.copy;
            this.copyLocationToolStripMenuItem.Name = "copyLocationToolStripMenuItem";
            resources.ApplyResources(this.copyLocationToolStripMenuItem, "copyLocationToolStripMenuItem");
            this.copyLocationToolStripMenuItem.Click += new System.EventHandler(this.copyLocationToolStripMenuItem_Click);
            // 
            // filterMenuItem
            // 
            this.filterMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.searchNPC;
            this.filterMenuItem.Name = "filterMenuItem";
            resources.ApplyResources(this.filterMenuItem, "filterMenuItem");
            // 
            // zoomToolStripMenuItem
            // 
            this.zoomToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.zoomInToolStripMenuItem,
            this.zoomOutToolStripMenuItem,
            toolStripSeparator1,
            this.resetZoomToolStripMenuItem});
            this.zoomToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.search;
            this.zoomToolStripMenuItem.Name = "zoomToolStripMenuItem";
            resources.ApplyResources(this.zoomToolStripMenuItem, "zoomToolStripMenuItem");
            // 
            // zoomInToolStripMenuItem
            // 
            this.zoomInToolStripMenuItem.Name = "zoomInToolStripMenuItem";
            resources.ApplyResources(this.zoomInToolStripMenuItem, "zoomInToolStripMenuItem");
            this.zoomInToolStripMenuItem.Click += new System.EventHandler(this.zoomInToolStripMenuItem_Click);
            // 
            // zoomOutToolStripMenuItem
            // 
            this.zoomOutToolStripMenuItem.Name = "zoomOutToolStripMenuItem";
            resources.ApplyResources(this.zoomOutToolStripMenuItem, "zoomOutToolStripMenuItem");
            this.zoomOutToolStripMenuItem.Click += new System.EventHandler(this.zoomOutToolStripMenuItem_Click);
            // 
            // resetZoomToolStripMenuItem
            // 
            this.resetZoomToolStripMenuItem.Name = "resetZoomToolStripMenuItem";
            resources.ApplyResources(this.resetZoomToolStripMenuItem, "resetZoomToolStripMenuItem");
            this.resetZoomToolStripMenuItem.Click += new System.EventHandler(this.resetZoomToolStripMenuItem_Click);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.ZoomSlider);
            this.panel1.Controls.Add(this.toolStrip);
            resources.ApplyResources(this.panel1, "panel1");
            this.panel1.Name = "panel1";
            // 
            // DXControl
            // 
            this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
            this.Controls.Add(this.vScrollBar);
            this.Controls.Add(this.hScrollBar);
            this.Controls.Add(this.panel1);
            this.Cursor = System.Windows.Forms.Cursors.Default;
            resources.ApplyResources(this, "$this");
            this.Name = "DXControl";
            this.Load += new System.EventHandler(this.DXControl_Load);
            this.MouseLeave += new System.EventHandler(this.DXControl_MouseLeave);
            this.Click += new System.EventHandler(this.DXControl_Click);
            this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseMove);
            this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseDown);
            this.Resize += new System.EventHandler(this.DXControl_Resize);
            this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseUp);
            this.MouseEnter += new System.EventHandler(this.DXControl_MouseEnter);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DXControl_KeyDown);
            ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).EndInit();
            this.toolStrip.ResumeLayout(false);
            this.toolStrip.PerformLayout();
            this.contextMenuStrip.ResumeLayout(false);
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.ResumeLayout(false);

        }
예제 #29
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.hScrollBar1 = new System.Windows.Forms.HScrollBar();
     this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
     this.trackBar1   = new System.Windows.Forms.TrackBar();
     this.trackBar2   = new System.Windows.Forms.TrackBar();
     this.trackBar3   = new System.Windows.Forms.TrackBar();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar3)).BeginInit();
     this.SuspendLayout();
     //
     // hScrollBar1
     //
     this.hScrollBar1.Location = new System.Drawing.Point(32, 56);
     this.hScrollBar1.Name     = "hScrollBar1";
     this.hScrollBar1.TabIndex = 0;
     //
     // vScrollBar1
     //
     this.vScrollBar1.Location = new System.Drawing.Point(160, 32);
     this.vScrollBar1.Name     = "vScrollBar1";
     this.vScrollBar1.TabIndex = 1;
     //
     // trackBar1
     //
     this.trackBar1.Location = new System.Drawing.Point(216, 16);
     this.trackBar1.Name     = "trackBar1";
     this.trackBar1.TabIndex = 2;
     //
     // trackBar2
     //
     this.trackBar2.Location  = new System.Drawing.Point(216, 88);
     this.trackBar2.Name      = "trackBar2";
     this.trackBar2.TabIndex  = 2;
     this.trackBar2.TickStyle = System.Windows.Forms.TickStyle.TopLeft;
     //
     // trackBar3
     //
     this.trackBar3.Location  = new System.Drawing.Point(216, 48);
     this.trackBar3.Name      = "trackBar3";
     this.trackBar3.TabIndex  = 2;
     this.trackBar3.TickStyle = System.Windows.Forms.TickStyle.Both;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(352, 149);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.trackBar1,
         this.vScrollBar1,
         this.hScrollBar1,
         this.trackBar2,
         this.trackBar3
     });
     this.Name = "Form1";
     this.Text = "Form1";
     ((System.ComponentModel.ISupportInitialize)(this.trackBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackBar3)).EndInit();
     this.ResumeLayout(false);
 }
예제 #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.picEditArea      = new System.Windows.Forms.PictureBox();
     this.mbMain           = new System.Windows.Forms.MainMenu(this.components);
     this.mnuFile          = new System.Windows.Forms.MenuItem();
     this.mnuFileNew       = new System.Windows.Forms.MenuItem();
     this.mnuFileOpen      = new System.Windows.Forms.MenuItem();
     this.mnuFileClose     = new System.Windows.Forms.MenuItem();
     this.menuItem4        = new System.Windows.Forms.MenuItem();
     this.mnuFileSave      = new System.Windows.Forms.MenuItem();
     this.menuItem6        = new System.Windows.Forms.MenuItem();
     this.mnuFileExit      = new System.Windows.Forms.MenuItem();
     this.mnuSettings      = new System.Windows.Forms.MenuItem();
     this.mnuZoom          = new System.Windows.Forms.MenuItem();
     this.mnuZoomX1        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX2        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX4        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX8        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX16       = new System.Windows.Forms.MenuItem();
     this.menuItem1        = new System.Windows.Forms.MenuItem();
     this.mnuCreateNewUser = new System.Windows.Forms.MenuItem();
     this.mnuHelp          = new System.Windows.Forms.MenuItem();
     this.mnuHelpAbout     = new System.Windows.Forms.MenuItem();
     this.tbMain           = new System.Windows.Forms.ToolBar();
     this.tbbNew           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1   = new System.Windows.Forms.ToolBarButton();
     this.tbbOpen          = new System.Windows.Forms.ToolBarButton();
     this.tbbSave          = new System.Windows.Forms.ToolBarButton();
     this.tbbSeperator1    = new System.Windows.Forms.ToolBarButton();
     this.tbbHelp          = new System.Windows.Forms.ToolBarButton();
     this.il16             = new System.Windows.Forms.ImageList(this.components);
     this.statusBar1       = new System.Windows.Forms.StatusBar();
     this.panelTools       = new System.Windows.Forms.Panel();
     this.label1           = new System.Windows.Forms.Label();
     this.picActiveTile    = new System.Windows.Forms.PictureBox();
     this.panelTiles       = new System.Windows.Forms.Panel();
     this.picTiles         = new System.Windows.Forms.PictureBox();
     this.vscTiles         = new System.Windows.Forms.VScrollBar();
     this.picEditSel       = new System.Windows.Forms.PictureBox();
     this.vscMap           = new System.Windows.Forms.VScrollBar();
     this.hscMap           = new System.Windows.Forms.HScrollBar();
     this.timer1           = new System.Windows.Forms.Timer(this.components);
     this.picMap           = new System.Windows.Forms.PictureBox();
     this.tmrLoad          = new System.Windows.Forms.Timer(this.components);
     this.dlgLoadMap       = new System.Windows.Forms.OpenFileDialog();
     this.dlgSaveMap       = new System.Windows.Forms.SaveFileDialog();
     this.comboBox1        = new System.Windows.Forms.ComboBox();
     this.lblZoom          = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).BeginInit();
     this.panelTools.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).BeginInit();
     this.panelTiles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picTiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picMap)).BeginInit();
     this.SuspendLayout();
     //
     // picEditArea
     //
     this.picEditArea.BackColor   = System.Drawing.Color.Gray;
     this.picEditArea.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picEditArea.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.picEditArea.Location    = new System.Drawing.Point(0, 0);
     this.picEditArea.Name        = "picEditArea";
     this.picEditArea.Size        = new System.Drawing.Size(1098, 593);
     this.picEditArea.TabIndex    = 0;
     this.picEditArea.TabStop     = false;
     this.picEditArea.Resize     += new System.EventHandler(this.picEditArea_Resize);
     //
     // mbMain
     //
     this.mbMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile,
         this.mnuSettings,
         this.mnuHelp
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFileNew,
         this.mnuFileOpen,
         this.mnuFileClose,
         this.menuItem4,
         this.mnuFileSave,
         this.menuItem6,
         this.mnuFileExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuFileNew
     //
     this.mnuFileNew.Index  = 0;
     this.mnuFileNew.Text   = "&New";
     this.mnuFileNew.Click += new System.EventHandler(this.mnuFileNew_Click);
     //
     // mnuFileOpen
     //
     this.mnuFileOpen.Index  = 1;
     this.mnuFileOpen.Text   = "&Open";
     this.mnuFileOpen.Click += new System.EventHandler(this.mnuFileOpen_Click);
     //
     // mnuFileClose
     //
     this.mnuFileClose.Index = 2;
     this.mnuFileClose.Text  = "&Close";
     //
     // menuItem4
     //
     this.menuItem4.Index = 3;
     this.menuItem4.Text  = "-";
     //
     // mnuFileSave
     //
     this.mnuFileSave.Index  = 4;
     this.mnuFileSave.Text   = "&Save";
     this.mnuFileSave.Click += new System.EventHandler(this.mnuFileSave_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 5;
     this.menuItem6.Text  = "-";
     //
     // mnuFileExit
     //
     this.mnuFileExit.Index  = 6;
     this.mnuFileExit.Text   = "E&xit";
     this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click);
     //
     // mnuSettings
     //
     this.mnuSettings.Index = 1;
     this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuZoom,
         this.menuItem1,
         this.mnuCreateNewUser
     });
     this.mnuSettings.Text = "&Settings";
     //
     // mnuZoom
     //
     this.mnuZoom.Index = 0;
     this.mnuZoom.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuZoomX1,
         this.mnuZoomX2,
         this.mnuZoomX4,
         this.mnuZoomX8,
         this.mnuZoomX16
     });
     this.mnuZoom.Text = "&Zoom";
     //
     // mnuZoomX1
     //
     this.mnuZoomX1.Index  = 0;
     this.mnuZoomX1.Text   = "x 1";
     this.mnuZoomX1.Click += new System.EventHandler(this.mnuZoomX1_Click);
     //
     // mnuZoomX2
     //
     this.mnuZoomX2.Index  = 1;
     this.mnuZoomX2.Text   = "x 2";
     this.mnuZoomX2.Click += new System.EventHandler(this.mnuZoomX2_Click);
     //
     // mnuZoomX4
     //
     this.mnuZoomX4.Index  = 2;
     this.mnuZoomX4.Text   = "x 4";
     this.mnuZoomX4.Click += new System.EventHandler(this.mnuZoomX4_Click);
     //
     // mnuZoomX8
     //
     this.mnuZoomX8.Index  = 3;
     this.mnuZoomX8.Text   = "x 8";
     this.mnuZoomX8.Click += new System.EventHandler(this.mnuZoomX8_Click);
     //
     // mnuZoomX16
     //
     this.mnuZoomX16.Index  = 4;
     this.mnuZoomX16.Text   = "x 16";
     this.mnuZoomX16.Click += new System.EventHandler(this.mnuZoomX16_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 1;
     this.menuItem1.Text  = "-";
     //
     // mnuCreateNewUser
     //
     this.mnuCreateNewUser.Index  = 2;
     this.mnuCreateNewUser.Text   = "Create a new admin";
     this.mnuCreateNewUser.Click += new System.EventHandler(this.mnuCreateNewUser_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuHelpAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuHelpAbout
     //
     this.mnuHelpAbout.Index  = 0;
     this.mnuHelpAbout.Text   = "&About";
     this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
     //
     // tbMain
     //
     this.tbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbNew,
         this.toolBarButton1,
         this.tbbOpen,
         this.tbbSave,
         this.tbbSeperator1,
         this.tbbHelp
     });
     this.tbMain.DropDownArrows = true;
     this.tbMain.ImageList      = this.il16;
     this.tbMain.Location       = new System.Drawing.Point(0, 0);
     this.tbMain.Name           = "tbMain";
     this.tbMain.ShowToolTips   = true;
     this.tbMain.Size           = new System.Drawing.Size(1098, 28);
     this.tbMain.TabIndex       = 1;
     this.tbMain.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbMain_ButtonClick);
     //
     // tbbNew
     //
     this.tbbNew.ImageIndex = 2;
     this.tbbNew.Name       = "tbbNew";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name  = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButton1.Text  = "-";
     //
     // tbbOpen
     //
     this.tbbOpen.ImageIndex = 0;
     this.tbbOpen.Name       = "tbbOpen";
     //
     // tbbSave
     //
     this.tbbSave.ImageIndex = 1;
     this.tbbSave.Name       = "tbbSave";
     //
     // tbbSeperator1
     //
     this.tbbSeperator1.Name  = "tbbSeperator1";
     this.tbbSeperator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.tbbSeperator1.Text  = "-";
     //
     // tbbHelp
     //
     this.tbbHelp.ImageIndex = 3;
     this.tbbHelp.Name       = "tbbHelp";
     //
     // il16
     //
     this.il16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("il16.ImageStream")));
     this.il16.TransparentColor = System.Drawing.Color.Transparent;
     this.il16.Images.SetKeyName(0, "Open-icon.png");
     this.il16.Images.SetKeyName(1, "Save-icon.png");
     this.il16.Images.SetKeyName(2, "Files-New-File-icon.png");
     this.il16.Images.SetKeyName(3, "Help-icon.png");
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 571);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(1098, 22);
     this.statusBar1.TabIndex = 2;
     this.statusBar1.Text     = "sbMain";
     //
     // panelTools
     //
     this.panelTools.Controls.Add(this.label1);
     this.panelTools.Controls.Add(this.picActiveTile);
     this.panelTools.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panelTools.Location = new System.Drawing.Point(976, 28);
     this.panelTools.Name     = "panelTools";
     this.panelTools.Size     = new System.Drawing.Size(122, 543);
     this.panelTools.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 8);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(64, 16);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Active Tile";
     //
     // picActiveTile
     //
     this.picActiveTile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picActiveTile.Location    = new System.Drawing.Point(8, 27);
     this.picActiveTile.Name        = "picActiveTile";
     this.picActiveTile.Size        = new System.Drawing.Size(100, 100);
     this.picActiveTile.TabIndex    = 2;
     this.picActiveTile.TabStop     = false;
     this.picActiveTile.Paint      += new System.Windows.Forms.PaintEventHandler(this.picActiveTile_Paint);
     //
     // panelTiles
     //
     this.panelTiles.Controls.Add(this.picTiles);
     this.panelTiles.Controls.Add(this.vscTiles);
     this.panelTiles.Controls.Add(this.picEditSel);
     this.panelTiles.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelTiles.Location = new System.Drawing.Point(0, 437);
     this.panelTiles.Name     = "panelTiles";
     this.panelTiles.Size     = new System.Drawing.Size(976, 134);
     this.panelTiles.TabIndex = 4;
     //
     // picTiles
     //
     this.picTiles.BackColor   = System.Drawing.Color.White;
     this.picTiles.Location    = new System.Drawing.Point(16, 3);
     this.picTiles.Name        = "picTiles";
     this.picTiles.Size        = new System.Drawing.Size(943, 125);
     this.picTiles.TabIndex    = 2;
     this.picTiles.TabStop     = false;
     this.picTiles.Click      += new System.EventHandler(this.picTiles_Click);
     this.picTiles.Paint      += new System.Windows.Forms.PaintEventHandler(this.picTiles_Paint);
     this.picTiles.MouseLeave += new System.EventHandler(this.picTiles_MouseLeave);
     this.picTiles.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.picTiles_MouseMove);
     //
     // vscTiles
     //
     this.vscTiles.Dock        = System.Windows.Forms.DockStyle.Right;
     this.vscTiles.LargeChange = 15;
     this.vscTiles.Location    = new System.Drawing.Point(959, 0);
     this.vscTiles.Maximum     = 1950;
     this.vscTiles.Name        = "vscTiles";
     this.vscTiles.Size        = new System.Drawing.Size(17, 134);
     this.vscTiles.SmallChange = 5;
     this.vscTiles.TabIndex    = 10;
     this.vscTiles.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vscTiles_Scroll);
     //
     // picEditSel
     //
     this.picEditSel.BackColor   = System.Drawing.Color.White;
     this.picEditSel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picEditSel.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.picEditSel.Location    = new System.Drawing.Point(0, 0);
     this.picEditSel.Name        = "picEditSel";
     this.picEditSel.Size        = new System.Drawing.Size(976, 134);
     this.picEditSel.TabIndex    = 0;
     this.picEditSel.TabStop     = false;
     //
     // vscMap
     //
     this.vscMap.Dock        = System.Windows.Forms.DockStyle.Right;
     this.vscMap.LargeChange = 5;
     this.vscMap.Location    = new System.Drawing.Point(959, 28);
     this.vscMap.Maximum     = 300;
     this.vscMap.Name        = "vscMap";
     this.vscMap.Size        = new System.Drawing.Size(17, 409);
     this.vscMap.TabIndex    = 6;
     this.vscMap.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vscMap_Scroll);
     //
     // hscMap
     //
     this.hscMap.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.hscMap.LargeChange = 5;
     this.hscMap.Location    = new System.Drawing.Point(0, 420);
     this.hscMap.Name        = "hscMap";
     this.hscMap.Size        = new System.Drawing.Size(959, 17);
     this.hscMap.TabIndex    = 7;
     this.hscMap.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.hscMap_Scroll);
     //
     // timer1
     //
     this.timer1.Interval = 200;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // picMap
     //
     this.picMap.BackColor   = System.Drawing.Color.White;
     this.picMap.Location    = new System.Drawing.Point(16, 40);
     this.picMap.Name        = "picMap";
     this.picMap.Size        = new System.Drawing.Size(540, 304);
     this.picMap.TabIndex    = 8;
     this.picMap.TabStop     = false;
     this.picMap.Visible     = false;
     this.picMap.Click      += new System.EventHandler(this.picMap_Click);
     this.picMap.Paint      += new System.Windows.Forms.PaintEventHandler(this.picMap_Paint);
     this.picMap.MouseLeave += new System.EventHandler(this.picMap_MouseLeave);
     this.picMap.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.picMap_MouseMove);
     //
     // tmrLoad
     //
     this.tmrLoad.Tick += new System.EventHandler(this.tmrLoad_Tick);
     //
     // comboBox1
     //
     this.comboBox1.Location              = new System.Drawing.Point(40, 328);
     this.comboBox1.Name                  = "comboBox1";
     this.comboBox1.Size                  = new System.Drawing.Size(121, 21);
     this.comboBox1.TabIndex              = 9;
     this.comboBox1.TabStop               = false;
     this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // lblZoom
     //
     this.lblZoom.Location  = new System.Drawing.Point(176, 336);
     this.lblZoom.Name      = "lblZoom";
     this.lblZoom.Size      = new System.Drawing.Size(40, 24);
     this.lblZoom.TabIndex  = 10;
     this.lblZoom.Text      = "Zoom:";
     this.lblZoom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(1098, 593);
     this.Controls.Add(this.lblZoom);
     this.Controls.Add(this.comboBox1);
     this.Controls.Add(this.picMap);
     this.Controls.Add(this.hscMap);
     this.Controls.Add(this.vscMap);
     this.Controls.Add(this.panelTiles);
     this.Controls.Add(this.panelTools);
     this.Controls.Add(this.statusBar1);
     this.Controls.Add(this.tbMain);
     this.Controls.Add(this.picEditArea);
     this.Menu  = this.mbMain;
     this.Name  = "frmMain";
     this.Text  = "Éditeur de monde Hugo Land";
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).EndInit();
     this.panelTools.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).EndInit();
     this.panelTiles.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picTiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picMap)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.picEditArea      = new System.Windows.Forms.PictureBox();
     this.mbMain           = new System.Windows.Forms.MainMenu(this.components);
     this.mnuFile          = new System.Windows.Forms.MenuItem();
     this.mnuFileNew       = new System.Windows.Forms.MenuItem();
     this.mnuFileOpen      = new System.Windows.Forms.MenuItem();
     this.mnuFileClose     = new System.Windows.Forms.MenuItem();
     this.menuItem4        = new System.Windows.Forms.MenuItem();
     this.mnuFileSave      = new System.Windows.Forms.MenuItem();
     this.menuItem6        = new System.Windows.Forms.MenuItem();
     this.mnuFileExit      = new System.Windows.Forms.MenuItem();
     this.mnuSettings      = new System.Windows.Forms.MenuItem();
     this.mnuZoom          = new System.Windows.Forms.MenuItem();
     this.mnuZoomX1        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX2        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX4        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX8        = new System.Windows.Forms.MenuItem();
     this.mnuZoomX16       = new System.Windows.Forms.MenuItem();
     this.menuItem1        = new System.Windows.Forms.MenuItem();
     this.mnuCreateNewUser = new System.Windows.Forms.MenuItem();
     this.mnuUsers         = new System.Windows.Forms.MenuItem();
     this.mnuHelp          = new System.Windows.Forms.MenuItem();
     this.mnuHelpAbout     = new System.Windows.Forms.MenuItem();
     this.tbMain           = new System.Windows.Forms.ToolBar();
     this.tbbNew           = new System.Windows.Forms.ToolBarButton();
     this.toolBarButton1   = new System.Windows.Forms.ToolBarButton();
     this.tbbOpen          = new System.Windows.Forms.ToolBarButton();
     this.tbbSave          = new System.Windows.Forms.ToolBarButton();
     this.tbbSeperator1    = new System.Windows.Forms.ToolBarButton();
     this.tbbHelp          = new System.Windows.Forms.ToolBarButton();
     this.il16             = new System.Windows.Forms.ImageList(this.components);
     this.statusBar1       = new System.Windows.Forms.StatusBar();
     this.panelTools       = new System.Windows.Forms.Panel();
     this.label1           = new System.Windows.Forms.Label();
     this.picActiveTile    = new System.Windows.Forms.PictureBox();
     this.panelTiles       = new System.Windows.Forms.Panel();
     this.picTiles         = new System.Windows.Forms.PictureBox();
     this.vscTiles         = new System.Windows.Forms.VScrollBar();
     this.picEditSel       = new System.Windows.Forms.PictureBox();
     this.vscMap           = new System.Windows.Forms.VScrollBar();
     this.hscMap           = new System.Windows.Forms.HScrollBar();
     this.timer1           = new System.Windows.Forms.Timer(this.components);
     this.picMap           = new System.Windows.Forms.PictureBox();
     this.tmrLoad          = new System.Windows.Forms.Timer(this.components);
     this.dlgLoadMap       = new System.Windows.Forms.OpenFileDialog();
     this.dlgSaveMap       = new System.Windows.Forms.SaveFileDialog();
     this.cboZoom          = new System.Windows.Forms.ComboBox();
     this.lblZoom          = new System.Windows.Forms.Label();
     this.lblPv            = new System.Windows.Forms.Label();
     this.lblAttkMin       = new System.Windows.Forms.Label();
     this.lblAttkMax       = new System.Windows.Forms.Label();
     this.txtPv            = new System.Windows.Forms.TextBox();
     this.txtAttkMin       = new System.Windows.Forms.TextBox();
     this.txtAttkMax       = new System.Windows.Forms.TextBox();
     this.txtLevel         = new System.Windows.Forms.TextBox();
     this.lblLevel         = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).BeginInit();
     this.panelTools.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).BeginInit();
     this.panelTiles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picTiles)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picMap)).BeginInit();
     this.SuspendLayout();
     //
     // picEditArea
     //
     this.picEditArea.BackColor   = System.Drawing.Color.Gray;
     this.picEditArea.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picEditArea.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.picEditArea.Location    = new System.Drawing.Point(0, 0);
     this.picEditArea.Name        = "picEditArea";
     this.picEditArea.Size        = new System.Drawing.Size(925, 528);
     this.picEditArea.TabIndex    = 0;
     this.picEditArea.TabStop     = false;
     this.picEditArea.Resize     += new System.EventHandler(this.picEditArea_Resize);
     //
     // mbMain
     //
     this.mbMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFile,
         this.mnuSettings,
         this.mnuHelp
     });
     //
     // mnuFile
     //
     this.mnuFile.Index = 0;
     this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuFileNew,
         this.mnuFileOpen,
         this.mnuFileClose,
         this.menuItem4,
         this.mnuFileSave,
         this.menuItem6,
         this.mnuFileExit
     });
     this.mnuFile.Text = "&File";
     //
     // mnuFileNew
     //
     this.mnuFileNew.Index  = 0;
     this.mnuFileNew.Text   = "&New";
     this.mnuFileNew.Click += new System.EventHandler(this.mnuFileNew_Click);
     //
     // mnuFileOpen
     //
     this.mnuFileOpen.Index  = 1;
     this.mnuFileOpen.Text   = "&Open";
     this.mnuFileOpen.Click += new System.EventHandler(this.mnuFileOpen_Click);
     //
     // mnuFileClose
     //
     this.mnuFileClose.Index = 2;
     this.mnuFileClose.Text  = "&Close";
     //
     // menuItem4
     //
     this.menuItem4.Index = 3;
     this.menuItem4.Text  = "-";
     //
     // mnuFileSave
     //
     this.mnuFileSave.Index  = 4;
     this.mnuFileSave.Text   = "&Save";
     this.mnuFileSave.Click += new System.EventHandler(this.mnuFileSave_Click);
     //
     // menuItem6
     //
     this.menuItem6.Index = 5;
     this.menuItem6.Text  = "-";
     //
     // mnuFileExit
     //
     this.mnuFileExit.Index  = 6;
     this.mnuFileExit.Text   = "E&xit";
     this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click);
     //
     // mnuSettings
     //
     this.mnuSettings.Index = 1;
     this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuZoom,
         this.menuItem1,
         this.mnuCreateNewUser,
         this.mnuUsers
     });
     this.mnuSettings.Text = "&Settings";
     //
     // mnuZoom
     //
     this.mnuZoom.Index = 0;
     this.mnuZoom.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuZoomX1,
         this.mnuZoomX2,
         this.mnuZoomX4,
         this.mnuZoomX8,
         this.mnuZoomX16
     });
     this.mnuZoom.Text = "&Zoom";
     //
     // mnuZoomX1
     //
     this.mnuZoomX1.Index  = 0;
     this.mnuZoomX1.Text   = "x 1";
     this.mnuZoomX1.Click += new System.EventHandler(this.mnuZoomX1_Click);
     //
     // mnuZoomX2
     //
     this.mnuZoomX2.Index  = 1;
     this.mnuZoomX2.Text   = "x 2";
     this.mnuZoomX2.Click += new System.EventHandler(this.mnuZoomX2_Click);
     //
     // mnuZoomX4
     //
     this.mnuZoomX4.Index  = 2;
     this.mnuZoomX4.Text   = "x 4";
     this.mnuZoomX4.Click += new System.EventHandler(this.mnuZoomX4_Click);
     //
     // mnuZoomX8
     //
     this.mnuZoomX8.Index  = 3;
     this.mnuZoomX8.Text   = "x 8";
     this.mnuZoomX8.Click += new System.EventHandler(this.mnuZoomX8_Click);
     //
     // mnuZoomX16
     //
     this.mnuZoomX16.Index  = 4;
     this.mnuZoomX16.Text   = "x 16";
     this.mnuZoomX16.Click += new System.EventHandler(this.mnuZoomX16_Click);
     //
     // menuItem1
     //
     this.menuItem1.Index = 1;
     this.menuItem1.Text  = "-";
     //
     // mnuCreateNewUser
     //
     this.mnuCreateNewUser.Index  = 2;
     this.mnuCreateNewUser.Text   = "Create a new user";
     this.mnuCreateNewUser.Click += new System.EventHandler(this.mnuCreateNewUser_Click);
     //
     // mnuUsers
     //
     this.mnuUsers.Index  = 3;
     this.mnuUsers.Text   = "Users menu";
     this.mnuUsers.Click += new System.EventHandler(this.mnuUsers_Click);
     //
     // mnuHelp
     //
     this.mnuHelp.Index = 2;
     this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
         this.mnuHelpAbout
     });
     this.mnuHelp.Text = "&Help";
     //
     // mnuHelpAbout
     //
     this.mnuHelpAbout.Index  = 0;
     this.mnuHelpAbout.Text   = "&About";
     this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
     //
     // tbMain
     //
     this.tbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
         this.tbbNew,
         this.toolBarButton1,
         this.tbbOpen,
         this.tbbSave,
         this.tbbSeperator1,
         this.tbbHelp
     });
     this.tbMain.DropDownArrows = true;
     this.tbMain.ImageList      = this.il16;
     this.tbMain.Location       = new System.Drawing.Point(0, 0);
     this.tbMain.Name           = "tbMain";
     this.tbMain.ShowToolTips   = true;
     this.tbMain.Size           = new System.Drawing.Size(925, 28);
     this.tbMain.TabIndex       = 1;
     this.tbMain.ButtonClick   += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbMain_ButtonClick);
     //
     // tbbNew
     //
     this.tbbNew.ImageIndex = 2;
     this.tbbNew.Name       = "tbbNew";
     //
     // toolBarButton1
     //
     this.toolBarButton1.Name  = "toolBarButton1";
     this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.toolBarButton1.Text  = "-";
     //
     // tbbOpen
     //
     this.tbbOpen.ImageIndex = 0;
     this.tbbOpen.Name       = "tbbOpen";
     //
     // tbbSave
     //
     this.tbbSave.ImageIndex = 1;
     this.tbbSave.Name       = "tbbSave";
     //
     // tbbSeperator1
     //
     this.tbbSeperator1.Name  = "tbbSeperator1";
     this.tbbSeperator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
     this.tbbSeperator1.Text  = "-";
     //
     // tbbHelp
     //
     this.tbbHelp.ImageIndex = 3;
     this.tbbHelp.Name       = "tbbHelp";
     //
     // il16
     //
     this.il16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("il16.ImageStream")));
     this.il16.TransparentColor = System.Drawing.Color.Transparent;
     this.il16.Images.SetKeyName(0, "Open-icon.png");
     this.il16.Images.SetKeyName(1, "Save-icon.png");
     this.il16.Images.SetKeyName(2, "Files-New-File-icon.png");
     this.il16.Images.SetKeyName(3, "Help-icon.png");
     //
     // statusBar1
     //
     this.statusBar1.Location = new System.Drawing.Point(0, 503);
     this.statusBar1.Name     = "statusBar1";
     this.statusBar1.Size     = new System.Drawing.Size(925, 25);
     this.statusBar1.TabIndex = 2;
     this.statusBar1.Text     = "sbMain";
     //
     // panelTools
     //
     this.panelTools.Controls.Add(this.txtLevel);
     this.panelTools.Controls.Add(this.lblLevel);
     this.panelTools.Controls.Add(this.txtAttkMax);
     this.panelTools.Controls.Add(this.txtAttkMin);
     this.panelTools.Controls.Add(this.txtPv);
     this.panelTools.Controls.Add(this.lblAttkMax);
     this.panelTools.Controls.Add(this.lblAttkMin);
     this.panelTools.Controls.Add(this.lblPv);
     this.panelTools.Controls.Add(this.label1);
     this.panelTools.Controls.Add(this.picActiveTile);
     this.panelTools.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panelTools.Location = new System.Drawing.Point(774, 28);
     this.panelTools.Name     = "panelTools";
     this.panelTools.Size     = new System.Drawing.Size(151, 475);
     this.panelTools.TabIndex = 3;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(10, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(76, 19);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Active Tile";
     //
     // picActiveTile
     //
     this.picActiveTile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picActiveTile.Location    = new System.Drawing.Point(10, 31);
     this.picActiveTile.Name        = "picActiveTile";
     this.picActiveTile.Size        = new System.Drawing.Size(76, 74);
     this.picActiveTile.TabIndex    = 2;
     this.picActiveTile.TabStop     = false;
     this.picActiveTile.Paint      += new System.Windows.Forms.PaintEventHandler(this.picActiveTile_Paint);
     //
     // panelTiles
     //
     this.panelTiles.Controls.Add(this.picTiles);
     this.panelTiles.Controls.Add(this.vscTiles);
     this.panelTiles.Controls.Add(this.picEditSel);
     this.panelTiles.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelTiles.Location = new System.Drawing.Point(0, 348);
     this.panelTiles.Name     = "panelTiles";
     this.panelTiles.Size     = new System.Drawing.Size(774, 155);
     this.panelTiles.TabIndex = 4;
     //
     // picTiles
     //
     this.picTiles.BackColor   = System.Drawing.Color.White;
     this.picTiles.Location    = new System.Drawing.Point(19, 18);
     this.picTiles.Name        = "picTiles";
     this.picTiles.Size        = new System.Drawing.Size(471, 65);
     this.picTiles.TabIndex    = 2;
     this.picTiles.TabStop     = false;
     this.picTiles.Click      += new System.EventHandler(this.picTiles_Click);
     this.picTiles.Paint      += new System.Windows.Forms.PaintEventHandler(this.picTiles_Paint);
     this.picTiles.MouseLeave += new System.EventHandler(this.picTiles_MouseLeave);
     this.picTiles.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.picTiles_MouseMove);
     //
     // vscTiles
     //
     this.vscTiles.Dock        = System.Windows.Forms.DockStyle.Right;
     this.vscTiles.LargeChange = 15;
     this.vscTiles.Location    = new System.Drawing.Point(754, 0);
     this.vscTiles.Maximum     = 395;
     this.vscTiles.Name        = "vscTiles";
     this.vscTiles.Size        = new System.Drawing.Size(20, 155);
     this.vscTiles.SmallChange = 5;
     this.vscTiles.TabIndex    = 10;
     this.vscTiles.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vscTiles_Scroll);
     //
     // picEditSel
     //
     this.picEditSel.BackColor   = System.Drawing.Color.White;
     this.picEditSel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picEditSel.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.picEditSel.Location    = new System.Drawing.Point(0, 0);
     this.picEditSel.Name        = "picEditSel";
     this.picEditSel.Size        = new System.Drawing.Size(774, 155);
     this.picEditSel.TabIndex    = 0;
     this.picEditSel.TabStop     = false;
     //
     // vscMap
     //
     this.vscMap.Dock        = System.Windows.Forms.DockStyle.Right;
     this.vscMap.LargeChange = 1;
     this.vscMap.Location    = new System.Drawing.Point(754, 28);
     this.vscMap.Maximum     = 0;
     this.vscMap.Name        = "vscMap";
     this.vscMap.Size        = new System.Drawing.Size(20, 320);
     this.vscMap.TabIndex    = 6;
     this.vscMap.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vscMap_Scroll);
     //
     // hscMap
     //
     this.hscMap.Dock        = System.Windows.Forms.DockStyle.Bottom;
     this.hscMap.LargeChange = 1;
     this.hscMap.Location    = new System.Drawing.Point(0, 329);
     this.hscMap.Maximum     = 0;
     this.hscMap.Name        = "hscMap";
     this.hscMap.Size        = new System.Drawing.Size(754, 19);
     this.hscMap.TabIndex    = 7;
     this.hscMap.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.hscMap_Scroll);
     //
     // timer1
     //
     this.timer1.Interval = 200;
     this.timer1.Tick    += new System.EventHandler(this.timer1_Tick);
     //
     // picMap
     //
     this.picMap.BackColor   = System.Drawing.Color.White;
     this.picMap.Location    = new System.Drawing.Point(0, 0);
     this.picMap.Name        = "picMap";
     this.picMap.Size        = new System.Drawing.Size(754, 326);
     this.picMap.TabIndex    = 8;
     this.picMap.TabStop     = false;
     this.picMap.Visible     = false;
     this.picMap.Click      += new System.EventHandler(this.picMap_Click);
     this.picMap.Paint      += new System.Windows.Forms.PaintEventHandler(this.picMap_Paint);
     this.picMap.MouseLeave += new System.EventHandler(this.picMap_MouseLeave);
     this.picMap.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.picMap_MouseMove);
     //
     // tmrLoad
     //
     this.tmrLoad.Tick += new System.EventHandler(this.tmrLoad_Tick);
     //
     // cboZoom
     //
     this.cboZoom.Location              = new System.Drawing.Point(48, 378);
     this.cboZoom.Name                  = "cboZoom";
     this.cboZoom.Size                  = new System.Drawing.Size(145, 24);
     this.cboZoom.TabIndex              = 9;
     this.cboZoom.TabStop               = false;
     this.cboZoom.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
     //
     // lblZoom
     //
     this.lblZoom.Location  = new System.Drawing.Point(211, 388);
     this.lblZoom.Name      = "lblZoom";
     this.lblZoom.Size      = new System.Drawing.Size(48, 27);
     this.lblZoom.TabIndex  = 10;
     this.lblZoom.Text      = "Zoom:";
     this.lblZoom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // lblPv
     //
     this.lblPv.AutoSize = true;
     this.lblPv.Location = new System.Drawing.Point(34, 256);
     this.lblPv.Name     = "lblPv";
     this.lblPv.Size     = new System.Drawing.Size(32, 17);
     this.lblPv.TabIndex = 4;
     this.lblPv.Text     = "Pv :";
     //
     // lblAttkMin
     //
     this.lblAttkMin.AutoSize = true;
     this.lblAttkMin.Location = new System.Drawing.Point(34, 335);
     this.lblAttkMin.Name     = "lblAttkMin";
     this.lblAttkMin.Size     = new System.Drawing.Size(85, 17);
     this.lblAttkMin.TabIndex = 5;
     this.lblAttkMin.Text     = "Attack min : ";
     //
     // lblAttkMax
     //
     this.lblAttkMax.AutoSize = true;
     this.lblAttkMax.Location = new System.Drawing.Point(34, 408);
     this.lblAttkMax.Name     = "lblAttkMax";
     this.lblAttkMax.Size     = new System.Drawing.Size(88, 17);
     this.lblAttkMax.TabIndex = 6;
     this.lblAttkMax.Text     = "Attack max : ";
     //
     // txtPv
     //
     this.txtPv.Location  = new System.Drawing.Point(25, 276);
     this.txtPv.Name      = "txtPv";
     this.txtPv.Size      = new System.Drawing.Size(100, 22);
     this.txtPv.TabIndex  = 7;
     this.txtPv.Text      = "0";
     this.txtPv.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtAttkMin
     //
     this.txtAttkMin.Location  = new System.Drawing.Point(25, 355);
     this.txtAttkMin.Name      = "txtAttkMin";
     this.txtAttkMin.Size      = new System.Drawing.Size(100, 22);
     this.txtAttkMin.TabIndex  = 8;
     this.txtAttkMin.Text      = "0";
     this.txtAttkMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtAttkMax
     //
     this.txtAttkMax.Location  = new System.Drawing.Point(25, 428);
     this.txtAttkMax.Name      = "txtAttkMax";
     this.txtAttkMax.Size      = new System.Drawing.Size(100, 22);
     this.txtAttkMax.TabIndex  = 9;
     this.txtAttkMax.Text      = "0";
     this.txtAttkMax.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // txtLevel
     //
     this.txtLevel.Location  = new System.Drawing.Point(25, 205);
     this.txtLevel.Name      = "txtLevel";
     this.txtLevel.Size      = new System.Drawing.Size(100, 22);
     this.txtLevel.TabIndex  = 11;
     this.txtLevel.Text      = "0";
     this.txtLevel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // lblLevel
     //
     this.lblLevel.AutoSize = true;
     this.lblLevel.Location = new System.Drawing.Point(34, 185);
     this.lblLevel.Name     = "lblLevel";
     this.lblLevel.Size     = new System.Drawing.Size(50, 17);
     this.lblLevel.TabIndex = 10;
     this.lblLevel.Text     = "Level :";
     //
     // frmMain
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 15);
     this.ClientSize        = new System.Drawing.Size(925, 528);
     this.Controls.Add(this.lblZoom);
     this.Controls.Add(this.cboZoom);
     this.Controls.Add(this.picMap);
     this.Controls.Add(this.hscMap);
     this.Controls.Add(this.vscMap);
     this.Controls.Add(this.panelTiles);
     this.Controls.Add(this.panelTools);
     this.Controls.Add(this.statusBar1);
     this.Controls.Add(this.tbMain);
     this.Controls.Add(this.picEditArea);
     this.Menu          = this.mbMain;
     this.Name          = "frmMain";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Éditeur de monde Hugo Land";
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.frmMain_FormClosed);
     this.Load         += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).EndInit();
     this.panelTools.ResumeLayout(false);
     this.panelTools.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).EndInit();
     this.panelTiles.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picTiles)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picMap)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Commande));
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label1 = new System.Windows.Forms.Label();
     this.TxtBoxNumCom = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.TxtBoxNumCommercial = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label4 = new System.Windows.Forms.Label();
     this.GBoxArticle = new System.Windows.Forms.GroupBox();
     this.BtnAjoutPanier = new System.Windows.Forms.Button();
     this.NumUPDownQuantite = new System.Windows.Forms.NumericUpDown();
     this.BtnCatalogue = new System.Windows.Forms.Button();
     this.TxtBoxRefArt = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BtnMonter = new System.Windows.Forms.Button();
     this.BtnDescendre = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.TxtBoxTotRemise = new System.Windows.Forms.TextBox();
     this.TxtBoxTotTTC = new System.Windows.Forms.TextBox();
     this.TxtBoxTVA = new System.Windows.Forms.TextBox();
     this.TxtBoxTotHT = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.BtnAnnuler = new System.Windows.Forms.Button();
     this.BtnValider = new System.Windows.Forms.Button();
     this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.TxtBoxTotArt = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.GBoxClient = new System.Windows.Forms.GroupBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.TxtBoxNumCli = new System.Windows.Forms.TextBox();
     this.TxtBoxVille = new System.Windows.Forms.TextBox();
     this.TxtBoxEnseigne = new System.Windows.Forms.TextBox();
     this.TxtBoxPrenom = new System.Windows.Forms.TextBox();
     this.TxtBoxNom = new System.Windows.Forms.TextBox();
     this.BtnRechercheCli = new System.Windows.Forms.Button();
     this.GBoxCommande = new System.Windows.Forms.GroupBox();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.GBoxArticle.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NumUPDownQuantite)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.GBoxClient.SuspendLayout();
     this.GBoxCommande.SuspendLayout();
     this.SuspendLayout();
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(240, 12);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(424, 144);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex = 0;
     this.pictureBox1.TabStop = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(43, 197);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(141, 15);
     this.label1.TabIndex = 1;
     this.label1.Text = "Numéro de commande :";
     //
     // TxtBoxNumCom
     //
     this.TxtBoxNumCom.Location = new System.Drawing.Point(190, 196);
     this.TxtBoxNumCom.Name = "TxtBoxNumCom";
     this.TxtBoxNumCom.Size = new System.Drawing.Size(179, 20);
     this.TxtBoxNumCom.TabIndex = 2;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(56, 244);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(128, 15);
     this.label2.TabIndex = 3;
     this.label2.Text = "Numéro Commercial :";
     //
     // TxtBoxNumCommercial
     //
     this.TxtBoxNumCommercial.Location = new System.Drawing.Point(190, 243);
     this.TxtBoxNumCommercial.Name = "TxtBoxNumCommercial";
     this.TxtBoxNumCommercial.Size = new System.Drawing.Size(179, 20);
     this.TxtBoxNumCommercial.TabIndex = 4;
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(617, 197);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(200, 20);
     this.dateTimePicker1.TabIndex = 7;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(483, 199);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(124, 15);
     this.label4.TabIndex = 8;
     this.label4.Text = "Date de Commande :";
     //
     // GBoxArticle
     //
     this.GBoxArticle.Controls.Add(this.BtnAjoutPanier);
     this.GBoxArticle.Controls.Add(this.NumUPDownQuantite);
     this.GBoxArticle.Controls.Add(this.BtnCatalogue);
     this.GBoxArticle.Controls.Add(this.TxtBoxRefArt);
     this.GBoxArticle.Controls.Add(this.label6);
     this.GBoxArticle.Controls.Add(this.label5);
     this.GBoxArticle.Location = new System.Drawing.Point(20, 291);
     this.GBoxArticle.Name = "GBoxArticle";
     this.GBoxArticle.Size = new System.Drawing.Size(843, 101);
     this.GBoxArticle.TabIndex = 9;
     this.GBoxArticle.TabStop = false;
     this.GBoxArticle.Text = "Article";
     //
     // BtnAjoutPanier
     //
     this.BtnAjoutPanier.BackColor = System.Drawing.Color.MediumSeaGreen;
     this.BtnAjoutPanier.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAjoutPanier.Location = new System.Drawing.Point(682, 38);
     this.BtnAjoutPanier.Name = "BtnAjoutPanier";
     this.BtnAjoutPanier.Size = new System.Drawing.Size(148, 36);
     this.BtnAjoutPanier.TabIndex = 7;
     this.BtnAjoutPanier.Text = "Ajouter au panier";
     this.BtnAjoutPanier.UseVisualStyleBackColor = false;
     //
     // NumUPDownQuantite
     //
     this.NumUPDownQuantite.Location = new System.Drawing.Point(170, 59);
     this.NumUPDownQuantite.Name = "NumUPDownQuantite";
     this.NumUPDownQuantite.Size = new System.Drawing.Size(42, 20);
     this.NumUPDownQuantite.TabIndex = 5;
     this.NumUPDownQuantite.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // BtnCatalogue
     //
     this.BtnCatalogue.Location = new System.Drawing.Point(335, 21);
     this.BtnCatalogue.Name = "BtnCatalogue";
     this.BtnCatalogue.Size = new System.Drawing.Size(124, 24);
     this.BtnCatalogue.TabIndex = 4;
     this.BtnCatalogue.Text = "Catalogue";
     this.BtnCatalogue.UseVisualStyleBackColor = true;
     //
     // TxtBoxRefArt
     //
     this.TxtBoxRefArt.Location = new System.Drawing.Point(170, 25);
     this.TxtBoxRefArt.Name = "TxtBoxRefArt";
     this.TxtBoxRefArt.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxRefArt.TabIndex = 2;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(23, 59);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(59, 15);
     this.label6.TabIndex = 1;
     this.label6.Text = "Quantité :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(23, 25);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(106, 15);
     this.label5.TabIndex = 0;
     this.label5.Text = "Référence Article :";
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column2,
     this.Column3,
     this.Column4,
     this.Column5,
     this.Column6,
     this.Column7});
     this.dataGridView1.Location = new System.Drawing.Point(24, 27);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(804, 150);
     this.dataGridView1.TabIndex = 10;
     //
     // Column1
     //
     this.Column1.HeaderText = "Référence Article";
     this.Column1.Name = "Column1";
     this.Column1.Width = 125;
     //
     // Column2
     //
     this.Column2.HeaderText = "Libellé";
     this.Column2.Name = "Column2";
     this.Column2.Width = 300;
     //
     // Column3
     //
     this.Column3.HeaderText = "Qté";
     this.Column3.Name = "Column3";
     this.Column3.Width = 45;
     //
     // Column4
     //
     this.Column4.HeaderText = "Remise";
     this.Column4.Name = "Column4";
     this.Column4.Width = 70;
     //
     // Column5
     //
     this.Column5.HeaderText = "Prix HT";
     this.Column5.Name = "Column5";
     //
     // Column6
     //
     this.Column6.HeaderText = "Prix TTC";
     this.Column6.Name = "Column6";
     //
     // Column7
     //
     this.Column7.HeaderText = "";
     this.Column7.Name = "Column7";
     this.Column7.Width = 20;
     //
     // BtnMonter
     //
     this.BtnMonter.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnMonter.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.BtnMonter.Location = new System.Drawing.Point(24, 196);
     this.BtnMonter.Name = "BtnMonter";
     this.BtnMonter.Size = new System.Drawing.Size(75, 27);
     this.BtnMonter.TabIndex = 11;
     this.BtnMonter.Text = "Ligne ↑";
     this.BtnMonter.UseVisualStyleBackColor = true;
     //
     // BtnDescendre
     //
     this.BtnDescendre.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnDescendre.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.BtnDescendre.Location = new System.Drawing.Point(120, 196);
     this.BtnDescendre.Name = "BtnDescendre";
     this.BtnDescendre.Size = new System.Drawing.Size(75, 27);
     this.BtnDescendre.TabIndex = 12;
     this.BtnDescendre.Text = "Ligne ↓";
     this.BtnDescendre.UseVisualStyleBackColor = true;
     //
     // button4
     //
     this.button4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.button4.Location = new System.Drawing.Point(218, 196);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(129, 27);
     this.button4.TabIndex = 13;
     this.button4.Text = "Supprimer Ligne";
     this.button4.UseVisualStyleBackColor = true;
     //
     // TxtBoxTotRemise
     //
     this.TxtBoxTotRemise.Location = new System.Drawing.Point(728, 200);
     this.TxtBoxTotRemise.Name = "TxtBoxTotRemise";
     this.TxtBoxTotRemise.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxTotRemise.TabIndex = 14;
     //
     // TxtBoxTotTTC
     //
     this.TxtBoxTotTTC.Location = new System.Drawing.Point(728, 310);
     this.TxtBoxTotTTC.Name = "TxtBoxTotTTC";
     this.TxtBoxTotTTC.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxTotTTC.TabIndex = 15;
     //
     // TxtBoxTVA
     //
     this.TxtBoxTVA.Location = new System.Drawing.Point(728, 274);
     this.TxtBoxTVA.Name = "TxtBoxTVA";
     this.TxtBoxTVA.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxTVA.TabIndex = 16;
     //
     // TxtBoxTotHT
     //
     this.TxtBoxTotHT.Location = new System.Drawing.Point(728, 237);
     this.TxtBoxTotHT.Name = "TxtBoxTotHT";
     this.TxtBoxTotHT.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxTotHT.TabIndex = 17;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(641, 203);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(75, 13);
     this.label8.TabIndex = 18;
     this.label8.Text = "Total Remise :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(661, 240);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 13);
     this.label9.TabIndex = 19;
     this.label9.Text = "Total HT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(676, 277);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 20;
     this.label10.Text = "T.V.A :";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(655, 313);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(61, 13);
     this.label11.TabIndex = 21;
     this.label11.Text = "Total TTC :";
     //
     // BtnAnnuler
     //
     this.BtnAnnuler.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnAnnuler.ForeColor = System.Drawing.Color.DarkRed;
     this.BtnAnnuler.Location = new System.Drawing.Point(46, 867);
     this.BtnAnnuler.Name = "BtnAnnuler";
     this.BtnAnnuler.Size = new System.Drawing.Size(89, 34);
     this.BtnAnnuler.TabIndex = 22;
     this.BtnAnnuler.Text = "Annuler";
     this.BtnAnnuler.UseVisualStyleBackColor = true;
     //
     // BtnValider
     //
     this.BtnValider.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BtnValider.Location = new System.Drawing.Point(750, 872);
     this.BtnValider.Name = "BtnValider";
     this.BtnValider.Size = new System.Drawing.Size(100, 29);
     this.BtnValider.TabIndex = 23;
     this.BtnValider.Text = "Valider";
     this.BtnValider.UseVisualStyleBackColor = true;
     //
     // vScrollBar1
     //
     this.vScrollBar1.Location = new System.Drawing.Point(805, 27);
     this.vScrollBar1.Name = "vScrollBar1";
     this.vScrollBar1.Size = new System.Drawing.Size(22, 150);
     this.vScrollBar1.TabIndex = 24;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
     //
     // TxtBoxTotArt
     //
     this.TxtBoxTotArt.Location = new System.Drawing.Point(485, 200);
     this.TxtBoxTotArt.Name = "TxtBoxTotArt";
     this.TxtBoxTotArt.Size = new System.Drawing.Size(100, 20);
     this.TxtBoxTotArt.TabIndex = 26;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(400, 203);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(68, 13);
     this.label3.TabIndex = 27;
     this.label3.Text = "Total article :";
     //
     // GBoxClient
     //
     this.GBoxClient.Controls.Add(this.label7);
     this.GBoxClient.Controls.Add(this.label12);
     this.GBoxClient.Controls.Add(this.label13);
     this.GBoxClient.Controls.Add(this.label14);
     this.GBoxClient.Controls.Add(this.label15);
     this.GBoxClient.Controls.Add(this.TxtBoxNumCli);
     this.GBoxClient.Controls.Add(this.TxtBoxVille);
     this.GBoxClient.Controls.Add(this.TxtBoxEnseigne);
     this.GBoxClient.Controls.Add(this.TxtBoxPrenom);
     this.GBoxClient.Controls.Add(this.TxtBoxNom);
     this.GBoxClient.Controls.Add(this.BtnRechercheCli);
     this.GBoxClient.Location = new System.Drawing.Point(20, 735);
     this.GBoxClient.Name = "GBoxClient";
     this.GBoxClient.Size = new System.Drawing.Size(844, 105);
     this.GBoxClient.TabIndex = 28;
     this.GBoxClient.TabStop = false;
     this.GBoxClient.Text = "Client";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(585, 27);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(79, 13);
     this.label7.TabIndex = 19;
     this.label7.Text = "Numéro Client :";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(454, 27);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(32, 13);
     this.label12.TabIndex = 18;
     this.label12.Text = "Ville :";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(303, 27);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(57, 13);
     this.label13.TabIndex = 10;
     this.label13.Text = "Enseigne :";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(124, 27);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(49, 13);
     this.label14.TabIndex = 9;
     this.label14.Text = "Prénom :";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(27, 27);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(35, 13);
     this.label15.TabIndex = 8;
     this.label15.Text = "Nom :";
     //
     // TxtBoxNumCli
     //
     this.TxtBoxNumCli.Location = new System.Drawing.Point(584, 45);
     this.TxtBoxNumCli.Name = "TxtBoxNumCli";
     this.TxtBoxNumCli.Size = new System.Drawing.Size(142, 20);
     this.TxtBoxNumCli.TabIndex = 7;
     //
     // TxtBoxVille
     //
     this.TxtBoxVille.Location = new System.Drawing.Point(457, 45);
     this.TxtBoxVille.Name = "TxtBoxVille";
     this.TxtBoxVille.Size = new System.Drawing.Size(121, 20);
     this.TxtBoxVille.TabIndex = 6;
     //
     // TxtBoxEnseigne
     //
     this.TxtBoxEnseigne.Location = new System.Drawing.Point(306, 45);
     this.TxtBoxEnseigne.Name = "TxtBoxEnseigne";
     this.TxtBoxEnseigne.Size = new System.Drawing.Size(145, 20);
     this.TxtBoxEnseigne.TabIndex = 3;
     //
     // TxtBoxPrenom
     //
     this.TxtBoxPrenom.Location = new System.Drawing.Point(127, 45);
     this.TxtBoxPrenom.Name = "TxtBoxPrenom";
     this.TxtBoxPrenom.Size = new System.Drawing.Size(173, 20);
     this.TxtBoxPrenom.TabIndex = 2;
     //
     // TxtBoxNom
     //
     this.TxtBoxNom.Location = new System.Drawing.Point(30, 45);
     this.TxtBoxNom.Name = "TxtBoxNom";
     this.TxtBoxNom.Size = new System.Drawing.Size(82, 20);
     this.TxtBoxNom.TabIndex = 1;
     //
     // BtnRechercheCli
     //
     this.BtnRechercheCli.Location = new System.Drawing.Point(732, 37);
     this.BtnRechercheCli.Name = "BtnRechercheCli";
     this.BtnRechercheCli.Size = new System.Drawing.Size(102, 34);
     this.BtnRechercheCli.TabIndex = 0;
     this.BtnRechercheCli.Text = "Recherche Client";
     this.BtnRechercheCli.UseVisualStyleBackColor = true;
     this.BtnRechercheCli.Click += new System.EventHandler(this.BtnRechercheCli_Click);
     //
     // GBoxCommande
     //
     this.GBoxCommande.Controls.Add(this.label3);
     this.GBoxCommande.Controls.Add(this.TxtBoxTotArt);
     this.GBoxCommande.Controls.Add(this.vScrollBar1);
     this.GBoxCommande.Controls.Add(this.label11);
     this.GBoxCommande.Controls.Add(this.label10);
     this.GBoxCommande.Controls.Add(this.label9);
     this.GBoxCommande.Controls.Add(this.label8);
     this.GBoxCommande.Controls.Add(this.TxtBoxTotHT);
     this.GBoxCommande.Controls.Add(this.TxtBoxTVA);
     this.GBoxCommande.Controls.Add(this.TxtBoxTotTTC);
     this.GBoxCommande.Controls.Add(this.TxtBoxTotRemise);
     this.GBoxCommande.Controls.Add(this.button4);
     this.GBoxCommande.Controls.Add(this.BtnDescendre);
     this.GBoxCommande.Controls.Add(this.BtnMonter);
     this.GBoxCommande.Controls.Add(this.dataGridView1);
     this.GBoxCommande.Location = new System.Drawing.Point(22, 399);
     this.GBoxCommande.Name = "GBoxCommande";
     this.GBoxCommande.Size = new System.Drawing.Size(841, 336);
     this.GBoxCommande.TabIndex = 29;
     this.GBoxCommande.TabStop = false;
     this.GBoxCommande.Text = "Commande";
     //
     // Commande
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(917, 913);
     this.Controls.Add(this.GBoxCommande);
     this.Controls.Add(this.GBoxClient);
     this.Controls.Add(this.BtnValider);
     this.Controls.Add(this.BtnAnnuler);
     this.Controls.Add(this.GBoxArticle);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.TxtBoxNumCommercial);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.TxtBoxNumCom);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.pictureBox1);
     this.Name = "Commande";
     this.Text = "Création de Commande";
     this.Load += new System.EventHandler(this.Commande_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.GBoxArticle.ResumeLayout(false);
     this.GBoxArticle.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NumUPDownQuantite)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.GBoxClient.ResumeLayout(false);
     this.GBoxClient.PerformLayout();
     this.GBoxCommande.ResumeLayout(false);
     this.GBoxCommande.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        //public Game1(IntPtr drawSurface, IntPtr drawSurface2, System.Windows.Forms.Form parentForm, System.Windows.Forms.PictureBox pictureBox )
        public Game1(IntPtr drawSurface, System.Windows.Forms.Form parentForm, System.Windows.Forms.PictureBox pictureBox )
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            #region Winforms setup
            this.drawSurface = drawSurface;
            //this.drawSurface2 = drawSurface2;
            this.parentForm = parentForm;
            this.pictureBox = pictureBox;

            graphics.PreparingDeviceSettings += new EventHandler<PreparingDeviceSettingsEventArgs>(graphics_PreparingDeviceSettings);

            Mouse.WindowHandle = drawSurface;

            vscroll = (System.Windows.Forms.VScrollBar)parentForm.Controls["vScrollBar1"];
            hscroll = (System.Windows.Forms.HScrollBar)parentForm.Controls["hScrollBar1"];

            gameForm = System.Windows.Forms.Control.FromHandle(this.Window.Handle);
            gameForm.VisibleChanged += new EventHandler(gameForm_VisibleChanged);
            gameForm.SizeChanged += new EventHandler(pictureBox_SizeChanged);
            #endregion

            parallaxEngine = new ParallaxManager(this);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Hospital_Admin));
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.staffProfileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.recordsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem();
     this.billingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.electricityToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.waterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.internetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.salaryToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.doctorsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.nursesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.receptionistToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.clerksToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.otherStaffToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.vScrollBar2 = new System.Windows.Forms.VScrollBar();
     this.panel2 = new System.Windows.Forms.Panel();
     this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.PatientBox = new System.Windows.Forms.TextBox();
     this.PatientID = new System.Windows.Forms.Label();
     this.PatientViewBTN = new System.Windows.Forms.Button();
     this.ExportPaitentDetails = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.ToDaysFinances = new System.Windows.Forms.Button();
     this.PaitentFinances = new System.Windows.Forms.Button();
     this.PaitentTreatments = new System.Windows.Forms.Button();
     this.menuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.staffProfileToolStripMenuItem,
     this.recordsToolStripMenuItem,
     this.billingToolStripMenuItem,
     this.salaryToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(664, 24);
     this.menuStrip1.TabIndex = 0;
     this.menuStrip1.Text = "menuStrip1";
     //
     // staffProfileToolStripMenuItem
     //
     this.staffProfileToolStripMenuItem.Name = "staffProfileToolStripMenuItem";
     this.staffProfileToolStripMenuItem.Size = new System.Drawing.Size(80, 20);
     this.staffProfileToolStripMenuItem.Text = "Staff Profile";
     this.staffProfileToolStripMenuItem.Click += new System.EventHandler(this.staffProfileToolStripMenuItem_Click);
     //
     // recordsToolStripMenuItem
     //
     this.recordsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem2,
     this.toolStripMenuItem3,
     this.toolStripMenuItem4,
     this.toolStripMenuItem5});
     this.recordsToolStripMenuItem.Name = "recordsToolStripMenuItem";
     this.recordsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
     this.recordsToolStripMenuItem.Text = "Records";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(98, 22);
     this.toolStripMenuItem2.Text = "2013";
     //
     // toolStripMenuItem3
     //
     this.toolStripMenuItem3.Name = "toolStripMenuItem3";
     this.toolStripMenuItem3.Size = new System.Drawing.Size(98, 22);
     this.toolStripMenuItem3.Text = "2012";
     //
     // toolStripMenuItem4
     //
     this.toolStripMenuItem4.Name = "toolStripMenuItem4";
     this.toolStripMenuItem4.Size = new System.Drawing.Size(98, 22);
     this.toolStripMenuItem4.Text = "2011";
     //
     // toolStripMenuItem5
     //
     this.toolStripMenuItem5.Name = "toolStripMenuItem5";
     this.toolStripMenuItem5.Size = new System.Drawing.Size(98, 22);
     this.toolStripMenuItem5.Text = "2010";
     //
     // billingToolStripMenuItem
     //
     this.billingToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.rentToolStripMenuItem,
     this.electricityToolStripMenuItem,
     this.waterToolStripMenuItem,
     this.internetToolStripMenuItem});
     this.billingToolStripMenuItem.Name = "billingToolStripMenuItem";
     this.billingToolStripMenuItem.Size = new System.Drawing.Size(52, 20);
     this.billingToolStripMenuItem.Text = "Billing";
     //
     // rentToolStripMenuItem
     //
     this.rentToolStripMenuItem.Name = "rentToolStripMenuItem";
     this.rentToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.rentToolStripMenuItem.Text = "Rent";
     //
     // electricityToolStripMenuItem
     //
     this.electricityToolStripMenuItem.Name = "electricityToolStripMenuItem";
     this.electricityToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.electricityToolStripMenuItem.Text = "Electricity";
     //
     // waterToolStripMenuItem
     //
     this.waterToolStripMenuItem.Name = "waterToolStripMenuItem";
     this.waterToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.waterToolStripMenuItem.Text = "Water";
     //
     // internetToolStripMenuItem
     //
     this.internetToolStripMenuItem.Name = "internetToolStripMenuItem";
     this.internetToolStripMenuItem.Size = new System.Drawing.Size(125, 22);
     this.internetToolStripMenuItem.Text = "Internet";
     //
     // salaryToolStripMenuItem
     //
     this.salaryToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.doctorsToolStripMenuItem,
     this.nursesToolStripMenuItem,
     this.receptionistToolStripMenuItem,
     this.clerksToolStripMenuItem,
     this.otherStaffToolStripMenuItem});
     this.salaryToolStripMenuItem.Name = "salaryToolStripMenuItem";
     this.salaryToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     this.salaryToolStripMenuItem.Text = "Salary";
     //
     // doctorsToolStripMenuItem
     //
     this.doctorsToolStripMenuItem.Name = "doctorsToolStripMenuItem";
     this.doctorsToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
     this.doctorsToolStripMenuItem.Text = "Doctors";
     //
     // nursesToolStripMenuItem
     //
     this.nursesToolStripMenuItem.Name = "nursesToolStripMenuItem";
     this.nursesToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
     this.nursesToolStripMenuItem.Text = "Nurses";
     //
     // receptionistToolStripMenuItem
     //
     this.receptionistToolStripMenuItem.Name = "receptionistToolStripMenuItem";
     this.receptionistToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
     this.receptionistToolStripMenuItem.Text = "Receptionist";
     //
     // clerksToolStripMenuItem
     //
     this.clerksToolStripMenuItem.Name = "clerksToolStripMenuItem";
     this.clerksToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
     this.clerksToolStripMenuItem.Text = "Clerks";
     //
     // otherStaffToolStripMenuItem
     //
     this.otherStaffToolStripMenuItem.Name = "otherStaffToolStripMenuItem";
     this.otherStaffToolStripMenuItem.Size = new System.Drawing.Size(139, 22);
     this.otherStaffToolStripMenuItem.Text = "Other staff";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(12, 89);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(195, 25);
     this.label1.TabIndex = 1;
     this.label1.Text = "Today\'s summary";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.HighlightText;
     this.panel1.Controls.Add(this.vScrollBar2);
     this.panel1.Location = new System.Drawing.Point(356, 287);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(308, 82);
     this.panel1.TabIndex = 2;
     //
     // vScrollBar2
     //
     this.vScrollBar2.Location = new System.Drawing.Point(630, 2);
     this.vScrollBar2.Name = "vScrollBar2";
     this.vScrollBar2.Size = new System.Drawing.Size(17, 80);
     this.vScrollBar2.TabIndex = 5;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.HighlightText;
     this.panel2.Controls.Add(this.vScrollBar1);
     this.panel2.Location = new System.Drawing.Point(356, 174);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(308, 81);
     this.panel2.TabIndex = 0;
     //
     // vScrollBar1
     //
     this.vScrollBar1.Location = new System.Drawing.Point(630, 0);
     this.vScrollBar1.Name = "vScrollBar1";
     this.vScrollBar1.Size = new System.Drawing.Size(17, 80);
     this.vScrollBar1.TabIndex = 4;
     this.vScrollBar1.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar1_Scroll);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(352, 147);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(79, 20);
     this.label2.TabIndex = 0;
     this.label2.Text = "Expenses";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(353, 262);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(62, 20);
     this.label3.TabIndex = 3;
     this.label3.Text = "Income";
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Location = new System.Drawing.Point(17, 37);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(137, 20);
     this.dateTimePicker1.TabIndex = 4;
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // pictureBox1
     //
     this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(17, 168);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(265, 191);
     this.pictureBox1.TabIndex = 6;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // PatientBox
     //
     this.PatientBox.Location = new System.Drawing.Point(357, 37);
     this.PatientBox.Name = "PatientBox";
     this.PatientBox.Size = new System.Drawing.Size(100, 20);
     this.PatientBox.TabIndex = 7;
     this.PatientBox.TextChanged += new System.EventHandler(this.PatientBox_TextChanged);
     //
     // PatientID
     //
     this.PatientID.AutoSize = true;
     this.PatientID.Location = new System.Drawing.Point(300, 40);
     this.PatientID.Name = "PatientID";
     this.PatientID.Size = new System.Drawing.Size(51, 13);
     this.PatientID.TabIndex = 8;
     this.PatientID.Text = "PatientID";
     this.PatientID.Click += new System.EventHandler(this.label4_Click);
     //
     // PatientViewBTN
     //
     this.PatientViewBTN.Location = new System.Drawing.Point(454, 37);
     this.PatientViewBTN.Name = "PatientViewBTN";
     this.PatientViewBTN.Size = new System.Drawing.Size(75, 20);
     this.PatientViewBTN.TabIndex = 9;
     this.PatientViewBTN.Text = "View";
     this.PatientViewBTN.UseVisualStyleBackColor = true;
     this.PatientViewBTN.Click += new System.EventHandler(this.PatientViewBTN_Click);
     //
     // ExportPaitentDetails
     //
     this.ExportPaitentDetails.Location = new System.Drawing.Point(344, 89);
     this.ExportPaitentDetails.Name = "ExportPaitentDetails";
     this.ExportPaitentDetails.Size = new System.Drawing.Size(128, 23);
     this.ExportPaitentDetails.TabIndex = 10;
     this.ExportPaitentDetails.Text = "Paitent Contact Details";
     this.ExportPaitentDetails.UseVisualStyleBackColor = true;
     this.ExportPaitentDetails.Click += new System.EventHandler(this.ExportPaitentDetails_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(423, 71);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 13);
     this.label4.TabIndex = 11;
     this.label4.Text = "Export To PDF";
     //
     // ToDaysFinances
     //
     this.ToDaysFinances.Location = new System.Drawing.Point(498, 90);
     this.ToDaysFinances.Name = "ToDaysFinances";
     this.ToDaysFinances.Size = new System.Drawing.Size(128, 23);
     this.ToDaysFinances.TabIndex = 12;
     this.ToDaysFinances.Text = "Export Finances";
     this.ToDaysFinances.UseVisualStyleBackColor = true;
     this.ToDaysFinances.Click += new System.EventHandler(this.ToDaysFinances_Click);
     //
     // PaitentFinances
     //
     this.PaitentFinances.Location = new System.Drawing.Point(344, 119);
     this.PaitentFinances.Name = "PaitentFinances";
     this.PaitentFinances.Size = new System.Drawing.Size(128, 23);
     this.PaitentFinances.TabIndex = 13;
     this.PaitentFinances.Text = "Paitent Finances";
     this.PaitentFinances.UseVisualStyleBackColor = true;
     this.PaitentFinances.Click += new System.EventHandler(this.PaitentFinances_Click);
     //
     // PaitentTreatments
     //
     this.PaitentTreatments.Location = new System.Drawing.Point(498, 119);
     this.PaitentTreatments.Name = "PaitentTreatments";
     this.PaitentTreatments.Size = new System.Drawing.Size(128, 23);
     this.PaitentTreatments.TabIndex = 14;
     this.PaitentTreatments.Text = "Paitent Treatments";
     this.PaitentTreatments.UseVisualStyleBackColor = true;
     this.PaitentTreatments.Click += new System.EventHandler(this.PaitentTreatments_Click);
     //
     // Hospital_Admin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.InactiveCaption;
     this.ClientSize = new System.Drawing.Size(664, 381);
     this.Controls.Add(this.PaitentTreatments);
     this.Controls.Add(this.PaitentFinances);
     this.Controls.Add(this.ToDaysFinances);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.ExportPaitentDetails);
     this.Controls.Add(this.PatientViewBTN);
     this.Controls.Add(this.PatientID);
     this.Controls.Add(this.PatientBox);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.dateTimePicker1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.menuStrip1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Hospital_Admin";
     this.Text = "Hospital_Admin";
     this.Load += new System.EventHandler(this.Hospital_Admin_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
예제 #35
0
 public short GetIndex(System.Windows.Forms.VScrollBar o)
 {
 }
예제 #36
0
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
            this.picEditArea = new System.Windows.Forms.PictureBox();
            this.mbMain = new System.Windows.Forms.MainMenu(this.components);
            this.mnuFile = new System.Windows.Forms.MenuItem();
            this.mnuFileNew = new System.Windows.Forms.MenuItem();
            this.mnuFileOpen = new System.Windows.Forms.MenuItem();
            this.mnuFileClose = new System.Windows.Forms.MenuItem();
            this.menuItem4 = new System.Windows.Forms.MenuItem();
            this.mnuFileSave = new System.Windows.Forms.MenuItem();
            this.menuItem6 = new System.Windows.Forms.MenuItem();
            this.mnuFileExit = new System.Windows.Forms.MenuItem();
            this.mnuSettings = new System.Windows.Forms.MenuItem();
            this.mnuZoom = new System.Windows.Forms.MenuItem();
            this.mnuZoomX1 = new System.Windows.Forms.MenuItem();
            this.mnuZoomX2 = new System.Windows.Forms.MenuItem();
            this.mnuZoomX4 = new System.Windows.Forms.MenuItem();
            this.mnuZoomX8 = new System.Windows.Forms.MenuItem();
            this.mnuZoomX16 = new System.Windows.Forms.MenuItem();
            this.menuItem1 = new System.Windows.Forms.MenuItem();
            this.mnuCreateNewUser = new System.Windows.Forms.MenuItem();
            this.mnuHelp = new System.Windows.Forms.MenuItem();
            this.mnuHelpAbout = new System.Windows.Forms.MenuItem();
            this.tbMain = new System.Windows.Forms.ToolBar();
            this.tbbNew = new System.Windows.Forms.ToolBarButton();
            this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
            this.tbbOpen = new System.Windows.Forms.ToolBarButton();
            this.tbbSave = new System.Windows.Forms.ToolBarButton();
            this.tbbSeperator1 = new System.Windows.Forms.ToolBarButton();
            this.tbbHelp = new System.Windows.Forms.ToolBarButton();
            this.il16 = new System.Windows.Forms.ImageList(this.components);
            this.statusBar1 = new System.Windows.Forms.StatusBar();
            this.panelTools = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.picActiveTile = new System.Windows.Forms.PictureBox();
            this.panelTiles = new System.Windows.Forms.Panel();
            this.picTiles = new System.Windows.Forms.PictureBox();
            this.vscTiles = new System.Windows.Forms.VScrollBar();
            this.picEditSel = new System.Windows.Forms.PictureBox();
            this.vscMap = new System.Windows.Forms.VScrollBar();
            this.hscMap = new System.Windows.Forms.HScrollBar();
            this.timer1 = new System.Windows.Forms.Timer(this.components);
            this.picMap = new System.Windows.Forms.PictureBox();
            this.tmrLoad = new System.Windows.Forms.Timer(this.components);
            this.dlgLoadMap = new System.Windows.Forms.OpenFileDialog();
            this.dlgSaveMap = new System.Windows.Forms.SaveFileDialog();
            this.comboBox1 = new System.Windows.Forms.ComboBox();
            this.lblZoom = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).BeginInit();
            this.panelTools.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).BeginInit();
            this.panelTiles.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.picTiles)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.picMap)).BeginInit();
            this.SuspendLayout();
            // 
            // picEditArea
            // 
            this.picEditArea.BackColor = System.Drawing.Color.Gray;
            this.picEditArea.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.picEditArea.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picEditArea.Location = new System.Drawing.Point(0, 0);
            this.picEditArea.Name = "picEditArea";
            this.picEditArea.Size = new System.Drawing.Size(1098, 593);
            this.picEditArea.TabIndex = 0;
            this.picEditArea.TabStop = false;
            this.picEditArea.Resize += new System.EventHandler(this.picEditArea_Resize);
            // 
            // mbMain
            // 
            this.mbMain.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuFile,
            this.mnuSettings,
            this.mnuHelp});
            // 
            // mnuFile
            // 
            this.mnuFile.Index = 0;
            this.mnuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuFileNew,
            this.mnuFileOpen,
            this.mnuFileClose,
            this.menuItem4,
            this.mnuFileSave,
            this.menuItem6,
            this.mnuFileExit});
            this.mnuFile.Text = "&File";
            // 
            // mnuFileNew
            // 
            this.mnuFileNew.Index = 0;
            this.mnuFileNew.Text = "&New";
            this.mnuFileNew.Click += new System.EventHandler(this.mnuFileNew_Click);
            // 
            // mnuFileOpen
            // 
            this.mnuFileOpen.Index = 1;
            this.mnuFileOpen.Text = "&Open";
            this.mnuFileOpen.Click += new System.EventHandler(this.mnuFileOpen_Click);
            // 
            // mnuFileClose
            // 
            this.mnuFileClose.Index = 2;
            this.mnuFileClose.Text = "&Close";
            // 
            // menuItem4
            // 
            this.menuItem4.Index = 3;
            this.menuItem4.Text = "-";
            // 
            // mnuFileSave
            // 
            this.mnuFileSave.Index = 4;
            this.mnuFileSave.Text = "&Save";
            this.mnuFileSave.Click += new System.EventHandler(this.mnuFileSave_Click);
            // 
            // menuItem6
            // 
            this.menuItem6.Index = 5;
            this.menuItem6.Text = "-";
            // 
            // mnuFileExit
            // 
            this.mnuFileExit.Index = 6;
            this.mnuFileExit.Text = "E&xit";
            this.mnuFileExit.Click += new System.EventHandler(this.mnuFileExit_Click);
            // 
            // mnuSettings
            // 
            this.mnuSettings.Index = 1;
            this.mnuSettings.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuZoom,
            this.menuItem1,
            this.mnuCreateNewUser});
            this.mnuSettings.Text = "&Settings";
            // 
            // mnuZoom
            // 
            this.mnuZoom.Index = 0;
            this.mnuZoom.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuZoomX1,
            this.mnuZoomX2,
            this.mnuZoomX4,
            this.mnuZoomX8,
            this.mnuZoomX16});
            this.mnuZoom.Text = "&Zoom";
            // 
            // mnuZoomX1
            // 
            this.mnuZoomX1.Index = 0;
            this.mnuZoomX1.Text = "x 1";
            this.mnuZoomX1.Click += new System.EventHandler(this.mnuZoomX1_Click);
            // 
            // mnuZoomX2
            // 
            this.mnuZoomX2.Index = 1;
            this.mnuZoomX2.Text = "x 2";
            this.mnuZoomX2.Click += new System.EventHandler(this.mnuZoomX2_Click);
            // 
            // mnuZoomX4
            // 
            this.mnuZoomX4.Index = 2;
            this.mnuZoomX4.Text = "x 4";
            this.mnuZoomX4.Click += new System.EventHandler(this.mnuZoomX4_Click);
            // 
            // mnuZoomX8
            // 
            this.mnuZoomX8.Index = 3;
            this.mnuZoomX8.Text = "x 8";
            this.mnuZoomX8.Click += new System.EventHandler(this.mnuZoomX8_Click);
            // 
            // mnuZoomX16
            // 
            this.mnuZoomX16.Index = 4;
            this.mnuZoomX16.Text = "x 16";
            this.mnuZoomX16.Click += new System.EventHandler(this.mnuZoomX16_Click);
            // 
            // menuItem1
            // 
            this.menuItem1.Index = 1;
            this.menuItem1.Text = "-";
            // 
            // mnuCreateNewUser
            // 
            this.mnuCreateNewUser.Index = 2;
            this.mnuCreateNewUser.Text = "Create a new admin";
            this.mnuCreateNewUser.Click += new System.EventHandler(this.mnuCreateNewUser_Click);
            // 
            // mnuHelp
            // 
            this.mnuHelp.Index = 2;
            this.mnuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
            this.mnuHelpAbout});
            this.mnuHelp.Text = "&Help";
            // 
            // mnuHelpAbout
            // 
            this.mnuHelpAbout.Index = 0;
            this.mnuHelpAbout.Text = "&About";
            this.mnuHelpAbout.Click += new System.EventHandler(this.mnuHelpAbout_Click);
            // 
            // tbMain
            // 
            this.tbMain.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
            this.tbbNew,
            this.toolBarButton1,
            this.tbbOpen,
            this.tbbSave,
            this.tbbSeperator1,
            this.tbbHelp});
            this.tbMain.DropDownArrows = true;
            this.tbMain.ImageList = this.il16;
            this.tbMain.Location = new System.Drawing.Point(0, 0);
            this.tbMain.Name = "tbMain";
            this.tbMain.ShowToolTips = true;
            this.tbMain.Size = new System.Drawing.Size(1098, 28);
            this.tbMain.TabIndex = 1;
            this.tbMain.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.tbMain_ButtonClick);
            // 
            // tbbNew
            // 
            this.tbbNew.ImageIndex = 2;
            this.tbbNew.Name = "tbbNew";
            // 
            // toolBarButton1
            // 
            this.toolBarButton1.Name = "toolBarButton1";
            this.toolBarButton1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
            this.toolBarButton1.Text = "-";
            // 
            // tbbOpen
            // 
            this.tbbOpen.ImageIndex = 0;
            this.tbbOpen.Name = "tbbOpen";
            // 
            // tbbSave
            // 
            this.tbbSave.ImageIndex = 1;
            this.tbbSave.Name = "tbbSave";
            // 
            // tbbSeperator1
            // 
            this.tbbSeperator1.Name = "tbbSeperator1";
            this.tbbSeperator1.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
            this.tbbSeperator1.Text = "-";
            // 
            // tbbHelp
            // 
            this.tbbHelp.ImageIndex = 3;
            this.tbbHelp.Name = "tbbHelp";
            // 
            // il16
            // 
            this.il16.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("il16.ImageStream")));
            this.il16.TransparentColor = System.Drawing.Color.Transparent;
            this.il16.Images.SetKeyName(0, "Open-icon.png");
            this.il16.Images.SetKeyName(1, "Save-icon.png");
            this.il16.Images.SetKeyName(2, "Files-New-File-icon.png");
            this.il16.Images.SetKeyName(3, "Help-icon.png");
            // 
            // statusBar1
            // 
            this.statusBar1.Location = new System.Drawing.Point(0, 571);
            this.statusBar1.Name = "statusBar1";
            this.statusBar1.Size = new System.Drawing.Size(1098, 22);
            this.statusBar1.TabIndex = 2;
            this.statusBar1.Text = "sbMain";
            // 
            // panelTools
            // 
            this.panelTools.Controls.Add(this.label1);
            this.panelTools.Controls.Add(this.picActiveTile);
            this.panelTools.Dock = System.Windows.Forms.DockStyle.Right;
            this.panelTools.Location = new System.Drawing.Point(976, 28);
            this.panelTools.Name = "panelTools";
            this.panelTools.Size = new System.Drawing.Size(122, 543);
            this.panelTools.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.Location = new System.Drawing.Point(8, 8);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(64, 16);
            this.label1.TabIndex = 3;
            this.label1.Text = "Active Tile";
            // 
            // picActiveTile
            // 
            this.picActiveTile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.picActiveTile.Location = new System.Drawing.Point(8, 27);
            this.picActiveTile.Name = "picActiveTile";
            this.picActiveTile.Size = new System.Drawing.Size(100, 100);
            this.picActiveTile.TabIndex = 2;
            this.picActiveTile.TabStop = false;
            this.picActiveTile.Paint += new System.Windows.Forms.PaintEventHandler(this.picActiveTile_Paint);
            // 
            // panelTiles
            // 
            this.panelTiles.Controls.Add(this.picTiles);
            this.panelTiles.Controls.Add(this.vscTiles);
            this.panelTiles.Controls.Add(this.picEditSel);
            this.panelTiles.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.panelTiles.Location = new System.Drawing.Point(0, 437);
            this.panelTiles.Name = "panelTiles";
            this.panelTiles.Size = new System.Drawing.Size(976, 134);
            this.panelTiles.TabIndex = 4;
            // 
            // picTiles
            // 
            this.picTiles.BackColor = System.Drawing.Color.White;
            this.picTiles.Location = new System.Drawing.Point(16, 3);
            this.picTiles.Name = "picTiles";
            this.picTiles.Size = new System.Drawing.Size(943, 125);
            this.picTiles.TabIndex = 2;
            this.picTiles.TabStop = false;
            this.picTiles.Click += new System.EventHandler(this.picTiles_Click);
            this.picTiles.Paint += new System.Windows.Forms.PaintEventHandler(this.picTiles_Paint);
            this.picTiles.MouseLeave += new System.EventHandler(this.picTiles_MouseLeave);
            this.picTiles.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picTiles_MouseMove);
            // 
            // vscTiles
            // 
            this.vscTiles.Dock = System.Windows.Forms.DockStyle.Right;
            this.vscTiles.LargeChange = 15;
            this.vscTiles.Location = new System.Drawing.Point(959, 0);
            this.vscTiles.Maximum = 1950;
            this.vscTiles.Name = "vscTiles";
            this.vscTiles.Size = new System.Drawing.Size(17, 134);
            this.vscTiles.SmallChange = 5;
            this.vscTiles.TabIndex = 10;
            this.vscTiles.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vscTiles_Scroll);
            // 
            // picEditSel
            // 
            this.picEditSel.BackColor = System.Drawing.Color.White;
            this.picEditSel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.picEditSel.Dock = System.Windows.Forms.DockStyle.Fill;
            this.picEditSel.Location = new System.Drawing.Point(0, 0);
            this.picEditSel.Name = "picEditSel";
            this.picEditSel.Size = new System.Drawing.Size(976, 134);
            this.picEditSel.TabIndex = 0;
            this.picEditSel.TabStop = false;
            // 
            // vscMap
            // 
            this.vscMap.Dock = System.Windows.Forms.DockStyle.Right;
            this.vscMap.LargeChange = 5;
            this.vscMap.Location = new System.Drawing.Point(959, 28);
            this.vscMap.Maximum = 300;
            this.vscMap.Name = "vscMap";
            this.vscMap.Size = new System.Drawing.Size(17, 409);
            this.vscMap.TabIndex = 6;
            this.vscMap.Scroll += new System.Windows.Forms.ScrollEventHandler(this.vscMap_Scroll);
            // 
            // hscMap
            // 
            this.hscMap.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.hscMap.LargeChange = 5;
            this.hscMap.Location = new System.Drawing.Point(0, 420);
            this.hscMap.Name = "hscMap";
            this.hscMap.Size = new System.Drawing.Size(959, 17);
            this.hscMap.TabIndex = 7;
            this.hscMap.Scroll += new System.Windows.Forms.ScrollEventHandler(this.hscMap_Scroll);
            // 
            // timer1
            // 
            this.timer1.Interval = 200;
            this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
            // 
            // picMap
            // 
            this.picMap.BackColor = System.Drawing.Color.White;
            this.picMap.Location = new System.Drawing.Point(16, 40);
            this.picMap.Name = "picMap";
            this.picMap.Size = new System.Drawing.Size(540, 304);
            this.picMap.TabIndex = 8;
            this.picMap.TabStop = false;
            this.picMap.Visible = false;
            this.picMap.Click += new System.EventHandler(this.picMap_Click);
            this.picMap.Paint += new System.Windows.Forms.PaintEventHandler(this.picMap_Paint);
            this.picMap.MouseLeave += new System.EventHandler(this.picMap_MouseLeave);
            this.picMap.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picMap_MouseMove);
            // 
            // tmrLoad
            // 
            this.tmrLoad.Tick += new System.EventHandler(this.tmrLoad_Tick);
            // 
            // comboBox1
            // 
            this.comboBox1.Location = new System.Drawing.Point(40, 328);
            this.comboBox1.Name = "comboBox1";
            this.comboBox1.Size = new System.Drawing.Size(121, 21);
            this.comboBox1.TabIndex = 9;
            this.comboBox1.TabStop = false;
            this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
            // 
            // lblZoom
            // 
            this.lblZoom.Location = new System.Drawing.Point(176, 336);
            this.lblZoom.Name = "lblZoom";
            this.lblZoom.Size = new System.Drawing.Size(40, 24);
            this.lblZoom.TabIndex = 10;
            this.lblZoom.Text = "Zoom:";
            this.lblZoom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // frmMain
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(1098, 593);
            this.Controls.Add(this.lblZoom);
            this.Controls.Add(this.comboBox1);
            this.Controls.Add(this.picMap);
            this.Controls.Add(this.hscMap);
            this.Controls.Add(this.vscMap);
            this.Controls.Add(this.panelTiles);
            this.Controls.Add(this.panelTools);
            this.Controls.Add(this.statusBar1);
            this.Controls.Add(this.tbMain);
            this.Controls.Add(this.picEditArea);
            this.Menu = this.mbMain;
            this.Name = "frmMain";
            this.Text = "Éditeur de monde Hugo Land";
            this.Load += new System.EventHandler(this.frmMain_Load);
            ((System.ComponentModel.ISupportInitialize)(this.picEditArea)).EndInit();
            this.panelTools.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picActiveTile)).EndInit();
            this.panelTiles.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.picTiles)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picEditSel)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.picMap)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

		}
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
       this.txtPathWidth = new System.Windows.Forms.TextBox();
       this.lblPathWidth = new System.Windows.Forms.Label();
       this.cboDungeonType = new System.Windows.Forms.ComboBox();
       this.btnGenerate = new System.Windows.Forms.Button();
       this.hScrollBar1 = new System.Windows.Forms.HScrollBar();
       this.vScrollBar1 = new System.Windows.Forms.VScrollBar();
       this.label1 = new System.Windows.Forms.Label();
       this.txtWidth = new System.Windows.Forms.TextBox();
       this.label2 = new System.Windows.Forms.Label();
       this.txtHeight = new System.Windows.Forms.TextBox();
       this.lblTotalSize = new System.Windows.Forms.Label();
       this.cboTileSize = new System.Windows.Forms.ComboBox();
       this.lblTileSize = new System.Windows.Forms.Label();
       this.rdoWalls = new System.Windows.Forms.RadioButton();
       this.rdoDoors = new System.Windows.Forms.RadioButton();
       this.rdoTraps = new System.Windows.Forms.RadioButton();
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
       this.SuspendLayout();
       //
       // pictureBox1
       //
       this.pictureBox1.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.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.pictureBox1.Location = new System.Drawing.Point(146, 4);
       this.pictureBox1.Name = "pictureBox1";
       this.pictureBox1.Size = new System.Drawing.Size(362, 314);
       this.pictureBox1.TabIndex = 0;
       this.pictureBox1.TabStop = false;
       this.pictureBox1.Paint += new System.Windows.Forms.PaintEventHandler(this.OnMainMapPaint);
       this.pictureBox1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.MouseDownHandler);
       this.pictureBox1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.MouseMoveHandler);
       //
       // txtPathWidth
       //
       this.txtPathWidth.Location = new System.Drawing.Point(97, 31);
       this.txtPathWidth.Name = "txtPathWidth";
       this.txtPathWidth.Size = new System.Drawing.Size(43, 20);
       this.txtPathWidth.TabIndex = 10;
       this.txtPathWidth.Text = "5";
       this.txtPathWidth.TextChanged += new System.EventHandler(this.MazeParams_OnChange);
       this.txtPathWidth.Enter += new System.EventHandler(this.TextBox_OnEnter);
       //
       // lblPathWidth
       //
       this.lblPathWidth.Location = new System.Drawing.Point(3, 31);
       this.lblPathWidth.Name = "lblPathWidth";
       this.lblPathWidth.Size = new System.Drawing.Size(88, 20);
       this.lblPathWidth.TabIndex = 2;
       this.lblPathWidth.Text = "Path Width";
       this.lblPathWidth.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
       //
       // cboDungeonType
       //
       this.cboDungeonType.FormattingEnabled = true;
       this.cboDungeonType.Location = new System.Drawing.Point(3, 4);
       this.cboDungeonType.Name = "cboDungeonType";
       this.cboDungeonType.Size = new System.Drawing.Size(137, 21);
       this.cboDungeonType.Sorted = true;
       this.cboDungeonType.TabIndex = 0;
       //
       // btnGenerate
       //
       this.btnGenerate.Location = new System.Drawing.Point(3, 139);
       this.btnGenerate.Name = "btnGenerate";
       this.btnGenerate.Size = new System.Drawing.Size(137, 23);
       this.btnGenerate.TabIndex = 20;
       this.btnGenerate.Text = "Generate";
       this.btnGenerate.UseVisualStyleBackColor = true;
       this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
       //
       // hScrollBar1
       //
       this.hScrollBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
       this.hScrollBar1.Location = new System.Drawing.Point(146, 318);
       this.hScrollBar1.Name = "hScrollBar1";
       this.hScrollBar1.Size = new System.Drawing.Size(362, 15);
       this.hScrollBar1.TabIndex = 5;
       this.hScrollBar1.ValueChanged += new System.EventHandler(this.ScrollBar_ValueChanged);
       //
       // vScrollBar1
       //
       this.vScrollBar1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
       this.vScrollBar1.Location = new System.Drawing.Point(508, 4);
       this.vScrollBar1.Name = "vScrollBar1";
       this.vScrollBar1.Size = new System.Drawing.Size(15, 314);
       this.vScrollBar1.TabIndex = 6;
       this.vScrollBar1.ValueChanged += new System.EventHandler(this.ScrollBar_ValueChanged);
       //
       // label1
       //
       this.label1.Location = new System.Drawing.Point(3, 57);
       this.label1.Name = "label1";
       this.label1.Size = new System.Drawing.Size(88, 20);
       this.label1.TabIndex = 8;
       this.label1.Text = "Width";
       this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
       //
       // txtWidth
       //
       this.txtWidth.Location = new System.Drawing.Point(97, 57);
       this.txtWidth.Name = "txtWidth";
       this.txtWidth.Size = new System.Drawing.Size(43, 20);
       this.txtWidth.TabIndex = 11;
       this.txtWidth.Text = "15";
       this.txtWidth.TextChanged += new System.EventHandler(this.MazeParams_OnChange);
       this.txtWidth.Enter += new System.EventHandler(this.TextBox_OnEnter);
       //
       // label2
       //
       this.label2.Location = new System.Drawing.Point(3, 83);
       this.label2.Name = "label2";
       this.label2.Size = new System.Drawing.Size(88, 20);
       this.label2.TabIndex = 10;
       this.label2.Text = "Height";
       this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
       //
       // txtHeight
       //
       this.txtHeight.Location = new System.Drawing.Point(97, 83);
       this.txtHeight.Name = "txtHeight";
       this.txtHeight.Size = new System.Drawing.Size(43, 20);
       this.txtHeight.TabIndex = 12;
       this.txtHeight.Text = "15";
       this.txtHeight.TextChanged += new System.EventHandler(this.MazeParams_OnChange);
       this.txtHeight.Enter += new System.EventHandler(this.TextBox_OnEnter);
       //
       // lblTotalSize
       //
       this.lblTotalSize.Location = new System.Drawing.Point(3, 116);
       this.lblTotalSize.Name = "lblTotalSize";
       this.lblTotalSize.Size = new System.Drawing.Size(137, 20);
       this.lblTotalSize.TabIndex = 11;
       this.lblTotalSize.Text = "Total Cells";
       this.lblTotalSize.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
       //
       // cboTileSize
       //
       this.cboTileSize.FormattingEnabled = true;
       this.cboTileSize.Items.AddRange(new object[] {
     "4",
     "8",
     "16",
     "32",
     "64"});
       this.cboTileSize.Location = new System.Drawing.Point(97, 168);
       this.cboTileSize.Name = "cboTileSize";
       this.cboTileSize.Size = new System.Drawing.Size(43, 21);
       this.cboTileSize.TabIndex = 30;
       this.cboTileSize.SelectedValueChanged += new System.EventHandler(this.TileSize_OnChange);
       //
       // lblTileSize
       //
       this.lblTileSize.Location = new System.Drawing.Point(3, 169);
       this.lblTileSize.Name = "lblTileSize";
       this.lblTileSize.Size = new System.Drawing.Size(88, 20);
       this.lblTileSize.TabIndex = 13;
       this.lblTileSize.Text = "Tile Size";
       this.lblTileSize.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
       //
       // rdoWalls
       //
       this.rdoWalls.Checked = true;
       this.rdoWalls.Location = new System.Drawing.Point(6, 195);
       this.rdoWalls.Name = "rdoWalls";
       this.rdoWalls.Size = new System.Drawing.Size(134, 17);
       this.rdoWalls.TabIndex = 40;
       this.rdoWalls.TabStop = true;
       this.rdoWalls.Text = "Wall / Floor";
       this.rdoWalls.UseVisualStyleBackColor = true;
       //
       // rdoDoors
       //
       this.rdoDoors.Location = new System.Drawing.Point(6, 218);
       this.rdoDoors.Name = "rdoDoors";
       this.rdoDoors.Size = new System.Drawing.Size(134, 17);
       this.rdoDoors.TabIndex = 41;
       this.rdoDoors.Text = "Door / Wall";
       this.rdoDoors.UseVisualStyleBackColor = true;
       //
       // rdoTraps
       //
       this.rdoTraps.Location = new System.Drawing.Point(6, 241);
       this.rdoTraps.Name = "rdoTraps";
       this.rdoTraps.Size = new System.Drawing.Size(134, 17);
       this.rdoTraps.TabIndex = 42;
       this.rdoTraps.Text = "Trap / Floor";
       this.rdoTraps.UseVisualStyleBackColor = true;
       //
       // DmModuleDungeonGenerator
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.Controls.Add(this.rdoTraps);
       this.Controls.Add(this.rdoDoors);
       this.Controls.Add(this.rdoWalls);
       this.Controls.Add(this.lblTileSize);
       this.Controls.Add(this.cboTileSize);
       this.Controls.Add(this.lblTotalSize);
       this.Controls.Add(this.label2);
       this.Controls.Add(this.txtHeight);
       this.Controls.Add(this.label1);
       this.Controls.Add(this.txtWidth);
       this.Controls.Add(this.vScrollBar1);
       this.Controls.Add(this.hScrollBar1);
       this.Controls.Add(this.btnGenerate);
       this.Controls.Add(this.cboDungeonType);
       this.Controls.Add(this.lblPathWidth);
       this.Controls.Add(this.txtPathWidth);
       this.Controls.Add(this.pictureBox1);
       this.DoubleBuffered = true;
       this.Name = "DmModuleDungeonGenerator";
       this.Size = new System.Drawing.Size(523, 336);
       this.SizeChanged += new System.EventHandler(this.SizeChanged_Handler);
       this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.KeyDownHandler);
       ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
       this.ResumeLayout(false);
       this.PerformLayout();
 }
예제 #38
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CellQueryForm));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     this.btnRefresh = new System.Windows.Forms.Button();
     this.btnChart = new System.Windows.Forms.Button();
     this.btnExit = new System.Windows.Forms.Button();
     this.pnlChart = new System.Windows.Forms.Panel();
     this.sbShelf = new System.Windows.Forms.VScrollBar();
     this.pnlData = new System.Windows.Forms.Panel();
     this.pnlProgress = new System.Windows.Forms.Panel();
     this.lblInfo = new System.Windows.Forms.Label();
     this.dgvMain = new System.Windows.Forms.DataGridView();
     this.ShelfName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CellCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CellName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.ProductCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ProductName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.QUANTITY = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WareCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.WareName = new DataGridViewAutoFilter.DataGridViewAutoFilterTextBoxColumn();
     this.IsActive = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.bsMain = new System.Windows.Forms.BindingSource(this.components);
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     this.button3 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.button5 = new System.Windows.Forms.Button();
     this.pnlTool.SuspendLayout();
     this.pnlContent.SuspendLayout();
     this.pnlMain.SuspendLayout();
     this.pnlChart.SuspendLayout();
     this.pnlData.SuspendLayout();
     this.pnlProgress.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvMain)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsMain)).BeginInit();
     this.SuspendLayout();
     //
     // pnlTool
     //
     this.pnlTool.Controls.Add(this.button5);
     this.pnlTool.Controls.Add(this.button4);
     this.pnlTool.Controls.Add(this.button3);
     this.pnlTool.Controls.Add(this.button1);
     this.pnlTool.Controls.Add(this.button2);
     this.pnlTool.Controls.Add(this.btnExit);
     this.pnlTool.Controls.Add(this.btnChart);
     this.pnlTool.Controls.Add(this.btnRefresh);
     this.pnlTool.Size = new System.Drawing.Size(1020, 46);
     //
     // pnlContent
     //
     this.pnlContent.Controls.Add(this.pnlData);
     this.pnlContent.Controls.Add(this.pnlChart);
     this.pnlContent.Location = new System.Drawing.Point(0, 46);
     this.pnlContent.Size = new System.Drawing.Size(1020, 229);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(1020, 275);
     //
     // btnRefresh
     //
     this.btnRefresh.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnRefresh.Image = global::THOK.WES.Properties.Resources.onebit_02;
     this.btnRefresh.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnRefresh.Location = new System.Drawing.Point(0, 0);
     this.btnRefresh.Name = "btnRefresh";
     this.btnRefresh.Size = new System.Drawing.Size(48, 44);
     this.btnRefresh.TabIndex = 1;
     this.btnRefresh.Text = "查询";
     this.btnRefresh.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnRefresh.UseVisualStyleBackColor = true;
     this.btnRefresh.Click += new System.EventHandler(this.btnRefresh_Click);
     //
     // btnChart
     //
     this.btnChart.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnChart.Image = ((System.Drawing.Image)(resources.GetObject("btnChart.Image")));
     this.btnChart.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnChart.Location = new System.Drawing.Point(48, 0);
     this.btnChart.Name = "btnChart";
     this.btnChart.Size = new System.Drawing.Size(48, 44);
     this.btnChart.TabIndex = 2;
     this.btnChart.Text = "图形";
     this.btnChart.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnChart.UseVisualStyleBackColor = true;
     this.btnChart.Click += new System.EventHandler(this.btnChart_Click);
     //
     // btnExit
     //
     this.btnExit.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnExit.Image = global::THOK.WES.Properties.Resources.shut_down;
     this.btnExit.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnExit.Location = new System.Drawing.Point(96, 0);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(48, 44);
     this.btnExit.TabIndex = 3;
     this.btnExit.Text = "退出";
     this.btnExit.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btnExit.UseVisualStyleBackColor = true;
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // pnlChart
     //
     this.pnlChart.BackColor = System.Drawing.SystemColors.Info;
     this.pnlChart.Controls.Add(this.sbShelf);
     this.pnlChart.Location = new System.Drawing.Point(3, 138);
     this.pnlChart.Name = "pnlChart";
     this.pnlChart.Size = new System.Drawing.Size(1022, 89);
     this.pnlChart.TabIndex = 2;
     this.pnlChart.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlChart_Paint);
     this.pnlChart.MouseClick += new System.Windows.Forms.MouseEventHandler(this.pnlChart_MouseClick);
     this.pnlChart.Resize += new System.EventHandler(this.pnlChart_Resize);
     //
     // sbShelf
     //
     this.sbShelf.Dock = System.Windows.Forms.DockStyle.Right;
     this.sbShelf.LargeChange = 30;
     this.sbShelf.Location = new System.Drawing.Point(1003, 0);
     this.sbShelf.Maximum = 60;
     this.sbShelf.Name = "sbShelf";
     this.sbShelf.Size = new System.Drawing.Size(19, 89);
     this.sbShelf.SmallChange = 30;
     this.sbShelf.TabIndex = 0;
     this.sbShelf.Value = 1;
     this.sbShelf.ValueChanged += new System.EventHandler(this.sbShelf_ValueChanged);
     //
     // pnlData
     //
     this.pnlData.Controls.Add(this.pnlProgress);
     this.pnlData.Controls.Add(this.dgvMain);
     this.pnlData.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlData.Location = new System.Drawing.Point(0, 0);
     this.pnlData.Name = "pnlData";
     this.pnlData.Size = new System.Drawing.Size(1020, 132);
     this.pnlData.TabIndex = 3;
     //
     // pnlProgress
     //
     this.pnlProgress.Controls.Add(this.lblInfo);
     this.pnlProgress.Location = new System.Drawing.Point(250, 18);
     this.pnlProgress.Name = "pnlProgress";
     this.pnlProgress.Size = new System.Drawing.Size(238, 79);
     this.pnlProgress.TabIndex = 10;
     this.pnlProgress.Visible = false;
     //
     // lblInfo
     //
     this.lblInfo.AutoSize = true;
     this.lblInfo.Location = new System.Drawing.Point(32, 34);
     this.lblInfo.Name = "lblInfo";
     this.lblInfo.Size = new System.Drawing.Size(167, 12);
     this.lblInfo.TabIndex = 1;
     this.lblInfo.Text = "正在准备货位数据,请稍候...";
     //
     // dgvMain
     //
     this.dgvMain.AllowUserToAddRows = false;
     this.dgvMain.AllowUserToDeleteRows = false;
     this.dgvMain.AllowUserToResizeRows = false;
     dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.dgvMain.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
     this.dgvMain.AutoGenerateColumns = false;
     this.dgvMain.BackgroundColor = System.Drawing.SystemColors.Info;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvMain.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dgvMain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvMain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ShelfName,
     this.CellCode,
     this.CellName,
     this.ProductCode,
     this.ProductName,
     this.QUANTITY,
     this.WareCode,
     this.WareName,
     this.IsActive});
     this.dgvMain.DataSource = this.bsMain;
     this.dgvMain.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvMain.Location = new System.Drawing.Point(0, 0);
     this.dgvMain.MultiSelect = false;
     this.dgvMain.Name = "dgvMain";
     this.dgvMain.ReadOnly = true;
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle4.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     dataGridViewCellStyle4.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle4.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle4.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgvMain.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;
     this.dgvMain.RowHeadersWidth = 30;
     this.dgvMain.RowTemplate.Height = 23;
     this.dgvMain.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvMain.Size = new System.Drawing.Size(1020, 132);
     this.dgvMain.TabIndex = 10;
     //
     // ShelfName
     //
     this.ShelfName.DataPropertyName = "ShelfName";
     this.ShelfName.HeaderText = "货架名称";
     this.ShelfName.Name = "ShelfName";
     this.ShelfName.ReadOnly = true;
     this.ShelfName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ShelfName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.ShelfName.Width = 80;
     //
     // CellCode
     //
     this.CellCode.DataPropertyName = "CellCode";
     this.CellCode.HeaderText = "货位编码";
     this.CellCode.Name = "CellCode";
     this.CellCode.ReadOnly = true;
     this.CellCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CellCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.CellCode.Width = 88;
     //
     // CellName
     //
     this.CellName.DataPropertyName = "CellName";
     this.CellName.FilteringEnabled = false;
     this.CellName.HeaderText = "货位名称";
     this.CellName.Name = "CellName";
     this.CellName.ReadOnly = true;
     this.CellName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // ProductCode
     //
     this.ProductCode.DataPropertyName = "ProductCode";
     this.ProductCode.HeaderText = "卷烟代码";
     this.ProductCode.Name = "ProductCode";
     this.ProductCode.ReadOnly = true;
     this.ProductCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ProductCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.ProductCode.Width = 80;
     //
     // ProductName
     //
     this.ProductName.DataPropertyName = "ProductName";
     this.ProductName.FilteringEnabled = false;
     this.ProductName.HeaderText = "卷烟名称";
     this.ProductName.Name = "ProductName";
     this.ProductName.ReadOnly = true;
     this.ProductName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ProductName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // QUANTITY
     //
     this.QUANTITY.DataPropertyName = "QuantityJian";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.QUANTITY.DefaultCellStyle = dataGridViewCellStyle3;
     this.QUANTITY.HeaderText = "卷烟数量";
     this.QUANTITY.Name = "QUANTITY";
     this.QUANTITY.ReadOnly = true;
     this.QUANTITY.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.QUANTITY.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.QUANTITY.Width = 95;
     //
     // WareCode
     //
     this.WareCode.DataPropertyName = "WareCode";
     this.WareCode.HeaderText = "仓库编码";
     this.WareCode.Name = "WareCode";
     this.WareCode.ReadOnly = true;
     this.WareCode.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.WareCode.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     this.WareCode.Width = 80;
     //
     // WareName
     //
     this.WareName.DataPropertyName = "WareName";
     this.WareName.FilteringEnabled = false;
     this.WareName.HeaderText = "仓库名称";
     this.WareName.Name = "WareName";
     this.WareName.ReadOnly = true;
     this.WareName.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Programmatic;
     //
     // IsActive
     //
     this.IsActive.DataPropertyName = "IsActive";
     this.IsActive.HeaderText = "是否可用";
     this.IsActive.Name = "IsActive";
     this.IsActive.ReadOnly = true;
     this.IsActive.Width = 80;
     //
     // button1
     //
     this.button1.BackColor = System.Drawing.Color.Gold;
     this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button1.Location = new System.Drawing.Point(150, 6);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(51, 23);
     this.button1.TabIndex = 11;
     this.button1.Text = "整托盘";
     this.button1.UseVisualStyleBackColor = false;
     this.button1.Visible = false;
     //
     // button2
     //
     this.button2.BackColor = System.Drawing.Color.RoyalBlue;
     this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button2.Location = new System.Drawing.Point(207, 6);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(51, 23);
     this.button2.TabIndex = 1;
     this.button2.Text = "半托盘";
     this.button2.UseVisualStyleBackColor = false;
     this.button2.Visible = false;
     //
     // button3
     //
     this.button3.BackColor = System.Drawing.Color.SpringGreen;
     this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button3.Location = new System.Drawing.Point(264, 6);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(51, 23);
     this.button3.TabIndex = 2;
     this.button3.Text = "空货位";
     this.button3.UseVisualStyleBackColor = false;
     this.button3.Visible = false;
     //
     // button4
     //
     this.button4.BackColor = System.Drawing.Color.Red;
     this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button4.Location = new System.Drawing.Point(321, 6);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(51, 23);
     this.button4.TabIndex = 12;
     this.button4.Text = "预警";
     this.button4.UseVisualStyleBackColor = false;
     this.button4.Visible = false;
     //
     // button5
     //
     this.button5.BackColor = System.Drawing.Color.White;
     this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.button5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.button5.Location = new System.Drawing.Point(264, 6);
     this.button5.Name = "button5";
     this.button5.Size = new System.Drawing.Size(51, 23);
     this.button5.TabIndex = 13;
     this.button5.Text = "空货位";
     this.button5.UseVisualStyleBackColor = false;
     this.button5.Visible = false;
     //
     // CellQueryForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1020, 275);
     this.Name = "CellQueryForm";
     this.Text = "CellQueryForm";
     this.pnlTool.ResumeLayout(false);
     this.pnlContent.ResumeLayout(false);
     this.pnlMain.ResumeLayout(false);
     this.pnlChart.ResumeLayout(false);
     this.pnlData.ResumeLayout(false);
     this.pnlProgress.ResumeLayout(false);
     this.pnlProgress.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvMain)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bsMain)).EndInit();
     this.ResumeLayout(false);
 }
예제 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ToolStripSeparator        toolStripSeparator1;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DXControl));
     this.ZoomSlider                    = new System.Windows.Forms.TrackBar();
     this.hScrollBar                    = new System.Windows.Forms.HScrollBar();
     this.vScrollBar                    = new System.Windows.Forms.VScrollBar();
     this.toolStrip                     = new System.Windows.Forms.ToolStrip();
     this.comboBoxMaps                  = new System.Windows.Forms.ToolStripComboBox();
     this.labelCoords                   = new System.Windows.Forms.ToolStripLabel();
     this.labelObject                   = new System.Windows.Forms.ToolStripLabel();
     this.toolStripLabelRegion          = new System.Windows.Forms.ToolStripLabel();
     this.contextMenuStrip              = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mobnameToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.importToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3           = new System.Windows.Forms.ToolStripSeparator();
     this.copyLocationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.filterMenuItem                = new System.Windows.Forms.ToolStripMenuItem();
     this.zoomToolStripMenuItem         = new System.Windows.Forms.ToolStripMenuItem();
     this.zoomInToolStripMenuItem       = new System.Windows.Forms.ToolStripMenuItem();
     this.zoomOutToolStripMenuItem      = new System.Windows.Forms.ToolStripMenuItem();
     this.resetZoomToolStripMenuItem    = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1         = new System.Windows.Forms.Panel();
     this.objectToolTip  = new System.Windows.Forms.ToolTip(this.components);
     toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).BeginInit();
     this.toolStrip.SuspendLayout();
     this.contextMenuStrip.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     resources.ApplyResources(toolStripSeparator1, "toolStripSeparator1");
     //
     // ZoomSlider
     //
     this.ZoomSlider.BackColor = System.Drawing.SystemColors.Control;
     resources.ApplyResources(this.ZoomSlider, "ZoomSlider");
     this.ZoomSlider.LargeChange   = 250;
     this.ZoomSlider.Maximum       = 1000;
     this.ZoomSlider.Minimum       = 50;
     this.ZoomSlider.Name          = "ZoomSlider";
     this.ZoomSlider.SmallChange   = 100;
     this.ZoomSlider.TabStop       = false;
     this.ZoomSlider.TickFrequency = 250;
     this.ZoomSlider.TickStyle     = System.Windows.Forms.TickStyle.None;
     this.ZoomSlider.Value         = 100;
     this.ZoomSlider.Scroll       += new System.EventHandler(this.Zoom_Scroll);
     //
     // hScrollBar
     //
     resources.ApplyResources(this.hScrollBar, "hScrollBar");
     this.hScrollBar.LargeChange = 0;
     this.hScrollBar.Maximum     = 0;
     this.hScrollBar.Name        = "hScrollBar";
     this.hScrollBar.SmallChange = 0;
     this.hScrollBar.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.hScrollBar_Scroll);
     //
     // vScrollBar
     //
     resources.ApplyResources(this.vScrollBar, "vScrollBar");
     this.vScrollBar.LargeChange = 0;
     this.vScrollBar.Maximum     = 0;
     this.vScrollBar.Name        = "vScrollBar";
     this.vScrollBar.SmallChange = 0;
     this.vScrollBar.Scroll     += new System.Windows.Forms.ScrollEventHandler(this.vScrollBar_Scroll);
     //
     // toolStrip
     //
     resources.ApplyResources(this.toolStrip, "toolStrip");
     this.toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.comboBoxMaps,
         this.labelCoords,
         this.labelObject,
         this.toolStripLabelRegion
     });
     this.toolStrip.Name    = "toolStrip";
     this.toolStrip.Stretch = true;
     //
     // comboBoxMaps
     //
     this.comboBoxMaps.Alignment     = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.comboBoxMaps.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxMaps.DropDownWidth = 200;
     resources.ApplyResources(this.comboBoxMaps, "comboBoxMaps");
     this.comboBoxMaps.Name = "comboBoxMaps";
     this.comboBoxMaps.SelectedIndexChanged += new System.EventHandler(this.comboBoxMaps_SelectionChangeCommitted);
     //
     // labelCoords
     //
     resources.ApplyResources(this.labelCoords, "labelCoords");
     this.labelCoords.Name = "labelCoords";
     //
     // labelObject
     //
     this.labelObject.Name = "labelObject";
     resources.ApplyResources(this.labelObject, "labelObject");
     //
     // toolStripLabelRegion
     //
     this.toolStripLabelRegion.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
     this.toolStripLabelRegion.Name      = "toolStripLabelRegion";
     resources.ApplyResources(this.toolStripLabelRegion, "toolStripLabelRegion");
     this.toolStripLabelRegion.Text = global::DOL.Tools.QuestDesigner.Properties.Resources.lblRegion;
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mobnameToolStripMenuItem,
         this.toolStripSeparator3,
         this.copyLocationToolStripMenuItem,
         this.filterMenuItem,
         this.zoomToolStripMenuItem
     });
     this.contextMenuStrip.Name = "contextMenuStrip";
     resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
     //
     // mobnameToolStripMenuItem
     //
     this.mobnameToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.importToolStripMenuItem
     });
     this.mobnameToolStripMenuItem.Name = "mobnameToolStripMenuItem";
     resources.ApplyResources(this.mobnameToolStripMenuItem, "mobnameToolStripMenuItem");
     //
     // importToolStripMenuItem
     //
     this.importToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.add;
     this.importToolStripMenuItem.Name  = "importToolStripMenuItem";
     resources.ApplyResources(this.importToolStripMenuItem, "importToolStripMenuItem");
     this.importToolStripMenuItem.Click += new System.EventHandler(this.importObjectToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     resources.ApplyResources(this.toolStripSeparator3, "toolStripSeparator3");
     //
     // copyLocationToolStripMenuItem
     //
     this.copyLocationToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.copy;
     this.copyLocationToolStripMenuItem.Name  = "copyLocationToolStripMenuItem";
     resources.ApplyResources(this.copyLocationToolStripMenuItem, "copyLocationToolStripMenuItem");
     this.copyLocationToolStripMenuItem.Click += new System.EventHandler(this.copyLocationToolStripMenuItem_Click);
     //
     // filterMenuItem
     //
     this.filterMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.searchNPC;
     this.filterMenuItem.Name  = "filterMenuItem";
     resources.ApplyResources(this.filterMenuItem, "filterMenuItem");
     //
     // zoomToolStripMenuItem
     //
     this.zoomToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.zoomInToolStripMenuItem,
         this.zoomOutToolStripMenuItem,
         toolStripSeparator1,
         this.resetZoomToolStripMenuItem
     });
     this.zoomToolStripMenuItem.Image = global::DOL.Tools.QuestDesigner.Properties.Resources.search;
     this.zoomToolStripMenuItem.Name  = "zoomToolStripMenuItem";
     resources.ApplyResources(this.zoomToolStripMenuItem, "zoomToolStripMenuItem");
     //
     // zoomInToolStripMenuItem
     //
     this.zoomInToolStripMenuItem.Name = "zoomInToolStripMenuItem";
     resources.ApplyResources(this.zoomInToolStripMenuItem, "zoomInToolStripMenuItem");
     this.zoomInToolStripMenuItem.Click += new System.EventHandler(this.zoomInToolStripMenuItem_Click);
     //
     // zoomOutToolStripMenuItem
     //
     this.zoomOutToolStripMenuItem.Name = "zoomOutToolStripMenuItem";
     resources.ApplyResources(this.zoomOutToolStripMenuItem, "zoomOutToolStripMenuItem");
     this.zoomOutToolStripMenuItem.Click += new System.EventHandler(this.zoomOutToolStripMenuItem_Click);
     //
     // resetZoomToolStripMenuItem
     //
     this.resetZoomToolStripMenuItem.Name = "resetZoomToolStripMenuItem";
     resources.ApplyResources(this.resetZoomToolStripMenuItem, "resetZoomToolStripMenuItem");
     this.resetZoomToolStripMenuItem.Click += new System.EventHandler(this.resetZoomToolStripMenuItem_Click);
     //
     // panel1
     //
     this.panel1.Controls.Add(this.ZoomSlider);
     this.panel1.Controls.Add(this.toolStrip);
     resources.ApplyResources(this.panel1, "panel1");
     this.panel1.Name = "panel1";
     //
     // DXControl
     //
     this.AutoValidate = System.Windows.Forms.AutoValidate.EnableAllowFocusChange;
     this.Controls.Add(this.vScrollBar);
     this.Controls.Add(this.hScrollBar);
     this.Controls.Add(this.panel1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     resources.ApplyResources(this, "$this");
     this.Name        = "DXControl";
     this.Load       += new System.EventHandler(this.DXControl_Load);
     this.MouseLeave += new System.EventHandler(this.DXControl_MouseLeave);
     this.Click      += new System.EventHandler(this.DXControl_Click);
     this.MouseMove  += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseMove);
     this.MouseDown  += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseDown);
     this.Resize     += new System.EventHandler(this.DXControl_Resize);
     this.MouseUp    += new System.Windows.Forms.MouseEventHandler(this.DXControl_MouseUp);
     this.MouseEnter += new System.EventHandler(this.DXControl_MouseEnter);
     this.KeyDown    += new System.Windows.Forms.KeyEventHandler(this.DXControl_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.ZoomSlider)).EndInit();
     this.toolStrip.ResumeLayout(false);
     this.toolStrip.PerformLayout();
     this.contextMenuStrip.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }