Exemplo n.º 1
1
        /// <summary>
        /// Constructor
        /// </summary>
        public AutoCompleteTextbox()
            : base()
        {
            entireList = new List<string>();
            matchingList = new List<string>();

            lboxSuggestions = new ListBox();
            lboxSuggestions.Name = "SuggestionListBox";
            lboxSuggestions.Font = this.Font;
            lboxSuggestions.Visible = true;
            lboxSuggestions.Dock = DockStyle.Fill;// make the listbox fill the panel
            lboxSuggestions.SelectionMode = SelectionMode.One;
            lboxSuggestions.KeyDown += new KeyEventHandler(listBox_KeyDown);
            lboxSuggestions.MouseClick += new MouseEventHandler(listBox_MouseClick);
            lboxSuggestions.DataSource = matchingList;// Bind matchingList as DataSource to the listbox

            this.GotFocus += new EventHandler(AutoCompleteTextbox_GotFocus);

            //Will hold listbox
            panel = new Panel();
            panel.Visible = false;
            panel.Font = this.Font;
            panel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            panel.ClientSize = new System.Drawing.Size(1, 1);
            panel.Name = "SuggestionPanel";
            panel.Padding = new System.Windows.Forms.Padding(0, 0, 0, 0);
            panel.Margin = new System.Windows.Forms.Padding(0, 0, 0, 0);
            panel.Text = "";
            panel.PerformLayout();
            if (!panel.Controls.Contains(lboxSuggestions)) { this.panel.Controls.Add(lboxSuggestions); }
        }
Exemplo n.º 2
0
        public MainForm()
        {
            const string filename = "DotGNU_Logo.png";

            //
            // Required for Windows Form Designer support
            //
            InitializeComponent();

            LoadOptions();

            if (!CreateDevelopers())
            {
                Environment.Exit(1);
            }

            // Display the form so that handles are created.
            Show();

            BackColor = Color.White;

            try
            {
                // Load the DotGNU logo

                PictureBox picture = new PictureBox();

                picture.Image = Image.FromFile(filename);

                mainPanel.Controls.Add(picture);
                picture.SendToBack();
                picture.Anchor   = AnchorStyles.None;
                picture.SizeMode = PictureBoxSizeMode.StretchImage;
                picture.Width    = 250;
                picture.Height   = (int)(picture.Width * ((double)picture.Image.Height / (double)picture.Image.Width));

                picture.Left = (mainPanel.Width - picture.Width) / 2;
                picture.Top  = (mainPanel.Height - picture.Height) / 2;
            }
            catch (FileNotFoundException)
            {
#if CONFIG_SMALL_CONSOLE
                Console.WriteLine("Warning: Couldn't find {0}", filename);
#else
                Console.Error.WriteLine("Warning: Couldn't find {0}", filename);
#endif
            }

            // Layout the developers.
            mainPanel.Layout += new LayoutEventHandler(DeveloperViews_Layout);
            mainPanel.PerformLayout();

            scrollSpinSpeed.Value = scrollSpinSpeed.Maximum / 2;
            UpdateSpin();

            StartControllers();
        }
Exemplo n.º 3
0
        Panel CreatePanelNoPrice(string name, string article, string countProd)
        {
            Panel panelMissingPart = new Panel();

            panelMissingPart              = new System.Windows.Forms.Panel();
            this.labelNameNoPrice         = new System.Windows.Forms.Label();
            this.labelArticleNoPrice      = new System.Windows.Forms.Label();
            this.labelCountProductNoPrice = new System.Windows.Forms.Label();


            // panelMissingPart
            //
            panelMissingPart.Controls.Add(this.labelCountProductNoPrice);
            panelMissingPart.Controls.Add(this.labelArticleNoPrice);
            panelMissingPart.Controls.Add(this.labelNameNoPrice);
            panelMissingPart.Location = new System.Drawing.Point(3, 421);
            panelMissingPart.Name     = "panelMissingPart";
            panelMissingPart.Size     = new System.Drawing.Size(535, 21);
            panelMissingPart.TabIndex = 4;
            //
            // labelNameNoPrice
            //
            this.labelNameNoPrice.AutoSize = true;
            this.labelNameNoPrice.Location = new System.Drawing.Point(10, 1);
            this.labelNameNoPrice.Name     = "labelNameNoPrice";
            this.labelNameNoPrice.Size     = new System.Drawing.Size(35, 13);
            this.labelNameNoPrice.TabIndex = 0;
            this.labelNameNoPrice.Text     = name;
            //
            // labelArticleNoPrice
            //
            this.labelArticleNoPrice.AutoSize = true;
            this.labelArticleNoPrice.Location = new System.Drawing.Point(340, 1);
            this.labelArticleNoPrice.Name     = "labelArticleNoPrice";
            this.labelArticleNoPrice.Size     = new System.Drawing.Size(35, 13);
            this.labelArticleNoPrice.TabIndex = 1;
            this.labelArticleNoPrice.Text     = article;
            //
            // labelCountProductNoPrice
            //
            this.labelCountProductNoPrice.AutoSize = true;
            this.labelCountProductNoPrice.Location = new System.Drawing.Point(400, -5);
            this.labelCountProductNoPrice.Name     = "labelCountProductNoPrice";
            this.labelCountProductNoPrice.Size     = new System.Drawing.Size(35, 13);
            this.labelCountProductNoPrice.TabIndex = 2;
            this.labelCountProductNoPrice.Text     = countProd;

            panelMissingPart.ResumeLayout(false);
            panelMissingPart.PerformLayout();
            panelMissingPart.SuspendLayout();


            this.flowLayoutPanel1.Controls.Add(panelMissingPart);

            return(panelMissingPart);
        }
Exemplo n.º 4
0
 protected override void OnLayout(LayoutEventArgs levent)
 {
     using (new LayoutSuspender(_picturePanel))
         using (new LayoutSuspender(_picturebox))
         {
             _picturePanel.Bounds = ClientRectangle;
             LayoutPicturePanel();
         }
     // Update the layout twice to adjust the scrollbars properly
     _picturePanel.PerformLayout();
     //_picturePanel.PerformLayout(  );
 }
Exemplo n.º 5
0
 private void InitializeComponent()
 {
     System.Windows.Forms.Panel panel;
     System.Windows.Forms.Label label;
     this._searchQuery = new System.Windows.Forms.TextBox();
     panel             = new System.Windows.Forms.Panel();
     label             = new System.Windows.Forms.Label();
     panel.SuspendLayout();
     this.SuspendLayout();
     //
     // panel
     //
     panel.Controls.Add(this._searchQuery);
     panel.Controls.Add(label);
     panel.Dock     = System.Windows.Forms.DockStyle.Fill;
     panel.Location = new System.Drawing.Point(0, 0);
     panel.Name     = "panel";
     panel.Size     = new System.Drawing.Size(352, 42);
     panel.TabIndex = 2;
     //
     // _searchQuery
     //
     this._searchQuery.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this._searchQuery.Location = new System.Drawing.Point(2, 20);
     this._searchQuery.Name     = "_searchQuery";
     this._searchQuery.Size     = new System.Drawing.Size(348, 20);
     this._searchQuery.TabIndex = 0;
     //
     // label
     //
     label.AutoSize = true;
     label.Location = new System.Drawing.Point(0, 4);
     label.Name     = "label";
     label.Size     = new System.Drawing.Size(102, 13);
     label.TabIndex = 1;
     label.Text     = "Search everywhere:";
     //
     // GoToAll
     //
     this.ClientSize = new System.Drawing.Size(352, 42);
     this.ControlBox = false;
     this.Controls.Add(panel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "GoToAll";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     panel.ResumeLayout(false);
     panel.PerformLayout();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// 初始化频谱显示控件
        /// </summary>
        private void InitScope()
        {
            scope1.Zooming.Mode             = DisplayZoomMode.XAxis;
            scope1.XAxis.MajorTicks.Mode    = MajorTicksMode.Auto;
            scope1.XAxis.Min.Tick.AutoScale = false;
            scope1.XAxis.Max.Tick.AutoScale = false;
            scope1.XAxis.AxisLabel.Text     = " MHz";

            scope1.XAxis.MajorTicks.StartFrom.Mode = MajorTicksMode.Override;

            // 隐藏网站panel -----------------
            Panel panel = new System.Windows.Forms.Panel();

            panel.SuspendLayout();
            panel.BackColor = System.Drawing.Color.Black;
            panel.Location  = new System.Drawing.Point(0, 0);
            panel.Size      = new System.Drawing.Size(584, 15);
            panel.ResumeLayout(false);
            panel.PerformLayout();
            scope1.Controls.Add(panel);

            //----------------------------------------------------------------------//

            scope1.Title.Text                = "";
            scope1.Labels[0].Visible         = false;
            scope1.YAxis.Max.DataValue       = 20;
            scope1.YAxis.Max.Value           = 20;
            scope1.YAxis.Min.DataValue       = -140;
            scope1.YAxis.Min.Value           = -140;
            scope1.YAxis.AutoScaling.Enabled = false;
            scope1.YAxis.AxisLabel.Text      = " dBm";
            scope1.YAxis.Reversed            = false;//有小到大(升)

            ///坐标精度
            scope1.YAxis.Format.FixedPrecision = true;                                //默认设置
            scope1.YAxis.Format.Precision      = 2;                                   //精度2位
            scope1.YAxis.Format.PrecisionMode  = Mitov.PlotLab.PrecisionMode.General; //一般
            ///网格刻线
            scope1.YAxis.DataView.Lines.Visible = true;



            scope1.Hold = false;

            scope1.RefreshInterval = ((uint)(100u));
        }
Exemplo n.º 7
0
        // the constructor
        public AutoCompleteTextbox()
        {
            MinTypedCharacters = 2;
            AutoCompleteList = new List<TextEntry>();

            _listBox = new ListBox
                      {
                          Name = "SuggestionListBox",
                          Font = Font,
                          Visible = true
                      };
            MaxDropDownItems = 16;
            RowHeight = GetStringHeight("H");
            _panel = new Panel
                    {
                        Visible = false,
                        AutoSizeMode = AutoSizeMode.GrowAndShrink,
                        ClientSize = new Size(1, 1),
                        Name = "SuggestionPanel",
                        Padding = new Padding(0, 0, 0, 0),
                        Margin = new Padding(0, 0, 0, 0),
                        BackColor = Color.Transparent,
                        ForeColor = Color.Transparent,
                        Text = ""
                    };
            _panel.PerformLayout();
            if (!_panel.Controls.Contains(_listBox))
            {
                _panel.Controls.Add(_listBox);
            }

            _listBox.Dock = DockStyle.Fill;
            _listBox.SelectionMode = SelectionMode.One;
            _listBox.KeyDown += ListBoxKeyDown;
            _listBox.MouseClick += ListBoxMouseClick;
            _listBox.MouseDoubleClick += ListBoxMouseDoubleClick;

            CurrentAutoCompleteList = new List<string>();
            _listBox.DataSource = CurrentAutoCompleteList;
            _oldText = Text;
        }
Exemplo n.º 8
0
        private void CreateResultTab_v2()
        {
            //pan_tab_result1 = new Panel();
            //pan_tab_result1.SuspendLayout();
            //pan_tab_result1.Dock = DockStyle.Fill;
            //pan_tab_result1.BackColor = Color.Aqua;
            ////pan_tab_result1.Visible = false;
            //pan_tab_result1.ResumeLayout(false);

            //pan_tab_result2 = new Panel();
            //pan_tab_result2.SuspendLayout();
            //pan_tab_result2.Dock = DockStyle.Fill;
            //pan_tab_result2.BackColor = Color.Beige;
            ////pan_tab_result2.Visible = false;
            //pan_tab_result2.ResumeLayout(false);

            //SystemColors.Control
            pan_tab_result1 = CreatePanel(DockStyle.Fill);  // Color.Aqua
            pan_tab_result2 = CreatePanel(DockStyle.Fill);  // Color.Beige
            pan_tab_result3 = CreatePanel(DockStyle.Fill);  // Color.AliceBlue
            pan_tab_result4 = CreatePanel(DockStyle.Fill);  // Color.AntiqueWhite
            pan_tab_result5 = CreatePanel(DockStyle.Fill);  // Color.BlueViolet

            pan_result_v2 = new Panel();
            pan_result_v2.SuspendLayout();
            pan_result_v2.Dock = DockStyle.Fill;
            //pan_result_v2.BackColor = SystemColors.ControlDark;
            pan_result_v2.BackColor = Color.Transparent;
            pan_result_v2.Controls.Add(pan_tab_result1);
            pan_result_v2.Controls.Add(pan_tab_result2);
            pan_result_v2.Controls.Add(pan_tab_result3);
            pan_result_v2.Controls.Add(pan_tab_result4);
            pan_result_v2.Controls.Add(pan_tab_result5);
            //this.Controls.Add(pan_result_v2);
            pan_result_v2.ResumeLayout(false);
            pan_result_v2.PerformLayout();

            ActivePanResult(1);
        }
Exemplo n.º 9
0
 private void InitializeComponent()
 {
     btnSetWeight   = new Button();
     btnBlend       = new Button();
     btnAdd         = new Button();
     btnSubtract    = new Button();
     btnLock        = new Button();
     lblBoneName    = new Label();
     btnRemove      = new Button();
     panel1         = new Panel();
     numMult        = new NumericInputBox();
     btnMult        = new Button();
     btnDiv         = new Button();
     numAdd         = new NumericInputBox();
     numWeight      = new NumericInputBox();
     btnPaste       = new Button();
     btnCopy        = new Button();
     lstBoneWeights = new RefreshableListBox();
     panel1.SuspendLayout();
     SuspendLayout();
     //
     // btnSetWeight
     //
     btnSetWeight.Enabled  = false;
     btnSetWeight.Location = new Drawing.Point(67, 28);
     btnSetWeight.Name     = "btnSetWeight";
     btnSetWeight.Size     = new Drawing.Size(61, 22);
     btnSetWeight.TabIndex = 2;
     btnSetWeight.Text     = "Set";
     btnSetWeight.UseVisualStyleBackColor = true;
     btnSetWeight.Click += btnSetWeight_Click;
     //
     // btnBlend
     //
     btnBlend.Location = new Drawing.Point(129, 28);
     btnBlend.Name     = "btnBlend";
     btnBlend.Size     = new Drawing.Size(62, 22);
     btnBlend.TabIndex = 4;
     btnBlend.Text     = "Blend";
     btnBlend.UseVisualStyleBackColor = true;
     btnBlend.Visible = false;
     btnBlend.Click  += btnBlend_Click;
     //
     // btnAdd
     //
     btnAdd.Enabled  = false;
     btnAdd.Location = new Drawing.Point(67, 52);
     btnAdd.Name     = "btnAdd";
     btnAdd.Size     = new Drawing.Size(30, 22);
     btnAdd.TabIndex = 7;
     btnAdd.Text     = "+";
     btnAdd.UseVisualStyleBackColor = true;
     btnAdd.Click += btnAdd_Click;
     //
     // btnSubtract
     //
     btnSubtract.Enabled  = false;
     btnSubtract.Location = new Drawing.Point(98, 52);
     btnSubtract.Name     = "btnSubtract";
     btnSubtract.Size     = new Drawing.Size(30, 22);
     btnSubtract.TabIndex = 8;
     btnSubtract.Text     = "-";
     btnSubtract.UseVisualStyleBackColor = true;
     btnSubtract.Click += btnSubtract_Click;
     //
     // btnLock
     //
     btnLock.Enabled  = false;
     btnLock.Location = new Drawing.Point(2, 4);
     btnLock.Name     = "btnLock";
     btnLock.Size     = new Drawing.Size(64, 22);
     btnLock.TabIndex = 10;
     btnLock.Text     = "Lock";
     btnLock.UseVisualStyleBackColor = true;
     btnLock.Click += btnLock_Click;
     //
     // lblBoneName
     //
     lblBoneName.AutoSize = true;
     lblBoneName.Location = new Drawing.Point(134, 9);
     lblBoneName.Name     = "lblBoneName";
     lblBoneName.Size     = new Drawing.Size(32, 13);
     lblBoneName.TabIndex = 11;
     lblBoneName.Text     = "Bone";
     //
     // btnRemove
     //
     btnRemove.Enabled  = false;
     btnRemove.Location = new Drawing.Point(67, 4);
     btnRemove.Name     = "btnRemove";
     btnRemove.Size     = new Drawing.Size(61, 22);
     btnRemove.TabIndex = 12;
     btnRemove.Text     = "Remove";
     btnRemove.UseVisualStyleBackColor = true;
     btnRemove.Click += btnRemoveBone_Click;
     //
     // panel1
     //
     panel1.Controls.Add(numMult);
     panel1.Controls.Add(btnMult);
     panel1.Controls.Add(btnDiv);
     panel1.Controls.Add(numAdd);
     panel1.Controls.Add(btnAdd);
     panel1.Controls.Add(numWeight);
     panel1.Controls.Add(btnBlend);
     panel1.Controls.Add(btnPaste);
     panel1.Controls.Add(btnSetWeight);
     panel1.Controls.Add(btnCopy);
     panel1.Controls.Add(btnSubtract);
     panel1.Controls.Add(btnLock);
     panel1.Controls.Add(lblBoneName);
     panel1.Controls.Add(btnRemove);
     panel1.Dock     = DockStyle.Fill;
     panel1.Location = new Drawing.Point(130, 0);
     panel1.Name     = "panel1";
     panel1.Size     = new Drawing.Size(130, 103);
     panel1.TabIndex = 14;
     //
     // numMult
     //
     numMult.Enabled      = false;
     numMult.Integral     = false;
     numMult.Location     = new Drawing.Point(3, 77);
     numMult.MaximumValue = 3.402823E+38F;
     numMult.MinimumValue = -3.402823E+38F;
     numMult.Name         = "numMult";
     numMult.Size         = new Drawing.Size(62, 20);
     numMult.TabIndex     = 16;
     numMult.Text         = "1.05";
     //
     // btnMult
     //
     btnMult.Enabled  = false;
     btnMult.Location = new Drawing.Point(67, 76);
     btnMult.Name     = "btnMult";
     btnMult.Size     = new Drawing.Size(30, 22);
     btnMult.TabIndex = 14;
     btnMult.Text     = "x";
     btnMult.UseVisualStyleBackColor = true;
     btnMult.Click += btnMult_Click;
     //
     // btnDiv
     //
     btnDiv.Enabled  = false;
     btnDiv.Location = new Drawing.Point(98, 76);
     btnDiv.Name     = "btnDiv";
     btnDiv.Size     = new Drawing.Size(30, 22);
     btnDiv.TabIndex = 15;
     btnDiv.Text     = "/";
     btnDiv.UseVisualStyleBackColor = true;
     btnDiv.Click += btnDiv_Click;
     //
     // numAdd
     //
     numAdd.Enabled      = false;
     numAdd.Integral     = false;
     numAdd.Location     = new Drawing.Point(3, 53);
     numAdd.MaximumValue = 3.402823E+38F;
     numAdd.MinimumValue = -3.402823E+38F;
     numAdd.Name         = "numAdd";
     numAdd.Size         = new Drawing.Size(62, 20);
     numAdd.TabIndex     = 13;
     numAdd.Text         = "10";
     //
     // numWeight
     //
     numWeight.Enabled       = false;
     numWeight.Integral      = false;
     numWeight.Location      = new Drawing.Point(3, 29);
     numWeight.MaximumValue  = 3.402823E+38F;
     numWeight.MinimumValue  = -3.402823E+38F;
     numWeight.Name          = "numWeight";
     numWeight.Size          = new Drawing.Size(62, 20);
     numWeight.TabIndex      = 3;
     numWeight.Text          = "100";
     numWeight.ValueChanged += numWeight_ValueChanged;
     //
     // btnPaste
     //
     btnPaste.Location = new Drawing.Point(129, 75);
     btnPaste.Name     = "btnPaste";
     btnPaste.Size     = new Drawing.Size(62, 22);
     btnPaste.TabIndex = 6;
     btnPaste.Text     = "Paste";
     btnPaste.UseVisualStyleBackColor = true;
     btnPaste.Visible = false;
     btnPaste.Click  += btnPaste_Click;
     //
     // btnCopy
     //
     btnCopy.Location = new Drawing.Point(129, 51);
     btnCopy.Name     = "btnCopy";
     btnCopy.Size     = new Drawing.Size(62, 22);
     btnCopy.TabIndex = 5;
     btnCopy.Text     = "Copy";
     btnCopy.UseVisualStyleBackColor = true;
     btnCopy.Visible = false;
     btnCopy.Click  += btnCopy_Click;
     //
     // lstBoneWeights
     //
     lstBoneWeights.Dock                  = DockStyle.Left;
     lstBoneWeights.DrawMode              = DrawMode.OwnerDrawFixed;
     lstBoneWeights.FormattingEnabled     = true;
     lstBoneWeights.IntegralHeight        = false;
     lstBoneWeights.Location              = new Drawing.Point(0, 0);
     lstBoneWeights.Name                  = "lstBoneWeights";
     lstBoneWeights.Size                  = new Drawing.Size(130, 103);
     lstBoneWeights.TabIndex              = 0;
     lstBoneWeights.DrawItem             += new DrawItemEventHandler(lstBoneWeights_DrawItem);
     lstBoneWeights.SelectedIndexChanged += lstBoneWeights_SelectedIndexChanged;
     //
     // WeightEditor
     //
     Controls.Add(panel1);
     Controls.Add(lstBoneWeights);
     MinimumSize = new Drawing.Size(260, 103);
     Name        = "WeightEditor";
     Size        = new Drawing.Size(260, 103);
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 10
0
        private void movePanels(Panel detailPanel)
        {
            int panelSeparation = 5;    //If you change these, you must also change them in the changePanels() above
            int initialX = 5;
            int currentY = GV.detailPanelInitialY;                // detailPanelInitialY is a class constant

            int verticlePosition = detailPanel.VerticalScroll.Value;
            Point autoScrollPosition = detailPanel.AutoScrollPosition;
            detailPanel.VerticalScroll.Value = 0;
            detailPanel.AutoScrollPosition = new Point(0, 0);
            for (int findSubPanelCounter = detailPanel.Controls.Count - 1; findSubPanelCounter > 0; findSubPanelCounter--)
            {
                Panel panel;
                Control detailControl2 = detailPanel.Controls[findSubPanelCounter];
                panel = detailControl2 as Panel;
                if (panel != null)
                {
                    if (panel.Visible)
                    {

                        panel.Location = new Point(initialX, currentY);
                        currentY += panel.Height + panelSeparation;
                    }
                }
            }
            if (verticlePosition > detailPanel.VerticalScroll.Maximum)                               //Handles the autoscrolling to put stuff back in position
            {
                detailPanel.VerticalScroll.Value = detailPanel.VerticalScroll.Maximum;
                detailPanel.AutoScrollPosition = new Point(0, detailPanel.VerticalScroll.Value * -1);
                detailPanel.PerformLayout();
            }
            else
            {
                detailPanel.AutoScrollPosition = autoScrollPosition;
                detailPanel.VerticalScroll.Value = verticlePosition;
                detailPanel.PerformLayout();
            }
        }
Exemplo n.º 11
0
        private void InitializeComponent()
        {
            components = new Container();
            dlgOpen    = new OpenFileDialog();
            dlgSave    = new SaveFileDialog();
#if !MONO
            folderBrowserDialog1 = new Ookii.Dialogs.VistaFolderBrowserDialog();
#else
            folderBrowserDialog1 = new FolderBrowserDialog();
#endif
            pnlKeyframes                   = new Panel();
            pnlBones                       = new Panel();
            lstBones                       = new CheckedListBox();
            boneTree                       = new TreeView();
            panel1                         = new Panel();
            txtSearchBone                  = new TextBox();
            chkContains                    = new CheckBox();
            chkFlat                        = new CheckBox();
            ctxBones                       = new ContextMenuStrip(components);
            nameToolStripMenuItem          = new ToolStripMenuItem();
            boneIndex                      = new ToolStripMenuItem();
            renameBoneToolStripMenuItem    = new ToolStripMenuItem();
            ctxBonesDivider1               = new ToolStripSeparator();
            addToParentToolStripMenuItem   = new ToolStripMenuItem();
            addToNextUpToolStripMenuItem   = new ToolStripMenuItem();
            addToNextDownToolStripMenuItem = new ToolStripMenuItem();
            ctxBonesDivider2               = new ToolStripSeparator();
            _moveUpToolStripMenuItem       = new ToolStripMenuItem();
            _moveDownToolStripMenuItem     = new ToolStripMenuItem();
            imageList1                     = new ImageList(components);
            pnlKeyframes.SuspendLayout();
            pnlBones.SuspendLayout();
            panel1.SuspendLayout();
            ctxBones.SuspendLayout();
            SuspendLayout();
            //
            // pnlKeyframes
            //
            pnlKeyframes.AutoScroll  = true;
            pnlKeyframes.BorderStyle = BorderStyle.Fixed3D;
            pnlKeyframes.Controls.Add(pnlBones);
            pnlKeyframes.Dock     = DockStyle.Fill;
            pnlKeyframes.Location = new Drawing.Point(0, 0);
            pnlKeyframes.Name     = "pnlKeyframes";
            pnlKeyframes.Size     = new Drawing.Size(164, 398);
            pnlKeyframes.TabIndex = 26;
            //
            // pnlBones
            //
            pnlBones.Controls.Add(lstBones);
            pnlBones.Controls.Add(boneTree);
            pnlBones.Controls.Add(panel1);
            pnlBones.Dock     = DockStyle.Fill;
            pnlBones.Location = new Drawing.Point(0, 0);
            pnlBones.Name     = "pnlBones";
            pnlBones.Size     = new Drawing.Size(160, 394);
            pnlBones.TabIndex = 10;
            //
            // lstBones
            //
            lstBones.Dock = DockStyle.Fill;
            lstBones.FormattingEnabled = true;
            lstBones.IntegralHeight    = false;
            lstBones.Location          = new Drawing.Point(0, 21);
            lstBones.Name                  = "lstBones";
            lstBones.Size                  = new Drawing.Size(160, 373);
            lstBones.TabIndex              = 32;
            lstBones.ItemCheck            += new ItemCheckEventHandler(lstBones_ItemCheck);
            lstBones.SelectedValueChanged += lstBones_SelectedValueChanged;
            lstBones.KeyDown              += new KeyEventHandler(lstBones_KeyDown);
            lstBones.MouseDown            += new MouseEventHandler(lstBones_MouseDown);
            //
            // boneTree
            //
            boneTree.CheckBoxes    = true;
            boneTree.Dock          = DockStyle.Fill;
            boneTree.FullRowSelect = true;
            boneTree.HideSelection = false;
            boneTree.HotTracking   = true;
            boneTree.Indent        = 14;
            boneTree.ItemHeight    = 16;
            boneTree.Location      = new Drawing.Point(0, 21);
            boneTree.Name          = "boneTree";
            boneTree.Size          = new Drawing.Size(160, 373);
            boneTree.TabIndex      = 29;
            boneTree.Visible       = false;
            boneTree.AfterCheck   += new TreeViewEventHandler(boneTree_AfterCheck);
            boneTree.AfterSelect  += new TreeViewEventHandler(boneTree_AfterSelect);
            boneTree.MouseDown    += new MouseEventHandler(lstBones_MouseDown);
            //
            // panel1
            //
            panel1.Controls.Add(txtSearchBone);
            panel1.Controls.Add(chkContains);
            panel1.Controls.Add(chkFlat);
            panel1.Dock     = DockStyle.Top;
            panel1.Location = new Drawing.Point(0, 0);
            panel1.Name     = "panel1";
            panel1.Size     = new Drawing.Size(160, 21);
            panel1.TabIndex = 31;
            //
            // txtSearchBone
            //
            txtSearchBone.Dock         = DockStyle.Fill;
            txtSearchBone.ForeColor    = Color.Gray;
            txtSearchBone.Location     = new Drawing.Point(44, 0);
            txtSearchBone.Name         = "txtSearchBone";
            txtSearchBone.Size         = new Drawing.Size(46, 20);
            txtSearchBone.TabIndex     = 30;
            txtSearchBone.Text         = "Search for a bone...";
            txtSearchBone.Visible      = false;
            txtSearchBone.TextChanged += textBox1_TextChanged;
            txtSearchBone.Enter       += textBox1_Enter;
            txtSearchBone.Leave       += textBox1_Leave;
            //
            // chkContains
            //
            chkContains.AutoSize = true;
            chkContains.Dock     = DockStyle.Right;
            chkContains.Location = new Drawing.Point(90, 0);
            chkContains.Margin   = new Padding(0);
            chkContains.Name     = "chkContains";
            chkContains.Padding  = new Padding(3, 0, 0, 0);
            chkContains.Size     = new Drawing.Size(70, 21);
            chkContains.TabIndex = 32;
            chkContains.Text     = "Contains";
            chkContains.UseVisualStyleBackColor = false;
            chkContains.Visible         = false;
            chkContains.CheckedChanged += chkContains_CheckedChanged;
            //
            // chkFlat
            //
            chkFlat.AutoSize   = true;
            chkFlat.Checked    = true;
            chkFlat.CheckState = CheckState.Checked;
            chkFlat.Dock       = DockStyle.Left;
            chkFlat.Location   = new Drawing.Point(0, 0);
            chkFlat.Margin     = new Padding(0);
            chkFlat.Name       = "chkFlat";
            chkFlat.Padding    = new Padding(1, 0, 0, 0);
            chkFlat.Size       = new Drawing.Size(44, 21);
            chkFlat.TabIndex   = 31;
            chkFlat.Text       = "Flat";
            chkFlat.UseVisualStyleBackColor = false;
            chkFlat.CheckedChanged         += chkFlat_CheckedChanged;
            //
            // ctxBones
            //
            ctxBones.Items.AddRange(new ToolStripItem[]
            {
                nameToolStripMenuItem,
                boneIndex,
                renameBoneToolStripMenuItem,
                ctxBonesDivider1,
                addToParentToolStripMenuItem,
                addToNextUpToolStripMenuItem,
                addToNextDownToolStripMenuItem,
                ctxBonesDivider2,
                _moveUpToolStripMenuItem,
                _moveDownToolStripMenuItem
            });
            ctxBones.Name = "ctxBones";
            ctxBones.Size = new Drawing.Size(175, 192);
            //
            // nameToolStripMenuItem
            //
            nameToolStripMenuItem.Enabled = false;
            nameToolStripMenuItem.Name    = "nameToolStripMenuItem";
            nameToolStripMenuItem.Size    = new Drawing.Size(174, 22);
            nameToolStripMenuItem.Text    = "<name>";
            //
            // boneIndex
            //
            boneIndex.Enabled = false;
            boneIndex.Name    = "boneIndex";
            boneIndex.Size    = new Drawing.Size(174, 22);
            boneIndex.Text    = "Bone Index";
            //
            // renameBoneToolStripMenuItem
            //
            renameBoneToolStripMenuItem.Name   = "renameBoneToolStripMenuItem";
            renameBoneToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            renameBoneToolStripMenuItem.Text   = "Rename";
            renameBoneToolStripMenuItem.Click += renameBoneToolStripMenuItem_Click;
            //
            // ctxBonesDivider1
            //
            ctxBonesDivider1.Name = "ctxBonesDivider1";
            ctxBonesDivider1.Size = new Drawing.Size(171, 6);
            //
            // addToParentToolStripMenuItem
            //
            addToParentToolStripMenuItem.Name   = "addToParentToolStripMenuItem";
            addToParentToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            addToParentToolStripMenuItem.Text   = "Add To Parent";
            addToParentToolStripMenuItem.Click += addToParentToolStripMenuItem_Click;
            //
            // addToNextUpToolStripMenuItem
            //
            addToNextUpToolStripMenuItem.Name   = "addToNextUpToolStripMenuItem";
            addToNextUpToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            addToNextUpToolStripMenuItem.Text   = "Add To Next Up";
            addToNextUpToolStripMenuItem.Click += addToNextUpToolStripMenuItem_Click;
            //
            // addToNextDownToolStripMenuItem
            //
            addToNextDownToolStripMenuItem.Name   = "addToNextDownToolStripMenuItem";
            addToNextDownToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            addToNextDownToolStripMenuItem.Text   = "Add To Next Down";
            addToNextDownToolStripMenuItem.Click += addToNextDownToolStripMenuItem_Click;
            //
            // ctxBonesDivider2
            //
            ctxBonesDivider2.Name = "ctxBonesDivider2";
            ctxBonesDivider2.Size = new Drawing.Size(171, 6);
            //
            // _moveUpToolStripMenuItem
            //
            _moveUpToolStripMenuItem.Name   = "_moveUpToolStripMenuItem";
            _moveUpToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            _moveUpToolStripMenuItem.Text   = "Move Up";
            _moveUpToolStripMenuItem.Click += _moveUpToolStripMenuItem_Click;
            //
            // _moveDownToolStripMenuItem
            //
            _moveDownToolStripMenuItem.Name   = "_moveDownToolStripMenuItem";
            _moveDownToolStripMenuItem.Size   = new Drawing.Size(174, 22);
            _moveDownToolStripMenuItem.Text   = "Move Down";
            _moveDownToolStripMenuItem.Click += _moveDownToolStripMenuItem_Click;
            //
            // imageList1
            //
            imageList1.ColorDepth       = ColorDepth.Depth8Bit;
            imageList1.ImageSize        = new Drawing.Size(16, 16);
            imageList1.TransparentColor = Color.Transparent;
            //
            // BonesPanel
            //
            Controls.Add(pnlKeyframes);
            Name         = "BonesPanel";
            Size         = new Drawing.Size(164, 398);
            SizeChanged += BonesPanel_SizeChanged;
            pnlKeyframes.ResumeLayout(false);
            pnlBones.ResumeLayout(false);
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            ctxBones.ResumeLayout(false);
            ResumeLayout(false);
        }
Exemplo n.º 12
0
        public static List <Panel> get1NivPanel()
        {
            List <Panel> panelList = new List <Panel>();

            System.Windows.Forms.Panel panel2 = new System.Windows.Forms.Panel();
            panel2.SuspendLayout();
            //instantiate items
            System.Windows.Forms.TextBox textBox3 = new System.Windows.Forms.TextBox();
            textBox3.Name = "stopnivU1";
            System.Windows.Forms.TextBox textBox4 = new System.Windows.Forms.TextBox();
            textBox4.Name = "startnivU1";
            System.Windows.Forms.DateTimePicker dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
            dateTimePicker3.Name = "stopniv1";
            System.Windows.Forms.DateTimePicker dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
            dateTimePicker4.Name = "startniv1";
            System.Windows.Forms.Label label4 = new System.Windows.Forms.Label();
            System.Windows.Forms.Label label5 = new System.Windows.Forms.Label();
            System.Windows.Forms.Label label6 = new System.Windows.Forms.Label();
            //initiate items
            textBox3.Location = new System.Drawing.Point(195, 23);

            textBox3.Size     = new System.Drawing.Size(39, 20);
            textBox3.TabIndex = 51;

            textBox4.Location = new System.Drawing.Point(195, 3);

            textBox4.Size     = new System.Drawing.Size(39, 20);
            textBox4.TabIndex = 50;

            dateTimePicker3.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
            dateTimePicker3.Location = new System.Drawing.Point(106, 23);

            dateTimePicker3.Size     = new System.Drawing.Size(83, 20);
            dateTimePicker3.TabIndex = 49;

            dateTimePicker4.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
            dateTimePicker4.Location = new System.Drawing.Point(106, 3);

            dateTimePicker4.Size     = new System.Drawing.Size(83, 20);
            dateTimePicker4.TabIndex = 48;

            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(38, 28);
            label4.Name     = "label1";
            label4.Size     = new System.Drawing.Size(62, 13);
            label4.TabIndex = 47;
            label4.Text     = "datum stop:";

            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(38, 3);
            label5.Name     = "label2";
            label5.Size     = new System.Drawing.Size(62, 13);
            label5.TabIndex = 46;
            label5.Text     = "datum start:";

            label6.AutoSize = true;
            label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label6.Location = new System.Drawing.Point(-4, 3);
            label6.Name     = "label3";
            label6.Size     = new System.Drawing.Size(36, 39);
            label6.TabIndex = 45;
            label6.Text     = Convert.ToString(1);
            //add to panel
            panel2.Controls.Add(textBox3);
            panel2.Controls.Add(textBox4);
            panel2.Controls.Add(dateTimePicker3);
            panel2.Controls.Add(dateTimePicker4);
            panel2.Controls.Add(label4);
            panel2.Controls.Add(label5);
            panel2.Controls.Add(label6);
            panel2.Location = new System.Drawing.Point(3, 3);
            panel2.Name     = "panel1";
            panel2.Size     = new System.Drawing.Size(243, 59);
            panel2.TabIndex = 0;

            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            panelList.Add(panel2);


            return(panelList);
        }
Exemplo n.º 13
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      MediaPortal.UserInterface.Controls.MPTabPage tabPage3;
      MediaPortal.UserInterface.Controls.MPGroupBox mpGroupBox3;
      MediaPortal.UserInterface.Controls.MPLabel mpLabel2;
      System.Windows.Forms.Panel panel1;
      MediaPortal.UserInterface.Controls.MPTabPage mpTabPage2;
      MediaPortal.UserInterface.Controls.MPLabel labelPlayAll;
      this.mpSubEngineCommentLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subEnginesCombo = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.advancedButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabelSubSelectMode = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subtitlesSelectionComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.label2 = new System.Windows.Forms.Label();
      this.subPaths = new System.Windows.Forms.TextBox();
      this.mpLabel3 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subPosRelativeCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.saveAlwaysRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.saveAskRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.saveNeverRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.delayTextBox = new MediaPortal.UserInterface.Controls.MPNumericTextBox();
      this.mpLabel4 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpGroupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.subStyleOverrideCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.opaqueBoxRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.borderOutlineRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.borderWidthUpDown = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
      this.shadowDepthUpDown = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
      this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel9 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subtitlesButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.subtitlesFontTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpLabel10 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
      this.fontDialog = new System.Windows.Forms.FontDialog();
      this.tabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBoxVideoAudioDelay = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.delayVideoTextBox = new System.Windows.Forms.NumericUpDown();
      this.mpLabelAVDelayTime = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabelAVDelay = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpGroupBoxComSkip = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.comSkipCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.chbKeepFoldersTogether = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.playedPercentageTB = new System.Windows.Forms.NumericUpDown();
      this.percentPlayedLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.comboBoxPlayAll = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.playedPercentageTrackBar = new System.Windows.Forms.TrackBar();
      this.checkBoxShowWatched = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.fileNameButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.folderNameTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.repeatPlaylistCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.folderNameLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.tabControl1 = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.mpTabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox4 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      streamLAVSelectionCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabelOptionLAV = new MediaPortal.UserInterface.Controls.MPLabel();
      audioDefaultCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabel7 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.defaultAudioLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.mpLabel8 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.defaultSubtitleLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      tabPage3 = new MediaPortal.UserInterface.Controls.MPTabPage();
      mpGroupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
      panel1 = new System.Windows.Forms.Panel();
      mpTabPage2 = new MediaPortal.UserInterface.Controls.MPTabPage();
      labelPlayAll = new MediaPortal.UserInterface.Controls.MPLabel();
      tabPage3.SuspendLayout();
      mpGroupBox3.SuspendLayout();
      this.mpGroupBox1.SuspendLayout();
      panel1.SuspendLayout();
      mpTabPage2.SuspendLayout();
      this.mpGroupBox2.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.borderWidthUpDown)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.shadowDepthUpDown)).BeginInit();
      this.tabPage1.SuspendLayout();
      this.mpGroupBoxVideoAudioDelay.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.delayVideoTextBox)).BeginInit();
      this.mpGroupBoxComSkip.SuspendLayout();
      this.groupBox1.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTB)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTrackBar)).BeginInit();
      this.tabControl1.SuspendLayout();
      this.mpTabPage1.SuspendLayout();
      this.mpGroupBox4.SuspendLayout();
      this.SuspendLayout();
      // 
      // tabPage3
      // 
      tabPage3.Controls.Add(mpGroupBox3);
      tabPage3.Controls.Add(this.mpGroupBox1);
      tabPage3.Location = new System.Drawing.Point(4, 22);
      tabPage3.Name = "tabPage3";
      tabPage3.Size = new System.Drawing.Size(464, 382);
      tabPage3.TabIndex = 7;
      tabPage3.Text = "Subtitle";
      tabPage3.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox3
      // 
      mpGroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      mpGroupBox3.Controls.Add(this.mpSubEngineCommentLabel);
      mpGroupBox3.Controls.Add(mpLabel2);
      mpGroupBox3.Controls.Add(this.subEnginesCombo);
      mpGroupBox3.Controls.Add(this.advancedButton);
      mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      mpGroupBox3.Location = new System.Drawing.Point(15, 12);
      mpGroupBox3.Name = "mpGroupBox3";
      mpGroupBox3.Size = new System.Drawing.Size(432, 104);
      mpGroupBox3.TabIndex = 1;
      mpGroupBox3.TabStop = false;
      mpGroupBox3.Text = "Engine";
      // 
      // mpSubEngineCommentLabel
      // 
      this.mpSubEngineCommentLabel.Location = new System.Drawing.Point(17, 74);
      this.mpSubEngineCommentLabel.Name = "mpSubEngineCommentLabel";
      this.mpSubEngineCommentLabel.Size = new System.Drawing.Size(409, 24);
      this.mpSubEngineCommentLabel.TabIndex = 16;
      this.mpSubEngineCommentLabel.Text = "* - FFDShow Tryout revision 3640 or greater needed";
      // 
      // mpLabel2
      // 
      mpLabel2.Location = new System.Drawing.Point(13, 23);
      mpLabel2.Name = "mpLabel2";
      mpLabel2.Size = new System.Drawing.Size(199, 16);
      mpLabel2.TabIndex = 10;
      mpLabel2.Text = "Select subtitles engine:";
      // 
      // subEnginesCombo
      // 
      this.subEnginesCombo.BorderColor = System.Drawing.Color.Empty;
      this.subEnginesCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.subEnginesCombo.FormattingEnabled = true;
      this.subEnginesCombo.Items.AddRange(new object[] {
            "MPC-HC",
            "DirectVobSub",
            "FFDShow",
            "XySubFilter",
            "Disabled"});
      this.subEnginesCombo.Location = new System.Drawing.Point(16, 46);
      this.subEnginesCombo.Name = "subEnginesCombo";
      this.subEnginesCombo.Size = new System.Drawing.Size(246, 21);
      this.subEnginesCombo.TabIndex = 7;
      this.subEnginesCombo.SelectedIndexChanged += new System.EventHandler(this.subEnginesCombo_SelectedIndexChanged);
      // 
      // advancedButton
      // 
      this.advancedButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.advancedButton.Location = new System.Drawing.Point(337, 46);
      this.advancedButton.Name = "advancedButton";
      this.advancedButton.Size = new System.Drawing.Size(72, 22);
      this.advancedButton.TabIndex = 6;
      this.advancedButton.Text = "Advanced";
      this.advancedButton.UseVisualStyleBackColor = true;
      this.advancedButton.Click += new System.EventHandler(this.advancedButton_Click);
      // 
      // mpGroupBox1
      // 
      this.mpGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox1.Controls.Add(this.mpLabelSubSelectMode);
      this.mpGroupBox1.Controls.Add(this.subtitlesSelectionComboBox);
      this.mpGroupBox1.Controls.Add(this.label2);
      this.mpGroupBox1.Controls.Add(this.subPaths);
      this.mpGroupBox1.Controls.Add(this.mpLabel3);
      this.mpGroupBox1.Controls.Add(this.subPosRelativeCheckBox);
      this.mpGroupBox1.Controls.Add(panel1);
      this.mpGroupBox1.Controls.Add(this.mpLabel6);
      this.mpGroupBox1.Controls.Add(this.mpLabel5);
      this.mpGroupBox1.Controls.Add(this.delayTextBox);
      this.mpGroupBox1.Controls.Add(this.mpLabel4);
      this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox1.Location = new System.Drawing.Point(15, 119);
      this.mpGroupBox1.Name = "mpGroupBox1";
      this.mpGroupBox1.Size = new System.Drawing.Size(432, 260);
      this.mpGroupBox1.TabIndex = 0;
      this.mpGroupBox1.TabStop = false;
      this.mpGroupBox1.Text = "Options";
      // 
      // mpLabelSubSelectMode
      // 
      this.mpLabelSubSelectMode.Location = new System.Drawing.Point(14, 20);
      this.mpLabelSubSelectMode.Name = "mpLabelSubSelectMode";
      this.mpLabelSubSelectMode.Size = new System.Drawing.Size(175, 16);
      this.mpLabelSubSelectMode.TabIndex = 19;
      this.mpLabelSubSelectMode.Text = "Subtitles mode selection:";
      // 
      // subtitlesSelectionComboBox
      // 
      this.subtitlesSelectionComboBox.BorderColor = System.Drawing.Color.Empty;
      this.subtitlesSelectionComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.subtitlesSelectionComboBox.FormattingEnabled = true;
      this.subtitlesSelectionComboBox.Items.AddRange(new object[] {
            "Subtitles won\'t be auto loaded",
            "Subtitles will be auto loaded by language preference",
            "Subtitles will be auto loaded by first available",
            "Subtitles will only display forced subtitles *"});
      this.subtitlesSelectionComboBox.Location = new System.Drawing.Point(16, 39);
      this.subtitlesSelectionComboBox.Name = "subtitlesSelectionComboBox";
      this.subtitlesSelectionComboBox.Size = new System.Drawing.Size(393, 21);
      this.subtitlesSelectionComboBox.TabIndex = 18;
      // 
      // label2
      // 
      this.label2.AutoSize = true;
      this.label2.Location = new System.Drawing.Point(13, 92);
      this.label2.Name = "label2";
      this.label2.Size = new System.Drawing.Size(81, 13);
      this.label2.TabIndex = 17;
      this.label2.Text = "Subtitle paths: *";
      // 
      // subPaths
      // 
      this.subPaths.Location = new System.Drawing.Point(100, 89);
      this.subPaths.Name = "subPaths";
      this.subPaths.Size = new System.Drawing.Size(309, 20);
      this.subPaths.TabIndex = 16;
      // 
      // mpLabel3
      // 
      this.mpLabel3.Location = new System.Drawing.Point(13, 207);
      this.mpLabel3.Name = "mpLabel3";
      this.mpLabel3.Size = new System.Drawing.Size(396, 36);
      this.mpLabel3.TabIndex = 15;
      this.mpLabel3.Text = "* - supported by MPC-HC engine only / using forced sub option, all other subtitle" +
    "s are available for switching (except idx/sub format)";
      // 
      // subPosRelativeCheckBox
      // 
      this.subPosRelativeCheckBox.AutoSize = true;
      this.subPosRelativeCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.subPosRelativeCheckBox.Location = new System.Drawing.Point(16, 66);
      this.subPosRelativeCheckBox.Name = "subPosRelativeCheckBox";
      this.subPosRelativeCheckBox.Size = new System.Drawing.Size(193, 17);
      this.subPosRelativeCheckBox.TabIndex = 14;
      this.subPosRelativeCheckBox.Text = "Position relative to the video frame *";
      this.subPosRelativeCheckBox.UseVisualStyleBackColor = true;
      // 
      // panel1
      // 
      panel1.Controls.Add(this.saveAlwaysRadioButton);
      panel1.Controls.Add(this.saveAskRadioButton);
      panel1.Controls.Add(this.saveNeverRadioButton);
      panel1.Location = new System.Drawing.Point(16, 168);
      panel1.Name = "panel1";
      panel1.Size = new System.Drawing.Size(246, 26);
      panel1.TabIndex = 13;
      // 
      // saveAlwaysRadioButton
      // 
      this.saveAlwaysRadioButton.AutoSize = true;
      this.saveAlwaysRadioButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.saveAlwaysRadioButton.Location = new System.Drawing.Point(173, 1);
      this.saveAlwaysRadioButton.Name = "saveAlwaysRadioButton";
      this.saveAlwaysRadioButton.Size = new System.Drawing.Size(57, 17);
      this.saveAlwaysRadioButton.TabIndex = 12;
      this.saveAlwaysRadioButton.Text = "Always";
      this.saveAlwaysRadioButton.UseVisualStyleBackColor = true;
      // 
      // saveAskRadioButton
      // 
      this.saveAskRadioButton.AutoSize = true;
      this.saveAskRadioButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.saveAskRadioButton.Location = new System.Drawing.Point(98, 1);
      this.saveAskRadioButton.Name = "saveAskRadioButton";
      this.saveAskRadioButton.Size = new System.Drawing.Size(42, 17);
      this.saveAskRadioButton.TabIndex = 11;
      this.saveAskRadioButton.Text = "Ask";
      this.saveAskRadioButton.UseVisualStyleBackColor = true;
      // 
      // saveNeverRadioButton
      // 
      this.saveNeverRadioButton.AutoSize = true;
      this.saveNeverRadioButton.Checked = true;
      this.saveNeverRadioButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.saveNeverRadioButton.Location = new System.Drawing.Point(18, 1);
      this.saveNeverRadioButton.Name = "saveNeverRadioButton";
      this.saveNeverRadioButton.Size = new System.Drawing.Size(53, 17);
      this.saveNeverRadioButton.TabIndex = 10;
      this.saveNeverRadioButton.TabStop = true;
      this.saveNeverRadioButton.Text = "Never";
      this.saveNeverRadioButton.UseVisualStyleBackColor = true;
      // 
      // mpLabel6
      // 
      this.mpLabel6.Location = new System.Drawing.Point(13, 149);
      this.mpLabel6.Name = "mpLabel6";
      this.mpLabel6.Size = new System.Drawing.Size(199, 16);
      this.mpLabel6.TabIndex = 9;
      this.mpLabel6.Text = "Autosave modified subtitles: *";
      // 
      // mpLabel5
      // 
      this.mpLabel5.Location = new System.Drawing.Point(196, 125);
      this.mpLabel5.Name = "mpLabel5";
      this.mpLabel5.Size = new System.Drawing.Size(25, 16);
      this.mpLabel5.TabIndex = 8;
      this.mpLabel5.Text = "ms";
      // 
      // delayTextBox
      // 
      this.delayTextBox.Location = new System.Drawing.Point(143, 122);
      this.delayTextBox.Name = "delayTextBox";
      this.delayTextBox.Size = new System.Drawing.Size(46, 20);
      this.delayTextBox.TabIndex = 7;
      this.delayTextBox.Text = "250";
      this.delayTextBox.Value = 250;
      // 
      // mpLabel4
      // 
      this.mpLabel4.Location = new System.Drawing.Point(13, 125);
      this.mpLabel4.Name = "mpLabel4";
      this.mpLabel4.Size = new System.Drawing.Size(107, 16);
      this.mpLabel4.TabIndex = 6;
      this.mpLabel4.Text = "Delay interval:";
      // 
      // mpTabPage2
      // 
      mpTabPage2.Controls.Add(this.mpGroupBox2);
      mpTabPage2.Location = new System.Drawing.Point(4, 22);
      mpTabPage2.Name = "mpTabPage2";
      mpTabPage2.Size = new System.Drawing.Size(464, 382);
      mpTabPage2.TabIndex = 10;
      mpTabPage2.Text = "Subtitle (cont)";
      mpTabPage2.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox2
      // 
      this.mpGroupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox2.Controls.Add(this.subStyleOverrideCheckBox);
      this.mpGroupBox2.Controls.Add(this.opaqueBoxRadioButton);
      this.mpGroupBox2.Controls.Add(this.borderOutlineRadioButton);
      this.mpGroupBox2.Controls.Add(this.borderWidthUpDown);
      this.mpGroupBox2.Controls.Add(this.shadowDepthUpDown);
      this.mpGroupBox2.Controls.Add(this.mpLabel1);
      this.mpGroupBox2.Controls.Add(this.mpLabel9);
      this.mpGroupBox2.Controls.Add(this.subtitlesButton);
      this.mpGroupBox2.Controls.Add(this.subtitlesFontTextBox);
      this.mpGroupBox2.Controls.Add(this.mpLabel10);
      this.mpGroupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox2.Location = new System.Drawing.Point(15, 12);
      this.mpGroupBox2.Name = "mpGroupBox2";
      this.mpGroupBox2.Size = new System.Drawing.Size(432, 171);
      this.mpGroupBox2.TabIndex = 1;
      this.mpGroupBox2.TabStop = false;
      this.mpGroupBox2.Text = "Style";
      // 
      // subStyleOverrideCheckBox
      // 
      this.subStyleOverrideCheckBox.AutoSize = true;
      this.subStyleOverrideCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.subStyleOverrideCheckBox.Location = new System.Drawing.Point(16, 146);
      this.subStyleOverrideCheckBox.Name = "subStyleOverrideCheckBox";
      this.subStyleOverrideCheckBox.Size = new System.Drawing.Size(160, 17);
      this.subStyleOverrideCheckBox.TabIndex = 15;
      this.subStyleOverrideCheckBox.Text = "Override ASS subtitles style *";
      this.subStyleOverrideCheckBox.UseVisualStyleBackColor = true;
      // 
      // opaqueBoxRadioButton
      // 
      this.opaqueBoxRadioButton.AutoSize = true;
      this.opaqueBoxRadioButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.opaqueBoxRadioButton.Location = new System.Drawing.Point(24, 121);
      this.opaqueBoxRadioButton.Name = "opaqueBoxRadioButton";
      this.opaqueBoxRadioButton.RightToLeft = System.Windows.Forms.RightToLeft.No;
      this.opaqueBoxRadioButton.Size = new System.Drawing.Size(82, 17);
      this.opaqueBoxRadioButton.TabIndex = 8;
      this.opaqueBoxRadioButton.Text = "Opaque box";
      this.opaqueBoxRadioButton.UseVisualStyleBackColor = true;
      // 
      // borderOutlineRadioButton
      // 
      this.borderOutlineRadioButton.AutoSize = true;
      this.borderOutlineRadioButton.Checked = true;
      this.borderOutlineRadioButton.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.borderOutlineRadioButton.Location = new System.Drawing.Point(24, 98);
      this.borderOutlineRadioButton.Name = "borderOutlineRadioButton";
      this.borderOutlineRadioButton.Size = new System.Drawing.Size(57, 17);
      this.borderOutlineRadioButton.TabIndex = 7;
      this.borderOutlineRadioButton.TabStop = true;
      this.borderOutlineRadioButton.Text = "Outline";
      this.borderOutlineRadioButton.UseVisualStyleBackColor = true;
      // 
      // borderWidthUpDown
      // 
      this.borderWidthUpDown.Location = new System.Drawing.Point(133, 78);
      this.borderWidthUpDown.Name = "borderWidthUpDown";
      this.borderWidthUpDown.Size = new System.Drawing.Size(79, 20);
      this.borderWidthUpDown.TabIndex = 12;
      this.borderWidthUpDown.Value = new decimal(new int[] {
            2,
            0,
            0,
            0});
      // 
      // shadowDepthUpDown
      // 
      this.shadowDepthUpDown.Location = new System.Drawing.Point(133, 52);
      this.shadowDepthUpDown.Name = "shadowDepthUpDown";
      this.shadowDepthUpDown.Size = new System.Drawing.Size(79, 20);
      this.shadowDepthUpDown.TabIndex = 11;
      this.shadowDepthUpDown.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
      // 
      // mpLabel1
      // 
      this.mpLabel1.AutoSize = true;
      this.mpLabel1.Location = new System.Drawing.Point(13, 54);
      this.mpLabel1.Name = "mpLabel1";
      this.mpLabel1.Size = new System.Drawing.Size(81, 13);
      this.mpLabel1.TabIndex = 10;
      this.mpLabel1.Text = "Shadow Depth:";
      // 
      // mpLabel9
      // 
      this.mpLabel9.AutoSize = true;
      this.mpLabel9.Location = new System.Drawing.Point(13, 80);
      this.mpLabel9.Name = "mpLabel9";
      this.mpLabel9.Size = new System.Drawing.Size(72, 13);
      this.mpLabel9.TabIndex = 9;
      this.mpLabel9.Text = "Border Width:";
      // 
      // subtitlesButton
      // 
      this.subtitlesButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.subtitlesButton.Location = new System.Drawing.Point(337, 18);
      this.subtitlesButton.Name = "subtitlesButton";
      this.subtitlesButton.Size = new System.Drawing.Size(72, 22);
      this.subtitlesButton.TabIndex = 6;
      this.subtitlesButton.Text = "Browse";
      this.subtitlesButton.UseVisualStyleBackColor = true;
      this.subtitlesButton.Click += new System.EventHandler(this.subtitlesButton_Click);
      // 
      // subtitlesFontTextBox
      // 
      this.subtitlesFontTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.subtitlesFontTextBox.BorderColor = System.Drawing.Color.Empty;
      this.subtitlesFontTextBox.Location = new System.Drawing.Point(129, 19);
      this.subtitlesFontTextBox.Name = "subtitlesFontTextBox";
      this.subtitlesFontTextBox.ReadOnly = true;
      this.subtitlesFontTextBox.Size = new System.Drawing.Size(200, 20);
      this.subtitlesFontTextBox.TabIndex = 5;
      // 
      // mpLabel10
      // 
      this.mpLabel10.Location = new System.Drawing.Point(13, 22);
      this.mpLabel10.Name = "mpLabel10";
      this.mpLabel10.Size = new System.Drawing.Size(107, 16);
      this.mpLabel10.TabIndex = 4;
      this.mpLabel10.Text = "Display font:";
      // 
      // labelPlayAll
      // 
      labelPlayAll.AutoSize = true;
      labelPlayAll.Location = new System.Drawing.Point(17, 208);
      labelPlayAll.Name = "labelPlayAll";
      labelPlayAll.Size = new System.Drawing.Size(191, 13);
      labelPlayAll.TabIndex = 11;
      labelPlayAll.Text = "Play all videos inside folder (play order):";
      // 
      // tabPage1
      // 
      this.tabPage1.Controls.Add(this.mpGroupBoxVideoAudioDelay);
      this.tabPage1.Controls.Add(this.mpGroupBoxComSkip);
      this.tabPage1.Controls.Add(this.groupBox1);
      this.tabPage1.Location = new System.Drawing.Point(4, 22);
      this.tabPage1.Name = "tabPage1";
      this.tabPage1.Size = new System.Drawing.Size(464, 382);
      this.tabPage1.TabIndex = 0;
      this.tabPage1.Text = "General";
      this.tabPage1.UseVisualStyleBackColor = true;
      // 
      // mpGroupBoxVideoAudioDelay
      // 
      this.mpGroupBoxVideoAudioDelay.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBoxVideoAudioDelay.Controls.Add(this.delayVideoTextBox);
      this.mpGroupBoxVideoAudioDelay.Controls.Add(this.mpLabelAVDelayTime);
      this.mpGroupBoxVideoAudioDelay.Controls.Add(this.mpLabelAVDelay);
      this.mpGroupBoxVideoAudioDelay.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBoxVideoAudioDelay.Location = new System.Drawing.Point(16, 316);
      this.mpGroupBoxVideoAudioDelay.Name = "mpGroupBoxVideoAudioDelay";
      this.mpGroupBoxVideoAudioDelay.Size = new System.Drawing.Size(432, 49);
      this.mpGroupBoxVideoAudioDelay.TabIndex = 12;
      this.mpGroupBoxVideoAudioDelay.TabStop = false;
      this.mpGroupBoxVideoAudioDelay.Text = "Video/Audio Delay";
      // 
      // delayVideoTextBox
      // 
      this.delayVideoTextBox.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.delayVideoTextBox.Location = new System.Drawing.Point(148, 18);
      this.delayVideoTextBox.Minimum = new decimal(new int[] {
            10,
            0,
            0,
            0});
      this.delayVideoTextBox.Name = "delayVideoTextBox";
      this.delayVideoTextBox.Size = new System.Drawing.Size(52, 20);
      this.delayVideoTextBox.TabIndex = 16;
      this.delayVideoTextBox.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
      // 
      // mpLabelAVDelayTime
      // 
      this.mpLabelAVDelayTime.Location = new System.Drawing.Point(200, 22);
      this.mpLabelAVDelayTime.Name = "mpLabelAVDelayTime";
      this.mpLabelAVDelayTime.Size = new System.Drawing.Size(25, 16);
      this.mpLabelAVDelayTime.TabIndex = 15;
      this.mpLabelAVDelayTime.Text = "ms";
      // 
      // mpLabelAVDelay
      // 
      this.mpLabelAVDelay.Location = new System.Drawing.Point(17, 22);
      this.mpLabelAVDelay.Name = "mpLabelAVDelay";
      this.mpLabelAVDelay.Size = new System.Drawing.Size(107, 16);
      this.mpLabelAVDelay.TabIndex = 13;
      this.mpLabelAVDelay.Text = "Delay interval:";
      // 
      // mpGroupBoxComSkip
      // 
      this.mpGroupBoxComSkip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBoxComSkip.Controls.Add(this.comSkipCheckBox);
      this.mpGroupBoxComSkip.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBoxComSkip.Location = new System.Drawing.Point(16, 261);
      this.mpGroupBoxComSkip.Name = "mpGroupBoxComSkip";
      this.mpGroupBoxComSkip.Size = new System.Drawing.Size(432, 49);
      this.mpGroupBoxComSkip.TabIndex = 11;
      this.mpGroupBoxComSkip.TabStop = false;
      this.mpGroupBoxComSkip.Text = "Commercial skip";
      // 
      // comSkipCheckBox
      // 
      this.comSkipCheckBox.AutoSize = true;
      this.comSkipCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.comSkipCheckBox.Location = new System.Drawing.Point(19, 20);
      this.comSkipCheckBox.Name = "comSkipCheckBox";
      this.comSkipCheckBox.Size = new System.Drawing.Size(354, 17);
      this.comSkipCheckBox.TabIndex = 8;
      this.comSkipCheckBox.Text = "Automatically skip commercials for videos with ComSkip data available";
      this.comSkipCheckBox.UseVisualStyleBackColor = true;
      // 
      // 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.chbKeepFoldersTogether);
      this.groupBox1.Controls.Add(this.playedPercentageTB);
      this.groupBox1.Controls.Add(this.percentPlayedLabel);
      this.groupBox1.Controls.Add(labelPlayAll);
      this.groupBox1.Controls.Add(this.comboBoxPlayAll);
      this.groupBox1.Controls.Add(this.playedPercentageTrackBar);
      this.groupBox1.Controls.Add(this.checkBoxShowWatched);
      this.groupBox1.Controls.Add(this.fileNameButton);
      this.groupBox1.Controls.Add(this.folderNameTextBox);
      this.groupBox1.Controls.Add(this.repeatPlaylistCheckBox);
      this.groupBox1.Controls.Add(this.folderNameLabel);
      this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBox1.Location = new System.Drawing.Point(16, 16);
      this.groupBox1.Name = "groupBox1";
      this.groupBox1.Size = new System.Drawing.Size(432, 239);
      this.groupBox1.TabIndex = 0;
      this.groupBox1.TabStop = false;
      this.groupBox1.Text = "Settings";
      // 
      // chbKeepFoldersTogether
      // 
      this.chbKeepFoldersTogether.AutoSize = true;
      this.chbKeepFoldersTogether.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.chbKeepFoldersTogether.Location = new System.Drawing.Point(19, 100);
      this.chbKeepFoldersTogether.Name = "chbKeepFoldersTogether";
      this.chbKeepFoldersTogether.Size = new System.Drawing.Size(209, 17);
      this.chbKeepFoldersTogether.TabIndex = 15;
      this.chbKeepFoldersTogether.Text = "Keep DVD and BluRay folders together";
      this.chbKeepFoldersTogether.UseVisualStyleBackColor = true;
      // 
      // playedPercentageTB
      // 
      this.playedPercentageTB.Enabled = false;
      this.playedPercentageTB.Location = new System.Drawing.Point(352, 154);
      this.playedPercentageTB.Name = "playedPercentageTB";
      this.playedPercentageTB.Size = new System.Drawing.Size(48, 20);
      this.playedPercentageTB.TabIndex = 14;
      this.playedPercentageTB.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
      this.playedPercentageTB.Value = new decimal(new int[] {
            95,
            0,
            0,
            0});
      this.playedPercentageTB.ValueChanged += new System.EventHandler(this.playedPercentageTB_ValueChanged);
      // 
      // percentPlayedLabel
      // 
      this.percentPlayedLabel.Location = new System.Drawing.Point(34, 131);
      this.percentPlayedLabel.Name = "percentPlayedLabel";
      this.percentPlayedLabel.Size = new System.Drawing.Size(299, 18);
      this.percentPlayedLabel.TabIndex = 13;
      this.percentPlayedLabel.Text = "Played time percentage needed to mark video as watched";
      // 
      // comboBoxPlayAll
      // 
      this.comboBoxPlayAll.BorderColor = System.Drawing.Color.Empty;
      this.comboBoxPlayAll.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.comboBoxPlayAll.FormattingEnabled = true;
      this.comboBoxPlayAll.Items.AddRange(new object[] {
            "By Name",
            "By Date",
            "Shuffle",
            "Always ask"});
      this.comboBoxPlayAll.Location = new System.Drawing.Point(226, 205);
      this.comboBoxPlayAll.Name = "comboBoxPlayAll";
      this.comboBoxPlayAll.Size = new System.Drawing.Size(185, 21);
      this.comboBoxPlayAll.TabIndex = 8;
      // 
      // playedPercentageTrackBar
      // 
      this.playedPercentageTrackBar.BackColor = System.Drawing.Color.White;
      this.playedPercentageTrackBar.Enabled = false;
      this.playedPercentageTrackBar.Location = new System.Drawing.Point(26, 154);
      this.playedPercentageTrackBar.Maximum = 100;
      this.playedPercentageTrackBar.Name = "playedPercentageTrackBar";
      this.playedPercentageTrackBar.Size = new System.Drawing.Size(320, 45);
      this.playedPercentageTrackBar.TabIndex = 5;
      this.playedPercentageTrackBar.TickFrequency = 5;
      this.playedPercentageTrackBar.Value = 95;
      this.playedPercentageTrackBar.Scroll += new System.EventHandler(this.playedPercentageTrackBar_Scroll);
      // 
      // checkBoxShowWatched
      // 
      this.checkBoxShowWatched.AutoSize = true;
      this.checkBoxShowWatched.Checked = true;
      this.checkBoxShowWatched.CheckState = System.Windows.Forms.CheckState.Checked;
      this.checkBoxShowWatched.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxShowWatched.Location = new System.Drawing.Point(19, 77);
      this.checkBoxShowWatched.Name = "checkBoxShowWatched";
      this.checkBoxShowWatched.Size = new System.Drawing.Size(381, 17);
      this.checkBoxShowWatched.TabIndex = 6;
      this.checkBoxShowWatched.Text = "Mark every already watched file (deactivate for performance with many files)";
      this.checkBoxShowWatched.UseVisualStyleBackColor = true;
      this.checkBoxShowWatched.CheckedChanged += new System.EventHandler(this.checkBoxShowWatched_CheckedChanged);
      // 
      // fileNameButton
      // 
      this.fileNameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.fileNameButton.Location = new System.Drawing.Point(339, 28);
      this.fileNameButton.Name = "fileNameButton";
      this.fileNameButton.Size = new System.Drawing.Size(72, 22);
      this.fileNameButton.TabIndex = 4;
      this.fileNameButton.Text = "Browse";
      this.fileNameButton.UseVisualStyleBackColor = true;
      this.fileNameButton.Click += new System.EventHandler(this.fileNameButton_Click);
      // 
      // folderNameTextBox
      // 
      this.folderNameTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.folderNameTextBox.BorderColor = System.Drawing.Color.Empty;
      this.folderNameTextBox.Location = new System.Drawing.Point(133, 28);
      this.folderNameTextBox.Name = "folderNameTextBox";
      this.folderNameTextBox.Size = new System.Drawing.Size(200, 20);
      this.folderNameTextBox.TabIndex = 3;
      // 
      // repeatPlaylistCheckBox
      // 
      this.repeatPlaylistCheckBox.AutoSize = true;
      this.repeatPlaylistCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.repeatPlaylistCheckBox.Location = new System.Drawing.Point(19, 54);
      this.repeatPlaylistCheckBox.Name = "repeatPlaylistCheckBox";
      this.repeatPlaylistCheckBox.Size = new System.Drawing.Size(152, 17);
      this.repeatPlaylistCheckBox.TabIndex = 5;
      this.repeatPlaylistCheckBox.Text = "Repeat/loop video playlists";
      this.repeatPlaylistCheckBox.UseVisualStyleBackColor = true;
      // 
      // folderNameLabel
      // 
      this.folderNameLabel.Location = new System.Drawing.Point(16, 32);
      this.folderNameLabel.Name = "folderNameLabel";
      this.folderNameLabel.Size = new System.Drawing.Size(80, 16);
      this.folderNameLabel.TabIndex = 2;
      this.folderNameLabel.Text = "Playlist folder:";
      // 
      // 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(tabPage3);
      this.tabControl1.Controls.Add(mpTabPage2);
      this.tabControl1.Controls.Add(this.mpTabPage1);
      this.tabControl1.Location = new System.Drawing.Point(0, 0);
      this.tabControl1.Name = "tabControl1";
      this.tabControl1.SelectedIndex = 0;
      this.tabControl1.Size = new System.Drawing.Size(472, 408);
      this.tabControl1.TabIndex = 0;
      // 
      // mpTabPage1
      // 
      this.mpTabPage1.Controls.Add(this.mpGroupBox4);
      this.mpTabPage1.Location = new System.Drawing.Point(4, 22);
      this.mpTabPage1.Name = "mpTabPage1";
      this.mpTabPage1.Size = new System.Drawing.Size(464, 382);
      this.mpTabPage1.TabIndex = 9;
      this.mpTabPage1.Text = "Language";
      this.mpTabPage1.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox4
      // 
      this.mpGroupBox4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox4.Controls.Add(streamLAVSelectionCheckBox);
      this.mpGroupBox4.Controls.Add(this.mpLabelOptionLAV);
      this.mpGroupBox4.Controls.Add(audioDefaultCheckBox);
      this.mpGroupBox4.Controls.Add(this.mpLabel7);
      this.mpGroupBox4.Controls.Add(this.defaultAudioLanguageComboBox);
      this.mpGroupBox4.Controls.Add(this.mpLabel8);
      this.mpGroupBox4.Controls.Add(this.defaultSubtitleLanguageComboBox);
      this.mpGroupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox4.Location = new System.Drawing.Point(14, 12);
      this.mpGroupBox4.Name = "mpGroupBox4";
      this.mpGroupBox4.Size = new System.Drawing.Size(432, 176);
      this.mpGroupBox4.TabIndex = 10;
      this.mpGroupBox4.TabStop = false;
      this.mpGroupBox4.Text = "Default Language";
      // 
      // streamLAVSelectionCheckBox
      // 
      streamLAVSelectionCheckBox.AutoSize = true;
      streamLAVSelectionCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      streamLAVSelectionCheckBox.Location = new System.Drawing.Point(16, 134);
      streamLAVSelectionCheckBox.Name = "streamLAVSelectionCheckBox";
      streamLAVSelectionCheckBox.Size = new System.Drawing.Size(360, 17);
      streamLAVSelectionCheckBox.TabIndex = 18;
      streamLAVSelectionCheckBox.Text = "Override the whole audio/subtitle use stream selection from LAV Splitter";
      streamLAVSelectionCheckBox.UseVisualStyleBackColor = true;
      streamLAVSelectionCheckBox.CheckedChanged += new System.EventHandler(this.streamLAVSelectionCheckBox_CheckedChanged);
      // 
      // mpLabelOptionLAV
      // 
      this.mpLabelOptionLAV.Location = new System.Drawing.Point(13, 83);
      this.mpLabelOptionLAV.Name = "mpLabelOptionLAV";
      this.mpLabelOptionLAV.Size = new System.Drawing.Size(238, 16);
      this.mpLabelOptionLAV.TabIndex = 17;
      this.mpLabelOptionLAV.Text = "Option working only with  LAV Splitter in use:";
      // 
      // audioDefaultCheckBox
      // 
      audioDefaultCheckBox.AutoSize = true;
      audioDefaultCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      audioDefaultCheckBox.Location = new System.Drawing.Point(16, 111);
      audioDefaultCheckBox.Name = "audioDefaultCheckBox";
      audioDefaultCheckBox.Size = new System.Drawing.Size(235, 17);
      audioDefaultCheckBox.TabIndex = 16;
      audioDefaultCheckBox.Text = "Override audio selection and use default one";
      audioDefaultCheckBox.UseVisualStyleBackColor = true;
      audioDefaultCheckBox.CheckedChanged += new System.EventHandler(this.audioDefault_CheckedChanged);
      // 
      // mpLabel7
      // 
      this.mpLabel7.Location = new System.Drawing.Point(13, 56);
      this.mpLabel7.Name = "mpLabel7";
      this.mpLabel7.Size = new System.Drawing.Size(96, 16);
      this.mpLabel7.TabIndex = 6;
      this.mpLabel7.Text = "Audio:";
      // 
      // defaultAudioLanguageComboBox
      // 
      this.defaultAudioLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.defaultAudioLanguageComboBox.BorderColor = System.Drawing.Color.Empty;
      this.defaultAudioLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.defaultAudioLanguageComboBox.Location = new System.Drawing.Point(136, 51);
      this.defaultAudioLanguageComboBox.Name = "defaultAudioLanguageComboBox";
      this.defaultAudioLanguageComboBox.Size = new System.Drawing.Size(280, 21);
      this.defaultAudioLanguageComboBox.Sorted = true;
      this.defaultAudioLanguageComboBox.TabIndex = 7;
      // 
      // mpLabel8
      // 
      this.mpLabel8.Location = new System.Drawing.Point(13, 27);
      this.mpLabel8.Name = "mpLabel8";
      this.mpLabel8.Size = new System.Drawing.Size(96, 16);
      this.mpLabel8.TabIndex = 6;
      this.mpLabel8.Text = "Subtitles:";
      // 
      // defaultSubtitleLanguageComboBox
      // 
      this.defaultSubtitleLanguageComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.defaultSubtitleLanguageComboBox.BorderColor = System.Drawing.Color.Empty;
      this.defaultSubtitleLanguageComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.defaultSubtitleLanguageComboBox.Location = new System.Drawing.Point(136, 24);
      this.defaultSubtitleLanguageComboBox.Name = "defaultSubtitleLanguageComboBox";
      this.defaultSubtitleLanguageComboBox.Size = new System.Drawing.Size(280, 21);
      this.defaultSubtitleLanguageComboBox.Sorted = true;
      this.defaultSubtitleLanguageComboBox.TabIndex = 7;
      // 
      // Movies
      // 
      this.Controls.Add(this.tabControl1);
      this.Name = "Movies";
      this.Size = new System.Drawing.Size(472, 408);
      tabPage3.ResumeLayout(false);
      mpGroupBox3.ResumeLayout(false);
      this.mpGroupBox1.ResumeLayout(false);
      this.mpGroupBox1.PerformLayout();
      panel1.ResumeLayout(false);
      panel1.PerformLayout();
      mpTabPage2.ResumeLayout(false);
      this.mpGroupBox2.ResumeLayout(false);
      this.mpGroupBox2.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.borderWidthUpDown)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.shadowDepthUpDown)).EndInit();
      this.tabPage1.ResumeLayout(false);
      this.mpGroupBoxVideoAudioDelay.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.delayVideoTextBox)).EndInit();
      this.mpGroupBoxComSkip.ResumeLayout(false);
      this.mpGroupBoxComSkip.PerformLayout();
      this.groupBox1.ResumeLayout(false);
      this.groupBox1.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTB)).EndInit();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTrackBar)).EndInit();
      this.tabControl1.ResumeLayout(false);
      this.mpTabPage1.ResumeLayout(false);
      this.mpGroupBox4.ResumeLayout(false);
      this.mpGroupBox4.PerformLayout();
      this.ResumeLayout(false);

    }
Exemplo n.º 14
0
        static void Main(string[] args)
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Form form = new Form();
            FlowLayoutPanel flowLayoutPanelTop;
            RadioButton radioButtonText;
            RadioButton radioButtonNumber;
            ComboBox comboBox;
            Panel panelFill;
            TextBox textBoxInput;
            TextBox textBoxOutput;
            StatusStrip statusStrip;
            ToolStripStatusLabel statusLabel;

            // 布局
            {
                flowLayoutPanelTop = new FlowLayoutPanel();
                radioButtonText = new RadioButton();
                radioButtonNumber = new RadioButton();
                comboBox = new ComboBox();
                panelFill = new Panel();
                textBoxInput = new TextBox();
                textBoxOutput = new TextBox();
                statusStrip = new StatusStrip();
                statusLabel = new ToolStripStatusLabel();
                flowLayoutPanelTop.SuspendLayout();
                panelFill.SuspendLayout();
                statusStrip.SuspendLayout();
                form.SuspendLayout();
                //
                // flowLayoutPanel1
                //
                flowLayoutPanelTop.Controls.Add(radioButtonText);
                flowLayoutPanelTop.Controls.Add(radioButtonNumber);
                flowLayoutPanelTop.Controls.Add(comboBox);
                flowLayoutPanelTop.Dock = DockStyle.Top;
                flowLayoutPanelTop.Location = new Point(0, 0);
                flowLayoutPanelTop.Name = "flowLayoutPanel1";
                flowLayoutPanelTop.Size = new Size(363, 30);
                flowLayoutPanelTop.TabIndex = 0;
                //
                // radioButton1
                //
                radioButtonText.AutoSize = true;
                radioButtonText.Location = new Point(3, 3);
                radioButtonText.Name = "radioButton1";
                radioButtonText.Size = new Size(47, 16);
                radioButtonText.TabIndex = 0;
                radioButtonText.TabStop = true;
                radioButtonText.Text = "文本";
                radioButtonText.UseVisualStyleBackColor = true;
                //
                // radioButton2
                //
                radioButtonNumber.AutoSize = true;
                radioButtonNumber.Location = new Point(56, 3);
                radioButtonNumber.Name = "radioButton2";
                radioButtonNumber.Size = new Size(47, 16);
                radioButtonNumber.TabIndex = 0;
                radioButtonNumber.TabStop = true;
                radioButtonNumber.Text = "数字";
                radioButtonNumber.UseVisualStyleBackColor = true;
                //
                // comboBox1
                //
                comboBox.FormattingEnabled = true;
                comboBox.Location = new Point(109, 3);
                comboBox.Name = "comboBox1";
                comboBox.Size = new Size(121, 20);
                comboBox.TabIndex = 1;

                comboBox.AutoCompleteSource = AutoCompleteSource.ListItems;
                comboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
                //
                // panel1
                //
                panelFill.Controls.Add(textBoxOutput);
                panelFill.Controls.Add(textBoxInput);
                panelFill.Dock = DockStyle.Fill;
                panelFill.Location = new Point(0, 30);
                panelFill.Name = "panel1";
                panelFill.Size = new Size(363, 230);
                panelFill.TabIndex = 1;
                //
                // textBox1
                //
                textBoxInput.Dock = DockStyle.Top;
                textBoxInput.Location = new Point(0, 0);
                textBoxInput.Multiline = true;
                textBoxInput.Name = "textBox1";
                textBoxInput.Size = new Size(363, 74);
                textBoxInput.TabIndex = 0;
                //
                // textBox2
                //
                textBoxOutput.Dock = DockStyle.Bottom;
                textBoxOutput.Location = new Point(0, 80);
                textBoxOutput.Multiline = true;
                textBoxOutput.Name = "textBox2";
                textBoxOutput.ReadOnly = true;
                textBoxOutput.Size = new Size(363, 150);
                textBoxOutput.TabIndex = 1;
                //
                // statusStrip1
                //
                statusStrip.Items.AddRange(new ToolStripItem[] {statusLabel});
                statusStrip.Location = new Point(0, 238);
                statusStrip.Name = "statusStrip1";
                statusStrip.Size = new Size(363, 22);
                statusStrip.TabIndex = 2;
                statusStrip.Text = "statusStrip1";
                //
                // toolStripStatusLabel1
                //
                statusLabel.Name = "toolStripStatusLabel1";
                statusLabel.Size = new Size(29, 17);
                statusLabel.Spring = true;
                statusLabel.TextAlign = ContentAlignment.MiddleLeft;
                //
                // Form1
                //
                form.AutoScaleDimensions = new SizeF(6F, 12F);
                form.AutoScaleMode = AutoScaleMode.Font;
                form.ClientSize = new Size(363, 260);
                form.Controls.Add(statusStrip);
                form.Controls.Add(panelFill);
                form.Controls.Add(flowLayoutPanelTop);
                form.Name = "Form1";
                form.Text = "二进制打印";
                form.StartPosition = FormStartPosition.CenterScreen;
                form.ImeMode = ImeMode.On;
                flowLayoutPanelTop.ResumeLayout(false);
                flowLayoutPanelTop.PerformLayout();
                panelFill.ResumeLayout(false);
                panelFill.PerformLayout();
                statusStrip.ResumeLayout(false);
                statusStrip.PerformLayout();
                form.ResumeLayout(false);
                form.PerformLayout();
            }

            radioButtonText.Click += (o, e) =>
            {
                textBoxInput.Text = "";
                textBoxOutput.Text = "";

                var commonUse = new List<string>();
                commonUse.Add(Encoding.Unicode.WebName);
                commonUse.Add(Encoding.UTF8.WebName);
                commonUse.Add(Encoding.Default.WebName);
                commonUse.Add(Encoding.UTF7.WebName);
                commonUse.Add(Encoding.UTF32.WebName);

                var fullList = Encoding.GetEncodings().Select(i=>i.GetEncoding().WebName);

                comboBox.DataSource = commonUse.Concat(fullList.Except(commonUse)).ToArray();
            };

            radioButtonNumber.Click += (o, e) =>
            {
                textBoxInput.Text = "";
                textBoxOutput.Text = "";

                comboBox.DataSource = new string[] { "unsigned oct", "signed oct", "hex", };
            };

            radioButtonText.PerformClick();

            Func<byte[], string> formatBytes = bytes =>
            {
                if (bytes == null || bytes.Length == 0) return string.Empty;

                var buf = new StringBuilder();
                foreach (byte b in bytes) buf.AppendFormat("{0:x2} ", b);
                buf.Remove(buf.Length - 1, 1);
                return buf.ToString();
            };

            EventHandler intput2output = (o, e) =>
            {
                textBoxOutput.Text = string.Empty;
                if (string.IsNullOrEmpty(textBoxInput.Text)) return;

                if (radioButtonText.Checked)
                {
                    try
                    {
                        Encoding encoding = Encoding.GetEncoding(comboBox.Text);
                        textBoxOutput.Text = formatBytes(encoding.GetBytes(textBoxInput.Text));
                    }
                    catch (Exception _e)
                    {
                        statusLabel.Text = _e.Message.Replace("\r\n", "\t");
                    }
                }
                else
                {
                    try
                    {
                        if (comboBox.Text == "hex")
                        {
                            uint i = uint.Parse(textBoxInput.Text, System.Globalization.NumberStyles.HexNumber);
                            textBoxOutput.Text = formatBytes(ToByteArray(i));
                        }
                        else if (comboBox.Text == "signed oct")
                        {
                            int i = int.Parse(textBoxInput.Text);
                            textBoxOutput.Text = formatBytes(ToByteArray(i));
                        }
                        else if (comboBox.Text == "unsigned oct")
                        {
                            uint i = uint.Parse(textBoxInput.Text);
                            textBoxOutput.Text = formatBytes(ToByteArray(i));
                        }
                        else
                        {
                            statusLabel.Text = "未知的格式。";
                        }
                    }
                    catch (Exception _e)
                    {
                        statusLabel.Text = _e.Message.Replace("\r\n", "\t");
                    }
                }
            };

            textBoxInput.TextChanged += intput2output;
            comboBox.SelectedValueChanged += intput2output;

            textBoxOutput.DoubleClick += (o, e) =>
            {
                if (string.IsNullOrEmpty(textBoxOutput.Text)) return;
                textBoxOutput.SelectAll();
                textBoxOutput.Copy();
                statusLabel.Text = "复制到剪贴板。";
            };

            Timer timerCleanStatus = new Timer();
            timerCleanStatus.Interval = 3000;
            timerCleanStatus.Tick += (o, e) => { statusLabel.Text = ""; };
            timerCleanStatus.Start();

            Application.Run(form);
        }
 //#region Windows Form Designer generated code
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components = new Container();
     mainMenu1 = new MainMenu(components);
     menuItem1 = new MenuItem();
     testNewCmd = new MenuItem();
     QuitUICmd = new MenuItem();
     menuItem2 = new MenuItem();
     breakCmd = new MenuItem();
     menuItem6 = new MenuItem();
     menuItemLaunch = new MenuItem();
     menuItemAttach = new MenuItem();
     menuItemDetach = new MenuItem();
     menuItemKill = new MenuItem();
     menuItemView = new MenuItem();
     menuItemViewOpen = new MenuItem();
     menuItemViewClose = new MenuItem();
     menuItem7 = new MenuItem();
     menuItem5 = new MenuItem();
     windowsTileCmd = new MenuItem();
     windowCascadeCmd = new MenuItem();
     menuItem3 = new MenuItem();
     menuItemCommands = new MenuItem();
     AboutCmd = new MenuItem();
     statusBar1 = new StatusBar();
     panel1 = new Panel();
     cmdHistory = new RichTextBox();
     cmdInput = new TextBox();
     splitter1 = new Splitter();
     openFileDialog = new OpenFileDialog();
     menuItem4 = new MenuItem();
     menuItemViewIlOrSource = new MenuItem();
     panel1.SuspendLayout();
     SuspendLayout();
     // 
     // mainMenu1
     // 
     mainMenu1.MenuItems.AddRange(new[]
                                      {
                                          menuItem1,
                                          menuItem2,
                                          menuItemView,
                                          menuItem5,
                                          menuItem3
                                      });
     // 
     // menuItem1
     // 
     menuItem1.Index = 0;
     menuItem1.MenuItems.AddRange(new[]
                                      {
                                          testNewCmd,
                                          QuitUICmd
                                      });
     menuItem1.Text = "&File";
     // 
     // testNewCmd
     // 
     testNewCmd.Index = 0;
     testNewCmd.Text = "&Open Source ...";
     testNewCmd.Click += testNewCmd_Click;
     // 
     // QuitUICmd
     // 
     QuitUICmd.Index = 1;
     QuitUICmd.Text = "&Quit";
     QuitUICmd.Click += QuitUICmd_Click;
     // 
     // menuItem2
     // 
     menuItem2.Index = 1;
     menuItem2.MenuItems.AddRange(new[]
                                      {
                                          breakCmd,
                                          menuItem6,
                                          menuItemLaunch,
                                          menuItemAttach,
                                          menuItemDetach,
                                          menuItemKill,
                                          menuItem4,
                                          menuItemViewIlOrSource
                                      });
     menuItem2.Text = "&Debug";
     // 
     // breakCmd
     // 
     breakCmd.Index = 0;
     breakCmd.Text = "&Break";
     breakCmd.Click += breakCmd_Click;
     // 
     // menuItem6
     // 
     menuItem6.Index = 1;
     menuItem6.Text = "-";
     // 
     // menuItemLaunch
     // 
     menuItemLaunch.Index = 2;
     menuItemLaunch.Text = "Launch ...";
     menuItemLaunch.Click += menuItemLaunch_Click;
     // 
     // menuItemAttach
     // 
     menuItemAttach.Index = 3;
     menuItemAttach.Text = "Attach ...";
     menuItemAttach.Click += menuItemAttach_Click;
     // 
     // menuItemDetach
     // 
     menuItemDetach.Index = 4;
     menuItemDetach.Text = "Detach";
     menuItemDetach.Click += menuItemDetach_Click;
     // 
     // menuItemKill
     // 
     menuItemKill.Index = 5;
     menuItemKill.Text = "Kill";
     menuItemKill.Click += menuItemKill_Click;
     // 
     // menuItemView
     // 
     menuItemView.Index = 2;
     menuItemView.MenuItems.AddRange(new[]
                                         {
                                             menuItemViewOpen,
                                             menuItemViewClose,
                                             menuItem7
                                         });
     menuItemView.Text = "Tools";
     menuItemView.Click += menuItemView_Click;
     // 
     // menuItemViewOpen
     // 
     menuItemViewOpen.Index = 0;
     menuItemViewOpen.Text = "Open &All";
     menuItemViewOpen.Click += menuItemViewOpen_Click;
     // 
     // menuItemViewClose
     // 
     menuItemViewClose.Index = 1;
     menuItemViewClose.Text = "Close All";
     menuItemViewClose.Click += menuItemViewClose_Click;
     // 
     // menuItem7
     // 
     menuItem7.Index = 2;
     menuItem7.Text = "-";
     // 
     // menuItem5
     // 
     menuItem5.Index = 3;
     menuItem5.MdiList = true;
     menuItem5.MenuItems.AddRange(new[]
                                      {
                                          windowsTileCmd,
                                          windowCascadeCmd
                                      });
     menuItem5.Text = "&Window";
     // 
     // windowsTileCmd
     // 
     windowsTileCmd.Index = 0;
     windowsTileCmd.Text = "&Tile";
     // 
     // windowCascadeCmd
     // 
     windowCascadeCmd.Index = 1;
     windowCascadeCmd.Text = "&Cascade";
     // 
     // menuItem3
     // 
     menuItem3.Index = 4;
     menuItem3.MenuItems.AddRange(new[]
                                      {
                                          menuItemCommands,
                                          AboutCmd
                                      });
     menuItem3.Text = "&Help";
     // 
     // menuItemCommands
     // 
     menuItemCommands.Index = 0;
     menuItemCommands.Text = "Commands";
     menuItemCommands.Click += menuItemCommands_Click;
     // 
     // AboutCmd
     // 
     AboutCmd.Index = 1;
     AboutCmd.Text = "About...";
     AboutCmd.Click += AboutCmd_Click;
     // 
     // statusBar1
     // 
     statusBar1.Location = new Point(0, 411);
     statusBar1.Name = "statusBar1";
     statusBar1.Size = new Size(568, 22);
     statusBar1.TabIndex = 3;
     // 
     // panel1
     // 
     panel1.Controls.Add(cmdHistory);
     panel1.Controls.Add(cmdInput);
     panel1.Dock = DockStyle.Bottom;
     panel1.Location = new Point(0, 195);
     panel1.Name = "panel1";
     panel1.Padding = new Padding(10, 10, 10, 0);
     panel1.Size = new Size(568, 216);
     panel1.TabIndex = 4;
     // 
     // cmdHistory
     // 
     cmdHistory.BackColor = SystemColors.ControlLight;
     cmdHistory.Dock = DockStyle.Fill;
     cmdHistory.Location = new Point(10, 10);
     cmdHistory.Name = "cmdHistory";
     cmdHistory.ReadOnly = true;
     cmdHistory.ScrollBars = RichTextBoxScrollBars.Vertical;
     cmdHistory.Size = new Size(548, 186);
     cmdHistory.TabIndex = 9;
     cmdHistory.TabStop = false;
     cmdHistory.Text = "";
     // 
     // cmdInput
     // 
     cmdInput.AcceptsReturn = true;
     cmdInput.AcceptsTab = true;
     cmdInput.Dock = DockStyle.Bottom;
     cmdInput.Location = new Point(10, 196);
     cmdInput.Multiline = true;
     cmdInput.Name = "cmdInput";
     cmdInput.Size = new Size(548, 20);
     cmdInput.TabIndex = 8;
     cmdInput.KeyPress += cmdInput_KeyPress;
     cmdInput.KeyDown += cmdInput_KeyDown;
     // 
     // splitter1
     // 
     splitter1.BackColor = SystemColors.ControlDarkDark;
     splitter1.Dock = DockStyle.Bottom;
     splitter1.Location = new Point(0, 189);
     splitter1.Name = "splitter1";
     splitter1.RightToLeft = RightToLeft.No;
     splitter1.Size = new Size(568, 6);
     splitter1.TabIndex = 0;
     splitter1.TabStop = false;
     // 
     // menuItem4
     // 
     menuItem4.Index = 6;
     menuItem4.Text = "-";
     // 
     // menuItemViewIlOrSource
     // 
     menuItemViewIlOrSource.Index = 7;
     menuItemViewIlOrSource.Text = "View Il";
     menuItemViewIlOrSource.Click += menuItem8_Click;
     // 
     // MainForm
     // 
     AutoScaleBaseSize = new Size(5, 13);
     ClientSize = new Size(568, 433);
     Controls.Add(splitter1);
     Controls.Add(panel1);
     Controls.Add(statusBar1);
     IsMdiContainer = true;
     Menu = mainMenu1;
     Name = "MainForm";
     StartPosition = FormStartPosition.WindowsDefaultBounds;
     Text = "GUI: Simple MDbg Extension";
     Activated += MainForm_Activated;
     Closing += MainForm_Closing;
     KeyDown += MainForm_KeyDown;
     Load += MainForm_Load;
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 16
0
 private void InitializeComponent()
 {
   Icon0 = new PictureBox();
   Icon1 = new PictureBox();
   Icon2 = new PictureBox();
   Icon3 = new PictureBox();
   Icon4 = new PictureBox();
   Icon9 = new PictureBox();
   Icon8 = new PictureBox();
   Icon7 = new PictureBox();
   Icon6 = new PictureBox();
   Icon5 = new PictureBox();
   label1 = new Label();
   label2 = new Label();
   label3 = new Label();
   label4 = new Label();
   label5 = new Label();
   label6 = new Label();
   label7 = new Label();
   label8 = new Label();
   label9 = new Label();
   label10 = new Label();
   label11 = new Label();
   label12 = new Label();
   label13 = new Label();
   label14 = new Label();
   label15 = new Label();
   label16 = new Label();
   label17 = new Label();
   label18 = new Label();
   label19 = new Label();
   label20 = new Label();
   panel1 = new Panel();
   lblEditIndex = new Label();
   cmdSaveEdit = new Button();
   cmdCancelEdit = new Button();
   cmdInvert = new Button();
   cmdSetAll = new Button();
   cmdClearAll = new Button();
   lblCurrentIcon = new Label();
   C15R1_B0 = new CheckBox();
   C15R1_B1 = new CheckBox();
   C15R1_B2 = new CheckBox();
   C15R1_B3 = new CheckBox();
   C15R1_B4 = new CheckBox();
   C15R1_B5 = new CheckBox();
   C15R1_B6 = new CheckBox();
   C15R1_B7 = new CheckBox();
   C15R0_B0 = new CheckBox();
   C15R0_B1 = new CheckBox();
   C15R0_B2 = new CheckBox();
   C15R0_B3 = new CheckBox();
   C15R0_B4 = new CheckBox();
   C15R0_B5 = new CheckBox();
   C15R0_B6 = new CheckBox();
   C15R0_B7 = new CheckBox();
   C14R1_B0 = new CheckBox();
   C14R1_B1 = new CheckBox();
   C14R1_B2 = new CheckBox();
   C14R1_B3 = new CheckBox();
   C14R1_B4 = new CheckBox();
   C14R1_B5 = new CheckBox();
   C14R1_B6 = new CheckBox();
   C14R1_B7 = new CheckBox();
   C14R0_B0 = new CheckBox();
   C14R0_B1 = new CheckBox();
   C14R0_B2 = new CheckBox();
   C14R0_B3 = new CheckBox();
   C14R0_B4 = new CheckBox();
   C14R0_B5 = new CheckBox();
   C14R0_B6 = new CheckBox();
   C14R0_B7 = new CheckBox();
   C13R1_B0 = new CheckBox();
   C13R1_B1 = new CheckBox();
   C13R1_B2 = new CheckBox();
   C13R1_B3 = new CheckBox();
   C13R1_B4 = new CheckBox();
   C13R1_B5 = new CheckBox();
   C13R1_B6 = new CheckBox();
   C13R1_B7 = new CheckBox();
   C13R0_B0 = new CheckBox();
   C13R0_B1 = new CheckBox();
   C13R0_B2 = new CheckBox();
   C13R0_B3 = new CheckBox();
   C13R0_B4 = new CheckBox();
   C13R0_B5 = new CheckBox();
   C13R0_B6 = new CheckBox();
   C13R0_B7 = new CheckBox();
   C12R1_B0 = new CheckBox();
   C12R1_B1 = new CheckBox();
   C12R1_B2 = new CheckBox();
   C12R1_B3 = new CheckBox();
   C12R1_B4 = new CheckBox();
   C12R1_B5 = new CheckBox();
   C12R1_B6 = new CheckBox();
   C12R1_B7 = new CheckBox();
   C12R0_B0 = new CheckBox();
   C12R0_B1 = new CheckBox();
   C12R0_B2 = new CheckBox();
   C12R0_B3 = new CheckBox();
   C12R0_B4 = new CheckBox();
   C12R0_B5 = new CheckBox();
   C12R0_B6 = new CheckBox();
   C12R0_B7 = new CheckBox();
   C11R1_B0 = new CheckBox();
   C11R1_B1 = new CheckBox();
   C11R1_B2 = new CheckBox();
   C11R1_B3 = new CheckBox();
   C11R1_B4 = new CheckBox();
   C11R1_B5 = new CheckBox();
   C11R1_B6 = new CheckBox();
   C11R1_B7 = new CheckBox();
   C11R0_B0 = new CheckBox();
   C11R0_B1 = new CheckBox();
   C11R0_B2 = new CheckBox();
   C11R0_B3 = new CheckBox();
   C11R0_B4 = new CheckBox();
   C11R0_B5 = new CheckBox();
   C11R0_B6 = new CheckBox();
   C11R0_B7 = new CheckBox();
   C10R1_B0 = new CheckBox();
   C10R1_B1 = new CheckBox();
   C10R1_B2 = new CheckBox();
   C10R1_B3 = new CheckBox();
   C10R1_B4 = new CheckBox();
   C10R1_B5 = new CheckBox();
   C10R1_B6 = new CheckBox();
   C10R1_B7 = new CheckBox();
   C10R0_B0 = new CheckBox();
   C10R0_B1 = new CheckBox();
   C10R0_B2 = new CheckBox();
   C10R0_B3 = new CheckBox();
   C10R0_B4 = new CheckBox();
   C10R0_B5 = new CheckBox();
   C10R0_B6 = new CheckBox();
   C10R0_B7 = new CheckBox();
   C9R1_B0 = new CheckBox();
   C9R1_B1 = new CheckBox();
   C9R1_B2 = new CheckBox();
   C9R1_B3 = new CheckBox();
   C9R1_B4 = new CheckBox();
   C9R1_B5 = new CheckBox();
   C9R1_B6 = new CheckBox();
   C9R1_B7 = new CheckBox();
   C9R0_B0 = new CheckBox();
   C9R0_B1 = new CheckBox();
   C9R0_B2 = new CheckBox();
   C9R0_B3 = new CheckBox();
   C9R0_B4 = new CheckBox();
   C9R0_B5 = new CheckBox();
   C9R0_B6 = new CheckBox();
   C9R0_B7 = new CheckBox();
   C8R1_B0 = new CheckBox();
   C8R1_B1 = new CheckBox();
   C8R1_B2 = new CheckBox();
   C8R1_B3 = new CheckBox();
   C8R1_B4 = new CheckBox();
   C8R1_B5 = new CheckBox();
   C8R1_B6 = new CheckBox();
   C8R1_B7 = new CheckBox();
   C8R0_B0 = new CheckBox();
   C8R0_B1 = new CheckBox();
   C8R0_B2 = new CheckBox();
   C8R0_B3 = new CheckBox();
   C8R0_B4 = new CheckBox();
   C8R0_B5 = new CheckBox();
   C8R0_B6 = new CheckBox();
   C8R0_B7 = new CheckBox();
   C7R1_B0 = new CheckBox();
   C7R1_B1 = new CheckBox();
   C7R1_B2 = new CheckBox();
   C7R1_B3 = new CheckBox();
   C7R1_B4 = new CheckBox();
   C7R1_B5 = new CheckBox();
   C7R1_B6 = new CheckBox();
   C7R1_B7 = new CheckBox();
   C7R0_B0 = new CheckBox();
   C7R0_B1 = new CheckBox();
   C7R0_B2 = new CheckBox();
   C7R0_B3 = new CheckBox();
   C7R0_B4 = new CheckBox();
   C7R0_B5 = new CheckBox();
   C7R0_B6 = new CheckBox();
   C7R0_B7 = new CheckBox();
   C6R1_B0 = new CheckBox();
   C6R1_B1 = new CheckBox();
   C6R1_B2 = new CheckBox();
   C6R1_B3 = new CheckBox();
   C6R1_B4 = new CheckBox();
   C6R1_B5 = new CheckBox();
   C6R1_B6 = new CheckBox();
   C6R1_B7 = new CheckBox();
   C6R0_B0 = new CheckBox();
   C6R0_B1 = new CheckBox();
   C6R0_B2 = new CheckBox();
   C6R0_B3 = new CheckBox();
   C6R0_B4 = new CheckBox();
   C6R0_B5 = new CheckBox();
   C6R0_B6 = new CheckBox();
   C6R0_B7 = new CheckBox();
   C5R1_B0 = new CheckBox();
   C5R1_B1 = new CheckBox();
   C5R1_B2 = new CheckBox();
   C5R1_B3 = new CheckBox();
   C5R1_B4 = new CheckBox();
   C5R1_B5 = new CheckBox();
   C5R1_B6 = new CheckBox();
   C5R1_B7 = new CheckBox();
   C5R0_B0 = new CheckBox();
   C5R0_B1 = new CheckBox();
   C5R0_B2 = new CheckBox();
   C5R0_B3 = new CheckBox();
   C5R0_B4 = new CheckBox();
   C5R0_B5 = new CheckBox();
   C5R0_B6 = new CheckBox();
   C5R0_B7 = new CheckBox();
   C4R1_B0 = new CheckBox();
   C4R1_B1 = new CheckBox();
   C4R1_B2 = new CheckBox();
   C4R1_B3 = new CheckBox();
   C4R1_B4 = new CheckBox();
   C4R1_B5 = new CheckBox();
   C4R1_B6 = new CheckBox();
   C4R1_B7 = new CheckBox();
   C4R0_B0 = new CheckBox();
   C4R0_B1 = new CheckBox();
   C4R0_B2 = new CheckBox();
   C4R0_B3 = new CheckBox();
   C4R0_B4 = new CheckBox();
   C4R0_B5 = new CheckBox();
   C4R0_B6 = new CheckBox();
   C4R0_B7 = new CheckBox();
   C3R1_B0 = new CheckBox();
   C3R1_B1 = new CheckBox();
   C3R1_B2 = new CheckBox();
   C3R1_B3 = new CheckBox();
   C3R1_B4 = new CheckBox();
   C3R1_B5 = new CheckBox();
   C3R1_B6 = new CheckBox();
   C3R1_B7 = new CheckBox();
   C3R0_B0 = new CheckBox();
   C3R0_B1 = new CheckBox();
   C3R0_B2 = new CheckBox();
   C3R0_B3 = new CheckBox();
   C3R0_B4 = new CheckBox();
   C3R0_B5 = new CheckBox();
   C3R0_B6 = new CheckBox();
   C3R0_B7 = new CheckBox();
   C2R1_B0 = new CheckBox();
   C2R1_B1 = new CheckBox();
   C2R1_B2 = new CheckBox();
   C2R1_B3 = new CheckBox();
   C2R1_B4 = new CheckBox();
   C2R1_B5 = new CheckBox();
   C2R1_B6 = new CheckBox();
   C2R1_B7 = new CheckBox();
   C2R0_B0 = new CheckBox();
   C2R0_B1 = new CheckBox();
   C2R0_B2 = new CheckBox();
   C2R0_B3 = new CheckBox();
   C2R0_B4 = new CheckBox();
   C2R0_B5 = new CheckBox();
   C2R0_B6 = new CheckBox();
   C2R0_B7 = new CheckBox();
   C1R1_B0 = new CheckBox();
   C1R1_B1 = new CheckBox();
   C1R1_B2 = new CheckBox();
   C1R1_B3 = new CheckBox();
   C1R1_B4 = new CheckBox();
   C1R1_B5 = new CheckBox();
   C1R1_B6 = new CheckBox();
   C1R1_B7 = new CheckBox();
   C1R0_B0 = new CheckBox();
   C1R0_B1 = new CheckBox();
   C1R0_B2 = new CheckBox();
   C1R0_B3 = new CheckBox();
   C1R0_B4 = new CheckBox();
   C1R0_B5 = new CheckBox();
   C1R0_B6 = new CheckBox();
   C1R0_B7 = new CheckBox();
   C0R1_B0 = new CheckBox();
   C0R1_B1 = new CheckBox();
   C0R1_B2 = new CheckBox();
   C0R1_B3 = new CheckBox();
   C0R1_B4 = new CheckBox();
   C0R1_B5 = new CheckBox();
   C0R1_B6 = new CheckBox();
   C0R1_B7 = new CheckBox();
   C0R0_B0 = new CheckBox();
   C0R0_B1 = new CheckBox();
   C0R0_B2 = new CheckBox();
   C0R0_B3 = new CheckBox();
   C0R0_B4 = new CheckBox();
   C0R0_B5 = new CheckBox();
   C0R0_B6 = new CheckBox();
   C0R0_B7 = new CheckBox();
   cmdLoadInternal = new Button();
   cmdLoadCustom = new Button();
   cmdSave = new Button();
   cmdExit = new Button();
   label21 = new Label();
   ((ISupportInitialize)(Icon0)).BeginInit();
   ((ISupportInitialize)(Icon1)).BeginInit();
   ((ISupportInitialize)(Icon2)).BeginInit();
   ((ISupportInitialize)(Icon3)).BeginInit();
   ((ISupportInitialize)(Icon4)).BeginInit();
   ((ISupportInitialize)(Icon9)).BeginInit();
   ((ISupportInitialize)(Icon8)).BeginInit();
   ((ISupportInitialize)(Icon7)).BeginInit();
   ((ISupportInitialize)(Icon6)).BeginInit();
   ((ISupportInitialize)(Icon5)).BeginInit();
   panel1.SuspendLayout();
   SuspendLayout();
   // 
   // Icon0
   // 
   Icon0.BorderStyle = BorderStyle.FixedSingle;
   Icon0.Enabled = false;
   Icon0.Location = new Point(29, 255);
   Icon0.Name = "Icon0";
   Icon0.Size = new Size(34, 34);
   Icon0.TabIndex = 1;
   Icon0.TabStop = false;
   Icon0.Click += Icon_Click;
   // 
   // Icon1
   // 
   Icon1.BorderStyle = BorderStyle.FixedSingle;
   Icon1.Enabled = false;
   Icon1.Location = new Point(104, 255);
   Icon1.Name = "Icon1";
   Icon1.Size = new Size(34, 34);
   Icon1.TabIndex = 2;
   Icon1.TabStop = false;
   Icon1.Click += Icon_Click;
   // 
   // Icon2
   // 
   Icon2.BorderStyle = BorderStyle.FixedSingle;
   Icon2.Enabled = false;
   Icon2.Location = new Point(179, 255);
   Icon2.Name = "Icon2";
   Icon2.Size = new Size(34, 34);
   Icon2.TabIndex = 3;
   Icon2.TabStop = false;
   Icon2.Click += Icon_Click;
   // 
   // Icon3
   // 
   Icon3.BorderStyle = BorderStyle.FixedSingle;
   Icon3.Enabled = false;
   Icon3.Location = new Point(254, 255);
   Icon3.Name = "Icon3";
   Icon3.Size = new Size(34, 34);
   Icon3.TabIndex = 4;
   Icon3.TabStop = false;
   Icon3.Click += Icon_Click;
   // 
   // Icon4
   // 
   Icon4.BorderStyle = BorderStyle.FixedSingle;
   Icon4.Enabled = false;
   Icon4.Location = new Point(329, 255);
   Icon4.Name = "Icon4";
   Icon4.Size = new Size(34, 34);
   Icon4.TabIndex = 5;
   Icon4.TabStop = false;
   Icon4.Click += Icon_Click;
   // 
   // Icon9
   // 
   Icon9.BorderStyle = BorderStyle.FixedSingle;
   Icon9.Enabled = false;
   Icon9.Location = new Point(329, 326);
   Icon9.Name = "Icon9";
   Icon9.Size = new Size(34, 34);
   Icon9.TabIndex = 10;
   Icon9.TabStop = false;
   Icon9.Click += Icon_Click;
   // 
   // Icon8
   // 
   Icon8.BorderStyle = BorderStyle.FixedSingle;
   Icon8.Enabled = false;
   Icon8.Location = new Point(254, 326);
   Icon8.Name = "Icon8";
   Icon8.Size = new Size(34, 34);
   Icon8.TabIndex = 9;
   Icon8.TabStop = false;
   Icon8.Click += Icon_Click;
   // 
   // Icon7
   // 
   Icon7.BorderStyle = BorderStyle.FixedSingle;
   Icon7.Enabled = false;
   Icon7.Location = new Point(179, 326);
   Icon7.Name = "Icon7";
   Icon7.Size = new Size(34, 34);
   Icon7.TabIndex = 8;
   Icon7.TabStop = false;
   Icon7.Click += Icon_Click;
   // 
   // Icon6
   // 
   Icon6.BorderStyle = BorderStyle.FixedSingle;
   Icon6.Enabled = false;
   Icon6.Location = new Point(104, 326);
   Icon6.Name = "Icon6";
   Icon6.Size = new Size(34, 34);
   Icon6.TabIndex = 7;
   Icon6.TabStop = false;
   Icon6.Click += Icon_Click;
   // 
   // Icon5
   // 
   Icon5.BorderStyle = BorderStyle.FixedSingle;
   Icon5.Enabled = false;
   Icon5.Location = new Point(29, 326);
   Icon5.Name = "Icon5";
   Icon5.Size = new Size(34, 34);
   Icon5.TabIndex = 6;
   Icon5.TabStop = false;
   Icon5.Click += Icon_Click;
   // 
   // label1
   // 
   label1.AutoSize = true;
   label1.Location = new Point(27, 290);
   label1.Name = "label1";
   label1.Size = new Size(37, 13);
   label1.TabIndex = 267;
   label1.Text = "Icon 1";
   label1.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label2
   // 
   label2.AutoSize = true;
   label2.Location = new Point(102, 290);
   label2.Name = "label2";
   label2.Size = new Size(37, 13);
   label2.TabIndex = 268;
   label2.Text = "Icon 2";
   label2.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label3
   // 
   label3.AutoSize = true;
   label3.Location = new Point(252, 290);
   label3.Name = "label3";
   label3.Size = new Size(37, 13);
   label3.TabIndex = 270;
   label3.Text = "Icon 4";
   label3.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label4
   // 
   label4.AutoSize = true;
   label4.Location = new Point(177, 290);
   label4.Name = "label4";
   label4.Size = new Size(37, 13);
   label4.TabIndex = 269;
   label4.Text = "Icon 3";
   label4.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label5
   // 
   label5.AutoSize = true;
   label5.Location = new Point(327, 290);
   label5.Name = "label5";
   label5.Size = new Size(37, 13);
   label5.TabIndex = 271;
   label5.Text = "Icon 5";
   label5.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label6
   // 
   label6.AutoSize = true;
   label6.Location = new Point(324, 361);
   label6.Name = "label6";
   label6.Size = new Size(43, 13);
   label6.TabIndex = 276;
   label6.Text = "Icon 10";
   label6.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label7
   // 
   label7.AutoSize = true;
   label7.Location = new Point(252, 361);
   label7.Name = "label7";
   label7.Size = new Size(37, 13);
   label7.TabIndex = 275;
   label7.Text = "Icon 9";
   label7.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label8
   // 
   label8.AutoSize = true;
   label8.Location = new Point(177, 361);
   label8.Name = "label8";
   label8.Size = new Size(37, 13);
   label8.TabIndex = 274;
   label8.Text = "Icon 8";
   label8.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label9
   // 
   label9.AutoSize = true;
   label9.Location = new Point(102, 361);
   label9.Name = "label9";
   label9.Size = new Size(37, 13);
   label9.TabIndex = 273;
   label9.Text = "Icon 7";
   label9.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label10
   // 
   label10.AutoSize = true;
   label10.Location = new Point(27, 361);
   label10.Name = "label10";
   label10.Size = new Size(37, 13);
   label10.TabIndex = 272;
   label10.Text = "Icon 6";
   label10.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label11
   // 
   label11.Anchor = (((((AnchorStyles.Top | AnchorStyles.Bottom)
                        | AnchorStyles.Left)
                       | AnchorStyles.Right)));
   label11.AutoSize = true;
   label11.Location = new Point(319, 303);
   label11.Name = "label11";
   label11.Size = new Size(52, 13);
   label11.TabIndex = 281;
   label11.Text = "( VIDEO )";
   label11.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label12
   // 
   label12.AutoSize = true;
   label12.Location = new Point(244, 303);
   label12.Name = "label12";
   label12.Size = new Size(53, 13);
   label12.TabIndex = 280;
   label12.Text = "( MUSIC )";
   label12.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label13
   // 
   label13.AutoSize = true;
   label13.Location = new Point(169, 303);
   label13.Name = "label13";
   label13.Size = new Size(53, 13);
   label13.TabIndex = 279;
   label13.Text = "( MOVIE )";
   label13.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label14
   // 
   label14.AutoSize = true;
   label14.Location = new Point(104, 303);
   label14.Name = "label14";
   label14.Size = new Size(33, 13);
   label14.TabIndex = 278;
   label14.Text = "( TV )";
   label14.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label15
   // 
   label15.AutoSize = true;
   label15.Location = new Point(27, 303);
   label15.Name = "label15";
   label15.Size = new Size(36, 13);
   label15.TabIndex = 277;
   label15.Text = "( Idle )";
   label15.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label16
   // 
   label16.AutoSize = true;
   label16.Location = new Point(317, 374);
   label16.Name = "label16";
   label16.Size = new Size(56, 13);
   label16.TabIndex = 286;
   label16.Text = "( Unused )";
   label16.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label17
   // 
   label17.AutoSize = true;
   label17.Location = new Point(242, 374);
   label17.Name = "label17";
   label17.Size = new Size(56, 13);
   label17.TabIndex = 285;
   label17.Text = "( Unused )";
   label17.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label18
   // 
   label18.AutoSize = true;
   label18.Location = new Point(167, 374);
   label18.Name = "label18";
   label18.Size = new Size(56, 13);
   label18.TabIndex = 284;
   label18.Text = "( Unused )";
   label18.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label19
   // 
   label19.AutoSize = true;
   label19.Location = new Point(89, 374);
   label19.Name = "label19";
   label19.Size = new Size(63, 13);
   label19.TabIndex = 283;
   label19.Text = "( PAUSED )";
   label19.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // label20
   // 
   label20.AutoSize = true;
   label20.Location = new Point(3, 374);
   label20.Name = "label20";
   label20.Size = new Size(84, 13);
   label20.TabIndex = 282;
   label20.Text = "( RECORDING )";
   label20.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // panel1
   // 
   panel1.BorderStyle = BorderStyle.FixedSingle;
   panel1.Controls.Add(lblEditIndex);
   panel1.Controls.Add(cmdSaveEdit);
   panel1.Controls.Add(cmdCancelEdit);
   panel1.Controls.Add(cmdInvert);
   panel1.Controls.Add(cmdSetAll);
   panel1.Controls.Add(cmdClearAll);
   panel1.Controls.Add(lblCurrentIcon);
   panel1.Controls.Add(C15R1_B0);
   panel1.Controls.Add(C15R1_B1);
   panel1.Controls.Add(C15R1_B2);
   panel1.Controls.Add(C15R1_B3);
   panel1.Controls.Add(C15R1_B4);
   panel1.Controls.Add(C15R1_B5);
   panel1.Controls.Add(C15R1_B6);
   panel1.Controls.Add(C15R1_B7);
   panel1.Controls.Add(C15R0_B0);
   panel1.Controls.Add(C15R0_B1);
   panel1.Controls.Add(C15R0_B2);
   panel1.Controls.Add(C15R0_B3);
   panel1.Controls.Add(C15R0_B4);
   panel1.Controls.Add(C15R0_B5);
   panel1.Controls.Add(C15R0_B6);
   panel1.Controls.Add(C15R0_B7);
   panel1.Controls.Add(C14R1_B0);
   panel1.Controls.Add(C14R1_B1);
   panel1.Controls.Add(C14R1_B2);
   panel1.Controls.Add(C14R1_B3);
   panel1.Controls.Add(C14R1_B4);
   panel1.Controls.Add(C14R1_B5);
   panel1.Controls.Add(C14R1_B6);
   panel1.Controls.Add(C14R1_B7);
   panel1.Controls.Add(C14R0_B0);
   panel1.Controls.Add(C14R0_B1);
   panel1.Controls.Add(C14R0_B2);
   panel1.Controls.Add(C14R0_B3);
   panel1.Controls.Add(C14R0_B4);
   panel1.Controls.Add(C14R0_B5);
   panel1.Controls.Add(C14R0_B6);
   panel1.Controls.Add(C14R0_B7);
   panel1.Controls.Add(C13R1_B0);
   panel1.Controls.Add(C13R1_B1);
   panel1.Controls.Add(C13R1_B2);
   panel1.Controls.Add(C13R1_B3);
   panel1.Controls.Add(C13R1_B4);
   panel1.Controls.Add(C13R1_B5);
   panel1.Controls.Add(C13R1_B6);
   panel1.Controls.Add(C13R1_B7);
   panel1.Controls.Add(C13R0_B0);
   panel1.Controls.Add(C13R0_B1);
   panel1.Controls.Add(C13R0_B2);
   panel1.Controls.Add(C13R0_B3);
   panel1.Controls.Add(C13R0_B4);
   panel1.Controls.Add(C13R0_B5);
   panel1.Controls.Add(C13R0_B6);
   panel1.Controls.Add(C13R0_B7);
   panel1.Controls.Add(C12R1_B0);
   panel1.Controls.Add(C12R1_B1);
   panel1.Controls.Add(C12R1_B2);
   panel1.Controls.Add(C12R1_B3);
   panel1.Controls.Add(C12R1_B4);
   panel1.Controls.Add(C12R1_B5);
   panel1.Controls.Add(C12R1_B6);
   panel1.Controls.Add(C12R1_B7);
   panel1.Controls.Add(C12R0_B0);
   panel1.Controls.Add(C12R0_B1);
   panel1.Controls.Add(C12R0_B2);
   panel1.Controls.Add(C12R0_B3);
   panel1.Controls.Add(C12R0_B4);
   panel1.Controls.Add(C12R0_B5);
   panel1.Controls.Add(C12R0_B6);
   panel1.Controls.Add(C12R0_B7);
   panel1.Controls.Add(C11R1_B0);
   panel1.Controls.Add(C11R1_B1);
   panel1.Controls.Add(C11R1_B2);
   panel1.Controls.Add(C11R1_B3);
   panel1.Controls.Add(C11R1_B4);
   panel1.Controls.Add(C11R1_B5);
   panel1.Controls.Add(C11R1_B6);
   panel1.Controls.Add(C11R1_B7);
   panel1.Controls.Add(C11R0_B0);
   panel1.Controls.Add(C11R0_B1);
   panel1.Controls.Add(C11R0_B2);
   panel1.Controls.Add(C11R0_B3);
   panel1.Controls.Add(C11R0_B4);
   panel1.Controls.Add(C11R0_B5);
   panel1.Controls.Add(C11R0_B6);
   panel1.Controls.Add(C11R0_B7);
   panel1.Controls.Add(C10R1_B0);
   panel1.Controls.Add(C10R1_B1);
   panel1.Controls.Add(C10R1_B2);
   panel1.Controls.Add(C10R1_B3);
   panel1.Controls.Add(C10R1_B4);
   panel1.Controls.Add(C10R1_B5);
   panel1.Controls.Add(C10R1_B6);
   panel1.Controls.Add(C10R1_B7);
   panel1.Controls.Add(C10R0_B0);
   panel1.Controls.Add(C10R0_B1);
   panel1.Controls.Add(C10R0_B2);
   panel1.Controls.Add(C10R0_B3);
   panel1.Controls.Add(C10R0_B4);
   panel1.Controls.Add(C10R0_B5);
   panel1.Controls.Add(C10R0_B6);
   panel1.Controls.Add(C10R0_B7);
   panel1.Controls.Add(C9R1_B0);
   panel1.Controls.Add(C9R1_B1);
   panel1.Controls.Add(C9R1_B2);
   panel1.Controls.Add(C9R1_B3);
   panel1.Controls.Add(C9R1_B4);
   panel1.Controls.Add(C9R1_B5);
   panel1.Controls.Add(C9R1_B6);
   panel1.Controls.Add(C9R1_B7);
   panel1.Controls.Add(C9R0_B0);
   panel1.Controls.Add(C9R0_B1);
   panel1.Controls.Add(C9R0_B2);
   panel1.Controls.Add(C9R0_B3);
   panel1.Controls.Add(C9R0_B4);
   panel1.Controls.Add(C9R0_B5);
   panel1.Controls.Add(C9R0_B6);
   panel1.Controls.Add(C9R0_B7);
   panel1.Controls.Add(C8R1_B0);
   panel1.Controls.Add(C8R1_B1);
   panel1.Controls.Add(C8R1_B2);
   panel1.Controls.Add(C8R1_B3);
   panel1.Controls.Add(C8R1_B4);
   panel1.Controls.Add(C8R1_B5);
   panel1.Controls.Add(C8R1_B6);
   panel1.Controls.Add(C8R1_B7);
   panel1.Controls.Add(C8R0_B0);
   panel1.Controls.Add(C8R0_B1);
   panel1.Controls.Add(C8R0_B2);
   panel1.Controls.Add(C8R0_B3);
   panel1.Controls.Add(C8R0_B4);
   panel1.Controls.Add(C8R0_B5);
   panel1.Controls.Add(C8R0_B6);
   panel1.Controls.Add(C8R0_B7);
   panel1.Controls.Add(C7R1_B0);
   panel1.Controls.Add(C7R1_B1);
   panel1.Controls.Add(C7R1_B2);
   panel1.Controls.Add(C7R1_B3);
   panel1.Controls.Add(C7R1_B4);
   panel1.Controls.Add(C7R1_B5);
   panel1.Controls.Add(C7R1_B6);
   panel1.Controls.Add(C7R1_B7);
   panel1.Controls.Add(C7R0_B0);
   panel1.Controls.Add(C7R0_B1);
   panel1.Controls.Add(C7R0_B2);
   panel1.Controls.Add(C7R0_B3);
   panel1.Controls.Add(C7R0_B4);
   panel1.Controls.Add(C7R0_B5);
   panel1.Controls.Add(C7R0_B6);
   panel1.Controls.Add(C7R0_B7);
   panel1.Controls.Add(C6R1_B0);
   panel1.Controls.Add(C6R1_B1);
   panel1.Controls.Add(C6R1_B2);
   panel1.Controls.Add(C6R1_B3);
   panel1.Controls.Add(C6R1_B4);
   panel1.Controls.Add(C6R1_B5);
   panel1.Controls.Add(C6R1_B6);
   panel1.Controls.Add(C6R1_B7);
   panel1.Controls.Add(C6R0_B0);
   panel1.Controls.Add(C6R0_B1);
   panel1.Controls.Add(C6R0_B2);
   panel1.Controls.Add(C6R0_B3);
   panel1.Controls.Add(C6R0_B4);
   panel1.Controls.Add(C6R0_B5);
   panel1.Controls.Add(C6R0_B6);
   panel1.Controls.Add(C6R0_B7);
   panel1.Controls.Add(C5R1_B0);
   panel1.Controls.Add(C5R1_B1);
   panel1.Controls.Add(C5R1_B2);
   panel1.Controls.Add(C5R1_B3);
   panel1.Controls.Add(C5R1_B4);
   panel1.Controls.Add(C5R1_B5);
   panel1.Controls.Add(C5R1_B6);
   panel1.Controls.Add(C5R1_B7);
   panel1.Controls.Add(C5R0_B0);
   panel1.Controls.Add(C5R0_B1);
   panel1.Controls.Add(C5R0_B2);
   panel1.Controls.Add(C5R0_B3);
   panel1.Controls.Add(C5R0_B4);
   panel1.Controls.Add(C5R0_B5);
   panel1.Controls.Add(C5R0_B6);
   panel1.Controls.Add(C5R0_B7);
   panel1.Controls.Add(C4R1_B0);
   panel1.Controls.Add(C4R1_B1);
   panel1.Controls.Add(C4R1_B2);
   panel1.Controls.Add(C4R1_B3);
   panel1.Controls.Add(C4R1_B4);
   panel1.Controls.Add(C4R1_B5);
   panel1.Controls.Add(C4R1_B6);
   panel1.Controls.Add(C4R1_B7);
   panel1.Controls.Add(C4R0_B0);
   panel1.Controls.Add(C4R0_B1);
   panel1.Controls.Add(C4R0_B2);
   panel1.Controls.Add(C4R0_B3);
   panel1.Controls.Add(C4R0_B4);
   panel1.Controls.Add(C4R0_B5);
   panel1.Controls.Add(C4R0_B6);
   panel1.Controls.Add(C4R0_B7);
   panel1.Controls.Add(C3R1_B0);
   panel1.Controls.Add(C3R1_B1);
   panel1.Controls.Add(C3R1_B2);
   panel1.Controls.Add(C3R1_B3);
   panel1.Controls.Add(C3R1_B4);
   panel1.Controls.Add(C3R1_B5);
   panel1.Controls.Add(C3R1_B6);
   panel1.Controls.Add(C3R1_B7);
   panel1.Controls.Add(C3R0_B0);
   panel1.Controls.Add(C3R0_B1);
   panel1.Controls.Add(C3R0_B2);
   panel1.Controls.Add(C3R0_B3);
   panel1.Controls.Add(C3R0_B4);
   panel1.Controls.Add(C3R0_B5);
   panel1.Controls.Add(C3R0_B6);
   panel1.Controls.Add(C3R0_B7);
   panel1.Controls.Add(C2R1_B0);
   panel1.Controls.Add(C2R1_B1);
   panel1.Controls.Add(C2R1_B2);
   panel1.Controls.Add(C2R1_B3);
   panel1.Controls.Add(C2R1_B4);
   panel1.Controls.Add(C2R1_B5);
   panel1.Controls.Add(C2R1_B6);
   panel1.Controls.Add(C2R1_B7);
   panel1.Controls.Add(C2R0_B0);
   panel1.Controls.Add(C2R0_B1);
   panel1.Controls.Add(C2R0_B2);
   panel1.Controls.Add(C2R0_B3);
   panel1.Controls.Add(C2R0_B4);
   panel1.Controls.Add(C2R0_B5);
   panel1.Controls.Add(C2R0_B6);
   panel1.Controls.Add(C2R0_B7);
   panel1.Controls.Add(C1R1_B0);
   panel1.Controls.Add(C1R1_B1);
   panel1.Controls.Add(C1R1_B2);
   panel1.Controls.Add(C1R1_B3);
   panel1.Controls.Add(C1R1_B4);
   panel1.Controls.Add(C1R1_B5);
   panel1.Controls.Add(C1R1_B6);
   panel1.Controls.Add(C1R1_B7);
   panel1.Controls.Add(C1R0_B0);
   panel1.Controls.Add(C1R0_B1);
   panel1.Controls.Add(C1R0_B2);
   panel1.Controls.Add(C1R0_B3);
   panel1.Controls.Add(C1R0_B4);
   panel1.Controls.Add(C1R0_B5);
   panel1.Controls.Add(C1R0_B6);
   panel1.Controls.Add(C1R0_B7);
   panel1.Controls.Add(C0R1_B0);
   panel1.Controls.Add(C0R1_B1);
   panel1.Controls.Add(C0R1_B2);
   panel1.Controls.Add(C0R1_B3);
   panel1.Controls.Add(C0R1_B4);
   panel1.Controls.Add(C0R1_B5);
   panel1.Controls.Add(C0R1_B6);
   panel1.Controls.Add(C0R1_B7);
   panel1.Controls.Add(C0R0_B0);
   panel1.Controls.Add(C0R0_B1);
   panel1.Controls.Add(C0R0_B2);
   panel1.Controls.Add(C0R0_B3);
   panel1.Controls.Add(C0R0_B4);
   panel1.Controls.Add(C0R0_B5);
   panel1.Controls.Add(C0R0_B6);
   panel1.Controls.Add(C0R0_B7);
   panel1.Enabled = false;
   panel1.Location = new Point(6, 7);
   panel1.Name = "panel1";
   panel1.Size = new Size(305, 242);
   panel1.TabIndex = 288;
   // 
   // lblEditIndex
   // 
   lblEditIndex.AutoSize = true;
   lblEditIndex.Location = new Point(221, 115);
   lblEditIndex.Name = "lblEditIndex";
   lblEditIndex.Size = new Size(61, 13);
   lblEditIndex.TabIndex = 550;
   lblEditIndex.Text = "lblEditIndex";
   lblEditIndex.Visible = false;
   // 
   // cmdSaveEdit
   // 
   cmdSaveEdit.Enabled = false;
   cmdSaveEdit.Location = new Point(214, 181);
   cmdSaveEdit.Name = "cmdSaveEdit";
   cmdSaveEdit.Size = new Size(75, 23);
   cmdSaveEdit.TabIndex = 549;
   cmdSaveEdit.Text = "Save";
   cmdSaveEdit.UseVisualStyleBackColor = true;
   cmdSaveEdit.Click += cmdSaveEdit_Click;
   // 
   // cmdCancelEdit
   // 
   cmdCancelEdit.Enabled = false;
   cmdCancelEdit.Location = new Point(214, 209);
   cmdCancelEdit.Name = "cmdCancelEdit";
   cmdCancelEdit.Size = new Size(75, 23);
   cmdCancelEdit.TabIndex = 548;
   cmdCancelEdit.Text = "Cancel";
   cmdCancelEdit.UseVisualStyleBackColor = true;
   cmdCancelEdit.Click += cmdCancelEdit_Click;
   // 
   // cmdInvert
   // 
   cmdInvert.Enabled = false;
   cmdInvert.Location = new Point(214, 61);
   cmdInvert.Name = "cmdInvert";
   cmdInvert.Size = new Size(75, 23);
   cmdInvert.TabIndex = 547;
   cmdInvert.Text = "Invert";
   cmdInvert.UseVisualStyleBackColor = true;
   cmdInvert.Click += cmdInvert_Click;
   // 
   // cmdSetAll
   // 
   cmdSetAll.Enabled = false;
   cmdSetAll.Location = new Point(214, 33);
   cmdSetAll.Name = "cmdSetAll";
   cmdSetAll.Size = new Size(75, 23);
   cmdSetAll.TabIndex = 546;
   cmdSetAll.Text = "Set All";
   cmdSetAll.UseVisualStyleBackColor = true;
   cmdSetAll.Click += cmdSetAll_Click;
   // 
   // cmdClearAll
   // 
   cmdClearAll.Enabled = false;
   cmdClearAll.Location = new Point(214, 6);
   cmdClearAll.Name = "cmdClearAll";
   cmdClearAll.Size = new Size(75, 23);
   cmdClearAll.TabIndex = 545;
   cmdClearAll.Text = "Clear All";
   cmdClearAll.UseVisualStyleBackColor = true;
   cmdClearAll.Click += cmdClearAll_Click;
   // 
   // lblCurrentIcon
   // 
   lblCurrentIcon.BorderStyle = BorderStyle.FixedSingle;
   lblCurrentIcon.Font = new Font("Microsoft Sans Serif", 15.75F, FontStyle.Bold, GraphicsUnit.Point,
                                  ((0)));
   lblCurrentIcon.Location = new Point(3, 201);
   lblCurrentIcon.Name = "lblCurrentIcon";
   lblCurrentIcon.Size = new Size(197, 33);
   lblCurrentIcon.TabIndex = 544;
   lblCurrentIcon.TextAlign = ContentAlignment.MiddleCenter;
   // 
   // C15R1_B0
   // 
   C15R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B0.Location = new Point(186, 186);
   C15R1_B0.Name = "C15R1_B0";
   C15R1_B0.Size = new Size(14, 14);
   C15R1_B0.TabIndex = 543;
   C15R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B0.ThreeState = true;
   C15R1_B0.UseVisualStyleBackColor = true;
   C15R1_B0.Click += Pixel_Click;
   // 
   // C15R1_B1
   // 
   C15R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B1.Location = new Point(186, 174);
   C15R1_B1.Name = "C15R1_B1";
   C15R1_B1.Size = new Size(14, 14);
   C15R1_B1.TabIndex = 542;
   C15R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B1.ThreeState = true;
   C15R1_B1.UseVisualStyleBackColor = true;
   C15R1_B1.Click += Pixel_Click;
   // 
   // C15R1_B2
   // 
   C15R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B2.Location = new Point(186, 162);
   C15R1_B2.Name = "C15R1_B2";
   C15R1_B2.Size = new Size(14, 14);
   C15R1_B2.TabIndex = 541;
   C15R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B2.ThreeState = true;
   C15R1_B2.UseVisualStyleBackColor = true;
   C15R1_B2.Click += Pixel_Click;
   // 
   // C15R1_B3
   // 
   C15R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B3.Location = new Point(186, 150);
   C15R1_B3.Name = "C15R1_B3";
   C15R1_B3.Size = new Size(14, 14);
   C15R1_B3.TabIndex = 540;
   C15R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B3.ThreeState = true;
   C15R1_B3.UseVisualStyleBackColor = true;
   C15R1_B3.Click += Pixel_Click;
   // 
   // C15R1_B4
   // 
   C15R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B4.Location = new Point(186, 138);
   C15R1_B4.Name = "C15R1_B4";
   C15R1_B4.Size = new Size(14, 14);
   C15R1_B4.TabIndex = 539;
   C15R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B4.ThreeState = true;
   C15R1_B4.UseVisualStyleBackColor = true;
   C15R1_B4.Click += Pixel_Click;
   // 
   // C15R1_B5
   // 
   C15R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B5.Location = new Point(186, 126);
   C15R1_B5.Name = "C15R1_B5";
   C15R1_B5.Size = new Size(14, 14);
   C15R1_B5.TabIndex = 538;
   C15R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B5.ThreeState = true;
   C15R1_B5.UseVisualStyleBackColor = true;
   C15R1_B5.Click += Pixel_Click;
   // 
   // C15R1_B6
   // 
   C15R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B6.Location = new Point(186, 114);
   C15R1_B6.Name = "C15R1_B6";
   C15R1_B6.Size = new Size(14, 14);
   C15R1_B6.TabIndex = 537;
   C15R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B6.ThreeState = true;
   C15R1_B6.UseVisualStyleBackColor = true;
   C15R1_B6.Click += Pixel_Click;
   // 
   // C15R1_B7
   // 
   C15R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C15R1_B7.Location = new Point(186, 102);
   C15R1_B7.Name = "C15R1_B7";
   C15R1_B7.Size = new Size(14, 14);
   C15R1_B7.TabIndex = 536;
   C15R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C15R1_B7.ThreeState = true;
   C15R1_B7.UseVisualStyleBackColor = true;
   C15R1_B7.Click += Pixel_Click;
   // 
   // C15R0_B0
   // 
   C15R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B0.Location = new Point(186, 90);
   C15R0_B0.Name = "C15R0_B0";
   C15R0_B0.Size = new Size(14, 14);
   C15R0_B0.TabIndex = 535;
   C15R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B0.ThreeState = true;
   C15R0_B0.UseVisualStyleBackColor = true;
   C15R0_B0.Click += Pixel_Click;
   // 
   // C15R0_B1
   // 
   C15R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B1.Location = new Point(186, 78);
   C15R0_B1.Name = "C15R0_B1";
   C15R0_B1.Size = new Size(14, 14);
   C15R0_B1.TabIndex = 534;
   C15R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B1.ThreeState = true;
   C15R0_B1.UseVisualStyleBackColor = true;
   C15R0_B1.Click += Pixel_Click;
   // 
   // C15R0_B2
   // 
   C15R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B2.Location = new Point(186, 66);
   C15R0_B2.Name = "C15R0_B2";
   C15R0_B2.Size = new Size(14, 14);
   C15R0_B2.TabIndex = 533;
   C15R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B2.ThreeState = true;
   C15R0_B2.UseVisualStyleBackColor = true;
   C15R0_B2.Click += Pixel_Click;
   // 
   // C15R0_B3
   // 
   C15R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B3.Location = new Point(186, 54);
   C15R0_B3.Name = "C15R0_B3";
   C15R0_B3.Size = new Size(14, 14);
   C15R0_B3.TabIndex = 532;
   C15R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B3.ThreeState = true;
   C15R0_B3.UseVisualStyleBackColor = true;
   C15R0_B3.Click += Pixel_Click;
   // 
   // C15R0_B4
   // 
   C15R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B4.Location = new Point(186, 42);
   C15R0_B4.Name = "C15R0_B4";
   C15R0_B4.Size = new Size(14, 14);
   C15R0_B4.TabIndex = 531;
   C15R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B4.ThreeState = true;
   C15R0_B4.UseVisualStyleBackColor = true;
   C15R0_B4.Click += Pixel_Click;
   // 
   // C15R0_B5
   // 
   C15R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B5.Location = new Point(186, 30);
   C15R0_B5.Name = "C15R0_B5";
   C15R0_B5.Size = new Size(14, 14);
   C15R0_B5.TabIndex = 530;
   C15R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B5.ThreeState = true;
   C15R0_B5.UseVisualStyleBackColor = true;
   C15R0_B5.Click += Pixel_Click;
   // 
   // C15R0_B6
   // 
   C15R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B6.Location = new Point(186, 18);
   C15R0_B6.Name = "C15R0_B6";
   C15R0_B6.Size = new Size(14, 14);
   C15R0_B6.TabIndex = 529;
   C15R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B6.ThreeState = true;
   C15R0_B6.UseVisualStyleBackColor = true;
   C15R0_B6.Click += Pixel_Click;
   // 
   // C15R0_B7
   // 
   C15R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C15R0_B7.Location = new Point(186, 6);
   C15R0_B7.Name = "C15R0_B7";
   C15R0_B7.Size = new Size(14, 14);
   C15R0_B7.TabIndex = 528;
   C15R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C15R0_B7.ThreeState = true;
   C15R0_B7.UseVisualStyleBackColor = true;
   C15R0_B7.Click += Pixel_Click;
   // 
   // C14R1_B0
   // 
   C14R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B0.Location = new Point(174, 186);
   C14R1_B0.Name = "C14R1_B0";
   C14R1_B0.Size = new Size(14, 14);
   C14R1_B0.TabIndex = 527;
   C14R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B0.ThreeState = true;
   C14R1_B0.UseVisualStyleBackColor = true;
   C14R1_B0.Click += Pixel_Click;
   // 
   // C14R1_B1
   // 
   C14R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B1.Location = new Point(174, 174);
   C14R1_B1.Name = "C14R1_B1";
   C14R1_B1.Size = new Size(14, 14);
   C14R1_B1.TabIndex = 526;
   C14R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B1.ThreeState = true;
   C14R1_B1.UseVisualStyleBackColor = true;
   C14R1_B1.Click += Pixel_Click;
   // 
   // C14R1_B2
   // 
   C14R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B2.Location = new Point(174, 162);
   C14R1_B2.Name = "C14R1_B2";
   C14R1_B2.Size = new Size(14, 14);
   C14R1_B2.TabIndex = 525;
   C14R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B2.ThreeState = true;
   C14R1_B2.UseVisualStyleBackColor = true;
   C14R1_B2.Click += Pixel_Click;
   // 
   // C14R1_B3
   // 
   C14R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B3.Location = new Point(174, 150);
   C14R1_B3.Name = "C14R1_B3";
   C14R1_B3.Size = new Size(14, 14);
   C14R1_B3.TabIndex = 524;
   C14R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B3.ThreeState = true;
   C14R1_B3.UseVisualStyleBackColor = true;
   C14R1_B3.Click += Pixel_Click;
   // 
   // C14R1_B4
   // 
   C14R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B4.Location = new Point(174, 138);
   C14R1_B4.Name = "C14R1_B4";
   C14R1_B4.Size = new Size(14, 14);
   C14R1_B4.TabIndex = 523;
   C14R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B4.ThreeState = true;
   C14R1_B4.UseVisualStyleBackColor = true;
   C14R1_B4.Click += Pixel_Click;
   // 
   // C14R1_B5
   // 
   C14R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B5.Location = new Point(174, 126);
   C14R1_B5.Name = "C14R1_B5";
   C14R1_B5.Size = new Size(14, 14);
   C14R1_B5.TabIndex = 522;
   C14R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B5.ThreeState = true;
   C14R1_B5.UseVisualStyleBackColor = true;
   C14R1_B5.Click += Pixel_Click;
   // 
   // C14R1_B6
   // 
   C14R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B6.Location = new Point(174, 114);
   C14R1_B6.Name = "C14R1_B6";
   C14R1_B6.Size = new Size(14, 14);
   C14R1_B6.TabIndex = 521;
   C14R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B6.ThreeState = true;
   C14R1_B6.UseVisualStyleBackColor = true;
   C14R1_B6.Click += Pixel_Click;
   // 
   // C14R1_B7
   // 
   C14R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C14R1_B7.Location = new Point(174, 102);
   C14R1_B7.Name = "C14R1_B7";
   C14R1_B7.Size = new Size(14, 14);
   C14R1_B7.TabIndex = 520;
   C14R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C14R1_B7.ThreeState = true;
   C14R1_B7.UseVisualStyleBackColor = true;
   C14R1_B7.Click += Pixel_Click;
   // 
   // C14R0_B0
   // 
   C14R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B0.Location = new Point(174, 90);
   C14R0_B0.Name = "C14R0_B0";
   C14R0_B0.Size = new Size(14, 14);
   C14R0_B0.TabIndex = 519;
   C14R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B0.ThreeState = true;
   C14R0_B0.UseVisualStyleBackColor = true;
   C14R0_B0.Click += Pixel_Click;
   // 
   // C14R0_B1
   // 
   C14R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B1.Location = new Point(174, 78);
   C14R0_B1.Name = "C14R0_B1";
   C14R0_B1.Size = new Size(14, 14);
   C14R0_B1.TabIndex = 518;
   C14R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B1.ThreeState = true;
   C14R0_B1.UseVisualStyleBackColor = true;
   C14R0_B1.Click += Pixel_Click;
   // 
   // C14R0_B2
   // 
   C14R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B2.Location = new Point(174, 66);
   C14R0_B2.Name = "C14R0_B2";
   C14R0_B2.Size = new Size(14, 14);
   C14R0_B2.TabIndex = 517;
   C14R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B2.ThreeState = true;
   C14R0_B2.UseVisualStyleBackColor = true;
   C14R0_B2.Click += Pixel_Click;
   // 
   // C14R0_B3
   // 
   C14R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B3.Location = new Point(174, 54);
   C14R0_B3.Name = "C14R0_B3";
   C14R0_B3.Size = new Size(14, 14);
   C14R0_B3.TabIndex = 516;
   C14R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B3.ThreeState = true;
   C14R0_B3.UseVisualStyleBackColor = true;
   C14R0_B3.Click += Pixel_Click;
   // 
   // C14R0_B4
   // 
   C14R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B4.Location = new Point(174, 42);
   C14R0_B4.Name = "C14R0_B4";
   C14R0_B4.Size = new Size(14, 14);
   C14R0_B4.TabIndex = 515;
   C14R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B4.ThreeState = true;
   C14R0_B4.UseVisualStyleBackColor = true;
   C14R0_B4.Click += Pixel_Click;
   // 
   // C14R0_B5
   // 
   C14R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B5.Location = new Point(174, 30);
   C14R0_B5.Name = "C14R0_B5";
   C14R0_B5.Size = new Size(14, 14);
   C14R0_B5.TabIndex = 514;
   C14R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B5.ThreeState = true;
   C14R0_B5.UseVisualStyleBackColor = true;
   C14R0_B5.Click += Pixel_Click;
   // 
   // C14R0_B6
   // 
   C14R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B6.Location = new Point(174, 18);
   C14R0_B6.Name = "C14R0_B6";
   C14R0_B6.Size = new Size(14, 14);
   C14R0_B6.TabIndex = 513;
   C14R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B6.ThreeState = true;
   C14R0_B6.UseVisualStyleBackColor = true;
   C14R0_B6.Click += Pixel_Click;
   // 
   // C14R0_B7
   // 
   C14R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C14R0_B7.Location = new Point(174, 6);
   C14R0_B7.Name = "C14R0_B7";
   C14R0_B7.Size = new Size(14, 14);
   C14R0_B7.TabIndex = 512;
   C14R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C14R0_B7.ThreeState = true;
   C14R0_B7.UseVisualStyleBackColor = true;
   C14R0_B7.Click += Pixel_Click;
   // 
   // C13R1_B0
   // 
   C13R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B0.Location = new Point(162, 186);
   C13R1_B0.Name = "C13R1_B0";
   C13R1_B0.Size = new Size(14, 14);
   C13R1_B0.TabIndex = 511;
   C13R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B0.ThreeState = true;
   C13R1_B0.UseVisualStyleBackColor = true;
   C13R1_B0.Click += Pixel_Click;
   // 
   // C13R1_B1
   // 
   C13R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B1.Location = new Point(162, 174);
   C13R1_B1.Name = "C13R1_B1";
   C13R1_B1.Size = new Size(14, 14);
   C13R1_B1.TabIndex = 510;
   C13R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B1.ThreeState = true;
   C13R1_B1.UseVisualStyleBackColor = true;
   C13R1_B1.Click += Pixel_Click;
   // 
   // C13R1_B2
   // 
   C13R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B2.Location = new Point(162, 162);
   C13R1_B2.Name = "C13R1_B2";
   C13R1_B2.Size = new Size(14, 14);
   C13R1_B2.TabIndex = 509;
   C13R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B2.ThreeState = true;
   C13R1_B2.UseVisualStyleBackColor = true;
   C13R1_B2.Click += Pixel_Click;
   // 
   // C13R1_B3
   // 
   C13R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B3.Location = new Point(162, 150);
   C13R1_B3.Name = "C13R1_B3";
   C13R1_B3.Size = new Size(14, 14);
   C13R1_B3.TabIndex = 508;
   C13R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B3.ThreeState = true;
   C13R1_B3.UseVisualStyleBackColor = true;
   C13R1_B3.Click += Pixel_Click;
   // 
   // C13R1_B4
   // 
   C13R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B4.Location = new Point(162, 138);
   C13R1_B4.Name = "C13R1_B4";
   C13R1_B4.Size = new Size(14, 14);
   C13R1_B4.TabIndex = 507;
   C13R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B4.ThreeState = true;
   C13R1_B4.UseVisualStyleBackColor = true;
   C13R1_B4.Click += Pixel_Click;
   // 
   // C13R1_B5
   // 
   C13R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B5.Location = new Point(162, 126);
   C13R1_B5.Name = "C13R1_B5";
   C13R1_B5.Size = new Size(14, 14);
   C13R1_B5.TabIndex = 506;
   C13R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B5.ThreeState = true;
   C13R1_B5.UseVisualStyleBackColor = true;
   C13R1_B5.Click += Pixel_Click;
   // 
   // C13R1_B6
   // 
   C13R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B6.Location = new Point(162, 114);
   C13R1_B6.Name = "C13R1_B6";
   C13R1_B6.Size = new Size(14, 14);
   C13R1_B6.TabIndex = 505;
   C13R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B6.ThreeState = true;
   C13R1_B6.UseVisualStyleBackColor = true;
   C13R1_B6.Click += Pixel_Click;
   // 
   // C13R1_B7
   // 
   C13R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C13R1_B7.Location = new Point(162, 102);
   C13R1_B7.Name = "C13R1_B7";
   C13R1_B7.Size = new Size(14, 14);
   C13R1_B7.TabIndex = 504;
   C13R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C13R1_B7.ThreeState = true;
   C13R1_B7.UseVisualStyleBackColor = true;
   C13R1_B7.Click += Pixel_Click;
   // 
   // C13R0_B0
   // 
   C13R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B0.Location = new Point(162, 90);
   C13R0_B0.Name = "C13R0_B0";
   C13R0_B0.Size = new Size(14, 14);
   C13R0_B0.TabIndex = 503;
   C13R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B0.ThreeState = true;
   C13R0_B0.UseVisualStyleBackColor = true;
   C13R0_B0.Click += Pixel_Click;
   // 
   // C13R0_B1
   // 
   C13R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B1.Location = new Point(162, 78);
   C13R0_B1.Name = "C13R0_B1";
   C13R0_B1.Size = new Size(14, 14);
   C13R0_B1.TabIndex = 502;
   C13R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B1.ThreeState = true;
   C13R0_B1.UseVisualStyleBackColor = true;
   C13R0_B1.Click += Pixel_Click;
   // 
   // C13R0_B2
   // 
   C13R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B2.Location = new Point(162, 66);
   C13R0_B2.Name = "C13R0_B2";
   C13R0_B2.Size = new Size(14, 14);
   C13R0_B2.TabIndex = 501;
   C13R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B2.ThreeState = true;
   C13R0_B2.UseVisualStyleBackColor = true;
   C13R0_B2.Click += Pixel_Click;
   // 
   // C13R0_B3
   // 
   C13R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B3.Location = new Point(162, 54);
   C13R0_B3.Name = "C13R0_B3";
   C13R0_B3.Size = new Size(14, 14);
   C13R0_B3.TabIndex = 500;
   C13R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B3.ThreeState = true;
   C13R0_B3.UseVisualStyleBackColor = true;
   C13R0_B3.Click += Pixel_Click;
   // 
   // C13R0_B4
   // 
   C13R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B4.Location = new Point(162, 42);
   C13R0_B4.Name = "C13R0_B4";
   C13R0_B4.Size = new Size(14, 14);
   C13R0_B4.TabIndex = 499;
   C13R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B4.ThreeState = true;
   C13R0_B4.UseVisualStyleBackColor = true;
   C13R0_B4.Click += Pixel_Click;
   // 
   // C13R0_B5
   // 
   C13R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B5.Location = new Point(162, 30);
   C13R0_B5.Name = "C13R0_B5";
   C13R0_B5.Size = new Size(14, 14);
   C13R0_B5.TabIndex = 498;
   C13R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B5.ThreeState = true;
   C13R0_B5.UseVisualStyleBackColor = true;
   C13R0_B5.Click += Pixel_Click;
   // 
   // C13R0_B6
   // 
   C13R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B6.Location = new Point(162, 18);
   C13R0_B6.Name = "C13R0_B6";
   C13R0_B6.Size = new Size(14, 14);
   C13R0_B6.TabIndex = 497;
   C13R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B6.ThreeState = true;
   C13R0_B6.UseVisualStyleBackColor = true;
   C13R0_B6.Click += Pixel_Click;
   // 
   // C13R0_B7
   // 
   C13R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C13R0_B7.Location = new Point(162, 6);
   C13R0_B7.Name = "C13R0_B7";
   C13R0_B7.Size = new Size(14, 14);
   C13R0_B7.TabIndex = 496;
   C13R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C13R0_B7.ThreeState = true;
   C13R0_B7.UseVisualStyleBackColor = true;
   C13R0_B7.Click += Pixel_Click;
   // 
   // C12R1_B0
   // 
   C12R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B0.Location = new Point(150, 186);
   C12R1_B0.Name = "C12R1_B0";
   C12R1_B0.Size = new Size(14, 14);
   C12R1_B0.TabIndex = 495;
   C12R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B0.ThreeState = true;
   C12R1_B0.UseVisualStyleBackColor = true;
   C12R1_B0.Click += Pixel_Click;
   // 
   // C12R1_B1
   // 
   C12R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B1.Location = new Point(150, 174);
   C12R1_B1.Name = "C12R1_B1";
   C12R1_B1.Size = new Size(14, 14);
   C12R1_B1.TabIndex = 494;
   C12R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B1.ThreeState = true;
   C12R1_B1.UseVisualStyleBackColor = true;
   C12R1_B1.Click += Pixel_Click;
   // 
   // C12R1_B2
   // 
   C12R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B2.Location = new Point(150, 162);
   C12R1_B2.Name = "C12R1_B2";
   C12R1_B2.Size = new Size(14, 14);
   C12R1_B2.TabIndex = 493;
   C12R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B2.ThreeState = true;
   C12R1_B2.UseVisualStyleBackColor = true;
   C12R1_B2.Click += Pixel_Click;
   // 
   // C12R1_B3
   // 
   C12R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B3.Location = new Point(150, 150);
   C12R1_B3.Name = "C12R1_B3";
   C12R1_B3.Size = new Size(14, 14);
   C12R1_B3.TabIndex = 492;
   C12R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B3.ThreeState = true;
   C12R1_B3.UseVisualStyleBackColor = true;
   C12R1_B3.Click += Pixel_Click;
   // 
   // C12R1_B4
   // 
   C12R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B4.Location = new Point(150, 138);
   C12R1_B4.Name = "C12R1_B4";
   C12R1_B4.Size = new Size(14, 14);
   C12R1_B4.TabIndex = 491;
   C12R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B4.ThreeState = true;
   C12R1_B4.UseVisualStyleBackColor = true;
   C12R1_B4.Click += Pixel_Click;
   // 
   // C12R1_B5
   // 
   C12R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B5.Location = new Point(150, 126);
   C12R1_B5.Name = "C12R1_B5";
   C12R1_B5.Size = new Size(14, 14);
   C12R1_B5.TabIndex = 490;
   C12R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B5.ThreeState = true;
   C12R1_B5.UseVisualStyleBackColor = true;
   C12R1_B5.Click += Pixel_Click;
   // 
   // C12R1_B6
   // 
   C12R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B6.Location = new Point(150, 114);
   C12R1_B6.Name = "C12R1_B6";
   C12R1_B6.Size = new Size(14, 14);
   C12R1_B6.TabIndex = 489;
   C12R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B6.ThreeState = true;
   C12R1_B6.UseVisualStyleBackColor = true;
   C12R1_B6.Click += Pixel_Click;
   // 
   // C12R1_B7
   // 
   C12R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C12R1_B7.Location = new Point(150, 102);
   C12R1_B7.Name = "C12R1_B7";
   C12R1_B7.Size = new Size(14, 14);
   C12R1_B7.TabIndex = 488;
   C12R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C12R1_B7.ThreeState = true;
   C12R1_B7.UseVisualStyleBackColor = true;
   C12R1_B7.Click += Pixel_Click;
   // 
   // C12R0_B0
   // 
   C12R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B0.Location = new Point(150, 90);
   C12R0_B0.Name = "C12R0_B0";
   C12R0_B0.Size = new Size(14, 14);
   C12R0_B0.TabIndex = 487;
   C12R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B0.ThreeState = true;
   C12R0_B0.UseVisualStyleBackColor = true;
   C12R0_B0.Click += Pixel_Click;
   // 
   // C12R0_B1
   // 
   C12R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B1.Location = new Point(150, 78);
   C12R0_B1.Name = "C12R0_B1";
   C12R0_B1.Size = new Size(14, 14);
   C12R0_B1.TabIndex = 486;
   C12R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B1.ThreeState = true;
   C12R0_B1.UseVisualStyleBackColor = true;
   C12R0_B1.Click += Pixel_Click;
   // 
   // C12R0_B2
   // 
   C12R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B2.Location = new Point(150, 66);
   C12R0_B2.Name = "C12R0_B2";
   C12R0_B2.Size = new Size(14, 14);
   C12R0_B2.TabIndex = 485;
   C12R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B2.ThreeState = true;
   C12R0_B2.UseVisualStyleBackColor = true;
   C12R0_B2.Click += Pixel_Click;
   // 
   // C12R0_B3
   // 
   C12R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B3.Location = new Point(150, 54);
   C12R0_B3.Name = "C12R0_B3";
   C12R0_B3.Size = new Size(14, 14);
   C12R0_B3.TabIndex = 484;
   C12R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B3.ThreeState = true;
   C12R0_B3.UseVisualStyleBackColor = true;
   C12R0_B3.Click += Pixel_Click;
   // 
   // C12R0_B4
   // 
   C12R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B4.Location = new Point(150, 42);
   C12R0_B4.Name = "C12R0_B4";
   C12R0_B4.Size = new Size(14, 14);
   C12R0_B4.TabIndex = 483;
   C12R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B4.ThreeState = true;
   C12R0_B4.UseVisualStyleBackColor = true;
   C12R0_B4.Click += Pixel_Click;
   // 
   // C12R0_B5
   // 
   C12R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B5.Location = new Point(150, 30);
   C12R0_B5.Name = "C12R0_B5";
   C12R0_B5.Size = new Size(14, 14);
   C12R0_B5.TabIndex = 482;
   C12R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B5.ThreeState = true;
   C12R0_B5.UseVisualStyleBackColor = true;
   C12R0_B5.Click += Pixel_Click;
   // 
   // C12R0_B6
   // 
   C12R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B6.Location = new Point(150, 18);
   C12R0_B6.Name = "C12R0_B6";
   C12R0_B6.Size = new Size(14, 14);
   C12R0_B6.TabIndex = 481;
   C12R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B6.ThreeState = true;
   C12R0_B6.UseVisualStyleBackColor = true;
   C12R0_B6.Click += Pixel_Click;
   // 
   // C12R0_B7
   // 
   C12R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C12R0_B7.Location = new Point(150, 6);
   C12R0_B7.Name = "C12R0_B7";
   C12R0_B7.Size = new Size(14, 14);
   C12R0_B7.TabIndex = 480;
   C12R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C12R0_B7.ThreeState = true;
   C12R0_B7.UseVisualStyleBackColor = true;
   C12R0_B7.Click += Pixel_Click;
   // 
   // C11R1_B0
   // 
   C11R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B0.Location = new Point(138, 186);
   C11R1_B0.Name = "C11R1_B0";
   C11R1_B0.Size = new Size(14, 14);
   C11R1_B0.TabIndex = 479;
   C11R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B0.ThreeState = true;
   C11R1_B0.UseVisualStyleBackColor = true;
   C11R1_B0.Click += Pixel_Click;
   // 
   // C11R1_B1
   // 
   C11R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B1.Location = new Point(138, 174);
   C11R1_B1.Name = "C11R1_B1";
   C11R1_B1.Size = new Size(14, 14);
   C11R1_B1.TabIndex = 478;
   C11R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B1.ThreeState = true;
   C11R1_B1.UseVisualStyleBackColor = true;
   C11R1_B1.Click += Pixel_Click;
   // 
   // C11R1_B2
   // 
   C11R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B2.Location = new Point(138, 162);
   C11R1_B2.Name = "C11R1_B2";
   C11R1_B2.Size = new Size(14, 14);
   C11R1_B2.TabIndex = 477;
   C11R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B2.ThreeState = true;
   C11R1_B2.UseVisualStyleBackColor = true;
   C11R1_B2.Click += Pixel_Click;
   // 
   // C11R1_B3
   // 
   C11R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B3.Location = new Point(138, 150);
   C11R1_B3.Name = "C11R1_B3";
   C11R1_B3.Size = new Size(14, 14);
   C11R1_B3.TabIndex = 476;
   C11R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B3.ThreeState = true;
   C11R1_B3.UseVisualStyleBackColor = true;
   C11R1_B3.Click += Pixel_Click;
   // 
   // C11R1_B4
   // 
   C11R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B4.Location = new Point(138, 138);
   C11R1_B4.Name = "C11R1_B4";
   C11R1_B4.Size = new Size(14, 14);
   C11R1_B4.TabIndex = 475;
   C11R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B4.ThreeState = true;
   C11R1_B4.UseVisualStyleBackColor = true;
   C11R1_B4.Click += Pixel_Click;
   // 
   // C11R1_B5
   // 
   C11R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B5.Location = new Point(138, 126);
   C11R1_B5.Name = "C11R1_B5";
   C11R1_B5.Size = new Size(14, 14);
   C11R1_B5.TabIndex = 474;
   C11R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B5.ThreeState = true;
   C11R1_B5.UseVisualStyleBackColor = true;
   C11R1_B5.Click += Pixel_Click;
   // 
   // C11R1_B6
   // 
   C11R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B6.Location = new Point(138, 114);
   C11R1_B6.Name = "C11R1_B6";
   C11R1_B6.Size = new Size(14, 14);
   C11R1_B6.TabIndex = 473;
   C11R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B6.ThreeState = true;
   C11R1_B6.UseVisualStyleBackColor = true;
   C11R1_B6.Click += Pixel_Click;
   // 
   // C11R1_B7
   // 
   C11R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C11R1_B7.Location = new Point(138, 102);
   C11R1_B7.Name = "C11R1_B7";
   C11R1_B7.Size = new Size(14, 14);
   C11R1_B7.TabIndex = 472;
   C11R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C11R1_B7.ThreeState = true;
   C11R1_B7.UseVisualStyleBackColor = true;
   C11R1_B7.Click += Pixel_Click;
   // 
   // C11R0_B0
   // 
   C11R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B0.Location = new Point(138, 90);
   C11R0_B0.Name = "C11R0_B0";
   C11R0_B0.Size = new Size(14, 14);
   C11R0_B0.TabIndex = 471;
   C11R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B0.ThreeState = true;
   C11R0_B0.UseVisualStyleBackColor = true;
   C11R0_B0.Click += Pixel_Click;
   // 
   // C11R0_B1
   // 
   C11R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B1.Location = new Point(138, 78);
   C11R0_B1.Name = "C11R0_B1";
   C11R0_B1.Size = new Size(14, 14);
   C11R0_B1.TabIndex = 470;
   C11R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B1.ThreeState = true;
   C11R0_B1.UseVisualStyleBackColor = true;
   C11R0_B1.Click += Pixel_Click;
   // 
   // C11R0_B2
   // 
   C11R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B2.Location = new Point(138, 66);
   C11R0_B2.Name = "C11R0_B2";
   C11R0_B2.Size = new Size(14, 14);
   C11R0_B2.TabIndex = 469;
   C11R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B2.ThreeState = true;
   C11R0_B2.UseVisualStyleBackColor = true;
   C11R0_B2.Click += Pixel_Click;
   // 
   // C11R0_B3
   // 
   C11R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B3.Location = new Point(138, 54);
   C11R0_B3.Name = "C11R0_B3";
   C11R0_B3.Size = new Size(14, 14);
   C11R0_B3.TabIndex = 468;
   C11R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B3.ThreeState = true;
   C11R0_B3.UseVisualStyleBackColor = true;
   C11R0_B3.Click += Pixel_Click;
   // 
   // C11R0_B4
   // 
   C11R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B4.Location = new Point(138, 42);
   C11R0_B4.Name = "C11R0_B4";
   C11R0_B4.Size = new Size(14, 14);
   C11R0_B4.TabIndex = 467;
   C11R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B4.ThreeState = true;
   C11R0_B4.UseVisualStyleBackColor = true;
   C11R0_B4.Click += Pixel_Click;
   // 
   // C11R0_B5
   // 
   C11R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B5.Location = new Point(138, 30);
   C11R0_B5.Name = "C11R0_B5";
   C11R0_B5.Size = new Size(14, 14);
   C11R0_B5.TabIndex = 466;
   C11R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B5.ThreeState = true;
   C11R0_B5.UseVisualStyleBackColor = true;
   C11R0_B5.Click += Pixel_Click;
   // 
   // C11R0_B6
   // 
   C11R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B6.Location = new Point(138, 18);
   C11R0_B6.Name = "C11R0_B6";
   C11R0_B6.Size = new Size(14, 14);
   C11R0_B6.TabIndex = 465;
   C11R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B6.ThreeState = true;
   C11R0_B6.UseVisualStyleBackColor = true;
   C11R0_B6.Click += Pixel_Click;
   // 
   // C11R0_B7
   // 
   C11R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C11R0_B7.Location = new Point(138, 6);
   C11R0_B7.Name = "C11R0_B7";
   C11R0_B7.Size = new Size(14, 14);
   C11R0_B7.TabIndex = 464;
   C11R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C11R0_B7.ThreeState = true;
   C11R0_B7.UseVisualStyleBackColor = true;
   C11R0_B7.Click += Pixel_Click;
   // 
   // C10R1_B0
   // 
   C10R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B0.Location = new Point(126, 186);
   C10R1_B0.Name = "C10R1_B0";
   C10R1_B0.Size = new Size(14, 14);
   C10R1_B0.TabIndex = 463;
   C10R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B0.ThreeState = true;
   C10R1_B0.UseVisualStyleBackColor = true;
   C10R1_B0.Click += Pixel_Click;
   // 
   // C10R1_B1
   // 
   C10R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B1.Location = new Point(126, 174);
   C10R1_B1.Name = "C10R1_B1";
   C10R1_B1.Size = new Size(14, 14);
   C10R1_B1.TabIndex = 462;
   C10R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B1.ThreeState = true;
   C10R1_B1.UseVisualStyleBackColor = true;
   C10R1_B1.Click += Pixel_Click;
   // 
   // C10R1_B2
   // 
   C10R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B2.Location = new Point(126, 162);
   C10R1_B2.Name = "C10R1_B2";
   C10R1_B2.Size = new Size(14, 14);
   C10R1_B2.TabIndex = 461;
   C10R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B2.ThreeState = true;
   C10R1_B2.UseVisualStyleBackColor = true;
   C10R1_B2.Click += Pixel_Click;
   // 
   // C10R1_B3
   // 
   C10R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B3.Location = new Point(126, 150);
   C10R1_B3.Name = "C10R1_B3";
   C10R1_B3.Size = new Size(14, 14);
   C10R1_B3.TabIndex = 460;
   C10R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B3.ThreeState = true;
   C10R1_B3.UseVisualStyleBackColor = true;
   C10R1_B3.Click += Pixel_Click;
   // 
   // C10R1_B4
   // 
   C10R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B4.Location = new Point(126, 138);
   C10R1_B4.Name = "C10R1_B4";
   C10R1_B4.Size = new Size(14, 14);
   C10R1_B4.TabIndex = 459;
   C10R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B4.ThreeState = true;
   C10R1_B4.UseVisualStyleBackColor = true;
   C10R1_B4.Click += Pixel_Click;
   // 
   // C10R1_B5
   // 
   C10R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B5.Location = new Point(126, 126);
   C10R1_B5.Name = "C10R1_B5";
   C10R1_B5.Size = new Size(14, 14);
   C10R1_B5.TabIndex = 458;
   C10R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B5.ThreeState = true;
   C10R1_B5.UseVisualStyleBackColor = true;
   C10R1_B5.Click += Pixel_Click;
   // 
   // C10R1_B6
   // 
   C10R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B6.Location = new Point(126, 114);
   C10R1_B6.Name = "C10R1_B6";
   C10R1_B6.Size = new Size(14, 14);
   C10R1_B6.TabIndex = 457;
   C10R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B6.ThreeState = true;
   C10R1_B6.UseVisualStyleBackColor = true;
   C10R1_B6.Click += Pixel_Click;
   // 
   // C10R1_B7
   // 
   C10R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C10R1_B7.Location = new Point(126, 102);
   C10R1_B7.Name = "C10R1_B7";
   C10R1_B7.Size = new Size(14, 14);
   C10R1_B7.TabIndex = 456;
   C10R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C10R1_B7.ThreeState = true;
   C10R1_B7.UseVisualStyleBackColor = true;
   C10R1_B7.Click += Pixel_Click;
   // 
   // C10R0_B0
   // 
   C10R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B0.Location = new Point(126, 90);
   C10R0_B0.Name = "C10R0_B0";
   C10R0_B0.Size = new Size(14, 14);
   C10R0_B0.TabIndex = 455;
   C10R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B0.ThreeState = true;
   C10R0_B0.UseVisualStyleBackColor = true;
   C10R0_B0.Click += Pixel_Click;
   // 
   // C10R0_B1
   // 
   C10R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B1.Location = new Point(126, 78);
   C10R0_B1.Name = "C10R0_B1";
   C10R0_B1.Size = new Size(14, 14);
   C10R0_B1.TabIndex = 454;
   C10R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B1.ThreeState = true;
   C10R0_B1.UseVisualStyleBackColor = true;
   C10R0_B1.Click += Pixel_Click;
   // 
   // C10R0_B2
   // 
   C10R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B2.Location = new Point(126, 66);
   C10R0_B2.Name = "C10R0_B2";
   C10R0_B2.Size = new Size(14, 14);
   C10R0_B2.TabIndex = 453;
   C10R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B2.ThreeState = true;
   C10R0_B2.UseVisualStyleBackColor = true;
   C10R0_B2.Click += Pixel_Click;
   // 
   // C10R0_B3
   // 
   C10R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B3.Location = new Point(126, 54);
   C10R0_B3.Name = "C10R0_B3";
   C10R0_B3.Size = new Size(14, 14);
   C10R0_B3.TabIndex = 452;
   C10R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B3.ThreeState = true;
   C10R0_B3.UseVisualStyleBackColor = true;
   C10R0_B3.Click += Pixel_Click;
   // 
   // C10R0_B4
   // 
   C10R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B4.Location = new Point(126, 42);
   C10R0_B4.Name = "C10R0_B4";
   C10R0_B4.Size = new Size(14, 14);
   C10R0_B4.TabIndex = 451;
   C10R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B4.ThreeState = true;
   C10R0_B4.UseVisualStyleBackColor = true;
   C10R0_B4.Click += Pixel_Click;
   // 
   // C10R0_B5
   // 
   C10R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B5.Location = new Point(126, 30);
   C10R0_B5.Name = "C10R0_B5";
   C10R0_B5.Size = new Size(14, 14);
   C10R0_B5.TabIndex = 450;
   C10R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B5.ThreeState = true;
   C10R0_B5.UseVisualStyleBackColor = true;
   C10R0_B5.Click += Pixel_Click;
   // 
   // C10R0_B6
   // 
   C10R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B6.Location = new Point(126, 18);
   C10R0_B6.Name = "C10R0_B6";
   C10R0_B6.Size = new Size(14, 14);
   C10R0_B6.TabIndex = 449;
   C10R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B6.ThreeState = true;
   C10R0_B6.UseVisualStyleBackColor = true;
   C10R0_B6.Click += Pixel_Click;
   // 
   // C10R0_B7
   // 
   C10R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C10R0_B7.Location = new Point(126, 6);
   C10R0_B7.Name = "C10R0_B7";
   C10R0_B7.Size = new Size(14, 14);
   C10R0_B7.TabIndex = 448;
   C10R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C10R0_B7.ThreeState = true;
   C10R0_B7.UseVisualStyleBackColor = true;
   C10R0_B7.Click += Pixel_Click;
   // 
   // C9R1_B0
   // 
   C9R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B0.Location = new Point(114, 186);
   C9R1_B0.Name = "C9R1_B0";
   C9R1_B0.Size = new Size(14, 14);
   C9R1_B0.TabIndex = 447;
   C9R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B0.ThreeState = true;
   C9R1_B0.UseVisualStyleBackColor = true;
   C9R1_B0.Click += Pixel_Click;
   // 
   // C9R1_B1
   // 
   C9R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B1.Location = new Point(114, 174);
   C9R1_B1.Name = "C9R1_B1";
   C9R1_B1.Size = new Size(14, 14);
   C9R1_B1.TabIndex = 446;
   C9R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B1.ThreeState = true;
   C9R1_B1.UseVisualStyleBackColor = true;
   C9R1_B1.Click += Pixel_Click;
   // 
   // C9R1_B2
   // 
   C9R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B2.Location = new Point(114, 162);
   C9R1_B2.Name = "C9R1_B2";
   C9R1_B2.Size = new Size(14, 14);
   C9R1_B2.TabIndex = 445;
   C9R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B2.ThreeState = true;
   C9R1_B2.UseVisualStyleBackColor = true;
   C9R1_B2.Click += Pixel_Click;
   // 
   // C9R1_B3
   // 
   C9R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B3.Location = new Point(114, 150);
   C9R1_B3.Name = "C9R1_B3";
   C9R1_B3.Size = new Size(14, 14);
   C9R1_B3.TabIndex = 444;
   C9R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B3.ThreeState = true;
   C9R1_B3.UseVisualStyleBackColor = true;
   C9R1_B3.Click += Pixel_Click;
   // 
   // C9R1_B4
   // 
   C9R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B4.Location = new Point(114, 138);
   C9R1_B4.Name = "C9R1_B4";
   C9R1_B4.Size = new Size(14, 14);
   C9R1_B4.TabIndex = 443;
   C9R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B4.ThreeState = true;
   C9R1_B4.UseVisualStyleBackColor = true;
   C9R1_B4.Click += Pixel_Click;
   // 
   // C9R1_B5
   // 
   C9R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B5.Location = new Point(114, 126);
   C9R1_B5.Name = "C9R1_B5";
   C9R1_B5.Size = new Size(14, 14);
   C9R1_B5.TabIndex = 442;
   C9R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B5.ThreeState = true;
   C9R1_B5.UseVisualStyleBackColor = true;
   C9R1_B5.Click += Pixel_Click;
   // 
   // C9R1_B6
   // 
   C9R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B6.Location = new Point(114, 114);
   C9R1_B6.Name = "C9R1_B6";
   C9R1_B6.Size = new Size(14, 14);
   C9R1_B6.TabIndex = 441;
   C9R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B6.ThreeState = true;
   C9R1_B6.UseVisualStyleBackColor = true;
   C9R1_B6.Click += Pixel_Click;
   // 
   // C9R1_B7
   // 
   C9R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C9R1_B7.Location = new Point(114, 102);
   C9R1_B7.Name = "C9R1_B7";
   C9R1_B7.Size = new Size(14, 14);
   C9R1_B7.TabIndex = 440;
   C9R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C9R1_B7.ThreeState = true;
   C9R1_B7.UseVisualStyleBackColor = true;
   C9R1_B7.Click += Pixel_Click;
   // 
   // C9R0_B0
   // 
   C9R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B0.Location = new Point(114, 90);
   C9R0_B0.Name = "C9R0_B0";
   C9R0_B0.Size = new Size(14, 14);
   C9R0_B0.TabIndex = 439;
   C9R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B0.ThreeState = true;
   C9R0_B0.UseVisualStyleBackColor = true;
   C9R0_B0.Click += Pixel_Click;
   // 
   // C9R0_B1
   // 
   C9R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B1.Location = new Point(114, 78);
   C9R0_B1.Name = "C9R0_B1";
   C9R0_B1.Size = new Size(14, 14);
   C9R0_B1.TabIndex = 438;
   C9R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B1.ThreeState = true;
   C9R0_B1.UseVisualStyleBackColor = true;
   C9R0_B1.Click += Pixel_Click;
   // 
   // C9R0_B2
   // 
   C9R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B2.Location = new Point(114, 66);
   C9R0_B2.Name = "C9R0_B2";
   C9R0_B2.Size = new Size(14, 14);
   C9R0_B2.TabIndex = 437;
   C9R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B2.ThreeState = true;
   C9R0_B2.UseVisualStyleBackColor = true;
   C9R0_B2.Click += Pixel_Click;
   // 
   // C9R0_B3
   // 
   C9R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B3.Location = new Point(114, 54);
   C9R0_B3.Name = "C9R0_B3";
   C9R0_B3.Size = new Size(14, 14);
   C9R0_B3.TabIndex = 436;
   C9R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B3.ThreeState = true;
   C9R0_B3.UseVisualStyleBackColor = true;
   C9R0_B3.Click += Pixel_Click;
   // 
   // C9R0_B4
   // 
   C9R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B4.Location = new Point(114, 42);
   C9R0_B4.Name = "C9R0_B4";
   C9R0_B4.Size = new Size(14, 14);
   C9R0_B4.TabIndex = 435;
   C9R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B4.ThreeState = true;
   C9R0_B4.UseVisualStyleBackColor = true;
   C9R0_B4.Click += Pixel_Click;
   // 
   // C9R0_B5
   // 
   C9R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B5.Location = new Point(114, 30);
   C9R0_B5.Name = "C9R0_B5";
   C9R0_B5.Size = new Size(14, 14);
   C9R0_B5.TabIndex = 434;
   C9R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B5.ThreeState = true;
   C9R0_B5.UseVisualStyleBackColor = true;
   C9R0_B5.Click += Pixel_Click;
   // 
   // C9R0_B6
   // 
   C9R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B6.Location = new Point(114, 18);
   C9R0_B6.Name = "C9R0_B6";
   C9R0_B6.Size = new Size(14, 14);
   C9R0_B6.TabIndex = 433;
   C9R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B6.ThreeState = true;
   C9R0_B6.UseVisualStyleBackColor = true;
   C9R0_B6.Click += Pixel_Click;
   // 
   // C9R0_B7
   // 
   C9R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C9R0_B7.Location = new Point(114, 6);
   C9R0_B7.Name = "C9R0_B7";
   C9R0_B7.Size = new Size(14, 14);
   C9R0_B7.TabIndex = 432;
   C9R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C9R0_B7.ThreeState = true;
   C9R0_B7.UseVisualStyleBackColor = true;
   C9R0_B7.Click += Pixel_Click;
   // 
   // C8R1_B0
   // 
   C8R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B0.Location = new Point(102, 186);
   C8R1_B0.Name = "C8R1_B0";
   C8R1_B0.Size = new Size(14, 14);
   C8R1_B0.TabIndex = 431;
   C8R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B0.ThreeState = true;
   C8R1_B0.UseVisualStyleBackColor = true;
   C8R1_B0.Click += Pixel_Click;
   // 
   // C8R1_B1
   // 
   C8R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B1.Location = new Point(102, 174);
   C8R1_B1.Name = "C8R1_B1";
   C8R1_B1.Size = new Size(14, 14);
   C8R1_B1.TabIndex = 430;
   C8R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B1.ThreeState = true;
   C8R1_B1.UseVisualStyleBackColor = true;
   C8R1_B1.Click += Pixel_Click;
   // 
   // C8R1_B2
   // 
   C8R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B2.Location = new Point(102, 162);
   C8R1_B2.Name = "C8R1_B2";
   C8R1_B2.Size = new Size(14, 14);
   C8R1_B2.TabIndex = 429;
   C8R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B2.ThreeState = true;
   C8R1_B2.UseVisualStyleBackColor = true;
   C8R1_B2.Click += Pixel_Click;
   // 
   // C8R1_B3
   // 
   C8R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B3.Location = new Point(102, 150);
   C8R1_B3.Name = "C8R1_B3";
   C8R1_B3.Size = new Size(14, 14);
   C8R1_B3.TabIndex = 428;
   C8R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B3.ThreeState = true;
   C8R1_B3.UseVisualStyleBackColor = true;
   C8R1_B3.Click += Pixel_Click;
   // 
   // C8R1_B4
   // 
   C8R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B4.Location = new Point(102, 138);
   C8R1_B4.Name = "C8R1_B4";
   C8R1_B4.Size = new Size(14, 14);
   C8R1_B4.TabIndex = 427;
   C8R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B4.ThreeState = true;
   C8R1_B4.UseVisualStyleBackColor = true;
   C8R1_B4.Click += Pixel_Click;
   // 
   // C8R1_B5
   // 
   C8R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B5.Location = new Point(102, 126);
   C8R1_B5.Name = "C8R1_B5";
   C8R1_B5.Size = new Size(14, 14);
   C8R1_B5.TabIndex = 426;
   C8R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B5.ThreeState = true;
   C8R1_B5.UseVisualStyleBackColor = true;
   C8R1_B5.Click += Pixel_Click;
   // 
   // C8R1_B6
   // 
   C8R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B6.Location = new Point(102, 114);
   C8R1_B6.Name = "C8R1_B6";
   C8R1_B6.Size = new Size(14, 14);
   C8R1_B6.TabIndex = 425;
   C8R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B6.ThreeState = true;
   C8R1_B6.UseVisualStyleBackColor = true;
   C8R1_B6.Click += Pixel_Click;
   // 
   // C8R1_B7
   // 
   C8R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C8R1_B7.Location = new Point(102, 102);
   C8R1_B7.Name = "C8R1_B7";
   C8R1_B7.Size = new Size(14, 14);
   C8R1_B7.TabIndex = 424;
   C8R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C8R1_B7.ThreeState = true;
   C8R1_B7.UseVisualStyleBackColor = true;
   C8R1_B7.Click += Pixel_Click;
   // 
   // C8R0_B0
   // 
   C8R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B0.Location = new Point(102, 90);
   C8R0_B0.Name = "C8R0_B0";
   C8R0_B0.Size = new Size(14, 14);
   C8R0_B0.TabIndex = 423;
   C8R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B0.ThreeState = true;
   C8R0_B0.UseVisualStyleBackColor = true;
   C8R0_B0.Click += Pixel_Click;
   // 
   // C8R0_B1
   // 
   C8R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B1.Location = new Point(102, 78);
   C8R0_B1.Name = "C8R0_B1";
   C8R0_B1.Size = new Size(14, 14);
   C8R0_B1.TabIndex = 422;
   C8R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B1.ThreeState = true;
   C8R0_B1.UseVisualStyleBackColor = true;
   C8R0_B1.Click += Pixel_Click;
   // 
   // C8R0_B2
   // 
   C8R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B2.Location = new Point(102, 66);
   C8R0_B2.Name = "C8R0_B2";
   C8R0_B2.Size = new Size(14, 14);
   C8R0_B2.TabIndex = 421;
   C8R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B2.ThreeState = true;
   C8R0_B2.UseVisualStyleBackColor = true;
   C8R0_B2.Click += Pixel_Click;
   // 
   // C8R0_B3
   // 
   C8R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B3.Location = new Point(102, 54);
   C8R0_B3.Name = "C8R0_B3";
   C8R0_B3.Size = new Size(14, 14);
   C8R0_B3.TabIndex = 420;
   C8R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B3.ThreeState = true;
   C8R0_B3.UseVisualStyleBackColor = true;
   C8R0_B3.Click += Pixel_Click;
   // 
   // C8R0_B4
   // 
   C8R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B4.Location = new Point(102, 42);
   C8R0_B4.Name = "C8R0_B4";
   C8R0_B4.Size = new Size(14, 14);
   C8R0_B4.TabIndex = 419;
   C8R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B4.ThreeState = true;
   C8R0_B4.UseVisualStyleBackColor = true;
   C8R0_B4.Click += Pixel_Click;
   // 
   // C8R0_B5
   // 
   C8R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B5.Location = new Point(102, 30);
   C8R0_B5.Name = "C8R0_B5";
   C8R0_B5.Size = new Size(14, 14);
   C8R0_B5.TabIndex = 418;
   C8R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B5.ThreeState = true;
   C8R0_B5.UseVisualStyleBackColor = true;
   C8R0_B5.Click += Pixel_Click;
   // 
   // C8R0_B6
   // 
   C8R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B6.Location = new Point(102, 18);
   C8R0_B6.Name = "C8R0_B6";
   C8R0_B6.Size = new Size(14, 14);
   C8R0_B6.TabIndex = 417;
   C8R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B6.ThreeState = true;
   C8R0_B6.UseVisualStyleBackColor = true;
   C8R0_B6.Click += Pixel_Click;
   // 
   // C8R0_B7
   // 
   C8R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C8R0_B7.Location = new Point(102, 6);
   C8R0_B7.Name = "C8R0_B7";
   C8R0_B7.Size = new Size(14, 14);
   C8R0_B7.TabIndex = 416;
   C8R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C8R0_B7.ThreeState = true;
   C8R0_B7.UseVisualStyleBackColor = true;
   C8R0_B7.Click += Pixel_Click;
   // 
   // C7R1_B0
   // 
   C7R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B0.Location = new Point(90, 186);
   C7R1_B0.Name = "C7R1_B0";
   C7R1_B0.Size = new Size(14, 14);
   C7R1_B0.TabIndex = 415;
   C7R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B0.ThreeState = true;
   C7R1_B0.UseVisualStyleBackColor = true;
   C7R1_B0.Click += Pixel_Click;
   // 
   // C7R1_B1
   // 
   C7R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B1.Location = new Point(90, 174);
   C7R1_B1.Name = "C7R1_B1";
   C7R1_B1.Size = new Size(14, 14);
   C7R1_B1.TabIndex = 414;
   C7R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B1.ThreeState = true;
   C7R1_B1.UseVisualStyleBackColor = true;
   C7R1_B1.Click += Pixel_Click;
   // 
   // C7R1_B2
   // 
   C7R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B2.Location = new Point(90, 162);
   C7R1_B2.Name = "C7R1_B2";
   C7R1_B2.Size = new Size(14, 14);
   C7R1_B2.TabIndex = 413;
   C7R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B2.ThreeState = true;
   C7R1_B2.UseVisualStyleBackColor = true;
   C7R1_B2.Click += Pixel_Click;
   // 
   // C7R1_B3
   // 
   C7R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B3.Location = new Point(90, 150);
   C7R1_B3.Name = "C7R1_B3";
   C7R1_B3.Size = new Size(14, 14);
   C7R1_B3.TabIndex = 412;
   C7R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B3.ThreeState = true;
   C7R1_B3.UseVisualStyleBackColor = true;
   C7R1_B3.Click += Pixel_Click;
   // 
   // C7R1_B4
   // 
   C7R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B4.Location = new Point(90, 138);
   C7R1_B4.Name = "C7R1_B4";
   C7R1_B4.Size = new Size(14, 14);
   C7R1_B4.TabIndex = 411;
   C7R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B4.ThreeState = true;
   C7R1_B4.UseVisualStyleBackColor = true;
   C7R1_B4.Click += Pixel_Click;
   // 
   // C7R1_B5
   // 
   C7R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B5.Location = new Point(90, 126);
   C7R1_B5.Name = "C7R1_B5";
   C7R1_B5.Size = new Size(14, 14);
   C7R1_B5.TabIndex = 410;
   C7R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B5.ThreeState = true;
   C7R1_B5.UseVisualStyleBackColor = true;
   C7R1_B5.Click += Pixel_Click;
   // 
   // C7R1_B6
   // 
   C7R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B6.Location = new Point(90, 114);
   C7R1_B6.Name = "C7R1_B6";
   C7R1_B6.Size = new Size(14, 14);
   C7R1_B6.TabIndex = 409;
   C7R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B6.ThreeState = true;
   C7R1_B6.UseVisualStyleBackColor = true;
   C7R1_B6.Click += Pixel_Click;
   // 
   // C7R1_B7
   // 
   C7R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C7R1_B7.Location = new Point(90, 102);
   C7R1_B7.Name = "C7R1_B7";
   C7R1_B7.Size = new Size(14, 14);
   C7R1_B7.TabIndex = 408;
   C7R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C7R1_B7.ThreeState = true;
   C7R1_B7.UseVisualStyleBackColor = true;
   C7R1_B7.Click += Pixel_Click;
   // 
   // C7R0_B0
   // 
   C7R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B0.Location = new Point(90, 90);
   C7R0_B0.Name = "C7R0_B0";
   C7R0_B0.Size = new Size(14, 14);
   C7R0_B0.TabIndex = 407;
   C7R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B0.ThreeState = true;
   C7R0_B0.UseVisualStyleBackColor = true;
   C7R0_B0.Click += Pixel_Click;
   // 
   // C7R0_B1
   // 
   C7R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B1.Location = new Point(90, 78);
   C7R0_B1.Name = "C7R0_B1";
   C7R0_B1.Size = new Size(14, 14);
   C7R0_B1.TabIndex = 406;
   C7R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B1.ThreeState = true;
   C7R0_B1.UseVisualStyleBackColor = true;
   C7R0_B1.Click += Pixel_Click;
   // 
   // C7R0_B2
   // 
   C7R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B2.Location = new Point(90, 66);
   C7R0_B2.Name = "C7R0_B2";
   C7R0_B2.Size = new Size(14, 14);
   C7R0_B2.TabIndex = 405;
   C7R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B2.ThreeState = true;
   C7R0_B2.UseVisualStyleBackColor = true;
   C7R0_B2.Click += Pixel_Click;
   // 
   // C7R0_B3
   // 
   C7R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B3.Location = new Point(90, 54);
   C7R0_B3.Name = "C7R0_B3";
   C7R0_B3.Size = new Size(14, 14);
   C7R0_B3.TabIndex = 404;
   C7R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B3.ThreeState = true;
   C7R0_B3.UseVisualStyleBackColor = true;
   C7R0_B3.Click += Pixel_Click;
   // 
   // C7R0_B4
   // 
   C7R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B4.Location = new Point(90, 42);
   C7R0_B4.Name = "C7R0_B4";
   C7R0_B4.Size = new Size(14, 14);
   C7R0_B4.TabIndex = 403;
   C7R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B4.ThreeState = true;
   C7R0_B4.UseVisualStyleBackColor = true;
   C7R0_B4.Click += Pixel_Click;
   // 
   // C7R0_B5
   // 
   C7R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B5.Location = new Point(90, 30);
   C7R0_B5.Name = "C7R0_B5";
   C7R0_B5.Size = new Size(14, 14);
   C7R0_B5.TabIndex = 402;
   C7R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B5.ThreeState = true;
   C7R0_B5.UseVisualStyleBackColor = true;
   C7R0_B5.Click += Pixel_Click;
   // 
   // C7R0_B6
   // 
   C7R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B6.Location = new Point(90, 18);
   C7R0_B6.Name = "C7R0_B6";
   C7R0_B6.Size = new Size(14, 14);
   C7R0_B6.TabIndex = 401;
   C7R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B6.ThreeState = true;
   C7R0_B6.UseVisualStyleBackColor = true;
   C7R0_B6.Click += Pixel_Click;
   // 
   // C7R0_B7
   // 
   C7R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C7R0_B7.Location = new Point(90, 6);
   C7R0_B7.Name = "C7R0_B7";
   C7R0_B7.Size = new Size(14, 14);
   C7R0_B7.TabIndex = 400;
   C7R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C7R0_B7.ThreeState = true;
   C7R0_B7.UseVisualStyleBackColor = true;
   C7R0_B7.Click += Pixel_Click;
   // 
   // C6R1_B0
   // 
   C6R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B0.Location = new Point(78, 186);
   C6R1_B0.Name = "C6R1_B0";
   C6R1_B0.Size = new Size(14, 14);
   C6R1_B0.TabIndex = 399;
   C6R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B0.ThreeState = true;
   C6R1_B0.UseVisualStyleBackColor = true;
   C6R1_B0.Click += Pixel_Click;
   // 
   // C6R1_B1
   // 
   C6R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B1.Location = new Point(78, 174);
   C6R1_B1.Name = "C6R1_B1";
   C6R1_B1.Size = new Size(14, 14);
   C6R1_B1.TabIndex = 398;
   C6R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B1.ThreeState = true;
   C6R1_B1.UseVisualStyleBackColor = true;
   C6R1_B1.Click += Pixel_Click;
   // 
   // C6R1_B2
   // 
   C6R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B2.Location = new Point(78, 162);
   C6R1_B2.Name = "C6R1_B2";
   C6R1_B2.Size = new Size(14, 14);
   C6R1_B2.TabIndex = 397;
   C6R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B2.ThreeState = true;
   C6R1_B2.UseVisualStyleBackColor = true;
   C6R1_B2.Click += Pixel_Click;
   // 
   // C6R1_B3
   // 
   C6R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B3.Location = new Point(78, 150);
   C6R1_B3.Name = "C6R1_B3";
   C6R1_B3.Size = new Size(14, 14);
   C6R1_B3.TabIndex = 396;
   C6R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B3.ThreeState = true;
   C6R1_B3.UseVisualStyleBackColor = true;
   C6R1_B3.Click += Pixel_Click;
   // 
   // C6R1_B4
   // 
   C6R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B4.Location = new Point(78, 138);
   C6R1_B4.Name = "C6R1_B4";
   C6R1_B4.Size = new Size(14, 14);
   C6R1_B4.TabIndex = 395;
   C6R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B4.ThreeState = true;
   C6R1_B4.UseVisualStyleBackColor = true;
   C6R1_B4.Click += Pixel_Click;
   // 
   // C6R1_B5
   // 
   C6R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B5.Location = new Point(78, 126);
   C6R1_B5.Name = "C6R1_B5";
   C6R1_B5.Size = new Size(14, 14);
   C6R1_B5.TabIndex = 394;
   C6R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B5.ThreeState = true;
   C6R1_B5.UseVisualStyleBackColor = true;
   C6R1_B5.Click += Pixel_Click;
   // 
   // C6R1_B6
   // 
   C6R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B6.Location = new Point(78, 114);
   C6R1_B6.Name = "C6R1_B6";
   C6R1_B6.Size = new Size(14, 14);
   C6R1_B6.TabIndex = 393;
   C6R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B6.ThreeState = true;
   C6R1_B6.UseVisualStyleBackColor = true;
   C6R1_B6.Click += Pixel_Click;
   // 
   // C6R1_B7
   // 
   C6R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C6R1_B7.Location = new Point(78, 102);
   C6R1_B7.Name = "C6R1_B7";
   C6R1_B7.Size = new Size(14, 14);
   C6R1_B7.TabIndex = 392;
   C6R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C6R1_B7.ThreeState = true;
   C6R1_B7.UseVisualStyleBackColor = true;
   C6R1_B7.Click += Pixel_Click;
   // 
   // C6R0_B0
   // 
   C6R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B0.Location = new Point(78, 90);
   C6R0_B0.Name = "C6R0_B0";
   C6R0_B0.Size = new Size(14, 14);
   C6R0_B0.TabIndex = 391;
   C6R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B0.ThreeState = true;
   C6R0_B0.UseVisualStyleBackColor = true;
   C6R0_B0.Click += Pixel_Click;
   // 
   // C6R0_B1
   // 
   C6R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B1.Location = new Point(78, 78);
   C6R0_B1.Name = "C6R0_B1";
   C6R0_B1.Size = new Size(14, 14);
   C6R0_B1.TabIndex = 390;
   C6R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B1.ThreeState = true;
   C6R0_B1.UseVisualStyleBackColor = true;
   C6R0_B1.Click += Pixel_Click;
   // 
   // C6R0_B2
   // 
   C6R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B2.Location = new Point(78, 66);
   C6R0_B2.Name = "C6R0_B2";
   C6R0_B2.Size = new Size(14, 14);
   C6R0_B2.TabIndex = 389;
   C6R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B2.ThreeState = true;
   C6R0_B2.UseVisualStyleBackColor = true;
   C6R0_B2.Click += Pixel_Click;
   // 
   // C6R0_B3
   // 
   C6R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B3.Location = new Point(78, 54);
   C6R0_B3.Name = "C6R0_B3";
   C6R0_B3.Size = new Size(14, 14);
   C6R0_B3.TabIndex = 388;
   C6R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B3.ThreeState = true;
   C6R0_B3.UseVisualStyleBackColor = true;
   C6R0_B3.Click += Pixel_Click;
   // 
   // C6R0_B4
   // 
   C6R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B4.Location = new Point(78, 42);
   C6R0_B4.Name = "C6R0_B4";
   C6R0_B4.Size = new Size(14, 14);
   C6R0_B4.TabIndex = 387;
   C6R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B4.ThreeState = true;
   C6R0_B4.UseVisualStyleBackColor = true;
   C6R0_B4.Click += Pixel_Click;
   // 
   // C6R0_B5
   // 
   C6R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B5.Location = new Point(78, 30);
   C6R0_B5.Name = "C6R0_B5";
   C6R0_B5.Size = new Size(14, 14);
   C6R0_B5.TabIndex = 386;
   C6R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B5.ThreeState = true;
   C6R0_B5.UseVisualStyleBackColor = true;
   C6R0_B5.Click += Pixel_Click;
   // 
   // C6R0_B6
   // 
   C6R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B6.Location = new Point(78, 18);
   C6R0_B6.Name = "C6R0_B6";
   C6R0_B6.Size = new Size(14, 14);
   C6R0_B6.TabIndex = 385;
   C6R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B6.ThreeState = true;
   C6R0_B6.UseVisualStyleBackColor = true;
   C6R0_B6.Click += Pixel_Click;
   // 
   // C6R0_B7
   // 
   C6R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C6R0_B7.Location = new Point(78, 6);
   C6R0_B7.Name = "C6R0_B7";
   C6R0_B7.Size = new Size(14, 14);
   C6R0_B7.TabIndex = 384;
   C6R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C6R0_B7.ThreeState = true;
   C6R0_B7.UseVisualStyleBackColor = true;
   C6R0_B7.Click += Pixel_Click;
   // 
   // C5R1_B0
   // 
   C5R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B0.Location = new Point(66, 186);
   C5R1_B0.Name = "C5R1_B0";
   C5R1_B0.Size = new Size(14, 14);
   C5R1_B0.TabIndex = 383;
   C5R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B0.ThreeState = true;
   C5R1_B0.UseVisualStyleBackColor = true;
   C5R1_B0.Click += Pixel_Click;
   // 
   // C5R1_B1
   // 
   C5R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B1.Location = new Point(66, 174);
   C5R1_B1.Name = "C5R1_B1";
   C5R1_B1.Size = new Size(14, 14);
   C5R1_B1.TabIndex = 382;
   C5R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B1.ThreeState = true;
   C5R1_B1.UseVisualStyleBackColor = true;
   C5R1_B1.Click += Pixel_Click;
   // 
   // C5R1_B2
   // 
   C5R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B2.Location = new Point(66, 162);
   C5R1_B2.Name = "C5R1_B2";
   C5R1_B2.Size = new Size(14, 14);
   C5R1_B2.TabIndex = 381;
   C5R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B2.ThreeState = true;
   C5R1_B2.UseVisualStyleBackColor = true;
   C5R1_B2.Click += Pixel_Click;
   // 
   // C5R1_B3
   // 
   C5R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B3.Location = new Point(66, 150);
   C5R1_B3.Name = "C5R1_B3";
   C5R1_B3.Size = new Size(14, 14);
   C5R1_B3.TabIndex = 380;
   C5R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B3.ThreeState = true;
   C5R1_B3.UseVisualStyleBackColor = true;
   C5R1_B3.Click += Pixel_Click;
   // 
   // C5R1_B4
   // 
   C5R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B4.Location = new Point(66, 138);
   C5R1_B4.Name = "C5R1_B4";
   C5R1_B4.Size = new Size(14, 14);
   C5R1_B4.TabIndex = 379;
   C5R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B4.ThreeState = true;
   C5R1_B4.UseVisualStyleBackColor = true;
   C5R1_B4.Click += Pixel_Click;
   // 
   // C5R1_B5
   // 
   C5R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B5.Location = new Point(66, 126);
   C5R1_B5.Name = "C5R1_B5";
   C5R1_B5.Size = new Size(14, 14);
   C5R1_B5.TabIndex = 378;
   C5R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B5.ThreeState = true;
   C5R1_B5.UseVisualStyleBackColor = true;
   C5R1_B5.Click += Pixel_Click;
   // 
   // C5R1_B6
   // 
   C5R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B6.Location = new Point(66, 114);
   C5R1_B6.Name = "C5R1_B6";
   C5R1_B6.Size = new Size(14, 14);
   C5R1_B6.TabIndex = 377;
   C5R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B6.ThreeState = true;
   C5R1_B6.UseVisualStyleBackColor = true;
   C5R1_B6.Click += Pixel_Click;
   // 
   // C5R1_B7
   // 
   C5R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C5R1_B7.Location = new Point(66, 102);
   C5R1_B7.Name = "C5R1_B7";
   C5R1_B7.Size = new Size(14, 14);
   C5R1_B7.TabIndex = 376;
   C5R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C5R1_B7.ThreeState = true;
   C5R1_B7.UseVisualStyleBackColor = true;
   C5R1_B7.Click += Pixel_Click;
   // 
   // C5R0_B0
   // 
   C5R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B0.Location = new Point(66, 90);
   C5R0_B0.Name = "C5R0_B0";
   C5R0_B0.Size = new Size(14, 14);
   C5R0_B0.TabIndex = 375;
   C5R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B0.ThreeState = true;
   C5R0_B0.UseVisualStyleBackColor = true;
   C5R0_B0.Click += Pixel_Click;
   // 
   // C5R0_B1
   // 
   C5R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B1.Location = new Point(66, 78);
   C5R0_B1.Name = "C5R0_B1";
   C5R0_B1.Size = new Size(14, 14);
   C5R0_B1.TabIndex = 374;
   C5R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B1.ThreeState = true;
   C5R0_B1.UseVisualStyleBackColor = true;
   C5R0_B1.Click += Pixel_Click;
   // 
   // C5R0_B2
   // 
   C5R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B2.Location = new Point(66, 66);
   C5R0_B2.Name = "C5R0_B2";
   C5R0_B2.Size = new Size(14, 14);
   C5R0_B2.TabIndex = 373;
   C5R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B2.ThreeState = true;
   C5R0_B2.UseVisualStyleBackColor = true;
   C5R0_B2.Click += Pixel_Click;
   // 
   // C5R0_B3
   // 
   C5R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B3.Location = new Point(66, 54);
   C5R0_B3.Name = "C5R0_B3";
   C5R0_B3.Size = new Size(14, 14);
   C5R0_B3.TabIndex = 372;
   C5R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B3.ThreeState = true;
   C5R0_B3.UseVisualStyleBackColor = true;
   C5R0_B3.Click += Pixel_Click;
   // 
   // C5R0_B4
   // 
   C5R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B4.Location = new Point(66, 42);
   C5R0_B4.Name = "C5R0_B4";
   C5R0_B4.Size = new Size(14, 14);
   C5R0_B4.TabIndex = 371;
   C5R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B4.ThreeState = true;
   C5R0_B4.UseVisualStyleBackColor = true;
   C5R0_B4.Click += Pixel_Click;
   // 
   // C5R0_B5
   // 
   C5R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B5.Location = new Point(66, 30);
   C5R0_B5.Name = "C5R0_B5";
   C5R0_B5.Size = new Size(14, 14);
   C5R0_B5.TabIndex = 370;
   C5R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B5.ThreeState = true;
   C5R0_B5.UseVisualStyleBackColor = true;
   C5R0_B5.Click += Pixel_Click;
   // 
   // C5R0_B6
   // 
   C5R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B6.Location = new Point(66, 18);
   C5R0_B6.Name = "C5R0_B6";
   C5R0_B6.Size = new Size(14, 14);
   C5R0_B6.TabIndex = 369;
   C5R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B6.ThreeState = true;
   C5R0_B6.UseVisualStyleBackColor = true;
   C5R0_B6.Click += Pixel_Click;
   // 
   // C5R0_B7
   // 
   C5R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C5R0_B7.Location = new Point(66, 6);
   C5R0_B7.Name = "C5R0_B7";
   C5R0_B7.Size = new Size(14, 14);
   C5R0_B7.TabIndex = 368;
   C5R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C5R0_B7.ThreeState = true;
   C5R0_B7.UseVisualStyleBackColor = true;
   C5R0_B7.Click += Pixel_Click;
   // 
   // C4R1_B0
   // 
   C4R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B0.Location = new Point(54, 186);
   C4R1_B0.Name = "C4R1_B0";
   C4R1_B0.Size = new Size(14, 14);
   C4R1_B0.TabIndex = 367;
   C4R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B0.ThreeState = true;
   C4R1_B0.UseVisualStyleBackColor = true;
   C4R1_B0.Click += Pixel_Click;
   // 
   // C4R1_B1
   // 
   C4R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B1.Location = new Point(54, 174);
   C4R1_B1.Name = "C4R1_B1";
   C4R1_B1.Size = new Size(14, 14);
   C4R1_B1.TabIndex = 366;
   C4R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B1.ThreeState = true;
   C4R1_B1.UseVisualStyleBackColor = true;
   C4R1_B1.Click += Pixel_Click;
   // 
   // C4R1_B2
   // 
   C4R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B2.Location = new Point(54, 162);
   C4R1_B2.Name = "C4R1_B2";
   C4R1_B2.Size = new Size(14, 14);
   C4R1_B2.TabIndex = 365;
   C4R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B2.ThreeState = true;
   C4R1_B2.UseVisualStyleBackColor = true;
   C4R1_B2.Click += Pixel_Click;
   // 
   // C4R1_B3
   // 
   C4R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B3.Location = new Point(54, 150);
   C4R1_B3.Name = "C4R1_B3";
   C4R1_B3.Size = new Size(14, 14);
   C4R1_B3.TabIndex = 364;
   C4R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B3.ThreeState = true;
   C4R1_B3.UseVisualStyleBackColor = true;
   C4R1_B3.Click += Pixel_Click;
   // 
   // C4R1_B4
   // 
   C4R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B4.Location = new Point(54, 138);
   C4R1_B4.Name = "C4R1_B4";
   C4R1_B4.Size = new Size(14, 14);
   C4R1_B4.TabIndex = 363;
   C4R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B4.ThreeState = true;
   C4R1_B4.UseVisualStyleBackColor = true;
   C4R1_B4.Click += Pixel_Click;
   // 
   // C4R1_B5
   // 
   C4R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B5.Location = new Point(54, 126);
   C4R1_B5.Name = "C4R1_B5";
   C4R1_B5.Size = new Size(14, 14);
   C4R1_B5.TabIndex = 362;
   C4R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B5.ThreeState = true;
   C4R1_B5.UseVisualStyleBackColor = true;
   C4R1_B5.Click += Pixel_Click;
   // 
   // C4R1_B6
   // 
   C4R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B6.Location = new Point(54, 114);
   C4R1_B6.Name = "C4R1_B6";
   C4R1_B6.Size = new Size(14, 14);
   C4R1_B6.TabIndex = 361;
   C4R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B6.ThreeState = true;
   C4R1_B6.UseVisualStyleBackColor = true;
   C4R1_B6.Click += Pixel_Click;
   // 
   // C4R1_B7
   // 
   C4R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C4R1_B7.Location = new Point(54, 102);
   C4R1_B7.Name = "C4R1_B7";
   C4R1_B7.Size = new Size(14, 14);
   C4R1_B7.TabIndex = 360;
   C4R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C4R1_B7.ThreeState = true;
   C4R1_B7.UseVisualStyleBackColor = true;
   C4R1_B7.Click += Pixel_Click;
   // 
   // C4R0_B0
   // 
   C4R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B0.Location = new Point(54, 90);
   C4R0_B0.Name = "C4R0_B0";
   C4R0_B0.Size = new Size(14, 14);
   C4R0_B0.TabIndex = 359;
   C4R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B0.ThreeState = true;
   C4R0_B0.UseVisualStyleBackColor = true;
   C4R0_B0.Click += Pixel_Click;
   // 
   // C4R0_B1
   // 
   C4R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B1.Location = new Point(54, 78);
   C4R0_B1.Name = "C4R0_B1";
   C4R0_B1.Size = new Size(14, 14);
   C4R0_B1.TabIndex = 358;
   C4R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B1.ThreeState = true;
   C4R0_B1.UseVisualStyleBackColor = true;
   C4R0_B1.Click += Pixel_Click;
   // 
   // C4R0_B2
   // 
   C4R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B2.Location = new Point(54, 66);
   C4R0_B2.Name = "C4R0_B2";
   C4R0_B2.Size = new Size(14, 14);
   C4R0_B2.TabIndex = 357;
   C4R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B2.ThreeState = true;
   C4R0_B2.UseVisualStyleBackColor = true;
   C4R0_B2.Click += Pixel_Click;
   // 
   // C4R0_B3
   // 
   C4R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B3.Location = new Point(54, 54);
   C4R0_B3.Name = "C4R0_B3";
   C4R0_B3.Size = new Size(14, 14);
   C4R0_B3.TabIndex = 356;
   C4R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B3.ThreeState = true;
   C4R0_B3.UseVisualStyleBackColor = true;
   C4R0_B3.Click += Pixel_Click;
   // 
   // C4R0_B4
   // 
   C4R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B4.Location = new Point(54, 42);
   C4R0_B4.Name = "C4R0_B4";
   C4R0_B4.Size = new Size(14, 14);
   C4R0_B4.TabIndex = 355;
   C4R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B4.ThreeState = true;
   C4R0_B4.UseVisualStyleBackColor = true;
   C4R0_B4.Click += Pixel_Click;
   // 
   // C4R0_B5
   // 
   C4R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B5.Location = new Point(54, 30);
   C4R0_B5.Name = "C4R0_B5";
   C4R0_B5.Size = new Size(14, 14);
   C4R0_B5.TabIndex = 354;
   C4R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B5.ThreeState = true;
   C4R0_B5.UseVisualStyleBackColor = true;
   C4R0_B5.Click += Pixel_Click;
   // 
   // C4R0_B6
   // 
   C4R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B6.Location = new Point(54, 18);
   C4R0_B6.Name = "C4R0_B6";
   C4R0_B6.Size = new Size(14, 14);
   C4R0_B6.TabIndex = 353;
   C4R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B6.ThreeState = true;
   C4R0_B6.UseVisualStyleBackColor = true;
   C4R0_B6.Click += Pixel_Click;
   // 
   // C4R0_B7
   // 
   C4R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C4R0_B7.Location = new Point(54, 6);
   C4R0_B7.Name = "C4R0_B7";
   C4R0_B7.Size = new Size(14, 14);
   C4R0_B7.TabIndex = 352;
   C4R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C4R0_B7.ThreeState = true;
   C4R0_B7.UseVisualStyleBackColor = true;
   C4R0_B7.Click += Pixel_Click;
   // 
   // C3R1_B0
   // 
   C3R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B0.Location = new Point(42, 186);
   C3R1_B0.Name = "C3R1_B0";
   C3R1_B0.Size = new Size(14, 14);
   C3R1_B0.TabIndex = 351;
   C3R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B0.ThreeState = true;
   C3R1_B0.UseVisualStyleBackColor = true;
   C3R1_B0.Click += Pixel_Click;
   // 
   // C3R1_B1
   // 
   C3R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B1.Location = new Point(42, 174);
   C3R1_B1.Name = "C3R1_B1";
   C3R1_B1.Size = new Size(14, 14);
   C3R1_B1.TabIndex = 350;
   C3R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B1.ThreeState = true;
   C3R1_B1.UseVisualStyleBackColor = true;
   C3R1_B1.Click += Pixel_Click;
   // 
   // C3R1_B2
   // 
   C3R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B2.Location = new Point(42, 162);
   C3R1_B2.Name = "C3R1_B2";
   C3R1_B2.Size = new Size(14, 14);
   C3R1_B2.TabIndex = 349;
   C3R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B2.ThreeState = true;
   C3R1_B2.UseVisualStyleBackColor = true;
   C3R1_B2.Click += Pixel_Click;
   // 
   // C3R1_B3
   // 
   C3R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B3.Location = new Point(42, 150);
   C3R1_B3.Name = "C3R1_B3";
   C3R1_B3.Size = new Size(14, 14);
   C3R1_B3.TabIndex = 348;
   C3R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B3.ThreeState = true;
   C3R1_B3.UseVisualStyleBackColor = true;
   C3R1_B3.Click += Pixel_Click;
   // 
   // C3R1_B4
   // 
   C3R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B4.Location = new Point(42, 138);
   C3R1_B4.Name = "C3R1_B4";
   C3R1_B4.Size = new Size(14, 14);
   C3R1_B4.TabIndex = 347;
   C3R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B4.ThreeState = true;
   C3R1_B4.UseVisualStyleBackColor = true;
   C3R1_B4.Click += Pixel_Click;
   // 
   // C3R1_B5
   // 
   C3R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B5.Location = new Point(42, 126);
   C3R1_B5.Name = "C3R1_B5";
   C3R1_B5.Size = new Size(14, 14);
   C3R1_B5.TabIndex = 346;
   C3R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B5.ThreeState = true;
   C3R1_B5.UseVisualStyleBackColor = true;
   C3R1_B5.Click += Pixel_Click;
   // 
   // C3R1_B6
   // 
   C3R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B6.Location = new Point(42, 114);
   C3R1_B6.Name = "C3R1_B6";
   C3R1_B6.Size = new Size(14, 14);
   C3R1_B6.TabIndex = 345;
   C3R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B6.ThreeState = true;
   C3R1_B6.UseVisualStyleBackColor = true;
   C3R1_B6.Click += Pixel_Click;
   // 
   // C3R1_B7
   // 
   C3R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C3R1_B7.Location = new Point(42, 102);
   C3R1_B7.Name = "C3R1_B7";
   C3R1_B7.Size = new Size(14, 14);
   C3R1_B7.TabIndex = 344;
   C3R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C3R1_B7.ThreeState = true;
   C3R1_B7.UseVisualStyleBackColor = true;
   C3R1_B7.Click += Pixel_Click;
   // 
   // C3R0_B0
   // 
   C3R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B0.Location = new Point(42, 90);
   C3R0_B0.Name = "C3R0_B0";
   C3R0_B0.Size = new Size(14, 14);
   C3R0_B0.TabIndex = 343;
   C3R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B0.ThreeState = true;
   C3R0_B0.UseVisualStyleBackColor = true;
   C3R0_B0.Click += Pixel_Click;
   // 
   // C3R0_B1
   // 
   C3R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B1.Location = new Point(42, 78);
   C3R0_B1.Name = "C3R0_B1";
   C3R0_B1.Size = new Size(14, 14);
   C3R0_B1.TabIndex = 342;
   C3R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B1.ThreeState = true;
   C3R0_B1.UseVisualStyleBackColor = true;
   C3R0_B1.Click += Pixel_Click;
   // 
   // C3R0_B2
   // 
   C3R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B2.Location = new Point(42, 66);
   C3R0_B2.Name = "C3R0_B2";
   C3R0_B2.Size = new Size(14, 14);
   C3R0_B2.TabIndex = 341;
   C3R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B2.ThreeState = true;
   C3R0_B2.UseVisualStyleBackColor = true;
   C3R0_B2.Click += Pixel_Click;
   // 
   // C3R0_B3
   // 
   C3R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B3.Location = new Point(42, 54);
   C3R0_B3.Name = "C3R0_B3";
   C3R0_B3.Size = new Size(14, 14);
   C3R0_B3.TabIndex = 340;
   C3R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B3.ThreeState = true;
   C3R0_B3.UseVisualStyleBackColor = true;
   C3R0_B3.Click += Pixel_Click;
   // 
   // C3R0_B4
   // 
   C3R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B4.Location = new Point(42, 42);
   C3R0_B4.Name = "C3R0_B4";
   C3R0_B4.Size = new Size(14, 14);
   C3R0_B4.TabIndex = 339;
   C3R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B4.ThreeState = true;
   C3R0_B4.UseVisualStyleBackColor = true;
   C3R0_B4.Click += Pixel_Click;
   // 
   // C3R0_B5
   // 
   C3R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B5.Location = new Point(42, 30);
   C3R0_B5.Name = "C3R0_B5";
   C3R0_B5.Size = new Size(14, 14);
   C3R0_B5.TabIndex = 338;
   C3R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B5.ThreeState = true;
   C3R0_B5.UseVisualStyleBackColor = true;
   C3R0_B5.Click += Pixel_Click;
   // 
   // C3R0_B6
   // 
   C3R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B6.Location = new Point(42, 18);
   C3R0_B6.Name = "C3R0_B6";
   C3R0_B6.Size = new Size(14, 14);
   C3R0_B6.TabIndex = 337;
   C3R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B6.ThreeState = true;
   C3R0_B6.UseVisualStyleBackColor = true;
   C3R0_B6.Click += Pixel_Click;
   // 
   // C3R0_B7
   // 
   C3R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C3R0_B7.Location = new Point(42, 6);
   C3R0_B7.Name = "C3R0_B7";
   C3R0_B7.Size = new Size(14, 14);
   C3R0_B7.TabIndex = 336;
   C3R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C3R0_B7.ThreeState = true;
   C3R0_B7.UseVisualStyleBackColor = true;
   C3R0_B7.Click += Pixel_Click;
   // 
   // C2R1_B0
   // 
   C2R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B0.Location = new Point(30, 186);
   C2R1_B0.Name = "C2R1_B0";
   C2R1_B0.Size = new Size(14, 14);
   C2R1_B0.TabIndex = 335;
   C2R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B0.ThreeState = true;
   C2R1_B0.UseVisualStyleBackColor = true;
   C2R1_B0.Click += Pixel_Click;
   // 
   // C2R1_B1
   // 
   C2R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B1.Location = new Point(30, 174);
   C2R1_B1.Name = "C2R1_B1";
   C2R1_B1.Size = new Size(14, 14);
   C2R1_B1.TabIndex = 334;
   C2R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B1.ThreeState = true;
   C2R1_B1.UseVisualStyleBackColor = true;
   C2R1_B1.Click += Pixel_Click;
   // 
   // C2R1_B2
   // 
   C2R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B2.Location = new Point(30, 162);
   C2R1_B2.Name = "C2R1_B2";
   C2R1_B2.Size = new Size(14, 14);
   C2R1_B2.TabIndex = 333;
   C2R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B2.ThreeState = true;
   C2R1_B2.UseVisualStyleBackColor = true;
   C2R1_B2.Click += Pixel_Click;
   // 
   // C2R1_B3
   // 
   C2R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B3.Location = new Point(30, 150);
   C2R1_B3.Name = "C2R1_B3";
   C2R1_B3.Size = new Size(14, 14);
   C2R1_B3.TabIndex = 332;
   C2R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B3.ThreeState = true;
   C2R1_B3.UseVisualStyleBackColor = true;
   C2R1_B3.Click += Pixel_Click;
   // 
   // C2R1_B4
   // 
   C2R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B4.Location = new Point(30, 138);
   C2R1_B4.Name = "C2R1_B4";
   C2R1_B4.Size = new Size(14, 14);
   C2R1_B4.TabIndex = 331;
   C2R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B4.ThreeState = true;
   C2R1_B4.UseVisualStyleBackColor = true;
   C2R1_B4.Click += Pixel_Click;
   // 
   // C2R1_B5
   // 
   C2R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B5.Location = new Point(30, 126);
   C2R1_B5.Name = "C2R1_B5";
   C2R1_B5.Size = new Size(14, 14);
   C2R1_B5.TabIndex = 330;
   C2R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B5.ThreeState = true;
   C2R1_B5.UseVisualStyleBackColor = true;
   C2R1_B5.Click += Pixel_Click;
   // 
   // C2R1_B6
   // 
   C2R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B6.Location = new Point(30, 114);
   C2R1_B6.Name = "C2R1_B6";
   C2R1_B6.Size = new Size(14, 14);
   C2R1_B6.TabIndex = 329;
   C2R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B6.ThreeState = true;
   C2R1_B6.UseVisualStyleBackColor = true;
   C2R1_B6.Click += Pixel_Click;
   // 
   // C2R1_B7
   // 
   C2R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C2R1_B7.Location = new Point(30, 102);
   C2R1_B7.Name = "C2R1_B7";
   C2R1_B7.Size = new Size(14, 14);
   C2R1_B7.TabIndex = 328;
   C2R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C2R1_B7.ThreeState = true;
   C2R1_B7.UseVisualStyleBackColor = true;
   C2R1_B7.Click += Pixel_Click;
   // 
   // C2R0_B0
   // 
   C2R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B0.Location = new Point(30, 90);
   C2R0_B0.Name = "C2R0_B0";
   C2R0_B0.Size = new Size(14, 14);
   C2R0_B0.TabIndex = 327;
   C2R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B0.ThreeState = true;
   C2R0_B0.UseVisualStyleBackColor = true;
   C2R0_B0.Click += Pixel_Click;
   // 
   // C2R0_B1
   // 
   C2R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B1.Location = new Point(30, 78);
   C2R0_B1.Name = "C2R0_B1";
   C2R0_B1.Size = new Size(14, 14);
   C2R0_B1.TabIndex = 326;
   C2R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B1.ThreeState = true;
   C2R0_B1.UseVisualStyleBackColor = true;
   C2R0_B1.Click += Pixel_Click;
   // 
   // C2R0_B2
   // 
   C2R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B2.Location = new Point(30, 66);
   C2R0_B2.Name = "C2R0_B2";
   C2R0_B2.Size = new Size(14, 14);
   C2R0_B2.TabIndex = 325;
   C2R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B2.ThreeState = true;
   C2R0_B2.UseVisualStyleBackColor = true;
   C2R0_B2.Click += Pixel_Click;
   // 
   // C2R0_B3
   // 
   C2R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B3.Location = new Point(30, 54);
   C2R0_B3.Name = "C2R0_B3";
   C2R0_B3.Size = new Size(14, 14);
   C2R0_B3.TabIndex = 324;
   C2R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B3.ThreeState = true;
   C2R0_B3.UseVisualStyleBackColor = true;
   C2R0_B3.Click += Pixel_Click;
   // 
   // C2R0_B4
   // 
   C2R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B4.Location = new Point(30, 42);
   C2R0_B4.Name = "C2R0_B4";
   C2R0_B4.Size = new Size(14, 14);
   C2R0_B4.TabIndex = 323;
   C2R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B4.ThreeState = true;
   C2R0_B4.UseVisualStyleBackColor = true;
   C2R0_B4.Click += Pixel_Click;
   // 
   // C2R0_B5
   // 
   C2R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B5.Location = new Point(30, 30);
   C2R0_B5.Name = "C2R0_B5";
   C2R0_B5.Size = new Size(14, 14);
   C2R0_B5.TabIndex = 322;
   C2R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B5.ThreeState = true;
   C2R0_B5.UseVisualStyleBackColor = true;
   C2R0_B5.Click += Pixel_Click;
   // 
   // C2R0_B6
   // 
   C2R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B6.Location = new Point(30, 18);
   C2R0_B6.Name = "C2R0_B6";
   C2R0_B6.Size = new Size(14, 14);
   C2R0_B6.TabIndex = 321;
   C2R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B6.ThreeState = true;
   C2R0_B6.UseVisualStyleBackColor = true;
   C2R0_B6.Click += Pixel_Click;
   // 
   // C2R0_B7
   // 
   C2R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C2R0_B7.Location = new Point(30, 6);
   C2R0_B7.Name = "C2R0_B7";
   C2R0_B7.Size = new Size(14, 14);
   C2R0_B7.TabIndex = 320;
   C2R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C2R0_B7.ThreeState = true;
   C2R0_B7.UseVisualStyleBackColor = true;
   C2R0_B7.Click += Pixel_Click;
   // 
   // C1R1_B0
   // 
   C1R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B0.Location = new Point(18, 186);
   C1R1_B0.Name = "C1R1_B0";
   C1R1_B0.Size = new Size(14, 14);
   C1R1_B0.TabIndex = 319;
   C1R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B0.ThreeState = true;
   C1R1_B0.UseVisualStyleBackColor = true;
   C1R1_B0.Click += Pixel_Click;
   // 
   // C1R1_B1
   // 
   C1R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B1.Location = new Point(18, 174);
   C1R1_B1.Name = "C1R1_B1";
   C1R1_B1.Size = new Size(14, 14);
   C1R1_B1.TabIndex = 318;
   C1R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B1.ThreeState = true;
   C1R1_B1.UseVisualStyleBackColor = true;
   C1R1_B1.Click += Pixel_Click;
   // 
   // C1R1_B2
   // 
   C1R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B2.Location = new Point(18, 162);
   C1R1_B2.Name = "C1R1_B2";
   C1R1_B2.Size = new Size(14, 14);
   C1R1_B2.TabIndex = 317;
   C1R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B2.ThreeState = true;
   C1R1_B2.UseVisualStyleBackColor = true;
   C1R1_B2.Click += Pixel_Click;
   // 
   // C1R1_B3
   // 
   C1R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B3.Location = new Point(18, 150);
   C1R1_B3.Name = "C1R1_B3";
   C1R1_B3.Size = new Size(14, 14);
   C1R1_B3.TabIndex = 316;
   C1R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B3.ThreeState = true;
   C1R1_B3.UseVisualStyleBackColor = true;
   C1R1_B3.Click += Pixel_Click;
   // 
   // C1R1_B4
   // 
   C1R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B4.Location = new Point(18, 138);
   C1R1_B4.Name = "C1R1_B4";
   C1R1_B4.Size = new Size(14, 14);
   C1R1_B4.TabIndex = 315;
   C1R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B4.ThreeState = true;
   C1R1_B4.UseVisualStyleBackColor = true;
   C1R1_B4.Click += Pixel_Click;
   // 
   // C1R1_B5
   // 
   C1R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B5.Location = new Point(18, 126);
   C1R1_B5.Name = "C1R1_B5";
   C1R1_B5.Size = new Size(14, 14);
   C1R1_B5.TabIndex = 314;
   C1R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B5.ThreeState = true;
   C1R1_B5.UseVisualStyleBackColor = true;
   C1R1_B5.Click += Pixel_Click;
   // 
   // C1R1_B6
   // 
   C1R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B6.Location = new Point(18, 114);
   C1R1_B6.Name = "C1R1_B6";
   C1R1_B6.Size = new Size(14, 14);
   C1R1_B6.TabIndex = 313;
   C1R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B6.ThreeState = true;
   C1R1_B6.UseVisualStyleBackColor = true;
   C1R1_B6.Click += Pixel_Click;
   // 
   // C1R1_B7
   // 
   C1R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C1R1_B7.Location = new Point(18, 102);
   C1R1_B7.Name = "C1R1_B7";
   C1R1_B7.Size = new Size(14, 14);
   C1R1_B7.TabIndex = 312;
   C1R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C1R1_B7.ThreeState = true;
   C1R1_B7.UseVisualStyleBackColor = true;
   C1R1_B7.Click += Pixel_Click;
   // 
   // C1R0_B0
   // 
   C1R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B0.Location = new Point(18, 90);
   C1R0_B0.Name = "C1R0_B0";
   C1R0_B0.Size = new Size(14, 14);
   C1R0_B0.TabIndex = 311;
   C1R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B0.ThreeState = true;
   C1R0_B0.UseVisualStyleBackColor = true;
   C1R0_B0.Click += Pixel_Click;
   // 
   // C1R0_B1
   // 
   C1R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B1.Location = new Point(18, 78);
   C1R0_B1.Name = "C1R0_B1";
   C1R0_B1.Size = new Size(14, 14);
   C1R0_B1.TabIndex = 310;
   C1R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B1.ThreeState = true;
   C1R0_B1.UseVisualStyleBackColor = true;
   C1R0_B1.Click += Pixel_Click;
   // 
   // C1R0_B2
   // 
   C1R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B2.Location = new Point(18, 66);
   C1R0_B2.Name = "C1R0_B2";
   C1R0_B2.Size = new Size(14, 14);
   C1R0_B2.TabIndex = 309;
   C1R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B2.ThreeState = true;
   C1R0_B2.UseVisualStyleBackColor = true;
   C1R0_B2.Click += Pixel_Click;
   // 
   // C1R0_B3
   // 
   C1R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B3.Location = new Point(18, 54);
   C1R0_B3.Name = "C1R0_B3";
   C1R0_B3.Size = new Size(14, 14);
   C1R0_B3.TabIndex = 308;
   C1R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B3.ThreeState = true;
   C1R0_B3.UseVisualStyleBackColor = true;
   C1R0_B3.Click += Pixel_Click;
   // 
   // C1R0_B4
   // 
   C1R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B4.Location = new Point(18, 42);
   C1R0_B4.Name = "C1R0_B4";
   C1R0_B4.Size = new Size(14, 14);
   C1R0_B4.TabIndex = 307;
   C1R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B4.ThreeState = true;
   C1R0_B4.UseVisualStyleBackColor = true;
   C1R0_B4.Click += Pixel_Click;
   // 
   // C1R0_B5
   // 
   C1R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B5.Location = new Point(18, 30);
   C1R0_B5.Name = "C1R0_B5";
   C1R0_B5.Size = new Size(14, 14);
   C1R0_B5.TabIndex = 306;
   C1R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B5.ThreeState = true;
   C1R0_B5.UseVisualStyleBackColor = true;
   C1R0_B5.Click += Pixel_Click;
   // 
   // C1R0_B6
   // 
   C1R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B6.Location = new Point(18, 18);
   C1R0_B6.Name = "C1R0_B6";
   C1R0_B6.Size = new Size(14, 14);
   C1R0_B6.TabIndex = 305;
   C1R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B6.ThreeState = true;
   C1R0_B6.UseVisualStyleBackColor = true;
   C1R0_B6.Click += Pixel_Click;
   // 
   // C1R0_B7
   // 
   C1R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C1R0_B7.Location = new Point(18, 6);
   C1R0_B7.Name = "C1R0_B7";
   C1R0_B7.Size = new Size(14, 14);
   C1R0_B7.TabIndex = 304;
   C1R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C1R0_B7.ThreeState = true;
   C1R0_B7.UseVisualStyleBackColor = true;
   C1R0_B7.Click += Pixel_Click;
   // 
   // C0R1_B0
   // 
   C0R1_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B0.Location = new Point(6, 186);
   C0R1_B0.Name = "C0R1_B0";
   C0R1_B0.Size = new Size(14, 14);
   C0R1_B0.TabIndex = 303;
   C0R1_B0.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B0.ThreeState = true;
   C0R1_B0.UseVisualStyleBackColor = true;
   C0R1_B0.Click += Pixel_Click;
   // 
   // C0R1_B1
   // 
   C0R1_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B1.Location = new Point(6, 174);
   C0R1_B1.Name = "C0R1_B1";
   C0R1_B1.Size = new Size(14, 14);
   C0R1_B1.TabIndex = 302;
   C0R1_B1.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B1.ThreeState = true;
   C0R1_B1.UseVisualStyleBackColor = true;
   C0R1_B1.Click += Pixel_Click;
   // 
   // C0R1_B2
   // 
   C0R1_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B2.Location = new Point(6, 162);
   C0R1_B2.Name = "C0R1_B2";
   C0R1_B2.Size = new Size(14, 14);
   C0R1_B2.TabIndex = 301;
   C0R1_B2.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B2.ThreeState = true;
   C0R1_B2.UseVisualStyleBackColor = true;
   C0R1_B2.Click += Pixel_Click;
   // 
   // C0R1_B3
   // 
   C0R1_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B3.Location = new Point(6, 150);
   C0R1_B3.Name = "C0R1_B3";
   C0R1_B3.Size = new Size(14, 14);
   C0R1_B3.TabIndex = 300;
   C0R1_B3.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B3.ThreeState = true;
   C0R1_B3.UseVisualStyleBackColor = true;
   C0R1_B3.Click += Pixel_Click;
   // 
   // C0R1_B4
   // 
   C0R1_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B4.Location = new Point(6, 138);
   C0R1_B4.Name = "C0R1_B4";
   C0R1_B4.Size = new Size(14, 14);
   C0R1_B4.TabIndex = 299;
   C0R1_B4.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B4.ThreeState = true;
   C0R1_B4.UseVisualStyleBackColor = true;
   C0R1_B4.Click += Pixel_Click;
   // 
   // C0R1_B5
   // 
   C0R1_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B5.Location = new Point(6, 126);
   C0R1_B5.Name = "C0R1_B5";
   C0R1_B5.Size = new Size(14, 14);
   C0R1_B5.TabIndex = 298;
   C0R1_B5.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B5.ThreeState = true;
   C0R1_B5.UseVisualStyleBackColor = true;
   C0R1_B5.Click += Pixel_Click;
   // 
   // C0R1_B6
   // 
   C0R1_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B6.Location = new Point(6, 114);
   C0R1_B6.Name = "C0R1_B6";
   C0R1_B6.Size = new Size(14, 14);
   C0R1_B6.TabIndex = 297;
   C0R1_B6.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B6.ThreeState = true;
   C0R1_B6.UseVisualStyleBackColor = true;
   C0R1_B6.Click += Pixel_Click;
   // 
   // C0R1_B7
   // 
   C0R1_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C0R1_B7.Location = new Point(6, 102);
   C0R1_B7.Name = "C0R1_B7";
   C0R1_B7.Size = new Size(14, 14);
   C0R1_B7.TabIndex = 296;
   C0R1_B7.TextAlign = ContentAlignment.MiddleCenter;
   C0R1_B7.ThreeState = true;
   C0R1_B7.UseVisualStyleBackColor = true;
   C0R1_B7.Click += Pixel_Click;
   // 
   // C0R0_B0
   // 
   C0R0_B0.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B0.Location = new Point(6, 90);
   C0R0_B0.Name = "C0R0_B0";
   C0R0_B0.Size = new Size(14, 14);
   C0R0_B0.TabIndex = 295;
   C0R0_B0.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B0.ThreeState = true;
   C0R0_B0.UseVisualStyleBackColor = true;
   C0R0_B0.Click += Pixel_Click;
   // 
   // C0R0_B1
   // 
   C0R0_B1.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B1.Location = new Point(6, 78);
   C0R0_B1.Name = "C0R0_B1";
   C0R0_B1.Size = new Size(14, 14);
   C0R0_B1.TabIndex = 294;
   C0R0_B1.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B1.ThreeState = true;
   C0R0_B1.UseVisualStyleBackColor = true;
   C0R0_B1.Click += Pixel_Click;
   // 
   // C0R0_B2
   // 
   C0R0_B2.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B2.Location = new Point(6, 66);
   C0R0_B2.Name = "C0R0_B2";
   C0R0_B2.Size = new Size(14, 14);
   C0R0_B2.TabIndex = 293;
   C0R0_B2.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B2.ThreeState = true;
   C0R0_B2.UseVisualStyleBackColor = true;
   C0R0_B2.Click += Pixel_Click;
   // 
   // C0R0_B3
   // 
   C0R0_B3.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B3.Location = new Point(6, 54);
   C0R0_B3.Name = "C0R0_B3";
   C0R0_B3.Size = new Size(14, 14);
   C0R0_B3.TabIndex = 292;
   C0R0_B3.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B3.ThreeState = true;
   C0R0_B3.UseVisualStyleBackColor = true;
   C0R0_B3.Click += Pixel_Click;
   // 
   // C0R0_B4
   // 
   C0R0_B4.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B4.Location = new Point(6, 42);
   C0R0_B4.Name = "C0R0_B4";
   C0R0_B4.Size = new Size(14, 14);
   C0R0_B4.TabIndex = 291;
   C0R0_B4.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B4.ThreeState = true;
   C0R0_B4.UseVisualStyleBackColor = true;
   C0R0_B4.Click += Pixel_Click;
   // 
   // C0R0_B5
   // 
   C0R0_B5.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B5.Location = new Point(6, 30);
   C0R0_B5.Name = "C0R0_B5";
   C0R0_B5.Size = new Size(14, 14);
   C0R0_B5.TabIndex = 290;
   C0R0_B5.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B5.ThreeState = true;
   C0R0_B5.UseVisualStyleBackColor = true;
   C0R0_B5.Click += Pixel_Click;
   // 
   // C0R0_B6
   // 
   C0R0_B6.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B6.Location = new Point(6, 18);
   C0R0_B6.Name = "C0R0_B6";
   C0R0_B6.Size = new Size(14, 14);
   C0R0_B6.TabIndex = 289;
   C0R0_B6.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B6.ThreeState = true;
   C0R0_B6.UseVisualStyleBackColor = true;
   C0R0_B6.Click += Pixel_Click;
   // 
   // C0R0_B7
   // 
   C0R0_B7.CheckAlign = ContentAlignment.MiddleCenter;
   C0R0_B7.Location = new Point(6, 6);
   C0R0_B7.Name = "C0R0_B7";
   C0R0_B7.Size = new Size(14, 14);
   C0R0_B7.TabIndex = 288;
   C0R0_B7.TextAlign = ContentAlignment.MiddleCenter;
   C0R0_B7.ThreeState = true;
   C0R0_B7.UseVisualStyleBackColor = true;
   C0R0_B7.Click += Pixel_Click;
   // 
   // cmdLoadInternal
   // 
   cmdLoadInternal.Anchor = (((AnchorStyles.Top | AnchorStyles.Right)));
   cmdLoadInternal.Location = new Point(314, 221);
   cmdLoadInternal.Name = "cmdLoadInternal";
   cmdLoadInternal.Size = new Size(75, 23);
   cmdLoadInternal.TabIndex = 548;
   cmdLoadInternal.Text = "Internal";
   cmdLoadInternal.UseVisualStyleBackColor = true;
   cmdLoadInternal.Click += cmdLoadInternal_Click;
   // 
   // cmdLoadCustom
   // 
   cmdLoadCustom.Anchor = (((AnchorStyles.Top | AnchorStyles.Right)));
   cmdLoadCustom.Location = new Point(314, 196);
   cmdLoadCustom.Name = "cmdLoadCustom";
   cmdLoadCustom.Size = new Size(75, 23);
   cmdLoadCustom.TabIndex = 549;
   cmdLoadCustom.Text = "Custom";
   cmdLoadCustom.UseVisualStyleBackColor = true;
   cmdLoadCustom.Click += cmdLoadCustom_Click;
   // 
   // cmdSave
   // 
   cmdSave.Anchor = (((AnchorStyles.Bottom | AnchorStyles.Right)));
   cmdSave.Enabled = false;
   cmdSave.Location = new Point(233, 399);
   cmdSave.Name = "cmdSave";
   cmdSave.Size = new Size(75, 23);
   cmdSave.TabIndex = 550;
   cmdSave.Text = "Save";
   cmdSave.UseVisualStyleBackColor = true;
   cmdSave.Click += cmdSave_Click;
   // 
   // cmdExit
   // 
   cmdExit.Anchor = (((AnchorStyles.Bottom | AnchorStyles.Right)));
   cmdExit.Location = new Point(314, 399);
   cmdExit.Name = "cmdExit";
   cmdExit.Size = new Size(75, 23);
   cmdExit.TabIndex = 551;
   cmdExit.Text = "Exit";
   cmdExit.UseVisualStyleBackColor = true;
   cmdExit.Click += cmdExit_Click;
   // 
   // label21
   // 
   label21.Anchor = (((AnchorStyles.Top | AnchorStyles.Right)));
   label21.AutoSize = true;
   label21.Location = new Point(311, 178);
   label21.Name = "label21";
   label21.Size = new Size(79, 13);
   label21.TabIndex = 552;
   label21.Text = "Load ICON Set";
   label21.Visible = false;
   // 
   // iMONLCDg_IconEdit
   // 
   AutoScaleDimensions = new SizeF(6F, 13F);
   ClientSize = new Size(392, 424);
   Controls.Add(label21);
   Controls.Add(cmdExit);
   Controls.Add(cmdSave);
   Controls.Add(cmdLoadCustom);
   Controls.Add(cmdLoadInternal);
   Controls.Add(panel1);
   Controls.Add(label16);
   Controls.Add(label17);
   Controls.Add(label18);
   Controls.Add(label19);
   Controls.Add(label20);
   Controls.Add(label11);
   Controls.Add(label12);
   Controls.Add(label13);
   Controls.Add(label14);
   Controls.Add(label15);
   Controls.Add(label6);
   Controls.Add(label7);
   Controls.Add(label8);
   Controls.Add(label9);
   Controls.Add(label10);
   Controls.Add(label5);
   Controls.Add(label3);
   Controls.Add(label4);
   Controls.Add(label2);
   Controls.Add(label1);
   Controls.Add(Icon9);
   Controls.Add(Icon8);
   Controls.Add(Icon7);
   Controls.Add(Icon6);
   Controls.Add(Icon5);
   Controls.Add(Icon4);
   Controls.Add(Icon3);
   Controls.Add(Icon2);
   Controls.Add(Icon1);
   Controls.Add(Icon0);
   Name = "iMONLCDg_IconEdit";
   Text = "iMONLCDg_IconEdit";
   ((ISupportInitialize)(Icon0)).EndInit();
   ((ISupportInitialize)(Icon1)).EndInit();
   ((ISupportInitialize)(Icon2)).EndInit();
   ((ISupportInitialize)(Icon3)).EndInit();
   ((ISupportInitialize)(Icon4)).EndInit();
   ((ISupportInitialize)(Icon9)).EndInit();
   ((ISupportInitialize)(Icon8)).EndInit();
   ((ISupportInitialize)(Icon7)).EndInit();
   ((ISupportInitialize)(Icon6)).EndInit();
   ((ISupportInitialize)(Icon5)).EndInit();
   panel1.ResumeLayout(false);
   panel1.PerformLayout();
   ResumeLayout(false);
   PerformLayout();
 }
Exemplo n.º 17
0
        /// <summary>
        /// call this for Informative box
        /// </summary>
        /// <param name="imagebrand"> image for application , you can send the resourse. name or path </param>
        /// <param name="imageAlert"> image for image in box , you can send the resourse. name or path </param>
        /// <param name="titleApplication"> Title of application , this be in bottom center on box  </param>
        /// <param name="ExTitle"> title of execption </param>
        /// <param name="txtMsg"> content of Message </param>
        /// <param name="colorOfBorder"> Send The HTML colors here you want by Ex: '#00000' </param>
        /// <returns> </returns>
        public Form AlertsBoxByMoreOptions(Bitmap imagebrand, Bitmap imageAlert, string titleApplication, string titleEx, string txtMsg, string colorOfBorder)
        {
            #region Dailog
            form = new Form();
            Panel      pn1                = new System.Windows.Forms.Panel();
            Panel      pn2                = new System.Windows.Forms.Panel();
            Panel      pn3                = new System.Windows.Forms.Panel();
            Button     btnExit            = new System.Windows.Forms.Button();
            PictureBox picWarning         = new System.Windows.Forms.PictureBox();
            TextBox    txtMessage         = new System.Windows.Forms.TextBox();
            PictureBox picBrand           = new System.Windows.Forms.PictureBox();
            Label      lblTitle           = new System.Windows.Forms.Label();
            Label      lblApplicationName = new System.Windows.Forms.Label();

            //System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(form));
            pn1                = new System.Windows.Forms.Panel();
            pn2                = new System.Windows.Forms.Panel();
            pn3                = new System.Windows.Forms.Panel();
            btnExit            = new System.Windows.Forms.Button();
            picWarning         = new System.Windows.Forms.PictureBox();
            txtMessage         = new System.Windows.Forms.TextBox();
            picBrand           = new System.Windows.Forms.PictureBox();
            lblTitle           = new System.Windows.Forms.Label();
            lblApplicationName = new System.Windows.Forms.Label();
            pn1.SuspendLayout();
            pn2.SuspendLayout();
            pn3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(picWarning)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(picBrand)).BeginInit();
            form.SuspendLayout();
            //
            // pn1
            //
            pn1.BackColor = System.Drawing.Color.White;
            pn1.Controls.Add(txtMessage);
            pn1.Controls.Add(picWarning);
            pn1.Controls.Add(pn3);
            pn1.Controls.Add(pn2);
            pn1.Location = new System.Drawing.Point(8, 1);
            pn1.Name     = "pn1";
            pn1.Size     = new System.Drawing.Size(455, 173);
            pn1.TabIndex = 0;
            //
            // pn2
            //
            pn2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
            pn2.Controls.Add(lblApplicationName);
            pn2.Controls.Add(picBrand);
            pn2.Controls.Add(btnExit);
            pn2.Location = new System.Drawing.Point(1, 0);
            pn2.Name     = "pn2";
            pn2.Size     = new System.Drawing.Size(454, 40);
            pn2.TabIndex = 0;
            //
            // pn3
            //
            pn3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
            pn3.Controls.Add(lblTitle);
            pn3.Location = new System.Drawing.Point(1, 133);
            pn3.Name     = "pn3";
            pn3.Size     = new System.Drawing.Size(454, 40);
            pn3.TabIndex = 1;
            //
            // btnExit
            //
            btnExit.BackgroundImageLayout      = System.Windows.Forms.ImageLayout.None;
            btnExit.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(230)))), ((int)(((byte)(230)))), ((int)(((byte)(230)))));
            btnExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
            btnExit.Font      = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            btnExit.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(179)))), ((int)(((byte)(179)))), ((int)(((byte)(179)))));
            btnExit.Location  = new System.Drawing.Point(424, 4);
            btnExit.Name      = "btnExit";
            btnExit.Size      = new System.Drawing.Size(25, 23);
            btnExit.TabIndex  = 0;
            btnExit.Text      = "X";
            btnExit.UseVisualStyleBackColor = true;
            //
            // picWarning
            //
            picWarning.Image    = ((System.Drawing.Image)(imageAlert));
            picWarning.Location = new System.Drawing.Point(4, 46);
            picWarning.Name     = "picWarning";
            picWarning.Size     = new System.Drawing.Size(70, 81);
            picWarning.TabIndex = 2;
            picWarning.TabStop  = false;
            //
            // txtMessage
            //
            txtMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
            txtMessage.Location    = new System.Drawing.Point(80, 46);
            txtMessage.Multiline   = true;
            txtMessage.Name        = "txtMessage";
            txtMessage.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            txtMessage.Size        = new System.Drawing.Size(365, 81);
            txtMessage.TabIndex    = 3;
            txtMessage.ReadOnly    = true;
            txtMessage.BackColor   = System.Drawing.Color.White;
            //
            // picBrand
            //
            picBrand.Image    = ((System.Drawing.Image)(imagebrand));
            picBrand.Location = new System.Drawing.Point(3, 4);
            picBrand.Name     = "picBrand";
            picBrand.Size     = new System.Drawing.Size(35, 30);
            picBrand.TabIndex = 1;
            picBrand.TabStop  = false;
            //
            // lblTitle
            //
            lblTitle.AutoSize    = true;
            lblTitle.Font        = new System.Drawing.Font("TheSansArabic Bold", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            lblTitle.Location    = new System.Drawing.Point(127, 2);
            lblTitle.Name        = "lblTitle";
            lblTitle.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
            lblTitle.Size        = new System.Drawing.Size(201, 35);
            lblTitle.TabIndex    = 0;
            lblTitle.Text        = "|" + titleEx + "|";
            //
            // lblApplicationName
            //
            lblApplicationName.AutoSize = true;
            lblApplicationName.Font     = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            lblApplicationName.Location = new System.Drawing.Point(58, 12);
            lblApplicationName.Name     = "lblApplicationName";
            lblApplicationName.Size     = new System.Drawing.Size(124, 14);
            lblApplicationName.TabIndex = 2;
            lblApplicationName.Text     = titleApplication + " | ";
            //
            // Form1
            //
            form.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            form.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            form.BackColor           = System.Drawing.ColorTranslator.FromHtml(colorOfBorder);
            form.ClientSize          = new System.Drawing.Size(465, 175);
            form.Controls.Add(pn1);
            form.FormBorderStyle   = System.Windows.Forms.FormBorderStyle.None;
            form.Name              = "Form1";
            form.RightToLeft       = System.Windows.Forms.RightToLeft.Yes;
            form.RightToLeftLayout = true;
            form.Text              = "Form1";
            pn1.ResumeLayout(false);
            pn1.PerformLayout();
            pn2.ResumeLayout(false);
            pn2.PerformLayout();
            pn3.ResumeLayout(false);
            pn3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(picWarning)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(picBrand)).EndInit();
            form.ResumeLayout(false);

            #endregion



            txtMessage.Text        = txtMsg;
            form.RightToLeftLayout = true;
            form.RightToLeft       = RightToLeft.Yes;

            form.FormBorderStyle = FormBorderStyle.FixedDialog;
            form.MinimizeBox     = false;
            form.MaximizeBox     = false;
            form.FormBorderStyle = FormBorderStyle.None;
            form.StartPosition   = FormStartPosition.Manual;
            Rectangle workingArea = Screen.GetWorkingArea(form);
            form.Location = new Point(workingArea.Right - form.Size.Width - 20,
                                      workingArea.Bottom - form.Size.Height - 20);

            btnExit.Click += BtnExit_Click;


            Form dialogResult = form;
            return(dialogResult);
        }
Exemplo n.º 18
0
        private void InitializeComponent()
        {
            ComponentResourceManager resources = new ComponentResourceManager(typeof(ScriptEditor));

            panel1      = new Panel();
            description = new Label();
            toolStrip1  = new ToolStrip();
            btnAdd      = new ToolStripButton();
            btnRemove   = new ToolStripButton();
            btnModify   = new ToolStripButton();
            btnUp       = new ToolStripButton();
            btnDown     = new ToolStripButton();
            panel2      = new Panel();
            toolStrip2  = new ToolStrip();
            btnCopy     = new ToolStripButton();
            btnCut      = new ToolStripButton();
            btnPaste    = new ToolStripButton();
            btnCopyText = new ToolStripButton();
            EventList   = new ListBox();
            splitter1   = new Splitter();
            panel1.SuspendLayout();
            toolStrip1.SuspendLayout();
            panel2.SuspendLayout();
            toolStrip2.SuspendLayout();
            SuspendLayout();
            //
            // panel1
            //
            panel1.Controls.Add(description);
            panel1.Controls.Add(toolStrip1);
            panel1.Dock     = DockStyle.Bottom;
            panel1.Location = new Drawing.Point(1, 188);
            panel1.Name     = "panel1";
            panel1.Size     = new Drawing.Size(324, 95);
            panel1.TabIndex = 2;
            //
            // description
            //
            description.BackColor   = SystemColors.Control;
            description.BorderStyle = BorderStyle.Fixed3D;
            description.Dock        = DockStyle.Fill;
            description.Font        = new Font("Microsoft Sans Serif", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, (byte)0);
            description.Location    = new Drawing.Point(0, 25);
            description.Name        = "description";
            description.Size        = new Drawing.Size(324, 70);
            description.TabIndex    = 59;
            //
            // toolStrip1
            //
            toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
            toolStrip1.Items.AddRange(new ToolStripItem[]
            {
                btnAdd,
                btnRemove,
                btnModify,
                btnUp,
                btnDown
            });
            toolStrip1.Location = new Drawing.Point(0, 0);
            toolStrip1.Name     = "toolStrip1";
            toolStrip1.Size     = new Drawing.Size(324, 25);
            toolStrip1.TabIndex = 0;
            toolStrip1.Text     = "toolStrip1";
            //
            // btnAdd
            //
            btnAdd.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnAdd.Image = (Image) resources.GetObject("btnAdd.Image");
            btnAdd.ImageTransparentColor = Color.Magenta;
            btnAdd.Name   = "btnAdd";
            btnAdd.Size   = new Drawing.Size(33, 22);
            btnAdd.Text   = "Add";
            btnAdd.Click += new EventHandler(btnAdd_Click);
            //
            // btnRemove
            //
            btnRemove.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnRemove.Image = (Image) resources.GetObject("btnRemove.Image");
            btnRemove.ImageTransparentColor = Color.Magenta;
            btnRemove.Name   = "btnRemove";
            btnRemove.Size   = new Drawing.Size(54, 22);
            btnRemove.Text   = "Remove";
            btnRemove.Click += new EventHandler(btnRemove_Click);
            //
            // btnModify
            //
            btnModify.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnModify.Image = (Image) resources.GetObject("btnModify.Image");
            btnModify.ImageTransparentColor = Color.Magenta;
            btnModify.Name   = "btnModify";
            btnModify.Size   = new Drawing.Size(49, 22);
            btnModify.Text   = "Modify";
            btnModify.Click += new EventHandler(btnModify_Click);
            //
            // btnUp
            //
            btnUp.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnUp.Image = (Image) resources.GetObject("btnUp.Image");
            btnUp.ImageTransparentColor = Color.Magenta;
            btnUp.Name   = "btnUp";
            btnUp.Size   = new Drawing.Size(23, 22);
            btnUp.Text   = "▲";
            btnUp.Click += new EventHandler(btnUp_Click);
            //
            // btnDown
            //
            btnDown.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnDown.Image = (Image) resources.GetObject("btnDown.Image");
            btnDown.ImageTransparentColor = Color.Magenta;
            btnDown.Name   = "btnDown";
            btnDown.Size   = new Drawing.Size(23, 22);
            btnDown.Text   = "▼";
            btnDown.Click += new EventHandler(btnDown_Click);
            //
            // panel2
            //
            panel2.Controls.Add(toolStrip2);
            panel2.Dock     = DockStyle.Top;
            panel2.Location = new Drawing.Point(1, 1);
            panel2.Name     = "panel2";
            panel2.Size     = new Drawing.Size(324, 23);
            panel2.TabIndex = 15;
            //
            // toolStrip2
            //
            toolStrip2.Dock      = DockStyle.Fill;
            toolStrip2.GripStyle = ToolStripGripStyle.Hidden;
            toolStrip2.Items.AddRange(new ToolStripItem[]
            {
                btnCopy,
                btnCut,
                btnPaste,
                btnCopyText
            });
            toolStrip2.Location = new Drawing.Point(0, 0);
            toolStrip2.Name     = "toolStrip2";
            toolStrip2.Size     = new Drawing.Size(324, 23);
            toolStrip2.TabIndex = 1;
            toolStrip2.Text     = "toolStrip2";
            //
            // btnCopy
            //
            btnCopy.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnCopy.Image = (Image) resources.GetObject("btnCopy.Image");
            btnCopy.ImageTransparentColor = Color.Magenta;
            btnCopy.Name   = "btnCopy";
            btnCopy.Size   = new Drawing.Size(39, 20);
            btnCopy.Text   = "Copy";
            btnCopy.Click += new EventHandler(btnCopy_Click);
            //
            // btnCut
            //
            btnCut.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnCut.Image = (Image) resources.GetObject("btnCut.Image");
            btnCut.ImageTransparentColor = Color.Magenta;
            btnCut.Name   = "btnCut";
            btnCut.Size   = new Drawing.Size(30, 20);
            btnCut.Text   = "Cut";
            btnCut.Click += new EventHandler(btnCut_Click);
            //
            // btnPaste
            //
            btnPaste.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnPaste.Image = (Image) resources.GetObject("btnPaste.Image");
            btnPaste.ImageTransparentColor = Color.Magenta;
            btnPaste.Name   = "btnPaste";
            btnPaste.Size   = new Drawing.Size(39, 20);
            btnPaste.Text   = "Paste";
            btnPaste.Click += new EventHandler(btnPaste_Click);
            //
            // btnCopyText
            //
            btnCopyText.DisplayStyle = ToolStripItemDisplayStyle.Text;
            //btnCopyText.Image = (Image) resources.GetObject("btnCopyText.Image");
            btnCopyText.ImageTransparentColor = Color.Magenta;
            btnCopyText.Name   = "btnCopyText";
            btnCopyText.Size   = new Drawing.Size(64, 20);
            btnCopyText.Text   = "Copy Text";
            btnCopyText.Click += new EventHandler(btnCopyText_Click);
            //
            // EventList
            //
            EventList.Dock = DockStyle.Fill;
            EventList.FormattingEnabled   = true;
            EventList.HorizontalScrollbar = true;
            EventList.IntegralHeight      = false;
            EventList.Location            = new Drawing.Point(1, 24);
            EventList.Name                  = "EventList";
            EventList.SelectionMode         = SelectionMode.MultiExtended;
            EventList.Size                  = new Drawing.Size(324, 161);
            EventList.TabIndex              = 16;
            EventList.SelectedIndexChanged += new EventHandler(EventList_SelectedIndexChanged);
            EventList.DoubleClick          += new EventHandler(EventList_DoubleClick);
            //
            // splitter1
            //
            splitter1.Dock     = DockStyle.Bottom;
            splitter1.Location = new Drawing.Point(1, 185);
            splitter1.Name     = "splitter1";
            splitter1.Size     = new Drawing.Size(324, 3);
            splitter1.TabIndex = 60;
            splitter1.TabStop  = false;
            //
            // ScriptEditor
            //
            Controls.Add(EventList);
            Controls.Add(panel2);
            Controls.Add(splitter1);
            Controls.Add(panel1);
            Name    = "ScriptEditor";
            Padding = new Padding(1);
            Size    = new Drawing.Size(326, 284);
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            toolStrip1.ResumeLayout(false);
            toolStrip1.PerformLayout();
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            toolStrip2.ResumeLayout(false);
            toolStrip2.PerformLayout();
            ResumeLayout(false);
        }
Exemplo n.º 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();
            System.Windows.Forms.Panel panel1;
            System.Windows.Forms.Panel panel2;
            System.Windows.Forms.Panel panel3;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ViewerForm));
            this.elementViewer = new System.Windows.Forms.FlowLayoutPanel();
            this.checkBoxTreeShowHidden = new System.Windows.Forms.CheckBox();
            this.treeViewer = new System.Windows.Forms.TreeView();
            this.panelElementSelect = new System.Windows.Forms.Panel();
            this.labelSelected = new System.Windows.Forms.Label();
            this.viewerSplit = new System.Windows.Forms.SplitContainer();
            this.toolStripContainer1 = new System.Windows.Forms.ToolStripContainer();
            this.statusStripMain = new System.Windows.Forms.StatusStrip();
            this.statusMain = new System.Windows.Forms.ToolStripStatusLabel();
            this.menuStripMain = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.saveAsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.recentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.startToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.newGraphToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.optionsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.clearRecentListToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.preferencesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this.TreeNodeContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.AddToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.RenameToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.DeleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.TreeNodeParentContextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.AddParentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            panel1 = new System.Windows.Forms.Panel();
            panel2 = new System.Windows.Forms.Panel();
            panel3 = new System.Windows.Forms.Panel();
            panel1.SuspendLayout();
            panel2.SuspendLayout();
            panel3.SuspendLayout();
            this.panelElementSelect.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.viewerSplit)).BeginInit();
            this.viewerSplit.Panel1.SuspendLayout();
            this.viewerSplit.Panel2.SuspendLayout();
            this.viewerSplit.SuspendLayout();
            this.toolStripContainer1.BottomToolStripPanel.SuspendLayout();
            this.toolStripContainer1.ContentPanel.SuspendLayout();
            this.toolStripContainer1.TopToolStripPanel.SuspendLayout();
            this.toolStripContainer1.SuspendLayout();
            this.statusStripMain.SuspendLayout();
            this.menuStripMain.SuspendLayout();
            this.TreeNodeContextMenuStrip.SuspendLayout();
            this.TreeNodeParentContextMenuStrip.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            panel1.Controls.Add(this.elementViewer);
            panel1.Dock = System.Windows.Forms.DockStyle.Fill;
            panel1.Location = new System.Drawing.Point(0, 35);
            panel1.Name = "panel1";
            panel1.Size = new System.Drawing.Size(575, 507);
            panel1.TabIndex = 2;
            // 
            // elementViewer
            // 
            this.elementViewer.AutoScroll = true;
            this.elementViewer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.elementViewer.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
            this.elementViewer.Location = new System.Drawing.Point(0, 0);
            this.elementViewer.Name = "elementViewer";
            this.elementViewer.Size = new System.Drawing.Size(575, 507);
            this.elementViewer.TabIndex = 0;
            this.elementViewer.WrapContents = false;
            this.elementViewer.MouseClick += new System.Windows.Forms.MouseEventHandler(this.elementViewer_MouseClick);
            // 
            // panel2
            // 
            panel2.Controls.Add(this.checkBoxTreeShowHidden);
            panel2.Dock = System.Windows.Forms.DockStyle.Top;
            panel2.Location = new System.Drawing.Point(0, 0);
            panel2.Name = "panel2";
            panel2.Size = new System.Drawing.Size(256, 35);
            panel2.TabIndex = 1;
            // 
            // checkBoxTreeShowHidden
            // 
            this.checkBoxTreeShowHidden.AutoSize = true;
            this.checkBoxTreeShowHidden.Location = new System.Drawing.Point(10, 10);
            this.checkBoxTreeShowHidden.Name = "checkBoxTreeShowHidden";
            this.checkBoxTreeShowHidden.Size = new System.Drawing.Size(106, 19);
            this.checkBoxTreeShowHidden.TabIndex = 1;
            this.checkBoxTreeShowHidden.Text = "Show all items";
            this.checkBoxTreeShowHidden.UseVisualStyleBackColor = true;
            this.checkBoxTreeShowHidden.CheckedChanged += new System.EventHandler(this.checkBoxTreeShowHidden_CheckedChanged);
            // 
            // panel3
            // 
            panel3.Controls.Add(this.treeViewer);
            panel3.Dock = System.Windows.Forms.DockStyle.Fill;
            panel3.Location = new System.Drawing.Point(0, 35);
            panel3.Name = "panel3";
            panel3.Size = new System.Drawing.Size(256, 507);
            panel3.TabIndex = 2;
            // 
            // treeViewer
            // 
            this.treeViewer.AllowDrop = true;
            this.treeViewer.Dock = System.Windows.Forms.DockStyle.Fill;
            this.treeViewer.Font = new System.Drawing.Font("Verdana", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
            this.treeViewer.HideSelection = false;
            this.treeViewer.Location = new System.Drawing.Point(0, 0);
            this.treeViewer.Name = "treeViewer";
            this.treeViewer.PathSeparator = ">";
            this.treeViewer.ShowNodeToolTips = true;
            this.treeViewer.Size = new System.Drawing.Size(256, 507);
            this.treeViewer.TabIndex = 0;
            this.treeViewer.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.treeViewer_ItemDrag);
            this.treeViewer.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewer_AfterSelect);
            this.treeViewer.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.treeViewer_NodeMouseClick);
            this.treeViewer.DragDrop += new System.Windows.Forms.DragEventHandler(this.treeViewer_DragDrop);
            this.treeViewer.DragEnter += new System.Windows.Forms.DragEventHandler(this.treeViewer_DragEnter);
            this.treeViewer.DragOver += new System.Windows.Forms.DragEventHandler(this.treeViewer_DragOver);
            // 
            // panelElementSelect
            // 
            this.panelElementSelect.Controls.Add(this.labelSelected);
            this.panelElementSelect.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelElementSelect.Location = new System.Drawing.Point(0, 0);
            this.panelElementSelect.MaximumSize = new System.Drawing.Size(0, 35);
            this.panelElementSelect.Name = "panelElementSelect";
            this.panelElementSelect.Size = new System.Drawing.Size(575, 35);
            this.panelElementSelect.TabIndex = 1;
            // 
            // labelSelected
            // 
            this.labelSelected.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(255)))));
            this.labelSelected.Dock = System.Windows.Forms.DockStyle.Fill;
            this.labelSelected.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
            this.labelSelected.Location = new System.Drawing.Point(0, 0);
            this.labelSelected.MaximumSize = new System.Drawing.Size(0, 35);
            this.labelSelected.Name = "labelSelected";
            this.labelSelected.Padding = new System.Windows.Forms.Padding(2);
            this.labelSelected.Size = new System.Drawing.Size(575, 35);
            this.labelSelected.TabIndex = 0;
            this.labelSelected.TextChanged += new System.EventHandler(this.labelSelected_TextChanged);
            // 
            // viewerSplit
            // 
            this.viewerSplit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.viewerSplit.Dock = System.Windows.Forms.DockStyle.Fill;
            this.viewerSplit.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            this.viewerSplit.Location = new System.Drawing.Point(0, 0);
            this.viewerSplit.Name = "viewerSplit";
            // 
            // viewerSplit.Panel1
            // 
            this.viewerSplit.Panel1.AutoScroll = true;
            this.viewerSplit.Panel1.Controls.Add(panel3);
            this.viewerSplit.Panel1.Controls.Add(panel2);
            // 
            // viewerSplit.Panel2
            // 
            this.viewerSplit.Panel2.AutoScroll = true;
            this.viewerSplit.Panel2.Controls.Add(panel1);
            this.viewerSplit.Panel2.Controls.Add(this.panelElementSelect);
            this.viewerSplit.Size = new System.Drawing.Size(844, 546);
            this.viewerSplit.SplitterDistance = 260;
            this.viewerSplit.SplitterWidth = 5;
            this.viewerSplit.TabIndex = 0;
            this.viewerSplit.TabStop = false;
            // 
            // toolStripContainer1
            // 
            // 
            // toolStripContainer1.BottomToolStripPanel
            // 
            this.toolStripContainer1.BottomToolStripPanel.Controls.Add(this.statusStripMain);
            // 
            // toolStripContainer1.ContentPanel
            // 
            this.toolStripContainer1.ContentPanel.AutoScroll = true;
            this.toolStripContainer1.ContentPanel.Controls.Add(this.viewerSplit);
            this.toolStripContainer1.ContentPanel.Size = new System.Drawing.Size(844, 546);
            this.toolStripContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.toolStripContainer1.Location = new System.Drawing.Point(0, 0);
            this.toolStripContainer1.Name = "toolStripContainer1";
            this.toolStripContainer1.Size = new System.Drawing.Size(844, 592);
            this.toolStripContainer1.TabIndex = 1;
            this.toolStripContainer1.Text = "toolStripContainer1";
            // 
            // toolStripContainer1.TopToolStripPanel
            // 
            this.toolStripContainer1.TopToolStripPanel.Controls.Add(this.menuStripMain);
            // 
            // statusStripMain
            // 
            this.statusStripMain.Dock = System.Windows.Forms.DockStyle.None;
            this.statusStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusMain});
            this.statusStripMain.Location = new System.Drawing.Point(0, 0);
            this.statusStripMain.Name = "statusStripMain";
            this.statusStripMain.Size = new System.Drawing.Size(844, 22);
            this.statusStripMain.TabIndex = 0;
            // 
            // statusMain
            // 
            this.statusMain.Name = "statusMain";
            this.statusMain.Size = new System.Drawing.Size(65, 17);
            this.statusMain.Text = "statusMain";
            this.statusMain.TextChanged += new System.EventHandler(this.statusMain_TextChanged);
            // 
            // menuStripMain
            // 
            this.menuStripMain.Dock = System.Windows.Forms.DockStyle.None;
            this.menuStripMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem,
            this.editToolStripMenuItem,
            this.optionsToolStripMenuItem,
            this.helpToolStripMenuItem});
            this.menuStripMain.Location = new System.Drawing.Point(0, 0);
            this.menuStripMain.Name = "menuStripMain";
            this.menuStripMain.Size = new System.Drawing.Size(844, 24);
            this.menuStripMain.TabIndex = 0;
            this.menuStripMain.Text = "menuStripMain";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.newToolStripMenuItem,
            this.openToolStripMenuItem,
            this.saveToolStripMenuItem,
            this.saveAsToolStripMenuItem,
            this.closeToolStripMenuItem,
            this.recentToolStripMenuItem,
            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.ShortcutKeyDisplayString = "";
            this.newToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
            this.newToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.newToolStripMenuItem.Text = "New";
            this.newToolStripMenuItem.Click += new System.EventHandler(this.newToolStripMenuItem_Click);
            // 
            // openToolStripMenuItem
            // 
            this.openToolStripMenuItem.Name = "openToolStripMenuItem";
            this.openToolStripMenuItem.ShortcutKeyDisplayString = "";
            this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            this.openToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.openToolStripMenuItem.Text = "Open";
            this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
            // 
            // saveToolStripMenuItem
            // 
            this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
            this.saveToolStripMenuItem.ShortcutKeyDisplayString = "";
            this.saveToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            this.saveToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.saveToolStripMenuItem.Text = "Save";
            this.saveToolStripMenuItem.Click += new System.EventHandler(this.saveToolStripMenuItem_Click);
            // 
            // saveAsToolStripMenuItem
            // 
            this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
            this.saveAsToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Shift) 
            | System.Windows.Forms.Keys.S)));
            this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.saveAsToolStripMenuItem.Text = "Save As";
            this.saveAsToolStripMenuItem.Click += new System.EventHandler(this.saveAsToolStripMenuItem_Click);
            // 
            // closeToolStripMenuItem
            // 
            this.closeToolStripMenuItem.Name = "closeToolStripMenuItem";
            this.closeToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.closeToolStripMenuItem.Text = "Close";
            this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);
            // 
            // recentToolStripMenuItem
            // 
            this.recentToolStripMenuItem.Name = "recentToolStripMenuItem";
            this.recentToolStripMenuItem.Size = new System.Drawing.Size(186, 22);
            this.recentToolStripMenuItem.Text = "Recent";
            this.recentToolStripMenuItem.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.recentToolStripMenuItem_DropDownItemClicked);
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4)));
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(186, 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.startToolStripMenuItem,
            this.newGraphToolStripMenuItem});
            this.editToolStripMenuItem.Name = "editToolStripMenuItem";
            this.editToolStripMenuItem.Size = new System.Drawing.Size(76, 20);
            this.editToolStripMenuItem.Text = "Simulation";
            // 
            // startToolStripMenuItem
            // 
            this.startToolStripMenuItem.Name = "startToolStripMenuItem";
            this.startToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.startToolStripMenuItem.Text = "Start";
            this.startToolStripMenuItem.Click += new System.EventHandler(this.startToolStripMenuItem_Click);
            // 
            // newGraphToolStripMenuItem
            // 
            this.newGraphToolStripMenuItem.Name = "newGraphToolStripMenuItem";
            this.newGraphToolStripMenuItem.Size = new System.Drawing.Size(143, 22);
            this.newGraphToolStripMenuItem.Text = "Create Graph";
            this.newGraphToolStripMenuItem.Click += new System.EventHandler(this.createGraphToolStripMenuItem_Click);
            // 
            // optionsToolStripMenuItem
            // 
            this.optionsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.clearRecentListToolStripMenuItem,
            this.preferencesToolStripMenuItem});
            this.optionsToolStripMenuItem.Name = "optionsToolStripMenuItem";
            this.optionsToolStripMenuItem.Size = new System.Drawing.Size(61, 20);
            this.optionsToolStripMenuItem.Text = "Options";
            // 
            // clearRecentListToolStripMenuItem
            // 
            this.clearRecentListToolStripMenuItem.Name = "clearRecentListToolStripMenuItem";
            this.clearRecentListToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.clearRecentListToolStripMenuItem.Text = "Clear Recent List";
            this.clearRecentListToolStripMenuItem.Click += new System.EventHandler(this.clearRecentListToolStripMenuItem_Click);
            // 
            // preferencesToolStripMenuItem
            // 
            this.preferencesToolStripMenuItem.Name = "preferencesToolStripMenuItem";
            this.preferencesToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
            this.preferencesToolStripMenuItem.Text = "Preferences";
            this.preferencesToolStripMenuItem.Click += new System.EventHandler(this.preferencesToolStripMenuItem_Click);
            // 
            // 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";
            this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
            // 
            // openFileDialog
            // 
            this.openFileDialog.Filter = "Bark Files|*.brk|XML Files|*.xml|All files|*.*";
            this.openFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.openFileDialog_FileOk);
            // 
            // saveFileDialog
            // 
            this.saveFileDialog.DefaultExt = "brk";
            this.saveFileDialog.Filter = "Bark Files|*.brk|XML Files|*.xml|All files|*.*";
            this.saveFileDialog.FileOk += new System.ComponentModel.CancelEventHandler(this.saveFileDialog_FileOk);
            // 
            // TreeNodeContextMenuStrip
            // 
            this.TreeNodeContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AddToolStripMenuItem,
            this.RenameToolStripMenuItem,
            this.DeleteToolStripMenuItem});
            this.TreeNodeContextMenuStrip.Name = "TreeNodeContextMenuStrip";
            this.TreeNodeContextMenuStrip.Size = new System.Drawing.Size(118, 70);
            // 
            // AddToolStripMenuItem
            // 
            this.AddToolStripMenuItem.Name = "AddToolStripMenuItem";
            this.AddToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.AddToolStripMenuItem.Text = "Add";
            this.AddToolStripMenuItem.Click += new System.EventHandler(this.AddToolStripMenuItem_Click);
            // 
            // RenameToolStripMenuItem
            // 
            this.RenameToolStripMenuItem.Name = "RenameToolStripMenuItem";
            this.RenameToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.RenameToolStripMenuItem.Text = "Rename";
            this.RenameToolStripMenuItem.Click += new System.EventHandler(this.RenameToolStripMenuItem_Click);
            // 
            // DeleteToolStripMenuItem
            // 
            this.DeleteToolStripMenuItem.Name = "DeleteToolStripMenuItem";
            this.DeleteToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
            this.DeleteToolStripMenuItem.Text = "Delete";
            this.DeleteToolStripMenuItem.Click += new System.EventHandler(this.DeleteToolStripMenuItem_Click);
            // 
            // TreeNodeParentContextMenuStrip
            // 
            this.TreeNodeParentContextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.AddParentToolStripMenuItem});
            this.TreeNodeParentContextMenuStrip.Name = "TreeNodeParentContextMenuStrip";
            this.TreeNodeParentContextMenuStrip.Size = new System.Drawing.Size(97, 26);
            // 
            // AddParentToolStripMenuItem
            // 
            this.AddParentToolStripMenuItem.Name = "AddParentToolStripMenuItem";
            this.AddParentToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
            this.AddParentToolStripMenuItem.Text = "Add";
            this.AddParentToolStripMenuItem.Click += new System.EventHandler(this.AddParentToolStripMenuItem_Click);
            // 
            // ViewerForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoScroll = true;
            this.ClientSize = new System.Drawing.Size(844, 592);
            this.Controls.Add(this.toolStripContainer1);
            this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
            this.HelpButton = true;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStripMain;
            this.MinimumSize = new System.Drawing.Size(580, 320);
            this.Name = "ViewerForm";
            this.Text = "Viewer";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.viewerForm_FormClosing);
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.viewerForm_FormClosed);
            this.Load += new System.EventHandler(this.viewerForm_Load);
            panel1.ResumeLayout(false);
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            panel3.ResumeLayout(false);
            this.panelElementSelect.ResumeLayout(false);
            this.viewerSplit.Panel1.ResumeLayout(false);
            this.viewerSplit.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.viewerSplit)).EndInit();
            this.viewerSplit.ResumeLayout(false);
            this.toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.BottomToolStripPanel.PerformLayout();
            this.toolStripContainer1.ContentPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.ResumeLayout(false);
            this.toolStripContainer1.TopToolStripPanel.PerformLayout();
            this.toolStripContainer1.ResumeLayout(false);
            this.toolStripContainer1.PerformLayout();
            this.statusStripMain.ResumeLayout(false);
            this.statusStripMain.PerformLayout();
            this.menuStripMain.ResumeLayout(false);
            this.menuStripMain.PerformLayout();
            this.TreeNodeContextMenuStrip.ResumeLayout(false);
            this.TreeNodeParentContextMenuStrip.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 20
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.Panel panel1;
            System.Windows.Forms.BindingSource possibleAssignmentsBindingSource;
            System.Windows.Forms.BindingSource actionsAvailableBindingSource;
            System.Windows.Forms.Label label6;
            System.Windows.Forms.Panel panel2;
            System.Windows.Forms.BindingSource statusFilterBindingSource;
            System.Windows.Forms.Label label4;
            System.Windows.Forms.Label label3;
            System.Windows.Forms.BindingSource assignmentFilterBindingSource;
            System.Windows.Forms.Label label1;
            System.Windows.Forms.BindingSource filtersBindingSource;
            System.Windows.Forms.Label label2;
            System.Windows.Forms.ColumnHeader hdrId;
            System.Windows.Forms.ColumnHeader hdrSummary;
            System.Windows.Forms.ColumnHeader hdrAssignedTo;
            System.Windows.Forms.ColumnHeader hdrReportedBy;
            System.Windows.Forms.ColumnHeader hdrLastMod;
            System.Windows.Forms.ColumnHeader hdrCreated;
            System.Windows.Forms.ColumnHeader hdrStatus;
            System.Windows.Forms.Label label5;
            this._showHideMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.showTimeTrackingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._assignTo = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this._binding = new System.Windows.Forms.BindingSource(this.components);
            this._doAssignTo = new System.Windows.Forms.CheckBox();
            this._doTakeAction = new System.Windows.Forms.CheckBox();
            this._takeAction = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this.cancelButton = new System.Windows.Forms.Button();
            this.okButton = new System.Windows.Forms.Button();
            this._search = new System.Windows.Forms.TextBox();
            this._status = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this._assigned = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this._filters = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this.worklogpanel = new System.Windows.Forms.Panel();
            this._worklogGroup = new System.Windows.Forms.GroupBox();
            this._hideTimeTracking = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.hideToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._worklogAction = new CSharpTest.Net.SvnPlugin.UI.BindingComboBox();
            this.remainingEstimateBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this._worklog = new System.Windows.Forms.TextBox();
            this.textBox1 = new System.Windows.Forms.TextBox();
            this._addWorklog = new System.Windows.Forms.CheckBox();
            this._splitter = new System.Windows.Forms.SplitContainer();
            this._listView = new System.Windows.Forms.ListView();
            this._contextMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
            this.viewIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.refreshIssueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
            this._comment = new System.Windows.Forms.TextBox();
            panel1 = new System.Windows.Forms.Panel();
            possibleAssignmentsBindingSource = new System.Windows.Forms.BindingSource(this.components);
            actionsAvailableBindingSource = new System.Windows.Forms.BindingSource(this.components);
            label6 = new System.Windows.Forms.Label();
            panel2 = new System.Windows.Forms.Panel();
            statusFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
            label4 = new System.Windows.Forms.Label();
            label3 = new System.Windows.Forms.Label();
            assignmentFilterBindingSource = new System.Windows.Forms.BindingSource(this.components);
            label1 = new System.Windows.Forms.Label();
            filtersBindingSource = new System.Windows.Forms.BindingSource(this.components);
            label2 = new System.Windows.Forms.Label();
            hdrId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrSummary = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrAssignedTo = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrReportedBy = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrLastMod = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrCreated = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            hdrStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            label5 = new System.Windows.Forms.Label();
            panel1.SuspendLayout();
            this._showHideMenu.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._binding)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).BeginInit();
            panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).BeginInit();
            this.worklogpanel.SuspendLayout();
            this._worklogGroup.SuspendLayout();
            this._hideTimeTracking.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).BeginInit();
            this._splitter.Panel1.SuspendLayout();
            this._splitter.Panel2.SuspendLayout();
            this._splitter.SuspendLayout();
            this._contextMenu.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            panel1.ContextMenuStrip = this._showHideMenu;
            panel1.Controls.Add(this._assignTo);
            panel1.Controls.Add(this._doAssignTo);
            panel1.Controls.Add(this._doTakeAction);
            panel1.Controls.Add(this._takeAction);
            panel1.Controls.Add(this.cancelButton);
            panel1.Controls.Add(this.okButton);
            panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
            panel1.Location = new System.Drawing.Point(3, 535);
            panel1.Name = "panel1";
            panel1.Padding = new System.Windows.Forms.Padding(5);
            panel1.Size = new System.Drawing.Size(993, 37);
            panel1.TabIndex = 2;
            // 
            // _showHideMenu
            // 
            this._showHideMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.showTimeTrackingToolStripMenuItem});
            this._showHideMenu.Name = "_showHideMenu";
            this._showHideMenu.Size = new System.Drawing.Size(179, 26);
            // 
            // showTimeTrackingToolStripMenuItem
            // 
            this.showTimeTrackingToolStripMenuItem.Checked = true;
            this.showTimeTrackingToolStripMenuItem.CheckOnClick = true;
            this.showTimeTrackingToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked;
            this.showTimeTrackingToolStripMenuItem.Name = "showTimeTrackingToolStripMenuItem";
            this.showTimeTrackingToolStripMenuItem.Size = new System.Drawing.Size(178, 22);
            this.showTimeTrackingToolStripMenuItem.Text = "Show time tracking";
            this.showTimeTrackingToolStripMenuItem.Click += new System.EventHandler(this.showTimeTrackingToolStripMenuItem_Click);
            // 
            // _assignTo
            // 
            this._assignTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignee", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._assignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._assignTo.DataSource = possibleAssignmentsBindingSource;
            this._assignTo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._assignTo.FormattingEnabled = true;
            this._assignTo.IndexSelected = -1;
            this._assignTo.Location = new System.Drawing.Point(298, 10);
            this._assignTo.Name = "_assignTo";
            this._assignTo.Size = new System.Drawing.Size(144, 20);
            this._assignTo.TabIndex = 9;
            // 
            // _binding
            // 
            this._binding.DataSource = typeof(CSharpTest.Net.SvnPlugin.UI.IssuesListView);
            // 
            // possibleAssignmentsBindingSource
            // 
            possibleAssignmentsBindingSource.DataMember = "PossibleAssignments";
            possibleAssignmentsBindingSource.DataSource = this._binding;
            // 
            // _doAssignTo
            // 
            this._doAssignTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._doAssignTo.AutoSize = true;
            this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AssignTo", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._doAssignTo.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true));
            this._doAssignTo.Location = new System.Drawing.Point(200, 14);
            this._doAssignTo.Name = "_doAssignTo";
            this._doAssignTo.Size = new System.Drawing.Size(108, 16);
            this._doAssignTo.TabIndex = 8;
            this._doAssignTo.Text = "and assig&n to:";
            this._doAssignTo.UseVisualStyleBackColor = true;
            // 
            // _doTakeAction
            // 
            this._doTakeAction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._doTakeAction.AutoSize = true;
            this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._doTakeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanPerformActions", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._doTakeAction.Location = new System.Drawing.Point(12, 14);
            this._doTakeAction.Name = "_doTakeAction";
            this._doTakeAction.Size = new System.Drawing.Size(48, 16);
            this._doTakeAction.TabIndex = 6;
            this._doTakeAction.Text = "&Set:";
            this._doTakeAction.UseVisualStyleBackColor = true;
            // 
            // _takeAction
            // 
            this._takeAction.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._takeAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "PerformAction", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._takeAction.DataSource = actionsAvailableBindingSource;
            this._takeAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._takeAction.FormattingEnabled = true;
            this._takeAction.IndexSelected = -1;
            this._takeAction.Location = new System.Drawing.Point(63, 10);
            this._takeAction.Name = "_takeAction";
            this._takeAction.Size = new System.Drawing.Size(119, 20);
            this._takeAction.TabIndex = 7;
            // 
            // actionsAvailableBindingSource
            // 
            actionsAvailableBindingSource.DataMember = "ActionsAvailable";
            actionsAvailableBindingSource.DataSource = this._binding;
            // 
            // cancelButton
            // 
            this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
            this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.cancelButton.Location = new System.Drawing.Point(906, 8);
            this.cancelButton.Name = "cancelButton";
            this.cancelButton.Size = new System.Drawing.Size(75, 21);
            this.cancelButton.TabIndex = 11;
            this.cancelButton.Text = "Canc&el";
            this.cancelButton.UseVisualStyleBackColor = true;
            // 
            // okButton
            // 
            this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
            this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.System;
            this.okButton.Location = new System.Drawing.Point(825, 8);
            this.okButton.Name = "okButton";
            this.okButton.Size = new System.Drawing.Size(75, 21);
            this.okButton.TabIndex = 10;
            this.okButton.Text = "&OK";
            this.okButton.UseVisualStyleBackColor = true;
            // 
            // label6
            // 
            label6.AutoSize = true;
            label6.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            label6.Location = new System.Drawing.Point(173, 20);
            label6.Name = "label6";
            label6.Size = new System.Drawing.Size(125, 12);
            label6.TabIndex = 2;
            label6.Text = "and update estimate:";
            // 
            // panel2
            // 
            panel2.Controls.Add(this._search);
            panel2.Controls.Add(this._status);
            panel2.Controls.Add(label4);
            panel2.Controls.Add(label3);
            panel2.Controls.Add(this._assigned);
            panel2.Controls.Add(label1);
            panel2.Controls.Add(this._filters);
            panel2.Controls.Add(label2);
            panel2.Dock = System.Windows.Forms.DockStyle.Top;
            panel2.Location = new System.Drawing.Point(3, 3);
            panel2.Name = "panel2";
            panel2.Size = new System.Drawing.Size(993, 66);
            panel2.TabIndex = 0;
            // 
            // _search
            // 
            this._search.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this._search.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TextFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._search.Location = new System.Drawing.Point(415, 36);
            this._search.Name = "_search";
            this._search.Size = new System.Drawing.Size(566, 21);
            this._search.TabIndex = 7;
            // 
            // _status
            // 
            this._status.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedStatusFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._status.DataSource = statusFilterBindingSource;
            this._status.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._status.FormattingEnabled = true;
            this._status.IndexSelected = -1;
            this._status.Location = new System.Drawing.Point(243, 36);
            this._status.Name = "_status";
            this._status.Size = new System.Drawing.Size(100, 20);
            this._status.TabIndex = 5;
            // 
            // statusFilterBindingSource
            // 
            statusFilterBindingSource.DataMember = "StatusFilter";
            statusFilterBindingSource.DataSource = this._binding;
            // 
            // label4
            // 
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(197, 39);
            label4.Name = "label4";
            label4.Size = new System.Drawing.Size(47, 12);
            label4.TabIndex = 4;
            label4.Text = "Stat&us:";
            // 
            // label3
            // 
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(358, 39);
            label3.Name = "label3";
            label3.Size = new System.Drawing.Size(59, 12);
            label3.TabIndex = 6;
            label3.Text = "&Contains:";
            // 
            // _assigned
            // 
            this._assigned.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedAssignmentFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._assigned.DataSource = assignmentFilterBindingSource;
            this._assigned.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._assigned.FormattingEnabled = true;
            this._assigned.IndexSelected = -1;
            this._assigned.Location = new System.Drawing.Point(82, 36);
            this._assigned.Name = "_assigned";
            this._assigned.Size = new System.Drawing.Size(100, 20);
            this._assigned.TabIndex = 3;
            // 
            // assignmentFilterBindingSource
            // 
            assignmentFilterBindingSource.DataMember = "AssignmentFilter";
            assignmentFilterBindingSource.DataSource = this._binding;
            // 
            // label1
            // 
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(9, 39);
            label1.Name = "label1";
            label1.Size = new System.Drawing.Size(77, 12);
            label1.TabIndex = 2;
            label1.Text = "&Assinged to:";
            // 
            // _filters
            // 
            this._filters.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this._filters.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "SelectedFilter", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._filters.DataSource = filtersBindingSource;
            this._filters.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._filters.FormattingEnabled = true;
            this._filters.IndexSelected = -1;
            this._filters.Location = new System.Drawing.Point(82, 9);
            this._filters.Name = "_filters";
            this._filters.Size = new System.Drawing.Size(899, 20);
            this._filters.TabIndex = 1;
            // 
            // filtersBindingSource
            // 
            filtersBindingSource.DataMember = "Filters";
            filtersBindingSource.DataSource = this._binding;
            // 
            // label2
            // 
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(9, 12);
            label2.Name = "label2";
            label2.Size = new System.Drawing.Size(83, 12);
            label2.TabIndex = 0;
            label2.Text = "Apply &Filter:";
            // 
            // hdrId
            // 
            hdrId.Text = "Id";
            // 
            // hdrSummary
            // 
            hdrSummary.Text = "Summary";
            hdrSummary.Width = 400;
            // 
            // hdrAssignedTo
            // 
            hdrAssignedTo.Text = "Assigned To";
            hdrAssignedTo.Width = 100;
            // 
            // hdrReportedBy
            // 
            hdrReportedBy.Text = "Reported By";
            hdrReportedBy.Width = 100;
            // 
            // hdrLastMod
            // 
            hdrLastMod.Text = "Last Modified";
            hdrLastMod.Width = 100;
            // 
            // hdrCreated
            // 
            hdrCreated.Text = "Created On";
            hdrCreated.Width = 100;
            // 
            // hdrStatus
            // 
            hdrStatus.Text = "Status";
            hdrStatus.Width = 100;
            // 
            // label5
            // 
            label5.AutoSize = true;
            label5.Dock = System.Windows.Forms.DockStyle.Top;
            label5.Location = new System.Drawing.Point(3, 3);
            label5.Name = "label5";
            label5.Padding = new System.Windows.Forms.Padding(4);
            label5.Size = new System.Drawing.Size(67, 20);
            label5.TabIndex = 0;
            label5.Text = "Commen&ts:";
            // 
            // worklogpanel
            // 
            this.worklogpanel.Controls.Add(this._worklogGroup);
            this.worklogpanel.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.worklogpanel.Location = new System.Drawing.Point(3, 484);
            this.worklogpanel.Name = "worklogpanel";
            this.worklogpanel.Padding = new System.Windows.Forms.Padding(5, 5, 5, 0);
            this.worklogpanel.Size = new System.Drawing.Size(993, 51);
            this.worklogpanel.TabIndex = 2;
            // 
            // _worklogGroup
            // 
            this._worklogGroup.AccessibleDescription = "";
            this._worklogGroup.ContextMenuStrip = this._hideTimeTracking;
            this._worklogGroup.Controls.Add(this._worklogAction);
            this._worklogGroup.Controls.Add(this._worklog);
            this._worklogGroup.Controls.Add(this.textBox1);
            this._worklogGroup.Controls.Add(label6);
            this._worklogGroup.Controls.Add(this._addWorklog);
            this._worklogGroup.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._worklogGroup.Dock = System.Windows.Forms.DockStyle.Top;
            this._worklogGroup.Location = new System.Drawing.Point(5, 5);
            this._worklogGroup.Name = "_worklogGroup";
            this._worklogGroup.Size = new System.Drawing.Size(983, 46);
            this._worklogGroup.TabIndex = 6;
            this._worklogGroup.TabStop = false;
            this._worklogGroup.Text = "Time tracking";
            // 
            // _hideTimeTracking
            // 
            this._hideTimeTracking.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.hideToolStripMenuItem});
            this._hideTimeTracking.Name = "_hideTimeTracking";
            this._hideTimeTracking.Size = new System.Drawing.Size(95, 26);
            // 
            // hideToolStripMenuItem
            // 
            this.hideToolStripMenuItem.Name = "hideToolStripMenuItem";
            this.hideToolStripMenuItem.Size = new System.Drawing.Size(94, 22);
            this.hideToolStripMenuItem.Text = "&Hide";
            this.hideToolStripMenuItem.Click += new System.EventHandler(this.hideToolStripMenuItem_Click);
            // 
            // _worklogAction
            // 
            this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._worklogAction.DataBindings.Add(new System.Windows.Forms.Binding("IndexSelected", this._binding, "TimeEstimateRecalcualation", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._worklogAction.DataSource = this.remainingEstimateBindingSource;
            this._worklogAction.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._worklogAction.FormattingEnabled = true;
            this._worklogAction.IndexSelected = -1;
            this._worklogAction.Location = new System.Drawing.Point(304, 17);
            this._worklogAction.Name = "_worklogAction";
            this._worklogAction.Size = new System.Drawing.Size(145, 20);
            this._worklogAction.TabIndex = 3;
            // 
            // remainingEstimateBindingSource
            // 
            this.remainingEstimateBindingSource.DataMember = "TimeEstimateMethodsAvailable";
            this.remainingEstimateBindingSource.DataSource = this._binding;
            // 
            // _worklog
            // 
            this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._worklog.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "TimeSpent", true));
            this._worklog.Location = new System.Drawing.Point(92, 18);
            this._worklog.Name = "_worklog";
            this._worklog.Size = new System.Drawing.Size(75, 21);
            this._worklog.TabIndex = 1;
            // 
            // textBox1
            // 
            this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "NewTimeEstimate", true));
            this.textBox1.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanSpecifyNewEstimate", true));
            this.textBox1.Location = new System.Drawing.Point(455, 18);
            this.textBox1.Name = "textBox1";
            this.textBox1.Size = new System.Drawing.Size(75, 21);
            this.textBox1.TabIndex = 4;
            // 
            // _addWorklog
            // 
            this._addWorklog.AutoSize = true;
            this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this._binding, "AddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._addWorklog.DataBindings.Add(new System.Windows.Forms.Binding("Enabled", this._binding, "CanAddWorklog", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._addWorklog.Location = new System.Drawing.Point(11, 18);
            this._addWorklog.Name = "_addWorklog";
            this._addWorklog.Size = new System.Drawing.Size(78, 16);
            this._addWorklog.TabIndex = 0;
            this._addWorklog.Text = "&Log time:";
            this._addWorklog.UseVisualStyleBackColor = true;
            // 
            // _splitter
            // 
            this._splitter.Dock = System.Windows.Forms.DockStyle.Fill;
            this._splitter.Location = new System.Drawing.Point(3, 69);
            this._splitter.Name = "_splitter";
            this._splitter.Orientation = System.Windows.Forms.Orientation.Horizontal;
            // 
            // _splitter.Panel1
            // 
            this._splitter.Panel1.Controls.Add(this._listView);
            this._splitter.Panel1.Padding = new System.Windows.Forms.Padding(3);
            // 
            // _splitter.Panel2
            // 
            this._splitter.Panel2.Controls.Add(this._comment);
            this._splitter.Panel2.Controls.Add(label5);
            this._splitter.Panel2.Padding = new System.Windows.Forms.Padding(3);
            this._splitter.Size = new System.Drawing.Size(993, 415);
            this._splitter.SplitterDistance = 193;
            this._splitter.TabIndex = 1;
            // 
            // _listView
            // 
            this._listView.CheckBoxes = true;
            this._listView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            hdrId,
            hdrSummary,
            hdrStatus,
            hdrAssignedTo,
            hdrReportedBy,
            hdrLastMod,
            hdrCreated});
            this._listView.ContextMenuStrip = this._contextMenu;
            this._listView.Dock = System.Windows.Forms.DockStyle.Fill;
            this._listView.FullRowSelect = true;
            this._listView.Location = new System.Drawing.Point(3, 3);
            this._listView.Name = "_listView";
            this._listView.Size = new System.Drawing.Size(987, 187);
            this._listView.Sorting = System.Windows.Forms.SortOrder.Ascending;
            this._listView.TabIndex = 0;
            this._listView.UseCompatibleStateImageBehavior = false;
            this._listView.View = System.Windows.Forms.View.Details;
            this._listView.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.listView_ItemChecked);
            this._listView.ItemMouseHover += new System.Windows.Forms.ListViewItemMouseHoverEventHandler(this._listView_ItemMouseHover);
            this._listView.MouseDown += new System.Windows.Forms.MouseEventHandler(this.listView_MouseDown);
            this._listView.MouseMove += new System.Windows.Forms.MouseEventHandler(this._listView_MouseMove);
            // 
            // _contextMenu
            // 
            this._contextMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.viewIssueToolStripMenuItem,
            this.refreshIssueToolStripMenuItem,
            this.toolStripSeparator1});
            this._contextMenu.Name = "_contextMenu";
            this._contextMenu.Size = new System.Drawing.Size(185, 54);
            this._contextMenu.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenu_Opening);
            // 
            // viewIssueToolStripMenuItem
            // 
            this.viewIssueToolStripMenuItem.Name = "viewIssueToolStripMenuItem";
            this.viewIssueToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
            this.viewIssueToolStripMenuItem.Text = "&View Issue...";
            this.viewIssueToolStripMenuItem.ToolTipText = "Open the issue in the default viewer.";
            this.viewIssueToolStripMenuItem.Click += new System.EventHandler(this.listView_ViewSelectedItem);
            // 
            // refreshIssueToolStripMenuItem
            // 
            this.refreshIssueToolStripMenuItem.Name = "refreshIssueToolStripMenuItem";
            this.refreshIssueToolStripMenuItem.Size = new System.Drawing.Size(184, 22);
            this.refreshIssueToolStripMenuItem.Text = "&Refresh Issues List";
            this.refreshIssueToolStripMenuItem.ToolTipText = "Requery the server and refresh the list.";
            this.refreshIssueToolStripMenuItem.Click += new System.EventHandler(this.RefreshContents);
            // 
            // toolStripSeparator1
            // 
            this.toolStripSeparator1.Name = "toolStripSeparator1";
            this.toolStripSeparator1.Size = new System.Drawing.Size(181, 6);
            // 
            // _comment
            // 
            this._comment.AcceptsReturn = true;
            this._comment.DataBindings.Add(new System.Windows.Forms.Binding("Text", this._binding, "Comments", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
            this._comment.Dock = System.Windows.Forms.DockStyle.Fill;
            this._comment.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this._comment.ImeMode = System.Windows.Forms.ImeMode.NoControl;
            this._comment.Location = new System.Drawing.Point(3, 23);
            this._comment.Multiline = true;
            this._comment.Name = "_comment";
            this._comment.Size = new System.Drawing.Size(987, 192);
            this._comment.TabIndex = 0;
            // 
            // IssuesList
            // 
            this.AcceptButton = this.okButton;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.cancelButton;
            this.ClientSize = new System.Drawing.Size(999, 575);
            this.Controls.Add(this._splitter);
            this.Controls.Add(panel2);
            this.Controls.Add(this.worklogpanel);
            this.Controls.Add(panel1);
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(650, 417);
            this.Name = "IssuesList";
            this.Padding = new System.Windows.Forms.Padding(3);
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Select Issue(s)";
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form_Closing);
            this.Load += new System.EventHandler(this.Form_Load);
            this.Shown += new System.EventHandler(this.Form_Shown);
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            this._showHideMenu.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this._binding)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(possibleAssignmentsBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(actionsAvailableBindingSource)).EndInit();
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(statusFilterBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(assignmentFilterBindingSource)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(filtersBindingSource)).EndInit();
            this.worklogpanel.ResumeLayout(false);
            this._worklogGroup.ResumeLayout(false);
            this._worklogGroup.PerformLayout();
            this._hideTimeTracking.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.remainingEstimateBindingSource)).EndInit();
            this._splitter.Panel1.ResumeLayout(false);
            this._splitter.Panel2.ResumeLayout(false);
            this._splitter.Panel2.PerformLayout();
            this._splitter.ResumeLayout(false);
            this._contextMenu.ResumeLayout(false);
            this.ResumeLayout(false);

        }
Exemplo n.º 21
0
        public override object CreateView(Panel hostPanel)
        {
            NLView nlView = new NLView();
            if (_image != null)
                nlView.Image = _image.ToBitmap();
            else
                nlView.Image = null;

            nlView.DetectionDetails = _detectionDetails;
            nlView.Dock = DockStyle.Fill;
            hostPanel.Controls.Add(nlView);
            hostPanel.PerformLayout();
            nlView.AutoScroll = true;
            hostPanel.Invalidate();
            return nlView;
        }
Exemplo n.º 22
0
        private void autorization()
        {
            Form             frm               = new Form();
            Container        components        = new System.ComponentModel.Container();
            Panel            panel1            = new System.Windows.Forms.Panel();
            Label            label1            = new System.Windows.Forms.Label();
            Label            label2            = new System.Windows.Forms.Label();
            TextBox          textBox1          = new System.Windows.Forms.TextBox();
            ContextMenuStrip contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(components);
            TextBox          textBox2          = new System.Windows.Forms.TextBox();
            Button           button1           = new System.Windows.Forms.Button();
            Label            label3            = new System.Windows.Forms.Label();

            //panel1.SuspendLayout();
            //  SuspendLayout();
            //
            // panel1
            //
            panel1.Controls.Add(label3);
            panel1.Controls.Add(button1);
            panel1.Controls.Add(textBox2);
            panel1.Controls.Add(textBox1);
            panel1.Controls.Add(label2);
            panel1.Controls.Add(label1);
            panel1.Location = new System.Drawing.Point(12, 10);
            panel1.Name     = "panel1";
            panel1.Size     = new System.Drawing.Size(338, 159);
            panel1.TabIndex = 0;
            //
            // label1
            //
            label1.AutoSize = true;
            label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            label1.Location = new System.Drawing.Point(3, 48);
            label1.Name     = "label1";
            label1.Size     = new System.Drawing.Size(128, 20);
            label1.TabIndex = 0;
            label1.Text     = "Введите логин:";
            //
            // label2
            //
            label2.AutoSize = true;
            label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            label2.Location = new System.Drawing.Point(3, 79);
            label2.Name     = "label2";
            label2.Size     = new System.Drawing.Size(139, 20);
            label2.TabIndex = 1;
            label2.Text     = "Введите пароль:";
            //
            // textBox1
            //
            textBox1.Location     = new System.Drawing.Point(148, 81);
            textBox1.Name         = "textBox1";
            textBox1.PasswordChar = '*';
            textBox1.Size         = new System.Drawing.Size(180, 20);
            textBox1.TabIndex     = 2;
            //
            // contextMenuStrip1
            //
            contextMenuStrip1.Name = "contextMenuStrip1";
            contextMenuStrip1.Size = new System.Drawing.Size(61, 4);
            //
            // textBox2
            //
            textBox2.Location = new System.Drawing.Point(148, 48);
            textBox2.Name     = "textBox2";
            textBox2.Size     = new System.Drawing.Size(180, 20);
            textBox2.TabIndex = 3;
            //
            // button1
            //
            button1.Location = new System.Drawing.Point(253, 123);
            button1.Name     = "button1";
            button1.Size     = new System.Drawing.Size(75, 23);
            button1.TabIndex = 4;
            button1.Text     = "Войти";
            button1.UseVisualStyleBackColor = true;
            button1.Click += new System.EventHandler(button1_Click);
            //
            // label3
            //
            label3.AutoSize = true;
            label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            label3.Location = new System.Drawing.Point(83, 12);
            label3.Name     = "label3";
            label3.Size     = new System.Drawing.Size(158, 20);
            label3.TabIndex = 5;
            label3.Text     = "Добро пожаловать!";
            //
            // Form1
            //
            //  AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            //   AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            //   ClientSize = new System.Drawing.Size(364, 181);
            Controls.Add(panel1);
            FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            frm.MaximumSize = new System.Drawing.Size(380, 220);
            frm.MinimumSize = new System.Drawing.Size(380, 220);
            Name            = "Form1";
            Text            = "Form1";
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            ResumeLayout(false);
            frm.Controls.Add(panel1);
            frm.Show();
        }
Exemplo n.º 23
0
        private Panel CreateItemPanel(BookModel book, AuthorModel author)
        {
            Panel      panel1                 = new System.Windows.Forms.Panel();
            Button     addToCartButton        = new System.Windows.Forms.Button();
            Button     shortDescriptionButton = new System.Windows.Forms.Button();
            Label      inCartLabel            = new System.Windows.Forms.Label();
            Label      priceLabel             = new System.Windows.Forms.Label();
            Label      pagesLabel             = new System.Windows.Forms.Label();
            Label      categoryLabel          = new System.Windows.Forms.Label();
            Label      authorLabel            = new System.Windows.Forms.Label();
            Label      titleLabel             = new System.Windows.Forms.Label();
            PictureBox itemPictureBox         = new System.Windows.Forms.PictureBox();

            panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(itemPictureBox)).BeginInit();
            SuspendLayout();
            //
            // panel1
            //
            panel1.Anchor    = System.Windows.Forms.AnchorStyles.Top;
            panel1.AutoSize  = true;
            panel1.BackColor = System.Drawing.Color.White;
            panel1.Controls.Add(addToCartButton);
            panel1.Controls.Add(shortDescriptionButton);
            panel1.Controls.Add(inCartLabel);
            panel1.Controls.Add(priceLabel);
            panel1.Controls.Add(pagesLabel);
            panel1.Controls.Add(categoryLabel);
            panel1.Controls.Add(authorLabel);
            panel1.Controls.Add(titleLabel);
            panel1.Controls.Add(itemPictureBox);
            panel1.Location = new System.Drawing.Point(10, 3);
            panel1.Name     = "panel";
            panel1.Size     = new System.Drawing.Size(960, 240);
            panel1.TabIndex = 0;
            //
            // inCartLabel
            //
            inCartLabel.AutoSize = true;
            inCartLabel.Location = new System.Drawing.Point(250, 10);
            inCartLabel.Name     = "inCartLabel";
            inCartLabel.Size     = new System.Drawing.Size(35, 13);
            inCartLabel.TabIndex = 5;

            bool isAlreadyBoughtBook = alreadyBoughtBooks.Any(b => b.Id == book.Id);

            if (!isAlreadyBoughtBook)
            {
                bool isAuthorExists = parent.personModel.CartAuthors.Any(a => a.Id == author.Id);
                if (isAuthorExists)
                {
                    AuthorModel at           = parent.personModel.CartAuthors.Find(a => a.Id == author.Id);
                    bool        isBookExists = at.Books.Any(books => books.Id == book.Id);
                    if (isBookExists)
                    {
                        inCartLabel.Text = "In Your Cart";
                    }
                }
                else
                {
                    inCartLabel.Text = "";
                }
            }
            else
            {
                inCartLabel.Text = "Already Bought";
            }

            inCartLabel.ForeColor = Color.Red;
            //
            // priceLabel
            //
            priceLabel.AutoSize = true;
            priceLabel.Location = new System.Drawing.Point(436, 199);
            priceLabel.Name     = "priceLabel";
            priceLabel.Size     = new System.Drawing.Size(35, 13);
            priceLabel.TabIndex = 4;
            priceLabel.Text     = "$" + book.Price.ToString();
            //
            // pagesLabel
            //
            pagesLabel.AutoSize = true;
            pagesLabel.Location = new System.Drawing.Point(436, 157);
            pagesLabel.Name     = "pagesLabel";
            pagesLabel.Size     = new System.Drawing.Size(35, 13);
            pagesLabel.TabIndex = 4;
            pagesLabel.Text     = "Number of Pages: " + book.Pages.ToString();
            //
            // categoryLabel
            //
            categoryLabel.AutoSize = true;
            categoryLabel.Location = new System.Drawing.Point(436, 115);
            categoryLabel.Name     = "categoryLabel";
            categoryLabel.Size     = new System.Drawing.Size(35, 13);
            categoryLabel.TabIndex = 3;
            categoryLabel.Text     = book.Category.Category;
            //
            // authorLabel
            //
            authorLabel.AutoSize = true;
            authorLabel.Location = new System.Drawing.Point(436, 73);
            authorLabel.Name     = "authorLabel";
            authorLabel.Size     = new System.Drawing.Size(35, 13);
            authorLabel.TabIndex = 2;
            authorLabel.Text     = author.FullName;
            //
            // titleLabel
            //
            titleLabel.AutoSize = true;
            titleLabel.Location = new System.Drawing.Point(436, 31);
            titleLabel.Name     = "titleLabel";
            titleLabel.Size     = new System.Drawing.Size(35, 13);
            titleLabel.TabIndex = 1;
            titleLabel.Text     = book.BookName;
            //
            // itemPictureBox
            //
            itemPictureBox.Location = new System.Drawing.Point(20, 9);
            itemPictureBox.Name     = "itemPictureBox";
            itemPictureBox.Size     = new System.Drawing.Size(162, 227);
            itemPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
            itemPictureBox.TabIndex = 0;
            itemPictureBox.TabStop  = false;
            itemPictureBox.Image    = ByteArrayToImage(book.Photo);
            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(itemPictureBox)).EndInit();
            ResumeLayout(false);
            //
            // addToCartButton
            //
            addToCartButton.Location = new System.Drawing.Point(214, 135);
            addToCartButton.Name     = book.Id.ToString() + ',' + author.Id.ToString() + ',' + book.Category.Id.ToString();
            addToCartButton.Size     = new System.Drawing.Size(192, 53);
            addToCartButton.TabIndex = 7;
            addToCartButton.Text     = "Add to Cart";
            addToCartButton.UseVisualStyleBackColor = true;
            addToCartButton.Click += new EventHandler(buttonAddToCart_Click);
            //
            // shortDescriptionButton
            //
            shortDescriptionButton.Location = new System.Drawing.Point(214, 56);
            shortDescriptionButton.Name     = book.Id.ToString() + ',' + author.Id.ToString();
            shortDescriptionButton.Size     = new System.Drawing.Size(192, 53);
            shortDescriptionButton.TabIndex = 6;
            shortDescriptionButton.Text     = "Short Description";
            shortDescriptionButton.UseVisualStyleBackColor = true;
            shortDescriptionButton.Click += new EventHandler(buttonDescription_Click);

            return(panel1);
        }
 /// <summary>s
 /// 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.Label                     OpacityLabel;
     System.Windows.Forms.ToolStripMenuItem         RestoreWindowMenuItem;
     System.Windows.Forms.ToolStripMenuItem         ExitMenuItem;
     System.Windows.Forms.FlowLayoutPanel           ContentFlowLayoutPanel;
     System.Windows.Forms.Panel                     OpacityPanel;
     System.Windows.Forms.Panel                     ResizeOptionsPanel;
     System.Windows.Forms.Label                     HeigthLabel;
     System.Windows.Forms.Label                     WidthLabel;
     System.Windows.Forms.Panel                     ZoomOptionsPanel;
     System.Windows.Forms.Label                     ZoomFactorLabel;
     System.Windows.Forms.Label                     ZoomAnchorLabel;
     System.Windows.Forms.Panel                     ThumbnailsListPanel;
     System.Windows.Forms.Label                     ThumbnailsListLabel;
     System.Windows.Forms.ToolStripMenuItem         TitleMenuItem;
     System.Windows.Forms.ToolStripSeparator        SeparatorMenuItem;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.MinimizeToTrayCheckBox                   = new System.Windows.Forms.CheckBox();
     this.ThumbnailsOpacityScrollBar               = new System.Windows.Forms.HScrollBar();
     this.EnableClientLayoutTrackingCheckBox       = new System.Windows.Forms.CheckBox();
     this.HideActiveClientThumbnailCheckBox        = new System.Windows.Forms.CheckBox();
     this.ShowThumbnailsAlwaysOnTopCheckBox        = new System.Windows.Forms.CheckBox();
     this.HideThumbnailsOnLostFocusCheckBox        = new System.Windows.Forms.CheckBox();
     this.EnablePerClientThumbnailsLayoutsCheckBox = new System.Windows.Forms.CheckBox();
     this.ThumbnailsWidthNumericEdit               = new System.Windows.Forms.NumericUpDown();
     this.ThumbnailsHeightNumericEdit              = new System.Windows.Forms.NumericUpDown();
     this.ZoomAnchorPanel                = new System.Windows.Forms.Panel();
     this.ZoomAanchorNWRadioButton       = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorNRadioButton        = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorNERadioButton       = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorWRadioButton        = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorSERadioButton       = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorCRadioButton        = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorSRadioButton        = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorERadioButton        = new System.Windows.Forms.RadioButton();
     this.ZoomAanchorSWRadioButton       = new System.Windows.Forms.RadioButton();
     this.EnableThumbnailZoomCheckBox    = new System.Windows.Forms.CheckBox();
     this.ThumbnailZoomFactorNumericEdit = new System.Windows.Forms.NumericUpDown();
     this.ShowThumbnailOverlaysCheckBox  = new System.Windows.Forms.CheckBox();
     this.ShowThumbnailFramesCheckBox    = new System.Windows.Forms.CheckBox();
     this.ThumbnailsList    = new System.Windows.Forms.CheckedListBox();
     this.ForumLinkLabel    = new System.Windows.Forms.LinkLabel();
     this.NotifyIcon        = new System.Windows.Forms.NotifyIcon(this.components);
     this.TrayMenu          = new System.Windows.Forms.ContextMenuStrip(this.components);
     OpacityLabel           = new System.Windows.Forms.Label();
     RestoreWindowMenuItem  = new System.Windows.Forms.ToolStripMenuItem();
     ExitMenuItem           = new System.Windows.Forms.ToolStripMenuItem();
     ContentFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
     OpacityPanel           = new System.Windows.Forms.Panel();
     ResizeOptionsPanel     = new System.Windows.Forms.Panel();
     HeigthLabel            = new System.Windows.Forms.Label();
     WidthLabel             = new System.Windows.Forms.Label();
     ZoomOptionsPanel       = new System.Windows.Forms.Panel();
     ZoomFactorLabel        = new System.Windows.Forms.Label();
     ZoomAnchorLabel        = new System.Windows.Forms.Label();
     ThumbnailsListPanel    = new System.Windows.Forms.Panel();
     ThumbnailsListLabel    = new System.Windows.Forms.Label();
     TitleMenuItem          = new System.Windows.Forms.ToolStripMenuItem();
     SeparatorMenuItem      = new System.Windows.Forms.ToolStripSeparator();
     ContentFlowLayoutPanel.SuspendLayout();
     OpacityPanel.SuspendLayout();
     ResizeOptionsPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailsWidthNumericEdit)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailsHeightNumericEdit)).BeginInit();
     ZoomOptionsPanel.SuspendLayout();
     this.ZoomAnchorPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailZoomFactorNumericEdit)).BeginInit();
     ThumbnailsListPanel.SuspendLayout();
     this.TrayMenu.SuspendLayout();
     this.SuspendLayout();
     //
     // OpacityLabel
     //
     OpacityLabel.AutoSize = true;
     OpacityLabel.Location = new System.Drawing.Point(2, 5);
     OpacityLabel.Name     = "OpacityLabel";
     OpacityLabel.Size     = new System.Drawing.Size(43, 13);
     OpacityLabel.TabIndex = 0;
     OpacityLabel.Text     = "Opacity";
     //
     // RestoreWindowMenuItem
     //
     RestoreWindowMenuItem.Name   = "RestoreWindowMenuItem";
     RestoreWindowMenuItem.Size   = new System.Drawing.Size(151, 22);
     RestoreWindowMenuItem.Text   = "Restore";
     RestoreWindowMenuItem.Click += new System.EventHandler(this.RestoreMainForm_Handler);
     //
     // ExitMenuItem
     //
     ExitMenuItem.Name   = "ExitMenuItem";
     ExitMenuItem.Size   = new System.Drawing.Size(151, 22);
     ExitMenuItem.Text   = "Exit";
     ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick_Handler);
     //
     // ContentFlowLayoutPanel
     //
     ContentFlowLayoutPanel.BackColor = System.Drawing.SystemColors.Control;
     ContentFlowLayoutPanel.Controls.Add(this.MinimizeToTrayCheckBox);
     ContentFlowLayoutPanel.Controls.Add(OpacityPanel);
     ContentFlowLayoutPanel.Controls.Add(this.EnableClientLayoutTrackingCheckBox);
     ContentFlowLayoutPanel.Controls.Add(this.HideActiveClientThumbnailCheckBox);
     ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailsAlwaysOnTopCheckBox);
     ContentFlowLayoutPanel.Controls.Add(this.HideThumbnailsOnLostFocusCheckBox);
     ContentFlowLayoutPanel.Controls.Add(this.EnablePerClientThumbnailsLayoutsCheckBox);
     ContentFlowLayoutPanel.Controls.Add(ResizeOptionsPanel);
     ContentFlowLayoutPanel.Controls.Add(ZoomOptionsPanel);
     ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailOverlaysCheckBox);
     ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailFramesCheckBox);
     ContentFlowLayoutPanel.Controls.Add(ThumbnailsListPanel);
     ContentFlowLayoutPanel.Controls.Add(this.ForumLinkLabel);
     ContentFlowLayoutPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     ContentFlowLayoutPanel.Location = new System.Drawing.Point(0, 0);
     ContentFlowLayoutPanel.Name     = "ContentFlowLayoutPanel";
     ContentFlowLayoutPanel.Size     = new System.Drawing.Size(252, 481);
     ContentFlowLayoutPanel.TabIndex = 25;
     //
     // MinimizeToTrayCheckBox
     //
     this.MinimizeToTrayCheckBox.AutoSize = true;
     this.MinimizeToTrayCheckBox.Location = new System.Drawing.Point(3, 3);
     this.MinimizeToTrayCheckBox.Name     = "MinimizeToTrayCheckBox";
     this.MinimizeToTrayCheckBox.Size     = new System.Drawing.Size(139, 17);
     this.MinimizeToTrayCheckBox.TabIndex = 34;
     this.MinimizeToTrayCheckBox.Text     = "Minimize to System Tray";
     this.MinimizeToTrayCheckBox.UseVisualStyleBackColor = true;
     this.MinimizeToTrayCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // OpacityPanel
     //
     OpacityPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     OpacityPanel.Controls.Add(this.ThumbnailsOpacityScrollBar);
     OpacityPanel.Controls.Add(OpacityLabel);
     OpacityPanel.Location = new System.Drawing.Point(3, 26);
     OpacityPanel.Name     = "OpacityPanel";
     OpacityPanel.Size     = new System.Drawing.Size(246, 26);
     OpacityPanel.TabIndex = 33;
     //
     // ThumbnailsOpacityScrollBar
     //
     this.ThumbnailsOpacityScrollBar.Location = new System.Drawing.Point(48, 1);
     this.ThumbnailsOpacityScrollBar.Maximum  = 120;
     this.ThumbnailsOpacityScrollBar.Name     = "ThumbnailsOpacityScrollBar";
     this.ThumbnailsOpacityScrollBar.Size     = new System.Drawing.Size(195, 23);
     this.ThumbnailsOpacityScrollBar.TabIndex = 1;
     this.ThumbnailsOpacityScrollBar.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.OptionChanged_Handler);
     //
     // EnableClientLayoutTrackingCheckBox
     //
     this.EnableClientLayoutTrackingCheckBox.AutoSize = true;
     this.EnableClientLayoutTrackingCheckBox.Location = new System.Drawing.Point(3, 58);
     this.EnableClientLayoutTrackingCheckBox.Name     = "EnableClientLayoutTrackingCheckBox";
     this.EnableClientLayoutTrackingCheckBox.Size     = new System.Drawing.Size(127, 17);
     this.EnableClientLayoutTrackingCheckBox.TabIndex = 32;
     this.EnableClientLayoutTrackingCheckBox.Text     = "Track client locations";
     this.EnableClientLayoutTrackingCheckBox.UseVisualStyleBackColor = true;
     this.EnableClientLayoutTrackingCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // HideActiveClientThumbnailCheckBox
     //
     this.HideActiveClientThumbnailCheckBox.AutoSize   = true;
     this.HideActiveClientThumbnailCheckBox.Checked    = true;
     this.HideActiveClientThumbnailCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.HideActiveClientThumbnailCheckBox.Location   = new System.Drawing.Point(3, 81);
     this.HideActiveClientThumbnailCheckBox.Name       = "HideActiveClientThumbnailCheckBox";
     this.HideActiveClientThumbnailCheckBox.Size       = new System.Drawing.Size(184, 17);
     this.HideActiveClientThumbnailCheckBox.TabIndex   = 1;
     this.HideActiveClientThumbnailCheckBox.Text       = "Hide preview of active EVE client";
     this.HideActiveClientThumbnailCheckBox.UseVisualStyleBackColor = true;
     this.HideActiveClientThumbnailCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ShowThumbnailsAlwaysOnTopCheckBox
     //
     this.ShowThumbnailsAlwaysOnTopCheckBox.AutoSize                = true;
     this.ShowThumbnailsAlwaysOnTopCheckBox.Checked                 = true;
     this.ShowThumbnailsAlwaysOnTopCheckBox.CheckState              = System.Windows.Forms.CheckState.Checked;
     this.ShowThumbnailsAlwaysOnTopCheckBox.Location                = new System.Drawing.Point(3, 104);
     this.ShowThumbnailsAlwaysOnTopCheckBox.Name                    = "ShowThumbnailsAlwaysOnTopCheckBox";
     this.ShowThumbnailsAlwaysOnTopCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.ShowThumbnailsAlwaysOnTopCheckBox.Size                    = new System.Drawing.Size(137, 17);
     this.ShowThumbnailsAlwaysOnTopCheckBox.TabIndex                = 8;
     this.ShowThumbnailsAlwaysOnTopCheckBox.Text                    = "Previews always on top";
     this.ShowThumbnailsAlwaysOnTopCheckBox.UseVisualStyleBackColor = true;
     this.ShowThumbnailsAlwaysOnTopCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // HideThumbnailsOnLostFocusCheckBox
     //
     this.HideThumbnailsOnLostFocusCheckBox.AutoSize   = true;
     this.HideThumbnailsOnLostFocusCheckBox.Checked    = true;
     this.HideThumbnailsOnLostFocusCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.HideThumbnailsOnLostFocusCheckBox.Location   = new System.Drawing.Point(3, 127);
     this.HideThumbnailsOnLostFocusCheckBox.Name       = "HideThumbnailsOnLostFocusCheckBox";
     this.HideThumbnailsOnLostFocusCheckBox.Size       = new System.Drawing.Size(234, 17);
     this.HideThumbnailsOnLostFocusCheckBox.TabIndex   = 2;
     this.HideThumbnailsOnLostFocusCheckBox.Text       = "Hide previews when EVE client is not active";
     this.HideThumbnailsOnLostFocusCheckBox.UseVisualStyleBackColor = true;
     this.HideThumbnailsOnLostFocusCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // EnablePerClientThumbnailsLayoutsCheckBox
     //
     this.EnablePerClientThumbnailsLayoutsCheckBox.AutoSize   = true;
     this.EnablePerClientThumbnailsLayoutsCheckBox.Checked    = true;
     this.EnablePerClientThumbnailsLayoutsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.EnablePerClientThumbnailsLayoutsCheckBox.Location   = new System.Drawing.Point(3, 150);
     this.EnablePerClientThumbnailsLayoutsCheckBox.Name       = "EnablePerClientThumbnailsLayoutsCheckBox";
     this.EnablePerClientThumbnailsLayoutsCheckBox.Size       = new System.Drawing.Size(185, 17);
     this.EnablePerClientThumbnailsLayoutsCheckBox.TabIndex   = 3;
     this.EnablePerClientThumbnailsLayoutsCheckBox.Text       = "Unique layout for each EVE client";
     this.EnablePerClientThumbnailsLayoutsCheckBox.UseVisualStyleBackColor = true;
     this.EnablePerClientThumbnailsLayoutsCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ResizeOptionsPanel
     //
     ResizeOptionsPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     ResizeOptionsPanel.Controls.Add(HeigthLabel);
     ResizeOptionsPanel.Controls.Add(WidthLabel);
     ResizeOptionsPanel.Controls.Add(this.ThumbnailsWidthNumericEdit);
     ResizeOptionsPanel.Controls.Add(this.ThumbnailsHeightNumericEdit);
     ResizeOptionsPanel.Location = new System.Drawing.Point(3, 173);
     ResizeOptionsPanel.Name     = "ResizeOptionsPanel";
     ResizeOptionsPanel.Size     = new System.Drawing.Size(246, 28);
     ResizeOptionsPanel.TabIndex = 26;
     //
     // HeigthLabel
     //
     HeigthLabel.AutoSize = true;
     HeigthLabel.Location = new System.Drawing.Point(152, 5);
     HeigthLabel.Name     = "HeigthLabel";
     HeigthLabel.Size     = new System.Drawing.Size(38, 13);
     HeigthLabel.TabIndex = 14;
     HeigthLabel.Text     = "Heigth";
     //
     // WidthLabel
     //
     WidthLabel.AutoSize = true;
     WidthLabel.Location = new System.Drawing.Point(2, 5);
     WidthLabel.Name     = "WidthLabel";
     WidthLabel.Size     = new System.Drawing.Size(87, 13);
     WidthLabel.TabIndex = 13;
     WidthLabel.Text     = "Thumbnail Width";
     //
     // ThumbnailsWidthNumericEdit
     //
     this.ThumbnailsWidthNumericEdit.BackColor        = System.Drawing.SystemColors.Window;
     this.ThumbnailsWidthNumericEdit.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ThumbnailsWidthNumericEdit.CausesValidation = false;
     this.ThumbnailsWidthNumericEdit.Increment        = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.ThumbnailsWidthNumericEdit.Location = new System.Drawing.Point(95, 3);
     this.ThumbnailsWidthNumericEdit.Maximum  = new decimal(new int[] {
         999999,
         0,
         0,
         0
     });
     this.ThumbnailsWidthNumericEdit.Name     = "ThumbnailsWidthNumericEdit";
     this.ThumbnailsWidthNumericEdit.Size     = new System.Drawing.Size(48, 20);
     this.ThumbnailsWidthNumericEdit.TabIndex = 11;
     this.ThumbnailsWidthNumericEdit.Value    = new decimal(new int[] {
         100,
         0,
         0,
         0
     });
     this.ThumbnailsWidthNumericEdit.ValueChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
     //
     // ThumbnailsHeightNumericEdit
     //
     this.ThumbnailsHeightNumericEdit.BackColor        = System.Drawing.SystemColors.Window;
     this.ThumbnailsHeightNumericEdit.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ThumbnailsHeightNumericEdit.CausesValidation = false;
     this.ThumbnailsHeightNumericEdit.Increment        = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.ThumbnailsHeightNumericEdit.Location = new System.Drawing.Point(196, 3);
     this.ThumbnailsHeightNumericEdit.Maximum  = new decimal(new int[] {
         99999999,
         0,
         0,
         0
     });
     this.ThumbnailsHeightNumericEdit.Name     = "ThumbnailsHeightNumericEdit";
     this.ThumbnailsHeightNumericEdit.Size     = new System.Drawing.Size(42, 20);
     this.ThumbnailsHeightNumericEdit.TabIndex = 12;
     this.ThumbnailsHeightNumericEdit.Value    = new decimal(new int[] {
         70,
         0,
         0,
         0
     });
     this.ThumbnailsHeightNumericEdit.ValueChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
     //
     // ZoomOptionsPanel
     //
     ZoomOptionsPanel.BackColor   = System.Drawing.SystemColors.Control;
     ZoomOptionsPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     ZoomOptionsPanel.Controls.Add(ZoomFactorLabel);
     ZoomOptionsPanel.Controls.Add(this.ZoomAnchorPanel);
     ZoomOptionsPanel.Controls.Add(ZoomAnchorLabel);
     ZoomOptionsPanel.Controls.Add(this.EnableThumbnailZoomCheckBox);
     ZoomOptionsPanel.Controls.Add(this.ThumbnailZoomFactorNumericEdit);
     ZoomOptionsPanel.Location = new System.Drawing.Point(3, 207);
     ZoomOptionsPanel.Name     = "ZoomOptionsPanel";
     ZoomOptionsPanel.Size     = new System.Drawing.Size(246, 82);
     ZoomOptionsPanel.TabIndex = 27;
     //
     // ZoomFactorLabel
     //
     ZoomFactorLabel.AutoSize = true;
     ZoomFactorLabel.Location = new System.Drawing.Point(8, 43);
     ZoomFactorLabel.Name     = "ZoomFactorLabel";
     ZoomFactorLabel.Size     = new System.Drawing.Size(67, 13);
     ZoomFactorLabel.TabIndex = 29;
     ZoomFactorLabel.Text     = "Zoom Factor";
     //
     // ZoomAnchorPanel
     //
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNWRadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNRadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNERadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorWRadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSERadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorCRadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSRadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorERadioButton);
     this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSWRadioButton);
     this.ZoomAnchorPanel.Location = new System.Drawing.Point(182, 21);
     this.ZoomAnchorPanel.Name     = "ZoomAnchorPanel";
     this.ZoomAnchorPanel.Size     = new System.Drawing.Size(60, 57);
     this.ZoomAnchorPanel.TabIndex = 28;
     //
     // ZoomAanchorNWRadioButton
     //
     this.ZoomAanchorNWRadioButton.AutoSize = true;
     this.ZoomAanchorNWRadioButton.Location = new System.Drawing.Point(3, 3);
     this.ZoomAanchorNWRadioButton.Name     = "ZoomAanchorNWRadioButton";
     this.ZoomAanchorNWRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorNWRadioButton.TabIndex = 15;
     this.ZoomAanchorNWRadioButton.TabStop  = true;
     this.ZoomAanchorNWRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorNWRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorNRadioButton
     //
     this.ZoomAanchorNRadioButton.AutoSize = true;
     this.ZoomAanchorNRadioButton.Location = new System.Drawing.Point(23, 3);
     this.ZoomAanchorNRadioButton.Name     = "ZoomAanchorNRadioButton";
     this.ZoomAanchorNRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorNRadioButton.TabIndex = 16;
     this.ZoomAanchorNRadioButton.TabStop  = true;
     this.ZoomAanchorNRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorNRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorNERadioButton
     //
     this.ZoomAanchorNERadioButton.AutoSize = true;
     this.ZoomAanchorNERadioButton.Location = new System.Drawing.Point(43, 3);
     this.ZoomAanchorNERadioButton.Name     = "ZoomAanchorNERadioButton";
     this.ZoomAanchorNERadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorNERadioButton.TabIndex = 17;
     this.ZoomAanchorNERadioButton.TabStop  = true;
     this.ZoomAanchorNERadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorNERadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorWRadioButton
     //
     this.ZoomAanchorWRadioButton.AutoSize = true;
     this.ZoomAanchorWRadioButton.Location = new System.Drawing.Point(3, 22);
     this.ZoomAanchorWRadioButton.Name     = "ZoomAanchorWRadioButton";
     this.ZoomAanchorWRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorWRadioButton.TabIndex = 18;
     this.ZoomAanchorWRadioButton.TabStop  = true;
     this.ZoomAanchorWRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorWRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorSERadioButton
     //
     this.ZoomAanchorSERadioButton.AutoSize = true;
     this.ZoomAanchorSERadioButton.Location = new System.Drawing.Point(43, 41);
     this.ZoomAanchorSERadioButton.Name     = "ZoomAanchorSERadioButton";
     this.ZoomAanchorSERadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorSERadioButton.TabIndex = 23;
     this.ZoomAanchorSERadioButton.TabStop  = true;
     this.ZoomAanchorSERadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorSERadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorCRadioButton
     //
     this.ZoomAanchorCRadioButton.AutoSize = true;
     this.ZoomAanchorCRadioButton.Location = new System.Drawing.Point(23, 22);
     this.ZoomAanchorCRadioButton.Name     = "ZoomAanchorCRadioButton";
     this.ZoomAanchorCRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorCRadioButton.TabIndex = 19;
     this.ZoomAanchorCRadioButton.TabStop  = true;
     this.ZoomAanchorCRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorCRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorSRadioButton
     //
     this.ZoomAanchorSRadioButton.AutoSize = true;
     this.ZoomAanchorSRadioButton.Location = new System.Drawing.Point(23, 41);
     this.ZoomAanchorSRadioButton.Name     = "ZoomAanchorSRadioButton";
     this.ZoomAanchorSRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorSRadioButton.TabIndex = 22;
     this.ZoomAanchorSRadioButton.TabStop  = true;
     this.ZoomAanchorSRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorSRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorERadioButton
     //
     this.ZoomAanchorERadioButton.AutoSize = true;
     this.ZoomAanchorERadioButton.Location = new System.Drawing.Point(43, 22);
     this.ZoomAanchorERadioButton.Name     = "ZoomAanchorERadioButton";
     this.ZoomAanchorERadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorERadioButton.TabIndex = 20;
     this.ZoomAanchorERadioButton.TabStop  = true;
     this.ZoomAanchorERadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorERadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAanchorSWRadioButton
     //
     this.ZoomAanchorSWRadioButton.AutoSize = true;
     this.ZoomAanchorSWRadioButton.Location = new System.Drawing.Point(3, 41);
     this.ZoomAanchorSWRadioButton.Name     = "ZoomAanchorSWRadioButton";
     this.ZoomAanchorSWRadioButton.Size     = new System.Drawing.Size(14, 13);
     this.ZoomAanchorSWRadioButton.TabIndex = 21;
     this.ZoomAanchorSWRadioButton.TabStop  = true;
     this.ZoomAanchorSWRadioButton.UseVisualStyleBackColor = true;
     this.ZoomAanchorSWRadioButton.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ZoomAnchorLabel
     //
     ZoomAnchorLabel.AutoSize = true;
     ZoomAnchorLabel.Location = new System.Drawing.Point(138, 43);
     ZoomAnchorLabel.Name     = "ZoomAnchorLabel";
     ZoomAnchorLabel.Size     = new System.Drawing.Size(41, 13);
     ZoomAnchorLabel.TabIndex = 30;
     ZoomAnchorLabel.Text     = "Anchor";
     //
     // EnableThumbnailZoomCheckBox
     //
     this.EnableThumbnailZoomCheckBox.AutoSize                = true;
     this.EnableThumbnailZoomCheckBox.Checked                 = true;
     this.EnableThumbnailZoomCheckBox.CheckState              = System.Windows.Forms.CheckState.Checked;
     this.EnableThumbnailZoomCheckBox.Location                = new System.Drawing.Point(1, 5);
     this.EnableThumbnailZoomCheckBox.Name                    = "EnableThumbnailZoomCheckBox";
     this.EnableThumbnailZoomCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.EnableThumbnailZoomCheckBox.Size                    = new System.Drawing.Size(98, 17);
     this.EnableThumbnailZoomCheckBox.TabIndex                = 13;
     this.EnableThumbnailZoomCheckBox.Text                    = "Zoom on hover";
     this.EnableThumbnailZoomCheckBox.UseVisualStyleBackColor = true;
     this.EnableThumbnailZoomCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ThumbnailZoomFactorNumericEdit
     //
     this.ThumbnailZoomFactorNumericEdit.BackColor   = System.Drawing.SystemColors.Window;
     this.ThumbnailZoomFactorNumericEdit.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.ThumbnailZoomFactorNumericEdit.Location    = new System.Drawing.Point(81, 41);
     this.ThumbnailZoomFactorNumericEdit.Maximum     = new decimal(new int[] {
         10,
         0,
         0,
         0
     });
     this.ThumbnailZoomFactorNumericEdit.Minimum = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.ThumbnailZoomFactorNumericEdit.Name     = "ThumbnailZoomFactorNumericEdit";
     this.ThumbnailZoomFactorNumericEdit.Size     = new System.Drawing.Size(34, 20);
     this.ThumbnailZoomFactorNumericEdit.TabIndex = 24;
     this.ThumbnailZoomFactorNumericEdit.Value    = new decimal(new int[] {
         1,
         0,
         0,
         0
     });
     this.ThumbnailZoomFactorNumericEdit.ValueChanged += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ShowThumbnailOverlaysCheckBox
     //
     this.ShowThumbnailOverlaysCheckBox.AutoSize                = true;
     this.ShowThumbnailOverlaysCheckBox.Checked                 = true;
     this.ShowThumbnailOverlaysCheckBox.CheckState              = System.Windows.Forms.CheckState.Checked;
     this.ShowThumbnailOverlaysCheckBox.Location                = new System.Drawing.Point(3, 295);
     this.ShowThumbnailOverlaysCheckBox.Name                    = "ShowThumbnailOverlaysCheckBox";
     this.ShowThumbnailOverlaysCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.ShowThumbnailOverlaysCheckBox.Size                    = new System.Drawing.Size(90, 17);
     this.ShowThumbnailOverlaysCheckBox.TabIndex                = 14;
     this.ShowThumbnailOverlaysCheckBox.Text                    = "Show overlay";
     this.ShowThumbnailOverlaysCheckBox.UseVisualStyleBackColor = true;
     this.ShowThumbnailOverlaysCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ShowThumbnailFramesCheckBox
     //
     this.ShowThumbnailFramesCheckBox.AutoSize                = true;
     this.ShowThumbnailFramesCheckBox.Checked                 = true;
     this.ShowThumbnailFramesCheckBox.CheckState              = System.Windows.Forms.CheckState.Checked;
     this.ShowThumbnailFramesCheckBox.Location                = new System.Drawing.Point(99, 295);
     this.ShowThumbnailFramesCheckBox.Name                    = "ShowThumbnailFramesCheckBox";
     this.ShowThumbnailFramesCheckBox.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.ShowThumbnailFramesCheckBox.Size                    = new System.Drawing.Size(127, 17);
     this.ShowThumbnailFramesCheckBox.TabIndex                = 9;
     this.ShowThumbnailFramesCheckBox.Text                    = "Show preview frames";
     this.ShowThumbnailFramesCheckBox.UseVisualStyleBackColor = true;
     this.ShowThumbnailFramesCheckBox.CheckedChanged         += new System.EventHandler(this.OptionChanged_Handler);
     //
     // ThumbnailsListPanel
     //
     ThumbnailsListPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     ThumbnailsListPanel.Controls.Add(this.ThumbnailsList);
     ThumbnailsListPanel.Controls.Add(ThumbnailsListLabel);
     ThumbnailsListPanel.Location = new System.Drawing.Point(3, 318);
     ThumbnailsListPanel.Name     = "ThumbnailsListPanel";
     ThumbnailsListPanel.Size     = new System.Drawing.Size(246, 125);
     ThumbnailsListPanel.TabIndex = 31;
     //
     // ThumbnailsList
     //
     this.ThumbnailsList.BackColor         = System.Drawing.SystemColors.Window;
     this.ThumbnailsList.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this.ThumbnailsList.FormattingEnabled = true;
     this.ThumbnailsList.IntegralHeight    = false;
     this.ThumbnailsList.Location          = new System.Drawing.Point(3, 18);
     this.ThumbnailsList.Name       = "ThumbnailsList";
     this.ThumbnailsList.Size       = new System.Drawing.Size(240, 100);
     this.ThumbnailsList.TabIndex   = 28;
     this.ThumbnailsList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.ThumbnailsList_ItemCheck_Handler);
     //
     // ThumbnailsListLabel
     //
     ThumbnailsListLabel.AutoSize = true;
     ThumbnailsListLabel.Location = new System.Drawing.Point(3, 0);
     ThumbnailsListLabel.Name     = "ThumbnailsListLabel";
     ThumbnailsListLabel.Size     = new System.Drawing.Size(162, 13);
     ThumbnailsListLabel.TabIndex = 29;
     ThumbnailsListLabel.Text     = "Thumbnails (check to force hide)";
     //
     // ForumLinkLabel
     //
     this.ForumLinkLabel.AutoSize = true;
     this.ForumLinkLabel.Location = new System.Drawing.Point(3, 446);
     this.ForumLinkLabel.Name     = "ForumLinkLabel";
     this.ForumLinkLabel.Size     = new System.Drawing.Size(241, 26);
     this.ForumLinkLabel.TabIndex = 10;
     this.ForumLinkLabel.TabStop  = true;
     this.ForumLinkLabel.Text     = "to be set from prresenter to be set from prresenter to be set from prresenter to " +
                                    "be set from prresenter";
     this.ForumLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ForumLinkLabelClicked_Handler);
     //
     // TitleMenuItem
     //
     TitleMenuItem.Enabled = false;
     TitleMenuItem.Name    = "TitleMenuItem";
     TitleMenuItem.Size    = new System.Drawing.Size(151, 22);
     TitleMenuItem.Text    = "EVE-O Preview";
     //
     // SeparatorMenuItem
     //
     SeparatorMenuItem.Name = "SeparatorMenuItem";
     SeparatorMenuItem.Size = new System.Drawing.Size(148, 6);
     //
     // NotifyIcon
     //
     this.NotifyIcon.ContextMenuStrip  = this.TrayMenu;
     this.NotifyIcon.Icon              = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
     this.NotifyIcon.Text              = "EVE-O Preview";
     this.NotifyIcon.Visible           = true;
     this.NotifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.RestoreMainForm_Handler);
     //
     // TrayMenu
     //
     this.TrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         TitleMenuItem,
         RestoreWindowMenuItem,
         SeparatorMenuItem,
         ExitMenuItem
     });
     this.TrayMenu.Name = "contextMenuStrip1";
     this.TrayMenu.Size = new System.Drawing.Size(152, 76);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ControlDarkDark;
     this.ClientSize          = new System.Drawing.Size(252, 481);
     this.Controls.Add(ContentFlowLayoutPanel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin          = new System.Windows.Forms.Padding(0);
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "EVE-O Preview";
     this.TopMost         = true;
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.MainFormClosing_Handler);
     this.Load           += new System.EventHandler(this.MainFormResize_Handler);
     this.Resize         += new System.EventHandler(this.MainFormResize_Handler);
     ContentFlowLayoutPanel.ResumeLayout(false);
     ContentFlowLayoutPanel.PerformLayout();
     OpacityPanel.ResumeLayout(false);
     OpacityPanel.PerformLayout();
     ResizeOptionsPanel.ResumeLayout(false);
     ResizeOptionsPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailsWidthNumericEdit)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailsHeightNumericEdit)).EndInit();
     ZoomOptionsPanel.ResumeLayout(false);
     ZoomOptionsPanel.PerformLayout();
     this.ZoomAnchorPanel.ResumeLayout(false);
     this.ZoomAnchorPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ThumbnailZoomFactorNumericEdit)).EndInit();
     ThumbnailsListPanel.ResumeLayout(false);
     ThumbnailsListPanel.PerformLayout();
     this.TrayMenu.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 25
0
 private void InitializeComponent()
 {
     cboType             = new ComboBox();
     lstParameters       = new ListBox();
     btnChangeEvent      = new Button();
     lblEventId          = new Label();
     lblEventName        = new Label();
     lblParamDescription = new Label();
     btnCancel           = new Button();
     btnDone             = new Button();
     lblName2            = new Label();
     lblName1            = new Label();
     valueGrid           = new PropertyGrid();
     requirementPanel    = new Panel();
     chkNot          = new CheckBox();
     label1          = new Label();
     cboRequirement  = new ComboBox();
     offsetPanel     = new Panel();
     offsetOkay      = new Button();
     comboBox1       = new ComboBox();
     comboBox2       = new ComboBox();
     comboBox3       = new ComboBox();
     label2          = new Label();
     label3          = new Label();
     label4          = new Label();
     mainPanel       = new Panel();
     splitContainer1 = new SplitContainer();
     typePanel       = new Panel();
     requirementPanel.SuspendLayout();
     offsetPanel.SuspendLayout();
     ((ISupportInitialize)splitContainer1).BeginInit();
     splitContainer1.Panel1.SuspendLayout();
     splitContainer1.Panel2.SuspendLayout();
     splitContainer1.SuspendLayout();
     typePanel.SuspendLayout();
     SuspendLayout();
     //
     // cboType
     //
     cboType.FormattingEnabled = true;
     cboType.Items.AddRange(new object[]
     {
         "Value",
         "Scalar",
         "Drawing.Pointer",
         "Boolean",
         "Unknown",
         "Variable",
         "Requirement"
     });
     cboType.Location              = new Drawing.Point(46, 0);
     cboType.Name                  = "cboType";
     cboType.Size                  = new Drawing.Size(82, 21);
     cboType.TabIndex              = 63;
     cboType.SelectedIndexChanged += new EventHandler(cboType_SelectedIndexChanged);
     //
     // lstParameters
     //
     lstParameters.Dock = DockStyle.Fill;
     lstParameters.FormattingEnabled = true;
     lstParameters.Location          = new Drawing.Point(0, 21);
     lstParameters.Name                  = "lstParameters";
     lstParameters.Size                  = new Drawing.Size(93, 92);
     lstParameters.TabIndex              = 62;
     lstParameters.SelectedIndexChanged += new EventHandler(lstParameters_SelectedIndexChanged);
     //
     // btnChangeEvent
     //
     btnChangeEvent.Anchor   = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
     btnChangeEvent.Location = new Drawing.Point(171, 2);
     btnChangeEvent.Name     = "btnChangeEvent";
     btnChangeEvent.Size     = new Drawing.Size(56, 23);
     btnChangeEvent.TabIndex = 61;
     btnChangeEvent.Text     = "Change";
     btnChangeEvent.UseVisualStyleBackColor = true;
     btnChangeEvent.Click += new EventHandler(btnChangeEvent_Click);
     //
     // lblEventId
     //
     lblEventId.Anchor      = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Right);
     lblEventId.BackColor   = Color.WhiteSmoke;
     lblEventId.BorderStyle = BorderStyle.Fixed3D;
     lblEventId.Location    = new Drawing.Point(107, 3);
     lblEventId.Name        = "lblEventId";
     lblEventId.Size        = new Drawing.Size(66, 20);
     lblEventId.TabIndex    = 60;
     lblEventId.TextAlign   = ContentAlignment.MiddleCenter;
     //
     // lblEventName
     //
     lblEventName.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                          | AnchorStyles.Right);
     lblEventName.BackColor   = Color.WhiteSmoke;
     lblEventName.BorderStyle = BorderStyle.Fixed3D;
     lblEventName.Location    = new Drawing.Point(2, 3);
     lblEventName.Name        = "lblEventName";
     lblEventName.Size        = new Drawing.Size(105, 20);
     lblEventName.TabIndex    = 59;
     lblEventName.TextAlign   = ContentAlignment.MiddleLeft;
     //
     // lblParamDescription
     //
     lblParamDescription.Anchor = (AnchorStyles)(AnchorStyles.Bottom | AnchorStyles.Left
                                                 | AnchorStyles.Right);
     lblParamDescription.BackColor   = SystemColors.Control;
     lblParamDescription.BorderStyle = BorderStyle.Fixed3D;
     lblParamDescription.Font        = new Font("Microsoft Sans Serif", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point,
                                                (byte)0);
     lblParamDescription.Location = new Drawing.Point(2, 140);
     lblParamDescription.Name     = "lblParamDescription";
     lblParamDescription.Size     = new Drawing.Size(225, 63);
     lblParamDescription.TabIndex = 58;
     //
     // btnCancel
     //
     btnCancel.Anchor   = (AnchorStyles)(AnchorStyles.Bottom | AnchorStyles.Right);
     btnCancel.Location = new Drawing.Point(169, 206);
     btnCancel.Name     = "btnCancel";
     btnCancel.Size     = new Drawing.Size(58, 24);
     btnCancel.TabIndex = 57;
     btnCancel.Text     = "* - Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     //btnCancel.Click += new EventHandler(btnCancel_Click);
     //
     // btnDone
     //
     btnDone.Anchor   = (AnchorStyles)(AnchorStyles.Bottom | AnchorStyles.Right);
     btnDone.Location = new Drawing.Point(105, 206);
     btnDone.Name     = "btnDone";
     btnDone.Size     = new Drawing.Size(58, 24);
     btnDone.TabIndex = 56;
     btnDone.Text     = "* - Done";
     btnDone.UseVisualStyleBackColor = true;
     //btnDone.Click += new EventHandler(btnDone_Click);
     //
     // lblName2
     //
     lblName2.BackColor   = Color.WhiteSmoke;
     lblName2.BorderStyle = BorderStyle.Fixed3D;
     lblName2.Location    = new Drawing.Point(0, 0);
     lblName2.Name        = "lblName2";
     lblName2.Size        = new Drawing.Size(45, 21);
     lblName2.TabIndex    = 55;
     lblName2.Text        = "Type:";
     lblName2.TextAlign   = ContentAlignment.MiddleRight;
     //
     // lblName1
     //
     lblName1.BackColor   = Color.WhiteSmoke;
     lblName1.BorderStyle = BorderStyle.Fixed3D;
     lblName1.Dock        = DockStyle.Top;
     lblName1.Location    = new Drawing.Point(0, 0);
     lblName1.Name        = "lblName1";
     lblName1.Size        = new Drawing.Size(93, 21);
     lblName1.TabIndex    = 54;
     lblName1.Text        = "Parameter:";
     lblName1.TextAlign   = ContentAlignment.MiddleLeft;
     //
     // valueGrid
     //
     valueGrid.Dock           = DockStyle.Fill;
     valueGrid.HelpVisible    = false;
     valueGrid.Location       = new Drawing.Point(0, 21);
     valueGrid.Name           = "valueGrid";
     valueGrid.Size           = new Drawing.Size(128, 92);
     valueGrid.TabIndex       = 8;
     valueGrid.ToolbarVisible = false;
     //
     // requirementPanel
     //
     requirementPanel.Controls.Add(chkNot);
     requirementPanel.Controls.Add(label1);
     requirementPanel.Controls.Add(cboRequirement);
     requirementPanel.Dock     = DockStyle.Fill;
     requirementPanel.Location = new Drawing.Point(0, 21);
     requirementPanel.Name     = "requirementPanel";
     requirementPanel.Size     = new Drawing.Size(128, 92);
     requirementPanel.TabIndex = 64;
     //
     // chkNot
     //
     chkNot.AutoSize = true;
     chkNot.Location = new Drawing.Point(81, 3);
     chkNot.Name     = "chkNot";
     chkNot.Size     = new Drawing.Size(43, 17);
     chkNot.TabIndex = 65;
     chkNot.Text     = "Not";
     chkNot.UseVisualStyleBackColor = true;
     chkNot.CheckedChanged         += new EventHandler(Requirement_Handle);
     //
     // label1
     //
     label1.BackColor   = Color.WhiteSmoke;
     label1.BorderStyle = BorderStyle.Fixed3D;
     label1.Location    = new Drawing.Point(0, 0);
     label1.Name        = "label1";
     label1.Size        = new Drawing.Size(75, 21);
     label1.TabIndex    = 64;
     label1.Text        = "Requirement:";
     label1.TextAlign   = ContentAlignment.MiddleLeft;
     //
     // cboRequirement
     //
     cboRequirement.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                            | AnchorStyles.Right);
     cboRequirement.FormattingEnabled = true;
     cboRequirement.Location          = new Drawing.Point(0, 22);
     cboRequirement.Name                  = "cboRequirement";
     cboRequirement.Size                  = new Drawing.Size(128, 21);
     cboRequirement.TabIndex              = 0;
     cboRequirement.SelectedIndexChanged += new EventHandler(Requirement_Handle);
     //
     // offsetPanel
     //
     offsetPanel.Controls.Add(offsetOkay);
     offsetPanel.Controls.Add(comboBox1);
     offsetPanel.Controls.Add(comboBox2);
     offsetPanel.Controls.Add(comboBox3);
     offsetPanel.Controls.Add(label2);
     offsetPanel.Controls.Add(label3);
     offsetPanel.Controls.Add(label4);
     offsetPanel.Dock     = DockStyle.Fill;
     offsetPanel.Location = new Drawing.Point(0, 21);
     offsetPanel.Name     = "offsetPanel";
     offsetPanel.Size     = new Drawing.Size(128, 92);
     offsetPanel.TabIndex = 66;
     //
     // offsetOkay
     //
     offsetOkay.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                        | AnchorStyles.Right);
     offsetOkay.Location = new Drawing.Point(-1, 69);
     offsetOkay.Name     = "offsetOkay";
     offsetOkay.Size     = new Drawing.Size(129, 23);
     offsetOkay.TabIndex = 13;
     offsetOkay.Text     = "Okay";
     offsetOkay.UseVisualStyleBackColor = true;
     offsetOkay.Click += new EventHandler(offsetOkay_Click);
     //
     // comboBox1
     //
     comboBox1.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                       | AnchorStyles.Right);
     comboBox1.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox1.FormattingEnabled = true;
     comboBox1.Items.AddRange(new object[]
     {
         "Actions",
         "SubActions",
         "SubRoutines",
         "External",
         "Null"
     });
     comboBox1.Location              = new Drawing.Point(46, 3);
     comboBox1.Name                  = "comboBox1";
     comboBox1.Size                  = new Drawing.Size(82, 21);
     comboBox1.TabIndex              = 7;
     comboBox1.SelectedIndexChanged += new EventHandler(comboBox1_SelectedIndexChanged);
     //
     // comboBox2
     //
     comboBox2.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                       | AnchorStyles.Right);
     comboBox2.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox2.FormattingEnabled = true;
     comboBox2.Location          = new Drawing.Point(46, 24);
     comboBox2.Name     = "comboBox2";
     comboBox2.Size     = new Drawing.Size(82, 21);
     comboBox2.TabIndex = 9;
     //
     // comboBox3
     //
     comboBox3.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Left
                                       | AnchorStyles.Right);
     comboBox3.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox3.FormattingEnabled = true;
     comboBox3.Location          = new Drawing.Point(46, 45);
     comboBox3.Name     = "comboBox3";
     comboBox3.Size     = new Drawing.Size(82, 21);
     comboBox3.TabIndex = 11;
     //
     // label2
     //
     label2.BackColor   = Color.WhiteSmoke;
     label2.BorderStyle = BorderStyle.Fixed3D;
     label2.Location    = new Drawing.Point(0, 3);
     label2.Name        = "label2";
     label2.Size        = new Drawing.Size(45, 21);
     label2.TabIndex    = 8;
     label2.Text        = "List:";
     label2.TextAlign   = ContentAlignment.MiddleRight;
     //
     // label3
     //
     label3.BackColor   = Color.WhiteSmoke;
     label3.BorderStyle = BorderStyle.Fixed3D;
     label3.Location    = new Drawing.Point(0, 24);
     label3.Name        = "label3";
     label3.Size        = new Drawing.Size(45, 21);
     label3.TabIndex    = 10;
     label3.Text        = "Action:";
     label3.TextAlign   = ContentAlignment.MiddleRight;
     //
     // label4
     //
     label4.BackColor   = Color.WhiteSmoke;
     label4.BorderStyle = BorderStyle.Fixed3D;
     label4.Location    = new Drawing.Point(0, 45);
     label4.Name        = "label4";
     label4.Size        = new Drawing.Size(45, 21);
     label4.TabIndex    = 12;
     label4.Text        = "Type:";
     label4.TextAlign   = ContentAlignment.MiddleRight;
     //
     // mainPanel
     //
     mainPanel.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Bottom
                                       | AnchorStyles.Left
                                       | AnchorStyles.Right);
     mainPanel.Location = new Drawing.Point(2, 25);
     mainPanel.Name     = "mainPanel";
     mainPanel.Size     = new Drawing.Size(225, 113);
     mainPanel.TabIndex = 0;
     //
     // splitContainer1
     //
     splitContainer1.Anchor = (AnchorStyles)(AnchorStyles.Top | AnchorStyles.Bottom
                                             | AnchorStyles.Left
                                             | AnchorStyles.Right);
     splitContainer1.Location = new Drawing.Point(2, 25);
     splitContainer1.Name     = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     splitContainer1.Panel1.Controls.Add(lstParameters);
     splitContainer1.Panel1.Controls.Add(lblName1);
     //
     // splitContainer1.Panel2
     //
     splitContainer1.Panel2.Controls.Add(offsetPanel);
     splitContainer1.Panel2.Controls.Add(valueGrid);
     splitContainer1.Panel2.Controls.Add(requirementPanel);
     splitContainer1.Panel2.Controls.Add(typePanel);
     splitContainer1.Size             = new Drawing.Size(225, 113);
     splitContainer1.SplitterDistance = 93;
     splitContainer1.TabIndex         = 9;
     //
     // typePanel
     //
     typePanel.Controls.Add(lblName2);
     typePanel.Controls.Add(cboType);
     typePanel.Dock     = DockStyle.Top;
     typePanel.Location = new Drawing.Point(0, 0);
     typePanel.Name     = "typePanel";
     typePanel.Size     = new Drawing.Size(128, 21);
     typePanel.TabIndex = 64;
     //
     // EventModifier
     //
     AutoSize = true;
     Controls.Add(splitContainer1);
     Controls.Add(mainPanel);
     Controls.Add(btnChangeEvent);
     Controls.Add(lblEventId);
     Controls.Add(lblEventName);
     Controls.Add(lblParamDescription);
     Controls.Add(btnCancel);
     Controls.Add(btnDone);
     Name = "EventModifier";
     Size = new Drawing.Size(230, 233);
     requirementPanel.ResumeLayout(false);
     requirementPanel.PerformLayout();
     offsetPanel.ResumeLayout(false);
     splitContainer1.Panel1.ResumeLayout(false);
     splitContainer1.Panel2.ResumeLayout(false);
     ((ISupportInitialize)splitContainer1).EndInit();
     splitContainer1.ResumeLayout(false);
     typePanel.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 26
0
        private void newPlayerCombatantUIRow(int i)
        {
            Panel combatantPanel = new System.Windows.Forms.Panel();
            Button combatantInfo = new System.Windows.Forms.Button();
            Button healButton = new System.Windows.Forms.Button();
            Button damageButton = new System.Windows.Forms.Button();
            TextBox damageTextBox = new System.Windows.Forms.TextBox();
            Label combatantHP = new System.Windows.Forms.Label();
            Label combatantAC = new System.Windows.Forms.Label();
            Label combatantName = new System.Windows.Forms.Label();

            this.combatTab.Controls.Add(combatantPanel);
            combatantPanel.SuspendLayout();
            //
            // combatantPanel
            //
            combatantPanel.Controls.Add(combatantInfo);
            combatantPanel.Controls.Add(healButton);
            combatantPanel.Controls.Add(damageButton);
            combatantPanel.Controls.Add(damageTextBox);
            combatantPanel.Controls.Add(combatantHP);
            combatantPanel.Controls.Add(combatantAC);
            combatantPanel.Controls.Add(combatantName);
            combatantPanel.Name = "combatantPanel" + i;
            combatantPanel.Parent = this.combatTab;
            combatantPanel.Size = new System.Drawing.Size(714, 30);
            combatantPanel.Location = new System.Drawing.Point(6, 31 + (i * ROW_HEIGHT));
            combatantPanel.BorderStyle = BorderStyle.FixedSingle;
            combatantPanel.TabIndex = 1;
            combatantPanel.Show();

            if (i % 2 == 1)
            {
                combatantPanel.BackColor = Color.LightBlue;
            }

            //
            // combatantInfo
            //
            combatantInfo.Name = "combatantInfo" + i;
            combatantInfo.Size = new System.Drawing.Size(28, 23);
            combatantInfo.Location = new System.Drawing.Point(683, 2);
            combatantInfo.TabIndex = 6;
            combatantInfo.Text = "...";
            combatantInfo.UseVisualStyleBackColor = true;
            combatantInfo.Parent = combatantPanel;
            combatantInfo.Show();

            //
            // healButton
            //
            healButton.Name = "healButton" + i;
            healButton.Size = new System.Drawing.Size(19, 23);
            healButton.Location = new System.Drawing.Point(600, 2);
            healButton.TabIndex = 5;
            healButton.Text = "+";
            healButton.UseVisualStyleBackColor = true;
            healButton.Parent = combatantPanel;
            healButton.Show();

            //
            // damageButton
            //
            damageButton.Name = "damageButton" + i;
            damageButton.Size = new System.Drawing.Size(19, 23);
            damageButton.Location = new System.Drawing.Point(578, 2);
            damageButton.TabIndex = 4;
            damageButton.Text = "-";
            damageButton.UseVisualStyleBackColor = true;
            damageButton.Parent = combatantPanel;
            damageButton.Show();

            //
            // damageTextBox
            //
            damageTextBox.Name = "damageTextBox" + i;
            damageTextBox.Size = new System.Drawing.Size(45, 22);
            damageTextBox.Location = new System.Drawing.Point(530, 2);
            damageTextBox.TabIndex = 3;
            damageButton.Parent = combatantPanel;
            damageButton.Show();

            //
            // combatantHP
            //
            combatantHP.AutoSize = true;
            combatantHP.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            combatantHP.Name = "combatantHP" + i;
            combatantHP.Size = new System.Drawing.Size(71, 23);
            combatantHP.Location = new System.Drawing.Point(400, 2);
            combatantHP.TabIndex = 2;
            combatantHP.Text = String.Format("HP: {0}/{1}", GameManagement.playerCharacters[i].currentHitPoints, GameManagement.playerCharacters[i].hitPoints);
            combatantHP.Parent = combatantPanel;
            combatantHP.Show();

            //
            // combatantAC
            //
            combatantAC.AutoSize = true;
            combatantAC.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            combatantAC.Name = "combatantAC" + i;
            combatantAC.Size = new System.Drawing.Size(60, 23);
            combatantAC.Location = new System.Drawing.Point(300, 2);
            combatantAC.TabIndex = 1;
            combatantAC.Text = "AC: " + GameManagement.playerCharacters[i].armorClass;
            combatantAC.Show();
            //
            // combatantName
            //
            combatantName.AutoSize = true;
            combatantName.Font = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            combatantName.Name = "combatantName" + i;
            combatantName.Size = new System.Drawing.Size(3, 23);
            combatantName.Location = new System.Drawing.Point(3, 2);
            combatantName.TabIndex = 0;
            combatantName.Text = GameManagement.playerCharacters[i].name;
            combatantName.Show();

            // Resume Layout
            combatantPanel.ResumeLayout(false);
            combatantPanel.PerformLayout();
        }
Exemplo n.º 27
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(MGADialog));
			System.Windows.Forms.TableLayoutPanel panelGlossComponents;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
			System.Windows.Forms.Panel panel1;
			System.Windows.Forms.Panel panelInsertRemove;
			System.Windows.Forms.TableLayoutPanel panelSelectedGloss;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanelSelectedGloss;
			System.Windows.Forms.Panel panel;
			System.Windows.Forms.Panel panel2;
			System.Windows.Forms.Panel panelTop;
			System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
			this.splitContainerVertical = new System.Windows.Forms.SplitContainer();
			this.groupBoxGlossComponents = new System.Windows.Forms.GroupBox();
			this.comboGlossListItem = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
			this.labelGlossListItem = new System.Windows.Forms.Label();
			this.checkBoxShowUsed = new System.Windows.Forms.CheckBox();
			this.buttonInfo = new System.Windows.Forms.Button();
			this.buttonInsert = new System.Windows.Forms.Button();
			this.buttonRemove = new System.Windows.Forms.Button();
			this.groupBoxSelectedGloss = new System.Windows.Forms.GroupBox();
			this.buttonMoveUp = new System.Windows.Forms.Button();
			this.buttonMoveDown = new System.Windows.Forms.Button();
			this.buttonModify = new System.Windows.Forms.Button();
			this.buttonHelp = new System.Windows.Forms.Button();
			this.buttonAcceptGloss = new System.Windows.Forms.Button();
			this.buttonCancel = new System.Windows.Forms.Button();
			this.labelConstructedGlossForPrompt = new System.Windows.Forms.Label();
			this.labelAllomorph = new System.Windows.Forms.Label();
			this.textBoxResult = new System.Windows.Forms.TextBox();
			this.splitContainerHorizontal = new System.Windows.Forms.SplitContainer();
			this.treeViewGlossListItem = new SIL.FieldWorks.LexText.Controls.MGA.GlossListTreeView();
			this.glossListBoxGloss = new SIL.FieldWorks.LexText.Controls.MGA.GlossListBox();
			panelGlossComponents = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
			panel1 = new System.Windows.Forms.Panel();
			panelInsertRemove = new System.Windows.Forms.Panel();
			panelSelectedGloss = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutPanelSelectedGloss = new System.Windows.Forms.TableLayoutPanel();
			panel = new System.Windows.Forms.Panel();
			panel2 = new System.Windows.Forms.Panel();
			panelTop = new System.Windows.Forms.Panel();
			tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
			this.splitContainerVertical.Panel1.SuspendLayout();
			this.splitContainerVertical.Panel2.SuspendLayout();
			this.splitContainerVertical.SuspendLayout();
			panelGlossComponents.SuspendLayout();
			this.groupBoxGlossComponents.SuspendLayout();
			tableLayoutPanel1.SuspendLayout();
			panel1.SuspendLayout();
			panelInsertRemove.SuspendLayout();
			panelSelectedGloss.SuspendLayout();
			this.groupBoxSelectedGloss.SuspendLayout();
			tableLayoutPanelSelectedGloss.SuspendLayout();
			panel.SuspendLayout();
			panel2.SuspendLayout();
			panelTop.SuspendLayout();
			tableLayoutPanel2.SuspendLayout();
			this.splitContainerHorizontal.Panel1.SuspendLayout();
			this.splitContainerHorizontal.Panel2.SuspendLayout();
			this.splitContainerHorizontal.SuspendLayout();
			this.SuspendLayout();
			//
			// splitContainerVertical
			//
			resources.ApplyResources(this.splitContainerVertical, "splitContainerVertical");
			this.splitContainerVertical.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
			this.splitContainerVertical.Name = "splitContainerVertical";
			//
			// splitContainerVertical.Panel1
			//
			this.splitContainerVertical.Panel1.Controls.Add(panelGlossComponents);
			this.splitContainerVertical.Panel1.Controls.Add(panelInsertRemove);
			//
			// splitContainerVertical.Panel2
			//
			this.splitContainerVertical.Panel2.Controls.Add(panelSelectedGloss);
			resources.ApplyResources(this.splitContainerVertical.Panel2, "splitContainerVertical.Panel2");
			//
			// panelGlossComponents
			//
			resources.ApplyResources(panelGlossComponents, "panelGlossComponents");
			panelGlossComponents.Controls.Add(this.groupBoxGlossComponents, 0, 0);
			panelGlossComponents.Controls.Add(this.buttonInfo, 0, 1);
			panelGlossComponents.Name = "panelGlossComponents";
			//
			// groupBoxGlossComponents
			//
			this.groupBoxGlossComponents.Controls.Add(tableLayoutPanel1);
			resources.ApplyResources(this.groupBoxGlossComponents, "groupBoxGlossComponents");
			this.groupBoxGlossComponents.Name = "groupBoxGlossComponents";
			this.groupBoxGlossComponents.TabStop = false;
			//
			// tableLayoutPanel1
			//
			resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
			tableLayoutPanel1.Controls.Add(panel1, 0, 0);
			tableLayoutPanel1.Controls.Add(this.checkBoxShowUsed, 0, 2);
			tableLayoutPanel1.Controls.Add(this.treeViewGlossListItem, 0, 1);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			//
			// panel1
			//
			panel1.Controls.Add(this.comboGlossListItem);
			panel1.Controls.Add(this.labelGlossListItem);
			resources.ApplyResources(panel1, "panel1");
			panel1.Name = "panel1";
			//
			// comboGlossListItem
			//
			resources.ApplyResources(this.comboGlossListItem, "comboGlossListItem");
			this.comboGlossListItem.Name = "comboGlossListItem";
			//
			// labelGlossListItem
			//
			resources.ApplyResources(this.labelGlossListItem, "labelGlossListItem");
			this.labelGlossListItem.Name = "labelGlossListItem";
			//
			// checkBoxShowUsed
			//
			resources.ApplyResources(this.checkBoxShowUsed, "checkBoxShowUsed");
			this.checkBoxShowUsed.Name = "checkBoxShowUsed";
			//
			// buttonInfo
			//
			resources.ApplyResources(this.buttonInfo, "buttonInfo");
			this.buttonInfo.Name = "buttonInfo";
			this.buttonInfo.Click += new System.EventHandler(this.OnInfoButtonClick);
			//
			// panelInsertRemove
			//
			panelInsertRemove.Controls.Add(this.buttonInsert);
			panelInsertRemove.Controls.Add(this.buttonRemove);
			resources.ApplyResources(panelInsertRemove, "panelInsertRemove");
			panelInsertRemove.Name = "panelInsertRemove";
			panelInsertRemove.TabStop = true;
			//
			// buttonInsert
			//
			resources.ApplyResources(this.buttonInsert, "buttonInsert");
			this.buttonInsert.Name = "buttonInsert";
			this.buttonInsert.Click += new System.EventHandler(this.OnInsertButtonClick);
			//
			// buttonRemove
			//
			resources.ApplyResources(this.buttonRemove, "buttonRemove");
			this.buttonRemove.Name = "buttonRemove";
			this.buttonRemove.Click += new System.EventHandler(this.OnRemoveButtonClick);
			//
			// panelSelectedGloss
			//
			resources.ApplyResources(panelSelectedGloss, "panelSelectedGloss");
			panelSelectedGloss.Controls.Add(this.groupBoxSelectedGloss, 0, 0);
			panelSelectedGloss.Controls.Add(panel2, 0, 1);
			panelSelectedGloss.Name = "panelSelectedGloss";
			//
			// groupBoxSelectedGloss
			//
			this.groupBoxSelectedGloss.Controls.Add(tableLayoutPanelSelectedGloss);
			resources.ApplyResources(this.groupBoxSelectedGloss, "groupBoxSelectedGloss");
			this.groupBoxSelectedGloss.Name = "groupBoxSelectedGloss";
			this.groupBoxSelectedGloss.TabStop = false;
			//
			// tableLayoutPanelSelectedGloss
			//
			resources.ApplyResources(tableLayoutPanelSelectedGloss, "tableLayoutPanelSelectedGloss");
			tableLayoutPanelSelectedGloss.Controls.Add(this.glossListBoxGloss, 0, 0);
			tableLayoutPanelSelectedGloss.Controls.Add(panel, 1, 0);
			tableLayoutPanelSelectedGloss.Name = "tableLayoutPanelSelectedGloss";
			//
			// panel
			//
			panel.Controls.Add(this.buttonMoveUp);
			panel.Controls.Add(this.buttonMoveDown);
			panel.Controls.Add(this.buttonModify);
			resources.ApplyResources(panel, "panel");
			panel.Name = "panel";
			//
			// buttonMoveUp
			//
			resources.ApplyResources(this.buttonMoveUp, "buttonMoveUp");
			this.buttonMoveUp.Name = "buttonMoveUp";
			this.buttonMoveUp.Click += new System.EventHandler(this.OnMoveUpButtonClick);
			//
			// buttonMoveDown
			//
			resources.ApplyResources(this.buttonMoveDown, "buttonMoveDown");
			this.buttonMoveDown.Name = "buttonMoveDown";
			this.buttonMoveDown.Click += new System.EventHandler(this.OnMoveDownButtonClick);
			//
			// buttonModify
			//
			resources.ApplyResources(this.buttonModify, "buttonModify");
			this.buttonModify.Name = "buttonModify";
			this.buttonModify.Click += new System.EventHandler(this.OnModifyButtonClick);
			//
			// panel2
			//
			panel2.Controls.Add(this.buttonHelp);
			panel2.Controls.Add(this.buttonAcceptGloss);
			panel2.Controls.Add(this.buttonCancel);
			resources.ApplyResources(panel2, "panel2");
			panel2.Name = "panel2";
			//
			// buttonHelp
			//
			resources.ApplyResources(this.buttonHelp, "buttonHelp");
			this.buttonHelp.Name = "buttonHelp";
			this.buttonHelp.Click += new System.EventHandler(this.OnHelpButtonClick);
			//
			// buttonAcceptGloss
			//
			this.buttonAcceptGloss.DialogResult = System.Windows.Forms.DialogResult.OK;
			resources.ApplyResources(this.buttonAcceptGloss, "buttonAcceptGloss");
			this.buttonAcceptGloss.Name = "buttonAcceptGloss";
			this.buttonAcceptGloss.Click += new System.EventHandler(this.OnAcceptGlossButtonClick);
			//
			// buttonCancel
			//
			this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			resources.ApplyResources(this.buttonCancel, "buttonCancel");
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.Click += new System.EventHandler(this.OnCancelButtonClick);
			//
			// panelTop
			//
			panelTop.Controls.Add(tableLayoutPanel2);
			panelTop.Controls.Add(this.textBoxResult);
			resources.ApplyResources(panelTop, "panelTop");
			panelTop.Name = "panelTop";
			panelTop.TabStop = true;
			//
			// tableLayoutPanel2
			//
			resources.ApplyResources(tableLayoutPanel2, "tableLayoutPanel2");
			tableLayoutPanel2.Controls.Add(this.labelConstructedGlossForPrompt, 0, 0);
			tableLayoutPanel2.Controls.Add(this.labelAllomorph, 0, 1);
			tableLayoutPanel2.Name = "tableLayoutPanel2";
			//
			// labelConstructedGlossForPrompt
			//
			resources.ApplyResources(this.labelConstructedGlossForPrompt, "labelConstructedGlossForPrompt");
			this.labelConstructedGlossForPrompt.Name = "labelConstructedGlossForPrompt";
			//
			// labelAllomorph
			//
			resources.ApplyResources(this.labelAllomorph, "labelAllomorph");
			this.labelAllomorph.Name = "labelAllomorph";
			//
			// textBoxResult
			//
			resources.ApplyResources(this.textBoxResult, "textBoxResult");
			this.textBoxResult.Name = "textBoxResult";
			//
			// splitContainerHorizontal
			//
			resources.ApplyResources(this.splitContainerHorizontal, "splitContainerHorizontal");
			this.splitContainerHorizontal.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
			this.splitContainerHorizontal.Name = "splitContainerHorizontal";
			//
			// splitContainerHorizontal.Panel1
			//
			this.splitContainerHorizontal.Panel1.Controls.Add(this.splitContainerVertical);
			//
			// splitContainerHorizontal.Panel2
			//
			this.splitContainerHorizontal.Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
			//
			// treeViewGlossListItem
			//
			resources.ApplyResources(this.treeViewGlossListItem, "treeViewGlossListItem");
			this.treeViewGlossListItem.HideSelection = false;
			this.treeViewGlossListItem.ItemHeight = 16;
			this.treeViewGlossListItem.Name = "treeViewGlossListItem";
			this.treeViewGlossListItem.TerminalsUseCheckBoxes = false;
			this.treeViewGlossListItem.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.OnGlossListTreeSelect);
			//
			// glossListBoxGloss
			//
			resources.ApplyResources(this.glossListBoxGloss, "glossListBoxGloss");
			this.glossListBoxGloss.FormattingEnabled = true;
			this.glossListBoxGloss.MGADialog = null;
			this.glossListBoxGloss.Name = "glossListBoxGloss";
			this.glossListBoxGloss.SelectedIndexChanged += new System.EventHandler(this.OnGlossListBoxSelectedIndexChanged);
			//
			// MGADialog
			//
			this.AcceptButton = this.buttonAcceptGloss;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.buttonCancel;
			this.Controls.Add(this.splitContainerHorizontal);
			this.Controls.Add(panelTop);
			this.HelpButton = true;
			this.Name = "MGADialog";
			this.splitContainerVertical.Panel1.ResumeLayout(false);
			this.splitContainerVertical.Panel2.ResumeLayout(false);
			this.splitContainerVertical.ResumeLayout(false);
			panelGlossComponents.ResumeLayout(false);
			this.groupBoxGlossComponents.ResumeLayout(false);
			tableLayoutPanel1.ResumeLayout(false);
			panel1.ResumeLayout(false);
			panelInsertRemove.ResumeLayout(false);
			panelSelectedGloss.ResumeLayout(false);
			this.groupBoxSelectedGloss.ResumeLayout(false);
			tableLayoutPanelSelectedGloss.ResumeLayout(false);
			panel.ResumeLayout(false);
			panel2.ResumeLayout(false);
			panelTop.ResumeLayout(false);
			panelTop.PerformLayout();
			tableLayoutPanel2.ResumeLayout(false);
			this.splitContainerHorizontal.Panel1.ResumeLayout(false);
			this.splitContainerHorizontal.Panel2.ResumeLayout(false);
			this.splitContainerHorizontal.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Exemplo n.º 28
0
        private void InitializeGuiComponents()
        {
            menuStrip1.SuspendLayout();
            TopPanel.SuspendLayout();
            ThreeDPanel.SuspendLayout();
            this.SuspendLayout();

            menuStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
            menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.fileToolStripMenuItem
            });
            menuStrip1.Location = new System.Drawing.Point(0, 0);
            menuStrip1.Name     = "menuStrip1";
            menuStrip1.Size     = new System.Drawing.Size(617, 28);
            menuStrip1.TabIndex = 1;
            menuStrip1.Text     = "menuStrip1";
            menuStrip1.Font     = new System.Drawing.Font("Segoe UI", 28F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));

            fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this.closeToolStripMenuItem
            });
            fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            fileToolStripMenuItem.Size = new System.Drawing.Size(44, 24);
            fileToolStripMenuItem.Text = "&File";

            closeToolStripMenuItem.Name   = "closeToolStripMenuItem";
            closeToolStripMenuItem.Size   = new System.Drawing.Size(120, 26);
            closeToolStripMenuItem.Text   = "&Close";
            closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click);

            TopPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            TopPanel.Controls.Add(this.textBox1);
            TopPanel.Dock     = System.Windows.Forms.DockStyle.Top;
            TopPanel.Location = new System.Drawing.Point(0, 28);
            TopPanel.Name     = "TopPanel";
            TopPanel.Size     = new System.Drawing.Size(617, 72);
            TopPanel.TabIndex = 2;

            ThreeDPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            ThreeDPanel.Controls.Add(this.MainElementHost);
            ThreeDPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
            ThreeDPanel.Location = new System.Drawing.Point(0, 109);
            ThreeDPanel.Name     = "ThreeDPanel";
            ThreeDPanel.Size     = new System.Drawing.Size(617, 290);
            ThreeDPanel.TabIndex = 3;

            MainElementHost.Dock     = System.Windows.Forms.DockStyle.Fill;
            MainElementHost.Location = new System.Drawing.Point(0, 0);
            MainElementHost.Name     = "MainElementHost";
            MainElementHost.Size     = new System.Drawing.Size(615, 301);
            MainElementHost.TabIndex = 0;
            MainElementHost.Text     = "elementHost1";
            // MainElementHost.Child = null;

            textBox1.Location = new System.Drawing.Point(26, 14);
            textBox1.Name     = "textBox1";
            textBox1.Size     = new System.Drawing.Size(100, 22);
            textBox1.TabIndex = 0;

            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(617, 412);
            this.Controls.Add(this.ThreeDPanel);
            this.Controls.Add(this.TopPanel);
            this.Controls.Add(this.menuStrip1);
            this.KeyPreview    = true;
            this.MainMenuStrip = this.menuStrip1;
            this.Name          = "ThreeDForm";
            this.Text          = "ThreeDForm";
            this.WindowState   = System.Windows.Forms.FormWindowState.Maximized;
            this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.ThreeDForm_KeyDown);
            this.Font          = new System.Drawing.Font("Consolas", 34.0F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel, ((byte)(0)));
            // this.FormClosing += new System.Windows.Forms.FormClosingEventHandler( this.MainForm_FormClosing );

            menuStrip1.ResumeLayout(false);
            menuStrip1.PerformLayout();
            TopPanel.ResumeLayout(false);
            TopPanel.PerformLayout();
            ThreeDPanel.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Exemplo n.º 29
0
		private void InitializeComponent()
		{
			components = new Container();
			errorProvider = new ErrorProvider(components);
			gBoxOverloadCurrentProtection = new GroupBoxEx();
			panel4 = new Panel();
			rBtnOcpOff = new RadioButton();
			rBtnOcpOn = new RadioButton();
			label5 = new Label();
			nudOcpTrim = new NumericUpDownEx();
			suffixOCPtrim = new Label();
			gBoxOutputPower = new GroupBoxEx();
			nudOutputPower = new NumericUpDownEx();
			suffixOutputPower = new Label();
			gBoxPowerAmplifier = new GroupBoxEx();
			cBoxPaRamp = new ComboBox();
			panel1 = new Panel();
			rBtnPaControlPa1Pa2 = new RadioButton();
			rBtnPaControlPa1 = new RadioButton();
			rBtnPaControlPa0 = new RadioButton();
			suffixPAramp = new Label();
			label3 = new Label();
			((ISupportInitialize)errorProvider).BeginInit();
			gBoxOverloadCurrentProtection.SuspendLayout();
			panel4.SuspendLayout();
			nudOcpTrim.BeginInit();
			gBoxOutputPower.SuspendLayout();
			nudOutputPower.BeginInit();
			gBoxPowerAmplifier.SuspendLayout();
			panel1.SuspendLayout();
			base.SuspendLayout();
			errorProvider.ContainerControl = this;
			gBoxOverloadCurrentProtection.Controls.Add(panel4);
			gBoxOverloadCurrentProtection.Controls.Add(label5);
			gBoxOverloadCurrentProtection.Controls.Add(nudOcpTrim);
			gBoxOverloadCurrentProtection.Controls.Add(suffixOCPtrim);
			gBoxOverloadCurrentProtection.Location = new Point(0xd9, 0x12b);
			gBoxOverloadCurrentProtection.Name = "gBoxOverloadCurrentProtection";
			gBoxOverloadCurrentProtection.Size = new Size(0x16c, 0x45);
			gBoxOverloadCurrentProtection.TabIndex = 2;
			gBoxOverloadCurrentProtection.TabStop = false;
			gBoxOverloadCurrentProtection.Text = "Overload current protection";
			gBoxOverloadCurrentProtection.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxOverloadCurrentProtection.MouseLeave += new EventHandler(control_MouseLeave);
			panel4.AutoSize = true;
			panel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel4.Controls.Add(rBtnOcpOff);
			panel4.Controls.Add(rBtnOcpOn);
			panel4.Location = new Point(0xc0, 0x13);
			panel4.Name = "panel4";
			panel4.Size = new Size(0x66, 20);
			panel4.TabIndex = 0;
			rBtnOcpOff.AutoSize = true;
			rBtnOcpOff.Location = new Point(0x36, 3);
			rBtnOcpOff.Margin = new Padding(3, 0, 3, 0);
			rBtnOcpOff.Name = "rBtnOcpOff";
			rBtnOcpOff.Size = new Size(0x2d, 0x11);
			rBtnOcpOff.TabIndex = 1;
			rBtnOcpOff.Text = "OFF";
			rBtnOcpOff.UseVisualStyleBackColor = true;
			rBtnOcpOff.CheckedChanged += new EventHandler(rBtnOcpOn_CheckedChanged);
			rBtnOcpOn.AutoSize = true;
			rBtnOcpOn.Checked = true;
			rBtnOcpOn.Location = new Point(3, 3);
			rBtnOcpOn.Margin = new Padding(3, 0, 3, 0);
			rBtnOcpOn.Name = "rBtnOcpOn";
			rBtnOcpOn.Size = new Size(0x29, 0x11);
			rBtnOcpOn.TabIndex = 0;
			rBtnOcpOn.TabStop = true;
			rBtnOcpOn.Text = "ON";
			rBtnOcpOn.UseVisualStyleBackColor = true;
			rBtnOcpOn.CheckedChanged += new EventHandler(rBtnOcpOn_CheckedChanged);
			label5.AutoSize = true;
			label5.Location = new Point(6, 0x31);
			label5.Name = "label5";
			label5.Size = new Size(0x34, 13);
			label5.TabIndex = 1;
			label5.Text = "Trimming:";
			nudOcpTrim.Location = new Point(0xc0, 0x2d);
			int[] bits = new int[4];
			bits[0] = 120;
			nudOcpTrim.Maximum = new decimal(bits);
			int[] numArray2 = new int[4];
			numArray2[0] = 0x2d;
			nudOcpTrim.Minimum = new decimal(numArray2);
			nudOcpTrim.Name = "nudOcpTrim";
			nudOcpTrim.Size = new Size(0x7c, 20);
			nudOcpTrim.TabIndex = 2;
			nudOcpTrim.ThousandsSeparator = true;
			int[] numArray3 = new int[4];
			numArray3[0] = 100;
			nudOcpTrim.Value = new decimal(numArray3);
			nudOcpTrim.ValueChanged += new EventHandler(nudOcpTrim_ValueChanged);
			suffixOCPtrim.AutoSize = true;
			suffixOCPtrim.Location = new Point(0x142, 0x31);
			suffixOCPtrim.Name = "suffixOCPtrim";
			suffixOCPtrim.Size = new Size(0x16, 13);
			suffixOCPtrim.TabIndex = 3;
			suffixOCPtrim.Text = "mA";
			gBoxOutputPower.Controls.Add(nudOutputPower);
			gBoxOutputPower.Controls.Add(suffixOutputPower);
			gBoxOutputPower.Location = new Point(0xd9, 0xf9);
			gBoxOutputPower.Name = "gBoxOutputPower";
			gBoxOutputPower.Size = new Size(0x16c, 0x2c);
			gBoxOutputPower.TabIndex = 1;
			gBoxOutputPower.TabStop = false;
			gBoxOutputPower.Text = "Output power";
			gBoxOutputPower.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxOutputPower.MouseLeave += new EventHandler(control_MouseLeave);
			nudOutputPower.Location = new Point(0xc0, 0x13);
			int[] numArray4 = new int[4];
			numArray4[0] = 13;
			nudOutputPower.Maximum = new decimal(numArray4);
			int[] numArray5 = new int[4];
			numArray5[0] = 0x12;
			numArray5[3] = -2147483648;
			nudOutputPower.Minimum = new decimal(numArray5);
			nudOutputPower.Name = "nudOutputPower";
			nudOutputPower.Size = new Size(0x7c, 20);
			nudOutputPower.TabIndex = 0;
			nudOutputPower.ThousandsSeparator = true;
			int[] numArray6 = new int[4];
			numArray6[0] = 13;
			nudOutputPower.Value = new decimal(numArray6);
			nudOutputPower.ValueChanged += new EventHandler(nudOutputPower_ValueChanged);
			suffixOutputPower.AutoSize = true;
			suffixOutputPower.Location = new Point(0x142, 0x17);
			suffixOutputPower.Name = "suffixOutputPower";
			suffixOutputPower.Size = new Size(0x1c, 13);
			suffixOutputPower.TabIndex = 1;
			suffixOutputPower.Text = "dBm";
			gBoxPowerAmplifier.Controls.Add(cBoxPaRamp);
			gBoxPowerAmplifier.Controls.Add(panel1);
			gBoxPowerAmplifier.Controls.Add(suffixPAramp);
			gBoxPowerAmplifier.Controls.Add(label3);
			gBoxPowerAmplifier.Location = new Point(0xd9, 0x7c);
			gBoxPowerAmplifier.Name = "gBoxPowerAmplifier";
			gBoxPowerAmplifier.Size = new Size(0x16c, 0x77);
			gBoxPowerAmplifier.TabIndex = 0;
			gBoxPowerAmplifier.TabStop = false;
			gBoxPowerAmplifier.Text = "Power Amplifier";
			gBoxPowerAmplifier.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxPowerAmplifier.MouseLeave += new EventHandler(control_MouseLeave);
			cBoxPaRamp.Items.AddRange(new object[] { "3400", "2000", "1000", "500", "250", "125", "100", "62", "50", "40", "31", "25", "20", "15", "12", "10" });
			cBoxPaRamp.Location = new Point(0xc0, 0x5e);
			cBoxPaRamp.Name = "cBoxPaRamp";
			cBoxPaRamp.Size = new Size(0x7c, 0x15);
			cBoxPaRamp.TabIndex = 2;
			cBoxPaRamp.SelectedIndexChanged += new EventHandler(cBoxPaRamp_SelectedIndexChanged);
			panel1.AutoSize = true;
			panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel1.Controls.Add(rBtnPaControlPa1Pa2);
			panel1.Controls.Add(rBtnPaControlPa1);
			panel1.Controls.Add(rBtnPaControlPa0);
			panel1.Location = new Point(0x41, 0x13);
			panel1.Name = "panel1";
			panel1.Size = new Size(0xeb, 0x45);
			panel1.TabIndex = 0;
			rBtnPaControlPa1Pa2.AutoSize = true;
			rBtnPaControlPa1Pa2.Location = new Point(3, 0x31);
			rBtnPaControlPa1Pa2.Name = "rBtnPaControlPa1Pa2";
			rBtnPaControlPa1Pa2.Size = new Size(0xe5, 0x11);
			rBtnPaControlPa1Pa2.TabIndex = 2;
			rBtnPaControlPa1Pa2.Text = "PA1 + PA2 -> Transmits on pin PA_BOOST";
			rBtnPaControlPa1Pa2.UseVisualStyleBackColor = true;
			rBtnPaControlPa1Pa2.CheckedChanged += new EventHandler(rBtnPaControl_CheckedChanged);
			rBtnPaControlPa1.AutoSize = true;
			rBtnPaControlPa1.Location = new Point(3, 0x1a);
			rBtnPaControlPa1.Name = "rBtnPaControlPa1";
			rBtnPaControlPa1.Size = new Size(0xc5, 0x11);
			rBtnPaControlPa1.TabIndex = 1;
			rBtnPaControlPa1.Text = "PA1 -> Transmits on pin PA_BOOST";
			rBtnPaControlPa1.UseVisualStyleBackColor = true;
			rBtnPaControlPa1.CheckedChanged += new EventHandler(rBtnPaControl_CheckedChanged);
			rBtnPaControlPa0.AutoSize = true;
			rBtnPaControlPa0.Checked = true;
			rBtnPaControlPa0.Location = new Point(3, 3);
			rBtnPaControlPa0.Name = "rBtnPaControlPa0";
			rBtnPaControlPa0.Size = new Size(0xa5, 0x11);
			rBtnPaControlPa0.TabIndex = 0;
			rBtnPaControlPa0.TabStop = true;
			rBtnPaControlPa0.Text = "PA0 -> Transmits on pin RFIO";
			rBtnPaControlPa0.UseVisualStyleBackColor = true;
			rBtnPaControlPa0.CheckedChanged += new EventHandler(rBtnPaControl_CheckedChanged);
			suffixPAramp.AutoSize = true;
			suffixPAramp.Location = new Point(0x142, 0x62);
			suffixPAramp.Name = "suffixPAramp";
			suffixPAramp.Size = new Size(0x12, 13);
			suffixPAramp.TabIndex = 3;
			suffixPAramp.Text = "\x00b5s";
			label3.AutoSize = true;
			label3.Location = new Point(6, 0x62);
			label3.Name = "label3";
			label3.Size = new Size(50, 13);
			label3.TabIndex = 1;
			label3.Text = "PA ramp:";
			base.AutoScaleDimensions = new SizeF(6f, 13f);
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(gBoxOverloadCurrentProtection);
			base.Controls.Add(gBoxOutputPower);
			base.Controls.Add(gBoxPowerAmplifier);
			base.Name = "TransmitterViewControl";
			base.Size = new Size(0x31f, 0x1ed);
			((ISupportInitialize)errorProvider).EndInit();
			gBoxOverloadCurrentProtection.ResumeLayout(false);
			gBoxOverloadCurrentProtection.PerformLayout();
			panel4.ResumeLayout(false);
			panel4.PerformLayout();
			nudOcpTrim.EndInit();
			gBoxOutputPower.ResumeLayout(false);
			gBoxOutputPower.PerformLayout();
			nudOutputPower.EndInit();
			gBoxPowerAmplifier.ResumeLayout(false);
			gBoxPowerAmplifier.PerformLayout();
			panel1.ResumeLayout(false);
			panel1.PerformLayout();
			base.ResumeLayout(false);
		}
Exemplo n.º 30
0
 private void Diseño_Forma()
 {
     pic_Logo = new System.Windows.Forms.PictureBox();
     components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Ingredientes_Empaques));
     menuStrip1 = new System.Windows.Forms.MenuStrip();
     archivoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     nuevoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     abrirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator = new System.Windows.Forms.ToolStripSeparator();
     guardarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     salirToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     editarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     modificarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     eliminarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     presentaciónToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     empaqueToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ayudaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     acercadeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     panel_Ingredientes = new System.Windows.Forms.Panel();
     lbl_Cantidad_Mpp = new System.Windows.Forms.Label();
     lbl_Cantidad_Mp = new System.Windows.Forms.Label();
     lbl_Cantidad_PElaborado = new System.Windows.Forms.Label();
     txt_SinRebaba = new System.Windows.Forms.TextBox();
     button5 = new System.Windows.Forms.Button();
     bttn_AgregarSinRebaba = new System.Windows.Forms.Button();
     txt_ConRebaba = new System.Windows.Forms.TextBox();
     bttn_QuitarConRebaba = new System.Windows.Forms.Button();
     bttn_AgregarConRebaba = new System.Windows.Forms.Button();
     txt_ProdElabCant = new System.Windows.Forms.TextBox();
     bttn_QuitarProdElab = new System.Windows.Forms.Button();
     bttn_AgregarProdElab = new System.Windows.Forms.Button();
     groupBox4 = new System.Windows.Forms.GroupBox();
     data_ListaSinRebaba = new System.Windows.Forms.DataGridView();
     Id_MateriaPrimaPp = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Nombre_p = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Cantidadp = new System.Windows.Forms.DataGridViewTextBoxColumn();
     groupBox3 = new System.Windows.Forms.GroupBox();
     data_SinRebaba = new System.Windows.Forms.DataGridView();
     groupBox5 = new System.Windows.Forms.GroupBox();
     data_ListaConRebaba = new System.Windows.Forms.DataGridView();
     Id_MateriaPrimam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Id_TipoPiezam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Lote = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Nombre_m = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Tipo_Pieza = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Cantidadm = new System.Windows.Forms.DataGridViewTextBoxColumn();
     groupBox2 = new System.Windows.Forms.GroupBox();
     data_ConRebaba = new System.Windows.Forms.DataGridView();
     groupBox6 = new System.Windows.Forms.GroupBox();
     data_ListaProdElab = new System.Windows.Forms.DataGridView();
     Id_ProductoElaboradoe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Nombree = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Cantidade = new System.Windows.Forms.DataGridViewTextBoxColumn();
     groupBox1 = new System.Windows.Forms.GroupBox();
     data_ProdElaborado = new System.Windows.Forms.DataGridView();
     errorProvider1 = new System.Windows.Forms.ErrorProvider(components);
     Id_MateriaPrimaP = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Nombrep = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Fotop = new System.Windows.Forms.DataGridViewImageColumn();
     Id_MateriaPrima = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Id_TipoPieza = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Nombrem = new System.Windows.Forms.DataGridViewTextBoxColumn();
     TipoPieza = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Lotem = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Fotom = new System.Windows.Forms.DataGridViewImageColumn();
     Id_ProductoElaborado = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Foto = new System.Windows.Forms.DataGridViewImageColumn();
     NombrePE = new System.Windows.Forms.DataGridViewTextBoxColumn();
     menuStrip1.SuspendLayout();
     panel_Ingredientes.SuspendLayout();
     groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_ListaSinRebaba)).BeginInit();
     groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_SinRebaba)).BeginInit();
     groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_ListaConRebaba)).BeginInit();
     groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_ConRebaba)).BeginInit();
     groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_ListaProdElab)).BeginInit();
     groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(data_ProdElaborado)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(errorProvider1)).BeginInit();
     SuspendLayout();
     //
     // menuStrip1
     //
     menuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(186)))), ((int)(((byte)(82)))));
     menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     archivoToolStripMenuItem,
     editarToolStripMenuItem,
     presentaciónToolStripMenuItem,
     ayudaToolStripMenuItem});
     menuStrip1.Location = new System.Drawing.Point(0, 0);
     menuStrip1.Name = "menuStrip1";
     menuStrip1.Size = new System.Drawing.Size(788, 24);
     menuStrip1.TabIndex = 4;
     menuStrip1.Text = "menuStrip1";
     //
     // archivoToolStripMenuItem
     //
     archivoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     nuevoToolStripMenuItem,
     abrirToolStripMenuItem,
     toolStripSeparator,
     guardarToolStripMenuItem,
     toolStripSeparator1,
     toolStripSeparator2,
     salirToolStripMenuItem});
     archivoToolStripMenuItem.Name = "archivoToolStripMenuItem";
     archivoToolStripMenuItem.Size = new System.Drawing.Size(55, 20);
     archivoToolStripMenuItem.Text = "&Archivo";
     //
     // nuevoToolStripMenuItem
     //
     nuevoToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("nuevoToolStripMenuItem.Image")));
     nuevoToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Nuevo;
     nuevoToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     nuevoToolStripMenuItem.Name = "nuevoToolStripMenuItem";
     nuevoToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
     nuevoToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     nuevoToolStripMenuItem.Text = "&Nuevo";
     nuevoToolStripMenuItem.Click += new System.EventHandler(nuevoToolStripMenuItem_Click);
     //
     // abrirToolStripMenuItem
     //
     abrirToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("abrirToolStripMenuItem.Image")));
     abrirToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Abrir;
     abrirToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     abrirToolStripMenuItem.Name = "abrirToolStripMenuItem";
     abrirToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     abrirToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     abrirToolStripMenuItem.Text = "&Abrir";
     //
     // toolStripSeparator
     //
     toolStripSeparator.Name = "toolStripSeparator";
     toolStripSeparator.Size = new System.Drawing.Size(148, 6);
     //
     // guardarToolStripMenuItem
     //
     guardarToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("guardarToolStripMenuItem.Image")));
     guardarToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Guardar;
     guardarToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
     guardarToolStripMenuItem.Name = "guardarToolStripMenuItem";
     guardarToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     guardarToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     guardarToolStripMenuItem.Text = "&Guardar";
     //
     // toolStripSeparator1
     //
     toolStripSeparator1.Name = "toolStripSeparator1";
     toolStripSeparator1.Size = new System.Drawing.Size(148, 6);
     //
     // toolStripSeparator2
     //
     toolStripSeparator2.Name = "toolStripSeparator2";
     toolStripSeparator2.Size = new System.Drawing.Size(148, 6);
     //
     // salirToolStripMenuItem
     //
     salirToolStripMenuItem.Name = "salirToolStripMenuItem";
     salirToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     salirToolStripMenuItem.Text = "&Salir";
     salirToolStripMenuItem.Click += new System.EventHandler(salirToolStripMenuItem_Click);
     //
     // editarToolStripMenuItem
     //
     editarToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     toolStripSeparator3,
     modificarToolStripMenuItem,
     eliminarToolStripMenuItem});
     editarToolStripMenuItem.Name = "editarToolStripMenuItem";
     editarToolStripMenuItem.Size = new System.Drawing.Size(47, 20);
     editarToolStripMenuItem.Text = "&Editar";
     //
     // toolStripSeparator3
     //
     toolStripSeparator3.Name = "toolStripSeparator3";
     toolStripSeparator3.Size = new System.Drawing.Size(114, 6);
     //
     // modificarToolStripMenuItem
     //
     modificarToolStripMenuItem.Enabled = false;
     modificarToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Modificar;
     modificarToolStripMenuItem.Name = "modificarToolStripMenuItem";
     modificarToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     modificarToolStripMenuItem.Text = "Modificar";
     //
     // eliminarToolStripMenuItem
     //
     eliminarToolStripMenuItem.Enabled = false;
     eliminarToolStripMenuItem.Image = global::Shajobe.Properties.Resources.Borrar;
     eliminarToolStripMenuItem.Name = "eliminarToolStripMenuItem";
     eliminarToolStripMenuItem.Size = new System.Drawing.Size(117, 22);
     eliminarToolStripMenuItem.Text = "Eliminar";
     //
     // presentaciónToolStripMenuItem
     //
     presentaciónToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     empaqueToolStripMenuItem});
     presentaciónToolStripMenuItem.Name = "presentaciónToolStripMenuItem";
     presentaciónToolStripMenuItem.Size = new System.Drawing.Size(81, 20);
     presentaciónToolStripMenuItem.Text = "Presentación";
     //
     // empaqueToolStripMenuItem
     //
     empaqueToolStripMenuItem.Name = "empaqueToolStripMenuItem";
     empaqueToolStripMenuItem.Size = new System.Drawing.Size(118, 22);
     empaqueToolStripMenuItem.Text = "Empaque";
     empaqueToolStripMenuItem.Click += new System.EventHandler(empaqueToolStripMenuItem_Click);
     //
     // ayudaToolStripMenuItem
     //
     ayudaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     acercadeToolStripMenuItem});
     ayudaToolStripMenuItem.Name = "ayudaToolStripMenuItem";
     ayudaToolStripMenuItem.Size = new System.Drawing.Size(50, 20);
     ayudaToolStripMenuItem.Text = "Ay&uda";
     //
     // acercadeToolStripMenuItem
     //
     acercadeToolStripMenuItem.Name = "acercadeToolStripMenuItem";
     acercadeToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
     acercadeToolStripMenuItem.Text = "&Acerca de...";
     //
     // panel_Ingredientes
     //
     panel_Ingredientes.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     panel_Ingredientes.Controls.Add(lbl_Cantidad_Mpp);
     panel_Ingredientes.Controls.Add(lbl_Cantidad_Mp);
     panel_Ingredientes.Controls.Add(lbl_Cantidad_PElaborado);
     panel_Ingredientes.Controls.Add(txt_SinRebaba);
     panel_Ingredientes.Controls.Add(button5);
     panel_Ingredientes.Controls.Add(bttn_AgregarSinRebaba);
     panel_Ingredientes.Controls.Add(txt_ConRebaba);
     panel_Ingredientes.Controls.Add(bttn_QuitarConRebaba);
     panel_Ingredientes.Controls.Add(bttn_AgregarConRebaba);
     panel_Ingredientes.Controls.Add(txt_ProdElabCant);
     panel_Ingredientes.Controls.Add(bttn_QuitarProdElab);
     panel_Ingredientes.Controls.Add(bttn_AgregarProdElab);
     panel_Ingredientes.Controls.Add(groupBox4);
     panel_Ingredientes.Controls.Add(groupBox3);
     panel_Ingredientes.Controls.Add(groupBox5);
     panel_Ingredientes.Controls.Add(groupBox2);
     panel_Ingredientes.Controls.Add(groupBox6);
     panel_Ingredientes.Controls.Add(groupBox1);
     panel_Ingredientes.Location = new System.Drawing.Point(-9, 27);
     panel_Ingredientes.Name = "panel_Ingredientes";
     panel_Ingredientes.Size = new System.Drawing.Size(804, 603);
     panel_Ingredientes.TabIndex = 5;
     //
     // lbl_Cantidad_Mpp
     //
     lbl_Cantidad_Mpp.AutoSize = true;
     lbl_Cantidad_Mpp.Location = new System.Drawing.Point(316, 466);
     lbl_Cantidad_Mpp.Name = "lbl_Cantidad_Mpp";
     lbl_Cantidad_Mpp.Size = new System.Drawing.Size(49, 13);
     lbl_Cantidad_Mpp.TabIndex = 17;
     lbl_Cantidad_Mpp.Text = "Cantidad";
     //
     // lbl_Cantidad_Mp
     //
     lbl_Cantidad_Mp.AutoSize = true;
     lbl_Cantidad_Mp.Location = new System.Drawing.Point(316, 261);
     lbl_Cantidad_Mp.Name = "lbl_Cantidad_Mp";
     lbl_Cantidad_Mp.Size = new System.Drawing.Size(49, 13);
     lbl_Cantidad_Mp.TabIndex = 16;
     lbl_Cantidad_Mp.Text = "Cantidad";
     //
     // lbl_Cantidad_PElaborado
     //
     lbl_Cantidad_PElaborado.AutoSize = true;
     lbl_Cantidad_PElaborado.Location = new System.Drawing.Point(316, 68);
     lbl_Cantidad_PElaborado.Name = "lbl_Cantidad_PElaborado";
     lbl_Cantidad_PElaborado.Size = new System.Drawing.Size(49, 13);
     lbl_Cantidad_PElaborado.TabIndex = 15;
     lbl_Cantidad_PElaborado.Text = "Cantidad";
     //
     // txt_SinRebaba
     //
     txt_SinRebaba.Location = new System.Drawing.Point(319, 482);
     txt_SinRebaba.MaxLength = 9;
     txt_SinRebaba.Name = "txt_SinRebaba";
     txt_SinRebaba.Size = new System.Drawing.Size(100, 20);
     txt_SinRebaba.TabIndex = 14;
     txt_SinRebaba.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_SinRebaba_KeyPress);
     //
     // button5
     //
     button5.Location = new System.Drawing.Point(448, 511);
     button5.Name = "button5";
     button5.Size = new System.Drawing.Size(75, 23);
     button5.TabIndex = 13;
     button5.Text = "<<";
     button5.UseVisualStyleBackColor = true;
     //
     // bttn_AgregarSinRebaba
     //
     bttn_AgregarSinRebaba.Location = new System.Drawing.Point(448, 482);
     bttn_AgregarSinRebaba.Name = "bttn_AgregarSinRebaba";
     bttn_AgregarSinRebaba.Size = new System.Drawing.Size(75, 23);
     bttn_AgregarSinRebaba.TabIndex = 12;
     bttn_AgregarSinRebaba.Text = ">>";
     bttn_AgregarSinRebaba.UseVisualStyleBackColor = true;
     bttn_AgregarSinRebaba.Click += new System.EventHandler(button6_Click);
     //
     // txt_ConRebaba
     //
     txt_ConRebaba.Location = new System.Drawing.Point(319, 277);
     txt_ConRebaba.MaxLength = 9;
     txt_ConRebaba.Name = "txt_ConRebaba";
     txt_ConRebaba.Size = new System.Drawing.Size(100, 20);
     txt_ConRebaba.TabIndex = 11;
     txt_ConRebaba.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_ConRebaba_KeyPress);
     //
     // bttn_QuitarConRebaba
     //
     bttn_QuitarConRebaba.Location = new System.Drawing.Point(448, 306);
     bttn_QuitarConRebaba.Name = "bttn_QuitarConRebaba";
     bttn_QuitarConRebaba.Size = new System.Drawing.Size(75, 23);
     bttn_QuitarConRebaba.TabIndex = 10;
     bttn_QuitarConRebaba.Text = "<<";
     bttn_QuitarConRebaba.UseVisualStyleBackColor = true;
     //
     // bttn_AgregarConRebaba
     //
     bttn_AgregarConRebaba.Location = new System.Drawing.Point(448, 277);
     bttn_AgregarConRebaba.Name = "bttn_AgregarConRebaba";
     bttn_AgregarConRebaba.Size = new System.Drawing.Size(75, 23);
     bttn_AgregarConRebaba.TabIndex = 9;
     bttn_AgregarConRebaba.Text = ">>";
     bttn_AgregarConRebaba.UseVisualStyleBackColor = true;
     bttn_AgregarConRebaba.Click += new System.EventHandler(bttn_AgregarConRebaba_Click);
     //
     // txt_ProdElabCant
     //
     txt_ProdElabCant.Location = new System.Drawing.Point(319, 84);
     txt_ProdElabCant.MaxLength = 9;
     txt_ProdElabCant.Name = "txt_ProdElabCant";
     txt_ProdElabCant.Size = new System.Drawing.Size(100, 20);
     txt_ProdElabCant.TabIndex = 8;
     txt_ProdElabCant.KeyPress += new System.Windows.Forms.KeyPressEventHandler(txt_ProdElabCant_KeyPress);
     //
     // bttn_QuitarProdElab
     //
     bttn_QuitarProdElab.Location = new System.Drawing.Point(448, 113);
     bttn_QuitarProdElab.Name = "bttn_QuitarProdElab";
     bttn_QuitarProdElab.Size = new System.Drawing.Size(75, 23);
     bttn_QuitarProdElab.TabIndex = 6;
     bttn_QuitarProdElab.Text = "<<";
     bttn_QuitarProdElab.UseVisualStyleBackColor = true;
     //
     // bttn_AgregarProdElab
     //
     bttn_AgregarProdElab.Location = new System.Drawing.Point(448, 84);
     bttn_AgregarProdElab.Name = "bttn_AgregarProdElab";
     bttn_AgregarProdElab.Size = new System.Drawing.Size(75, 23);
     bttn_AgregarProdElab.TabIndex = 5;
     bttn_AgregarProdElab.Text = ">>";
     bttn_AgregarProdElab.UseVisualStyleBackColor = true;
     bttn_AgregarProdElab.Click += new System.EventHandler(button1_Click);
     //
     // groupBox4
     //
     groupBox4.Controls.Add(data_ListaSinRebaba);
     groupBox4.Location = new System.Drawing.Point(529, 395);
     groupBox4.Name = "groupBox4";
     groupBox4.Size = new System.Drawing.Size(266, 200);
     groupBox4.TabIndex = 3;
     groupBox4.TabStop = false;
     groupBox4.Text = "Materia prima sin rebaba";
     //
     // data_ListaSinRebaba
     //
     data_ListaSinRebaba.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     data_ListaSinRebaba.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_ListaSinRebaba.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_MateriaPrimaPp,
     Nombre_p,
     Cantidadp});
     data_ListaSinRebaba.Location = new System.Drawing.Point(6, 18);
     data_ListaSinRebaba.Name = "data_ListaSinRebaba";
     data_ListaSinRebaba.Size = new System.Drawing.Size(254, 174);
     data_ListaSinRebaba.TabIndex = 24;
     //
     // Id_MateriaPrimaPp
     //
     Id_MateriaPrimaPp.HeaderText = "Id_MateriaPrimaP";
     Id_MateriaPrimaPp.Name = "Id_MateriaPrimaPp";
     Id_MateriaPrimaPp.Visible = false;
     //
     // Nombre_p
     //
     Nombre_p.HeaderText = "Nombre";
     Nombre_p.Name = "Nombre_p";
     //
     // Cantidadp
     //
     Cantidadp.HeaderText = "Cantidad";
     Cantidadp.Name = "Cantidadp";
     //
     // groupBox3
     //
     groupBox3.Controls.Add(data_SinRebaba);
     groupBox3.Location = new System.Drawing.Point(6, 396);
     groupBox3.Name = "groupBox3";
     groupBox3.Size = new System.Drawing.Size(266, 200);
     groupBox3.TabIndex = 1;
     groupBox3.TabStop = false;
     groupBox3.Text = "Materia prima sin rebaba";
     //
     // data_SinRebaba
     //
     data_SinRebaba.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     data_SinRebaba.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_SinRebaba.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_MateriaPrimaP,
     Nombrep,
     Fotop});
     data_SinRebaba.Location = new System.Drawing.Point(6, 17);
     data_SinRebaba.Name = "data_SinRebaba";
     data_SinRebaba.Size = new System.Drawing.Size(254, 174);
     data_SinRebaba.TabIndex = 21;
     //
     // groupBox5
     //
     groupBox5.Controls.Add(data_ListaConRebaba);
     groupBox5.Location = new System.Drawing.Point(529, 197);
     groupBox5.Name = "groupBox5";
     groupBox5.Size = new System.Drawing.Size(266, 200);
     groupBox5.TabIndex = 4;
     groupBox5.TabStop = false;
     groupBox5.Text = "Materia prima con rebaba";
     //
     // data_ListaConRebaba
     //
     data_ListaConRebaba.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_ListaConRebaba.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_MateriaPrimam,
     Id_TipoPiezam,
     Lote,
     Nombre_m,
     Tipo_Pieza,
     Cantidadm});
     data_ListaConRebaba.Location = new System.Drawing.Point(6, 19);
     data_ListaConRebaba.Name = "data_ListaConRebaba";
     data_ListaConRebaba.Size = new System.Drawing.Size(254, 174);
     data_ListaConRebaba.TabIndex = 23;
     //
     // Id_MateriaPrimam
     //
     Id_MateriaPrimam.HeaderText = "Id_MateriaPrima";
     Id_MateriaPrimam.Name = "Id_MateriaPrimam";
     Id_MateriaPrimam.Visible = false;
     //
     // Id_TipoPiezam
     //
     Id_TipoPiezam.HeaderText = "Id_TipoPieza";
     Id_TipoPiezam.Name = "Id_TipoPiezam";
     Id_TipoPiezam.Visible = false;
     //
     // Lote
     //
     Lote.HeaderText = "Lote";
     Lote.Name = "Lote";
     //
     // Nombre_m
     //
     Nombre_m.HeaderText = "Nombre";
     Nombre_m.Name = "Nombre_m";
     //
     // Tipo_Pieza
     //
     Tipo_Pieza.HeaderText = "Tipo pieza";
     Tipo_Pieza.Name = "Tipo_Pieza";
     //
     // Cantidadm
     //
     Cantidadm.HeaderText = "Cantidad";
     Cantidadm.Name = "Cantidadm";
     //
     // groupBox2
     //
     groupBox2.Controls.Add(data_ConRebaba);
     groupBox2.Location = new System.Drawing.Point(6, 198);
     groupBox2.Name = "groupBox2";
     groupBox2.Size = new System.Drawing.Size(266, 200);
     groupBox2.TabIndex = 1;
     groupBox2.TabStop = false;
     groupBox2.Text = "Materia prima con rebaba";
     //
     // data_ConRebaba
     //
     data_ConRebaba.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_ConRebaba.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_MateriaPrima,
     Id_TipoPieza,
     Nombrem,
     TipoPieza,
     Lotem,
     Fotom});
     data_ConRebaba.Location = new System.Drawing.Point(6, 18);
     data_ConRebaba.Name = "data_ConRebaba";
     data_ConRebaba.Size = new System.Drawing.Size(254, 174);
     data_ConRebaba.TabIndex = 20;
     //
     // groupBox6
     //
     groupBox6.Controls.Add(data_ListaProdElab);
     groupBox6.Location = new System.Drawing.Point(529, -2);
     groupBox6.Name = "groupBox6";
     groupBox6.Size = new System.Drawing.Size(266, 200);
     groupBox6.TabIndex = 2;
     groupBox6.TabStop = false;
     groupBox6.Text = "Productos elaborados";
     //
     // data_ListaProdElab
     //
     data_ListaProdElab.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     data_ListaProdElab.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_ListaProdElab.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_ProductoElaboradoe,
     Nombree,
     Cantidade});
     data_ListaProdElab.Location = new System.Drawing.Point(6, 19);
     data_ListaProdElab.Name = "data_ListaProdElab";
     data_ListaProdElab.Size = new System.Drawing.Size(254, 174);
     data_ListaProdElab.TabIndex = 22;
     //
     // Id_ProductoElaboradoe
     //
     Id_ProductoElaboradoe.HeaderText = "Id_ProductoElaborado";
     Id_ProductoElaboradoe.Name = "Id_ProductoElaboradoe";
     Id_ProductoElaboradoe.Visible = false;
     //
     // Nombree
     //
     Nombree.HeaderText = "Nombre";
     Nombree.Name = "Nombree";
     //
     // Cantidade
     //
     Cantidade.HeaderText = "Cantidad";
     Cantidade.Name = "Cantidade";
     //
     // groupBox1
     //
     groupBox1.Controls.Add(data_ProdElaborado);
     groupBox1.Location = new System.Drawing.Point(6, -1);
     groupBox1.Name = "groupBox1";
     groupBox1.Size = new System.Drawing.Size(266, 200);
     groupBox1.TabIndex = 0;
     groupBox1.TabStop = false;
     groupBox1.Text = "Productos elaborados";
     //
     // data_ProdElaborado
     //
     data_ProdElaborado.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     data_ProdElaborado.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     data_ProdElaborado.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_ProductoElaborado,
     Foto,
     NombrePE});
     data_ProdElaborado.Location = new System.Drawing.Point(6, 18);
     data_ProdElaborado.Name = "data_ProdElaborado";
     data_ProdElaborado.Size = new System.Drawing.Size(254, 174);
     data_ProdElaborado.TabIndex = 19;
     //
     // errorProvider1
     //
     errorProvider1.ContainerControl = this;
     //
     // Id_MateriaPrimaP
     //
     Id_MateriaPrimaP.HeaderText = "Id_MateriaPrimaP";
     Id_MateriaPrimaP.Name = "Id_MateriaPrimaP";
     Id_MateriaPrimaP.Visible = false;
     //
     // Nombrep
     //
     Nombrep.HeaderText = "Nombre";
     Nombrep.Name = "Nombrep";
     //
     // Fotop
     //
     Fotop.HeaderText = "Foto";
     Fotop.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Stretch;
     Fotop.MinimumWidth = 50;
     Fotop.Name = "Fotop";
     Fotop.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     Fotop.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     Fotop.Visible = false;
     //
     // Id_MateriaPrima
     //
     Id_MateriaPrima.HeaderText = "Id_MateriaPrima";
     Id_MateriaPrima.Name = "Id_MateriaPrima";
     Id_MateriaPrima.Visible = false;
     //
     // Id_TipoPieza
     //
     Id_TipoPieza.HeaderText = "Id_TipoPieza";
     Id_TipoPieza.Name = "Id_TipoPieza";
     Id_TipoPieza.Visible = false;
     //
     // Nombrem
     //
     Nombrem.HeaderText = "Nombre";
     Nombrem.Name = "Nombrem";
     //
     // TipoPieza
     //
     TipoPieza.HeaderText = "Tipo pieza";
     TipoPieza.Name = "TipoPieza";
     //
     // Lotem
     //
     Lotem.HeaderText = "Lote";
     Lotem.Name = "Lotem";
     //
     // Fotom
     //
     Fotom.HeaderText = "Foto";
     Fotom.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Stretch;
     Fotom.MinimumWidth = 50;
     Fotom.Name = "Fotom";
     Fotom.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     Fotom.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     Fotom.Visible = false;
     //
     // Id_ProductoElaborado
     //
     Id_ProductoElaborado.HeaderText = "Id_ProductoElaborado";
     Id_ProductoElaborado.Name = "Id_ProductoElaborado";
     Id_ProductoElaborado.Visible = false;
     //
     // Foto
     //
     Foto.HeaderText = "Foto";
     Foto.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Stretch;
     Foto.MinimumWidth = 50;
     Foto.Name = "Foto";
     Foto.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     Foto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     Foto.Visible = false;
     //
     // NombrePE
     //
     NombrePE.HeaderText = "Nombre";
     NombrePE.Name = "NombrePE";
     //
     // pic_Logo
     //
     pic_Logo.BackgroundImage = global::Shajobe.Properties.Resources.Logo_Shajobe;
     pic_Logo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     pic_Logo.Location = new System.Drawing.Point(90, 250);
     pic_Logo.Name = "pic_Logo";
     pic_Logo.Size = new System.Drawing.Size(156, 74);
     pic_Logo.TabIndex = 13;
     pic_Logo.TabStop = false;
     //
     // Ingredientes_Empaques
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(237)))), ((int)(((byte)(228)))), ((int)(((byte)(196)))));
     ClientSize = new System.Drawing.Size(788, 630);
     Controls.Add(panel_Ingredientes);
     Controls.Add(menuStrip1);
     MaximizeBox = false;
     Name = "Ingredientes_Empaques";
     Text = "Ingredientes empaques";
     Icon = global::Shajobe.Properties.Resources.Indirecto_ICO;
     Load += new System.EventHandler(Ingredientes_Empaques_Load);
     menuStrip1.ResumeLayout(false);
     menuStrip1.PerformLayout();
     panel_Ingredientes.ResumeLayout(false);
     panel_Ingredientes.PerformLayout();
     groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_ListaSinRebaba)).EndInit();
     groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_SinRebaba)).EndInit();
     groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_ListaConRebaba)).EndInit();
     groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_ConRebaba)).EndInit();
     groupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_ListaProdElab)).EndInit();
     groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(data_ProdElaborado)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(errorProvider1)).EndInit();
     AnimateWindow(Handle, 350, AnimateWindowFlags.AW_CENTER);
     AnimateWindow(Handle, 350, AnimateWindowFlags.AW_CENTER | AnimateWindowFlags.AW_SLIDE);
     ResumeLayout(false);
     PerformLayout();
 }
 private void InitializeComponent()
 {
     var dataGridViewCellStyle13 = new DataGridViewCellStyle();
     var dataGridViewCellStyle14 = new DataGridViewCellStyle();
     var dataGridViewCellStyle15 = new DataGridViewCellStyle();
     var dataGridViewCellStyle16 = new DataGridViewCellStyle();
     var dataGridViewCellStyle17 = new DataGridViewCellStyle();
     var dataGridViewCellStyle18 = new DataGridViewCellStyle();
     var dataGridViewCellStyle19 = new DataGridViewCellStyle();
     var dataGridViewCellStyle20 = new DataGridViewCellStyle();
     var dataGridViewCellStyle21 = new DataGridViewCellStyle();
     var dataGridViewCellStyle22 = new DataGridViewCellStyle();
     var dataGridViewCellStyle23 = new DataGridViewCellStyle();
     var dataGridViewCellStyle24 = new DataGridViewCellStyle();
     TabControl1 = new TabControl();
     TabAll = new TabPage();
     GridAllInvoices = new DataGridView();
     InvoiceType = new DataGridViewTextBoxColumn();
     Number = new DataGridViewTextBoxColumn();
     InvoiceDate = new DataGridViewTextBoxColumn();
     CustomerPurchaseOrderNumber = new DataGridViewTextBoxColumn();
     Customer = new DataGridViewCardLinkColumn();
     PromisedDate = new DataGridViewTextBoxColumn();
     BalanceDueAmount = new DataGridViewTextBoxColumn();
     Status = new DataGridViewTextBoxColumn();
     UID = new DataGridViewTextBoxColumn();
     URI = new DataGridViewTextBoxColumn();
     RowVersion = new DataGridViewTextBoxColumn();
     TabOpen = new TabPage();
     GridOpenInvoices = new DataGridView();
     DataGridViewTextBoxColumn1 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn2 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn3 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn4 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn5 = new DataGridViewCardLinkColumn();
     DataGridViewTextBoxColumn6 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn7 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn8 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn9 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn10 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn11 = new DataGridViewTextBoxColumn();
     TabCredit = new TabPage();
     GridCreditInvoices = new DataGridView();
     DataGridViewTextBoxColumn12 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn13 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn14 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn15 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn16 = new DataGridViewCardLinkColumn();
     DataGridViewTextBoxColumn17 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn18 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn19 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn20 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn21 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn22 = new DataGridViewTextBoxColumn();
     TabClosed = new TabPage();
     GridClosedInvoices = new DataGridView();
     DataGridViewTextBoxColumn23 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn24 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn25 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn26 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn27 = new DataGridViewCardLinkColumn();
     DataGridViewTextBoxColumn28 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn29 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn30 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn31 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn32 = new DataGridViewTextBoxColumn();
     DataGridViewTextBoxColumn33 = new DataGridViewTextBoxColumn();
     BtnNew = new Button();
     Panel1 = new Panel();
     BtnPageRight = new Button();
     TextPage = new TextBox();
     BtnPageLeft = new Button();
     TabControl1.SuspendLayout();
     TabAll.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(GridAllInvoices)).BeginInit();
     TabOpen.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(GridOpenInvoices)).BeginInit();
     TabCredit.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(GridCreditInvoices)).BeginInit();
     TabClosed.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(GridClosedInvoices)).BeginInit();
     Panel1.SuspendLayout();
     SuspendLayout();
     //
     // TabControl1
     //
     TabControl1.Anchor = ((AnchorStyles.Top | AnchorStyles.Bottom)
                           | AnchorStyles.Left)
                          | AnchorStyles.Right;
     TabControl1.Controls.Add(TabAll);
     TabControl1.Controls.Add(TabOpen);
     TabControl1.Controls.Add(TabCredit);
     TabControl1.Controls.Add(TabClosed);
     TabControl1.Location = new System.Drawing.Point(12, 12);
     TabControl1.Name = "TabControl1";
     TabControl1.SelectedIndex = 0;
     TabControl1.Size = new System.Drawing.Size(760, 509);
     TabControl1.TabIndex = 0;
     //
     // TabAll
     //
     TabAll.Controls.Add(GridAllInvoices);
     TabAll.Location = new System.Drawing.Point(4, 22);
     TabAll.Name = "TabAll";
     TabAll.Padding = new Padding(3);
     TabAll.Size = new System.Drawing.Size(752, 483);
     TabAll.TabIndex = 0;
     TabAll.Text = "All Invoices";
     TabAll.UseVisualStyleBackColor = true;
     //
     // GridAllInvoices
     //
     GridAllInvoices.AllowUserToAddRows = false;
     GridAllInvoices.AllowUserToDeleteRows = false;
     GridAllInvoices.Anchor = ((AnchorStyles.Top | AnchorStyles.Bottom)
                               | AnchorStyles.Left)
                              | AnchorStyles.Right;
     GridAllInvoices.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
     GridAllInvoices.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     GridAllInvoices.Columns.AddRange(new DataGridViewColumn[] {
     InvoiceType,
     Number,
     InvoiceDate,
     CustomerPurchaseOrderNumber,
     Customer,
     PromisedDate,
     BalanceDueAmount,
     Status,
     UID,
     URI,
     RowVersion});
     GridAllInvoices.Location = new System.Drawing.Point(3, 3);
     GridAllInvoices.Name = "GridAllInvoices";
     GridAllInvoices.Size = new System.Drawing.Size(746, 477);
     GridAllInvoices.TabIndex = 0;
     GridAllInvoices.CellContentDoubleClick += new DataGridViewCellEventHandler(GridAllInvoicesCellContentDoubleClick);
     //
     // InvoiceType
     //
     InvoiceType.DataPropertyName = "InvoiceType";
     InvoiceType.HeaderText = "Type";
     InvoiceType.Name = "InvoiceType";
     InvoiceType.Width = 56;
     //
     // Number
     //
     Number.DataPropertyName = "Number";
     Number.HeaderText = "Number";
     Number.Name = "Number";
     Number.Width = 69;
     //
     // InvoiceDate
     //
     InvoiceDate.DataPropertyName = "Date";
     dataGridViewCellStyle13.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle13.Format = "d";
     dataGridViewCellStyle13.NullValue = null;
     InvoiceDate.DefaultCellStyle = dataGridViewCellStyle13;
     InvoiceDate.HeaderText = "Date";
     InvoiceDate.Name = "InvoiceDate";
     InvoiceDate.Width = 55;
     //
     // CustomerPurchaseOrderNumber
     //
     CustomerPurchaseOrderNumber.DataPropertyName = "CustomerPurchaseOrderNumber";
     CustomerPurchaseOrderNumber.HeaderText = "CustomerPurchaseOrderNumber";
     CustomerPurchaseOrderNumber.Name = "CustomerPurchaseOrderNumber";
     CustomerPurchaseOrderNumber.SortMode = DataGridViewColumnSortMode.NotSortable;
     CustomerPurchaseOrderNumber.Visible = false;
     CustomerPurchaseOrderNumber.Width = 165;
     //
     // Customer
     //
     Customer.DataPropertyName = "Customer";
     Customer.HeaderText = "Customer";
     Customer.Name = "Customer";
     Customer.ReadOnly = true;
     Customer.Resizable = DataGridViewTriState.True;
     Customer.SortMode = DataGridViewColumnSortMode.Automatic;
     Customer.Width = 76;
     //
     // PromisedDate
     //
     PromisedDate.DataPropertyName = "PromisedDate";
     PromisedDate.HeaderText = "Promised Date";
     PromisedDate.Name = "PromisedDate";
     PromisedDate.SortMode = DataGridViewColumnSortMode.NotSortable;
     PromisedDate.Visible = false;
     PromisedDate.Width = 82;
     //
     // BalanceDueAmount
     //
     BalanceDueAmount.DataPropertyName = "BalanceDueAmount";
     dataGridViewCellStyle14.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle14.Format = "C2";
     dataGridViewCellStyle14.NullValue = null;
     BalanceDueAmount.DefaultCellStyle = dataGridViewCellStyle14;
     BalanceDueAmount.HeaderText = "Balance Due";
     BalanceDueAmount.Name = "BalanceDueAmount";
     BalanceDueAmount.Width = 94;
     //
     // Status
     //
     Status.DataPropertyName = "Status";
     dataGridViewCellStyle15.Alignment = DataGridViewContentAlignment.MiddleCenter;
     Status.DefaultCellStyle = dataGridViewCellStyle15;
     Status.HeaderText = "Status";
     Status.Name = "Status";
     Status.Width = 62;
     //
     // UID
     //
     UID.DataPropertyName = "UID";
     UID.HeaderText = "UID";
     UID.Name = "UID";
     UID.SortMode = DataGridViewColumnSortMode.NotSortable;
     UID.Visible = false;
     UID.Width = 32;
     //
     // URI
     //
     URI.DataPropertyName = "URI";
     URI.HeaderText = "URI";
     URI.Name = "URI";
     URI.SortMode = DataGridViewColumnSortMode.NotSortable;
     URI.Visible = false;
     URI.Width = 32;
     //
     // RowVersion
     //
     RowVersion.DataPropertyName = "RowVersion";
     RowVersion.HeaderText = "RowVersion";
     RowVersion.Name = "RowVersion";
     RowVersion.SortMode = DataGridViewColumnSortMode.NotSortable;
     RowVersion.Visible = false;
     RowVersion.Width = 70;
     //
     // TabOpen
     //
     TabOpen.Controls.Add(GridOpenInvoices);
     TabOpen.Location = new System.Drawing.Point(4, 22);
     TabOpen.Name = "TabOpen";
     TabOpen.Padding = new Padding(3);
     TabOpen.Size = new System.Drawing.Size(752, 483);
     TabOpen.TabIndex = 1;
     TabOpen.Text = "Open Invoices";
     TabOpen.UseVisualStyleBackColor = true;
     //
     // GridOpenInvoices
     //
     GridOpenInvoices.AllowUserToAddRows = false;
     GridOpenInvoices.AllowUserToDeleteRows = false;
     GridOpenInvoices.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
     GridOpenInvoices.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     GridOpenInvoices.Columns.AddRange(new DataGridViewColumn[] {
     DataGridViewTextBoxColumn1,
     DataGridViewTextBoxColumn2,
     DataGridViewTextBoxColumn3,
     DataGridViewTextBoxColumn4,
     DataGridViewTextBoxColumn5,
     DataGridViewTextBoxColumn6,
     DataGridViewTextBoxColumn7,
     DataGridViewTextBoxColumn8,
     DataGridViewTextBoxColumn9,
     DataGridViewTextBoxColumn10,
     DataGridViewTextBoxColumn11});
     GridOpenInvoices.Dock = DockStyle.Fill;
     GridOpenInvoices.Location = new System.Drawing.Point(3, 3);
     GridOpenInvoices.Name = "GridOpenInvoices";
     GridOpenInvoices.Size = new System.Drawing.Size(746, 477);
     GridOpenInvoices.TabIndex = 1;
     //
     // DataGridViewTextBoxColumn1
     //
     DataGridViewTextBoxColumn1.DataPropertyName = "InvoiceType";
     DataGridViewTextBoxColumn1.HeaderText = "Type";
     DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1";
     DataGridViewTextBoxColumn1.Width = 56;
     //
     // DataGridViewTextBoxColumn2
     //
     DataGridViewTextBoxColumn2.DataPropertyName = "Number";
     DataGridViewTextBoxColumn2.HeaderText = "Number";
     DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2";
     DataGridViewTextBoxColumn2.Width = 69;
     //
     // DataGridViewTextBoxColumn3
     //
     DataGridViewTextBoxColumn3.DataPropertyName = "Date";
     dataGridViewCellStyle16.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle16.Format = "d";
     dataGridViewCellStyle16.NullValue = null;
     DataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle16;
     DataGridViewTextBoxColumn3.HeaderText = "Date";
     DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3";
     DataGridViewTextBoxColumn3.Width = 55;
     //
     // DataGridViewTextBoxColumn4
     //
     DataGridViewTextBoxColumn4.DataPropertyName = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn4.HeaderText = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4";
     DataGridViewTextBoxColumn4.Visible = false;
     DataGridViewTextBoxColumn4.Width = 184;
     //
     // DataGridViewTextBoxColumn5
     //
     DataGridViewTextBoxColumn5.DataPropertyName = "Customer";
     DataGridViewTextBoxColumn5.HeaderText = "Customer";
     DataGridViewTextBoxColumn5.Name = "DataGridViewTextBoxColumn5";
     DataGridViewTextBoxColumn5.ReadOnly = true;
     DataGridViewTextBoxColumn5.Resizable = DataGridViewTriState.True;
     DataGridViewTextBoxColumn5.SortMode = DataGridViewColumnSortMode.Automatic;
     DataGridViewTextBoxColumn5.Width = 76;
     //
     // DataGridViewTextBoxColumn6
     //
     DataGridViewTextBoxColumn6.DataPropertyName = "PromisedDate";
     DataGridViewTextBoxColumn6.HeaderText = "Promised Date";
     DataGridViewTextBoxColumn6.Name = "DataGridViewTextBoxColumn6";
     DataGridViewTextBoxColumn6.Visible = false;
     DataGridViewTextBoxColumn6.Width = 101;
     //
     // DataGridViewTextBoxColumn7
     //
     DataGridViewTextBoxColumn7.DataPropertyName = "BalanceDueAmount";
     dataGridViewCellStyle17.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle17.Format = "C2";
     dataGridViewCellStyle17.NullValue = null;
     DataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle17;
     DataGridViewTextBoxColumn7.HeaderText = "Balance Due";
     DataGridViewTextBoxColumn7.Name = "DataGridViewTextBoxColumn7";
     DataGridViewTextBoxColumn7.Width = 94;
     //
     // DataGridViewTextBoxColumn8
     //
     DataGridViewTextBoxColumn8.DataPropertyName = "Status";
     dataGridViewCellStyle18.Alignment = DataGridViewContentAlignment.MiddleCenter;
     DataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle18;
     DataGridViewTextBoxColumn8.HeaderText = "Status";
     DataGridViewTextBoxColumn8.Name = "DataGridViewTextBoxColumn8";
     DataGridViewTextBoxColumn8.Width = 62;
     //
     // DataGridViewTextBoxColumn9
     //
     DataGridViewTextBoxColumn9.DataPropertyName = "UID";
     DataGridViewTextBoxColumn9.HeaderText = "UID";
     DataGridViewTextBoxColumn9.Name = "DataGridViewTextBoxColumn9";
     DataGridViewTextBoxColumn9.Visible = false;
     DataGridViewTextBoxColumn9.Width = 51;
     //
     // DataGridViewTextBoxColumn10
     //
     DataGridViewTextBoxColumn10.DataPropertyName = "URI";
     DataGridViewTextBoxColumn10.HeaderText = "URI";
     DataGridViewTextBoxColumn10.Name = "DataGridViewTextBoxColumn10";
     DataGridViewTextBoxColumn10.Visible = false;
     DataGridViewTextBoxColumn10.Width = 51;
     //
     // DataGridViewTextBoxColumn11
     //
     DataGridViewTextBoxColumn11.DataPropertyName = "RowVersion";
     DataGridViewTextBoxColumn11.HeaderText = "RowVersion";
     DataGridViewTextBoxColumn11.Name = "DataGridViewTextBoxColumn11";
     DataGridViewTextBoxColumn11.Visible = false;
     DataGridViewTextBoxColumn11.Width = 89;
     //
     // TabCredit
     //
     TabCredit.Controls.Add(GridCreditInvoices);
     TabCredit.Location = new System.Drawing.Point(4, 22);
     TabCredit.Name = "TabCredit";
     TabCredit.Padding = new Padding(3);
     TabCredit.Size = new System.Drawing.Size(752, 483);
     TabCredit.TabIndex = 3;
     TabCredit.Text = "Returns & Credits";
     TabCredit.UseVisualStyleBackColor = true;
     //
     // GridCreditInvoices
     //
     GridCreditInvoices.AllowUserToAddRows = false;
     GridCreditInvoices.AllowUserToDeleteRows = false;
     GridCreditInvoices.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
     GridCreditInvoices.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     GridCreditInvoices.Columns.AddRange(new DataGridViewColumn[] {
     DataGridViewTextBoxColumn12,
     DataGridViewTextBoxColumn13,
     DataGridViewTextBoxColumn14,
     DataGridViewTextBoxColumn15,
     DataGridViewTextBoxColumn16,
     DataGridViewTextBoxColumn17,
     DataGridViewTextBoxColumn18,
     DataGridViewTextBoxColumn19,
     DataGridViewTextBoxColumn20,
     DataGridViewTextBoxColumn21,
     DataGridViewTextBoxColumn22});
     GridCreditInvoices.Dock = DockStyle.Fill;
     GridCreditInvoices.Location = new System.Drawing.Point(3, 3);
     GridCreditInvoices.Name = "GridCreditInvoices";
     GridCreditInvoices.Size = new System.Drawing.Size(746, 477);
     GridCreditInvoices.TabIndex = 2;
     //
     // DataGridViewTextBoxColumn12
     //
     DataGridViewTextBoxColumn12.DataPropertyName = "InvoiceType";
     DataGridViewTextBoxColumn12.HeaderText = "Type";
     DataGridViewTextBoxColumn12.Name = "DataGridViewTextBoxColumn12";
     DataGridViewTextBoxColumn12.Width = 56;
     //
     // DataGridViewTextBoxColumn13
     //
     DataGridViewTextBoxColumn13.DataPropertyName = "Number";
     DataGridViewTextBoxColumn13.HeaderText = "Number";
     DataGridViewTextBoxColumn13.Name = "DataGridViewTextBoxColumn13";
     DataGridViewTextBoxColumn13.Width = 69;
     //
     // DataGridViewTextBoxColumn14
     //
     DataGridViewTextBoxColumn14.DataPropertyName = "Date";
     dataGridViewCellStyle19.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle19.Format = "d";
     dataGridViewCellStyle19.NullValue = null;
     DataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle19;
     DataGridViewTextBoxColumn14.HeaderText = "Date";
     DataGridViewTextBoxColumn14.Name = "DataGridViewTextBoxColumn14";
     DataGridViewTextBoxColumn14.Width = 55;
     //
     // DataGridViewTextBoxColumn15
     //
     DataGridViewTextBoxColumn15.DataPropertyName = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn15.HeaderText = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn15.Name = "DataGridViewTextBoxColumn15";
     DataGridViewTextBoxColumn15.Visible = false;
     DataGridViewTextBoxColumn15.Width = 184;
     //
     // DataGridViewTextBoxColumn16
     //
     DataGridViewTextBoxColumn16.DataPropertyName = "Customer";
     DataGridViewTextBoxColumn16.HeaderText = "Customer";
     DataGridViewTextBoxColumn16.Name = "DataGridViewTextBoxColumn16";
     DataGridViewTextBoxColumn16.ReadOnly = true;
     DataGridViewTextBoxColumn16.Resizable = DataGridViewTriState.True;
     DataGridViewTextBoxColumn16.SortMode = DataGridViewColumnSortMode.Automatic;
     DataGridViewTextBoxColumn16.Width = 76;
     //
     // DataGridViewTextBoxColumn17
     //
     DataGridViewTextBoxColumn17.DataPropertyName = "PromisedDate";
     DataGridViewTextBoxColumn17.HeaderText = "Promised Date";
     DataGridViewTextBoxColumn17.Name = "DataGridViewTextBoxColumn17";
     DataGridViewTextBoxColumn17.Visible = false;
     DataGridViewTextBoxColumn17.Width = 101;
     //
     // DataGridViewTextBoxColumn18
     //
     DataGridViewTextBoxColumn18.DataPropertyName = "BalanceDueAmount";
     dataGridViewCellStyle20.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle20.Format = "C2";
     dataGridViewCellStyle20.NullValue = null;
     DataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle20;
     DataGridViewTextBoxColumn18.HeaderText = "Balance Due";
     DataGridViewTextBoxColumn18.Name = "DataGridViewTextBoxColumn18";
     DataGridViewTextBoxColumn18.Width = 94;
     //
     // DataGridViewTextBoxColumn19
     //
     DataGridViewTextBoxColumn19.DataPropertyName = "Status";
     dataGridViewCellStyle21.Alignment = DataGridViewContentAlignment.MiddleCenter;
     DataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle21;
     DataGridViewTextBoxColumn19.HeaderText = "Status";
     DataGridViewTextBoxColumn19.Name = "DataGridViewTextBoxColumn19";
     DataGridViewTextBoxColumn19.Width = 62;
     //
     // DataGridViewTextBoxColumn20
     //
     DataGridViewTextBoxColumn20.DataPropertyName = "UID";
     DataGridViewTextBoxColumn20.HeaderText = "UID";
     DataGridViewTextBoxColumn20.Name = "DataGridViewTextBoxColumn20";
     DataGridViewTextBoxColumn20.Visible = false;
     DataGridViewTextBoxColumn20.Width = 51;
     //
     // DataGridViewTextBoxColumn21
     //
     DataGridViewTextBoxColumn21.DataPropertyName = "URI";
     DataGridViewTextBoxColumn21.HeaderText = "URI";
     DataGridViewTextBoxColumn21.Name = "DataGridViewTextBoxColumn21";
     DataGridViewTextBoxColumn21.Visible = false;
     DataGridViewTextBoxColumn21.Width = 51;
     //
     // DataGridViewTextBoxColumn22
     //
     DataGridViewTextBoxColumn22.DataPropertyName = "RowVersion";
     DataGridViewTextBoxColumn22.HeaderText = "RowVersion";
     DataGridViewTextBoxColumn22.Name = "DataGridViewTextBoxColumn22";
     DataGridViewTextBoxColumn22.Visible = false;
     DataGridViewTextBoxColumn22.Width = 89;
     //
     // TabClosed
     //
     TabClosed.Controls.Add(GridClosedInvoices);
     TabClosed.Location = new System.Drawing.Point(4, 22);
     TabClosed.Name = "TabClosed";
     TabClosed.Size = new System.Drawing.Size(752, 483);
     TabClosed.TabIndex = 2;
     TabClosed.Text = "Closed Invoices";
     TabClosed.UseVisualStyleBackColor = true;
     //
     // GridClosedInvoices
     //
     GridClosedInvoices.AllowUserToAddRows = false;
     GridClosedInvoices.AllowUserToDeleteRows = false;
     GridClosedInvoices.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.DisplayedCells;
     GridClosedInvoices.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     GridClosedInvoices.Columns.AddRange(new DataGridViewColumn[] {
     DataGridViewTextBoxColumn23,
     DataGridViewTextBoxColumn24,
     DataGridViewTextBoxColumn25,
     DataGridViewTextBoxColumn26,
     DataGridViewTextBoxColumn27,
     DataGridViewTextBoxColumn28,
     DataGridViewTextBoxColumn29,
     DataGridViewTextBoxColumn30,
     DataGridViewTextBoxColumn31,
     DataGridViewTextBoxColumn32,
     DataGridViewTextBoxColumn33});
     GridClosedInvoices.Dock = DockStyle.Fill;
     GridClosedInvoices.Location = new System.Drawing.Point(0, 0);
     GridClosedInvoices.Name = "GridClosedInvoices";
     GridClosedInvoices.Size = new System.Drawing.Size(752, 483);
     GridClosedInvoices.TabIndex = 3;
     //
     // DataGridViewTextBoxColumn23
     //
     DataGridViewTextBoxColumn23.DataPropertyName = "InvoiceType";
     DataGridViewTextBoxColumn23.HeaderText = "Type";
     DataGridViewTextBoxColumn23.Name = "DataGridViewTextBoxColumn23";
     DataGridViewTextBoxColumn23.Width = 56;
     //
     // DataGridViewTextBoxColumn24
     //
     DataGridViewTextBoxColumn24.DataPropertyName = "Number";
     DataGridViewTextBoxColumn24.HeaderText = "Number";
     DataGridViewTextBoxColumn24.Name = "DataGridViewTextBoxColumn24";
     DataGridViewTextBoxColumn24.Width = 69;
     //
     // DataGridViewTextBoxColumn25
     //
     DataGridViewTextBoxColumn25.DataPropertyName = "Date";
     dataGridViewCellStyle22.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle22.Format = "d";
     dataGridViewCellStyle22.NullValue = null;
     DataGridViewTextBoxColumn25.DefaultCellStyle = dataGridViewCellStyle22;
     DataGridViewTextBoxColumn25.HeaderText = "Date";
     DataGridViewTextBoxColumn25.Name = "DataGridViewTextBoxColumn25";
     DataGridViewTextBoxColumn25.Width = 55;
     //
     // DataGridViewTextBoxColumn26
     //
     DataGridViewTextBoxColumn26.DataPropertyName = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn26.HeaderText = "CustomerPurchaseOrderNumber";
     DataGridViewTextBoxColumn26.Name = "DataGridViewTextBoxColumn26";
     DataGridViewTextBoxColumn26.Visible = false;
     DataGridViewTextBoxColumn26.Width = 184;
     //
     // DataGridViewTextBoxColumn27
     //
     DataGridViewTextBoxColumn27.DataPropertyName = "Customer";
     DataGridViewTextBoxColumn27.HeaderText = "Customer";
     DataGridViewTextBoxColumn27.Name = "DataGridViewTextBoxColumn27";
     DataGridViewTextBoxColumn27.ReadOnly = true;
     DataGridViewTextBoxColumn27.Resizable = DataGridViewTriState.True;
     DataGridViewTextBoxColumn27.SortMode = DataGridViewColumnSortMode.Automatic;
     DataGridViewTextBoxColumn27.Width = 76;
     //
     // DataGridViewTextBoxColumn28
     //
     DataGridViewTextBoxColumn28.DataPropertyName = "PromisedDate";
     DataGridViewTextBoxColumn28.HeaderText = "Promised Date";
     DataGridViewTextBoxColumn28.Name = "DataGridViewTextBoxColumn28";
     DataGridViewTextBoxColumn28.Visible = false;
     DataGridViewTextBoxColumn28.Width = 101;
     //
     // DataGridViewTextBoxColumn29
     //
     DataGridViewTextBoxColumn29.DataPropertyName = "BalanceDueAmount";
     dataGridViewCellStyle23.Alignment = DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle23.Format = "C2";
     dataGridViewCellStyle23.NullValue = null;
     DataGridViewTextBoxColumn29.DefaultCellStyle = dataGridViewCellStyle23;
     DataGridViewTextBoxColumn29.HeaderText = "Balance Due";
     DataGridViewTextBoxColumn29.Name = "DataGridViewTextBoxColumn29";
     DataGridViewTextBoxColumn29.Width = 94;
     //
     // DataGridViewTextBoxColumn30
     //
     DataGridViewTextBoxColumn30.DataPropertyName = "Status";
     dataGridViewCellStyle24.Alignment = DataGridViewContentAlignment.MiddleCenter;
     DataGridViewTextBoxColumn30.DefaultCellStyle = dataGridViewCellStyle24;
     DataGridViewTextBoxColumn30.HeaderText = "Status";
     DataGridViewTextBoxColumn30.Name = "DataGridViewTextBoxColumn30";
     DataGridViewTextBoxColumn30.Width = 62;
     //
     // DataGridViewTextBoxColumn31
     //
     DataGridViewTextBoxColumn31.DataPropertyName = "UID";
     DataGridViewTextBoxColumn31.HeaderText = "UID";
     DataGridViewTextBoxColumn31.Name = "DataGridViewTextBoxColumn31";
     DataGridViewTextBoxColumn31.Visible = false;
     DataGridViewTextBoxColumn31.Width = 51;
     //
     // DataGridViewTextBoxColumn32
     //
     DataGridViewTextBoxColumn32.DataPropertyName = "URI";
     DataGridViewTextBoxColumn32.HeaderText = "URI";
     DataGridViewTextBoxColumn32.Name = "DataGridViewTextBoxColumn32";
     DataGridViewTextBoxColumn32.Visible = false;
     DataGridViewTextBoxColumn32.Width = 51;
     //
     // DataGridViewTextBoxColumn33
     //
     DataGridViewTextBoxColumn33.DataPropertyName = "RowVersion";
     DataGridViewTextBoxColumn33.HeaderText = "RowVersion";
     DataGridViewTextBoxColumn33.Name = "DataGridViewTextBoxColumn33";
     DataGridViewTextBoxColumn33.Visible = false;
     DataGridViewTextBoxColumn33.Width = 89;
     //
     // BtnNew
     //
     BtnNew.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Right)));
     BtnNew.Location = new System.Drawing.Point(616, 527);
     BtnNew.Name = "BtnNew";
     BtnNew.Size = new System.Drawing.Size(75, 23);
     BtnNew.TabIndex = 3;
     BtnNew.Text = "&New";
     BtnNew.UseVisualStyleBackColor = true;
     BtnNew.Click += new System.EventHandler(BtnNewClick);
     //
     // Panel1
     //
     Panel1.Anchor = ((AnchorStyles)((AnchorStyles.Bottom | AnchorStyles.Left)));
     Panel1.BorderStyle = BorderStyle.FixedSingle;
     Panel1.Controls.Add(BtnPageRight);
     Panel1.Controls.Add(TextPage);
     Panel1.Controls.Add(BtnPageLeft);
     Panel1.Location = new System.Drawing.Point(16, 528);
     Panel1.Name = "Panel1";
     Panel1.Size = new System.Drawing.Size(147, 22);
     Panel1.TabIndex = 4;
     //
     // BtnPageRight
     //
     BtnPageRight.Location = new System.Drawing.Point(115, 0);
     BtnPageRight.Margin = new Padding(0);
     BtnPageRight.Name = "BtnPageRight";
     BtnPageRight.Size = new System.Drawing.Size(30, 20);
     BtnPageRight.TabIndex = 2;
     BtnPageRight.Text = ">";
     BtnPageRight.UseVisualStyleBackColor = true;
     BtnPageRight.Click += new System.EventHandler(BtnPageRightClick);
     //
     // TextPage
     //
     TextPage.BackColor = System.Drawing.Color.White;
     TextPage.Location = new System.Drawing.Point(31, 0);
     TextPage.Name = "TextPage";
     TextPage.ReadOnly = true;
     TextPage.Size = new System.Drawing.Size(84, 20);
     TextPage.TabIndex = 1;
     TextPage.TextAlign = HorizontalAlignment.Center;
     //
     // BtnPageLeft
     //
     BtnPageLeft.Location = new System.Drawing.Point(0, 0);
     BtnPageLeft.Margin = new Padding(0);
     BtnPageLeft.Name = "BtnPageLeft";
     BtnPageLeft.Size = new System.Drawing.Size(30, 20);
     BtnPageLeft.TabIndex = 0;
     BtnPageLeft.Text = "<";
     BtnPageLeft.UseVisualStyleBackColor = true;
     BtnPageLeft.Click += new System.EventHandler(BtnPageLeftClick);
     //
     // InvoiceListForm
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     ClientSize = new System.Drawing.Size(784, 562);
     Controls.Add(Panel1);
     Controls.Add(BtnNew);
     Controls.Add(TabControl1);
     Name = "InvoiceListForm";
     Text = "Invoice List";
     Load += new System.EventHandler(InvoiceListFormLoad);
     Controls.SetChildIndex(TabControl1, 0);
     Controls.SetChildIndex(BtnNew, 0);
     Controls.SetChildIndex(Panel1, 0);
     TabControl1.ResumeLayout(false);
     TabAll.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(GridAllInvoices)).EndInit();
     TabOpen.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(GridOpenInvoices)).EndInit();
     TabCredit.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(GridCreditInvoices)).EndInit();
     TabClosed.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(GridClosedInvoices)).EndInit();
     Panel1.ResumeLayout(false);
     Panel1.PerformLayout();
     ResumeLayout(false);
     PerformLayout();
 }
Exemplo n.º 32
0
        public static List <Panel> getNivPanels(List <NIV> nivlist)
        {
            int          counter   = 0;
            List <Panel> panelList = new List <Panel>();

            foreach (var thisNiv in nivlist)
            {
                counter++;


                System.Windows.Forms.Panel panel1 = new System.Windows.Forms.Panel();
                panel1.Name = "nivPanel" + counter;
                panel1.SuspendLayout();
                //instantiate items
                System.Windows.Forms.TextBox textBox1 = new System.Windows.Forms.TextBox();
                textBox1.Name = "stopnivU" + counter;
                System.Windows.Forms.TextBox textBox2 = new System.Windows.Forms.TextBox();
                textBox2.Name = "startnivU" + counter;
                System.Windows.Forms.DateTimePicker dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
                dateTimePicker1.Name = "stopniv" + counter;
                System.Windows.Forms.DateTimePicker dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
                dateTimePicker2.Name = "startniv" + counter;
                System.Windows.Forms.Label label1 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label2 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label3 = new System.Windows.Forms.Label();
                //initiate items
                textBox1.Location = new System.Drawing.Point(195, 23);

                textBox1.Size     = new System.Drawing.Size(39, 20);
                textBox1.TabIndex = 51;
                textBox1.Text     = thisNiv.Stop.TimeOfDay.ToString("hh\\:mm");

                textBox2.Location = new System.Drawing.Point(195, 3);

                textBox2.Size     = new System.Drawing.Size(39, 20);
                textBox2.TabIndex = 50;
                textBox2.Text     = thisNiv.Start.TimeOfDay.ToString("hh\\:mm");

                dateTimePicker1.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
                dateTimePicker1.Location = new System.Drawing.Point(106, 23);

                dateTimePicker1.Size     = new System.Drawing.Size(83, 20);
                dateTimePicker1.TabIndex = 49;

                if (thisNiv.Stop.Date < new DateTime(1753, 1, 1, 0, 0, 0))
                {
                    dateTimePicker1.Text = DateTime.Now.ToString("dd/MM/yyyy");
                }
                else
                {
                    dateTimePicker1.Text = thisNiv.Stop.Date.ToString("dd/MM/yyyy");
                }

                dateTimePicker2.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
                dateTimePicker2.Location = new System.Drawing.Point(106, 3);

                dateTimePicker2.Size     = new System.Drawing.Size(83, 20);
                dateTimePicker2.TabIndex = 48;

                dateTimePicker2.Text = thisNiv.Start.Date.ToString("dd/MM/yyyy");

                label1.AutoSize = true;
                label1.Location = new System.Drawing.Point(38, 28);
                label1.Name     = "label1";
                label1.Size     = new System.Drawing.Size(62, 13);
                label1.TabIndex = 47;
                label1.Text     = "datum stop:";

                label2.AutoSize = true;
                label2.Location = new System.Drawing.Point(38, 3);
                label2.Name     = "label2";
                label2.Size     = new System.Drawing.Size(62, 13);
                label2.TabIndex = 46;
                label2.Text     = "datum start:";

                label3.AutoSize = true;
                label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
                label3.Location = new System.Drawing.Point(-4, 3);
                label3.Name     = "label3";
                label3.Size     = new System.Drawing.Size(36, 39);
                label3.TabIndex = 45;
                label3.Text     = Convert.ToString(counter);
                //add to panel
                panel1.Controls.Add(textBox1);
                panel1.Controls.Add(textBox2);
                panel1.Controls.Add(dateTimePicker1);
                panel1.Controls.Add(dateTimePicker2);
                panel1.Controls.Add(label1);
                panel1.Controls.Add(label2);
                panel1.Controls.Add(label3);
                panel1.Location = new System.Drawing.Point(3, 3);
                panel1.Name     = "panel" + counter;
                panel1.Size     = new System.Drawing.Size(243, 59);
                panel1.TabIndex = 0;

                panel1.ResumeLayout(false);
                panel1.PerformLayout();
                panelList.Add(panel1);
            }

            counter++;

            System.Windows.Forms.Panel panel2 = new System.Windows.Forms.Panel();
            panel2.SuspendLayout();
            //instantiate items
            System.Windows.Forms.TextBox textBox3 = new System.Windows.Forms.TextBox();
            textBox3.Name = "stopnivU" + counter;
            System.Windows.Forms.TextBox textBox4 = new System.Windows.Forms.TextBox();
            textBox4.Name = "startnivU" + counter;
            System.Windows.Forms.DateTimePicker dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
            dateTimePicker3.Name = "stopniv" + counter;
            System.Windows.Forms.DateTimePicker dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
            dateTimePicker4.Name = "startniv" + counter;
            System.Windows.Forms.Label label4 = new System.Windows.Forms.Label();
            System.Windows.Forms.Label label5 = new System.Windows.Forms.Label();
            System.Windows.Forms.Label label6 = new System.Windows.Forms.Label();
            //initiate items
            textBox3.Location = new System.Drawing.Point(195, 23);

            textBox3.Size     = new System.Drawing.Size(39, 20);
            textBox3.TabIndex = 51;

            textBox4.Location = new System.Drawing.Point(195, 3);

            textBox4.Size     = new System.Drawing.Size(39, 20);
            textBox4.TabIndex = 50;

            dateTimePicker3.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
            dateTimePicker3.Location = new System.Drawing.Point(106, 23);

            dateTimePicker3.Size     = new System.Drawing.Size(83, 20);
            dateTimePicker3.TabIndex = 49;

            dateTimePicker4.Format   = System.Windows.Forms.DateTimePickerFormat.Short;
            dateTimePicker4.Location = new System.Drawing.Point(106, 3);

            dateTimePicker4.Size     = new System.Drawing.Size(83, 20);
            dateTimePicker4.TabIndex = 48;

            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(38, 28);
            label4.Name     = "label1";
            label4.Size     = new System.Drawing.Size(62, 13);
            label4.TabIndex = 47;
            label4.Text     = "datum stop:";

            label5.AutoSize = true;
            label5.Location = new System.Drawing.Point(38, 3);
            label5.Name     = "label2";
            label5.Size     = new System.Drawing.Size(62, 13);
            label5.TabIndex = 46;
            label5.Text     = "datum start:";

            label6.AutoSize = true;
            label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 26.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            label6.Location = new System.Drawing.Point(-4, 3);
            label6.Name     = "label3";
            label6.Size     = new System.Drawing.Size(36, 39);
            label6.TabIndex = 45;
            label6.Text     = Convert.ToString(counter);
            //add to panel
            panel2.Controls.Add(textBox3);
            panel2.Controls.Add(textBox4);
            panel2.Controls.Add(dateTimePicker3);
            panel2.Controls.Add(dateTimePicker4);
            panel2.Controls.Add(label4);
            panel2.Controls.Add(label5);
            panel2.Controls.Add(label6);
            panel2.Location = new System.Drawing.Point(3, 3);
            panel2.Name     = "panel" + counter;
            panel2.Size     = new System.Drawing.Size(243, 59);
            panel2.TabIndex = 0;

            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            panelList.Add(panel2);


            return(panelList);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     OkBTN      = new System.Windows.Forms.Button();
     CancelBTN  = new System.Windows.Forms.Button();
     ButtonsPN  = new System.Windows.Forms.Panel();
     UserNameLB = new System.Windows.Forms.Label();
     TopPN      = new System.Windows.Forms.Panel();
     AddressTB  = new System.Windows.Forms.TextBox();
     ButtonsPN.SuspendLayout();
     TopPN.SuspendLayout();
     SuspendLayout();
     //
     // OkBTN
     //
     OkBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     OkBTN.DialogResult = System.Windows.Forms.DialogResult.OK;
     OkBTN.Location     = new System.Drawing.Point(111, 8);
     OkBTN.Name         = "OkBTN";
     OkBTN.Size         = new System.Drawing.Size(75, 23);
     OkBTN.TabIndex     = 1;
     OkBTN.Text         = "OK";
     //
     // CancelBTN
     //
     CancelBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     CancelBTN.Location     = new System.Drawing.Point(192, 8);
     CancelBTN.Name         = "CancelBTN";
     CancelBTN.Size         = new System.Drawing.Size(75, 23);
     CancelBTN.TabIndex     = 0;
     CancelBTN.Text         = "Cancel";
     //
     // ButtonsPN
     //
     ButtonsPN.Controls.Add(CancelBTN);
     ButtonsPN.Controls.Add(OkBTN);
     ButtonsPN.Dock     = System.Windows.Forms.DockStyle.Bottom;
     ButtonsPN.Location = new System.Drawing.Point(0, 26);
     ButtonsPN.Name     = "ButtonsPN";
     ButtonsPN.Size     = new System.Drawing.Size(272, 36);
     ButtonsPN.TabIndex = 0;
     //
     // UserNameLB
     //
     UserNameLB.Location  = new System.Drawing.Point(4, 4);
     UserNameLB.Name      = "UserNameLB";
     UserNameLB.Size      = new System.Drawing.Size(28, 23);
     UserNameLB.TabIndex  = 0;
     UserNameLB.Text      = "URL";
     UserNameLB.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TopPN
     //
     TopPN.Controls.Add(AddressTB);
     TopPN.Controls.Add(UserNameLB);
     TopPN.Dock     = System.Windows.Forms.DockStyle.Fill;
     TopPN.Location = new System.Drawing.Point(0, 0);
     TopPN.Name     = "TopPN";
     TopPN.Padding  = new System.Windows.Forms.Padding(4, 4, 4, 0);
     TopPN.Size     = new System.Drawing.Size(272, 62);
     TopPN.TabIndex = 1;
     //
     // AddressTB
     //
     AddressTB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                              | System.Windows.Forms.AnchorStyles.Right)));
     AddressTB.Location = new System.Drawing.Point(36, 5);
     AddressTB.Name     = "AddressTB";
     AddressTB.Size     = new System.Drawing.Size(232, 20);
     AddressTB.TabIndex = 1;
     //
     // ProxyServerDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     CancelButton      = CancelBTN;
     ClientSize        = new System.Drawing.Size(272, 62);
     Controls.Add(ButtonsPN);
     Controls.Add(TopPN);
     Name          = "ProxyServerDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Set Proxy Server";
     ButtonsPN.ResumeLayout(false);
     TopPN.ResumeLayout(false);
     TopPN.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 34
0
 private void PermisosToolStripMenuItem_Click(object sender, EventArgs e)
 {
     #region Creando controles de panel de permisos
     panel_Permisos = new System.Windows.Forms.Panel();
     bttn_Agregar = new System.Windows.Forms.Button();
     bttn_Quitar = new System.Windows.Forms.Button();
     dataGridView_Menu = new System.Windows.Forms.DataGridView();
     dataGridView_Permisos = new System.Windows.Forms.DataGridView();
     Id_Menu = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Menu1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Id_MenuP = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Permiso = new System.Windows.Forms.DataGridViewTextBoxColumn();
     comboBox_TipoUsuario = new System.Windows.Forms.ComboBox();
     lbl_STipo_Usuario = new System.Windows.Forms.Label();
     label1 = new System.Windows.Forms.Label();
     panel_Permisos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dataGridView_Menu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(dataGridView_Permisos)).BeginInit();
     SuspendLayout();
     //
     // panel_Permisos
     //
     panel_Permisos.Controls.Add(label1);
     panel_Permisos.Controls.Add(lbl_STipo_Usuario);
     panel_Permisos.Controls.Add(comboBox_TipoUsuario);
     panel_Permisos.Controls.Add(dataGridView_Permisos);
     panel_Permisos.Controls.Add(dataGridView_Menu);
     panel_Permisos.Controls.Add(bttn_Quitar);
     panel_Permisos.Controls.Add(bttn_Agregar);
     panel_Permisos.Location = new System.Drawing.Point(33, 21);
     panel_Permisos.Name = "panel_Permisos";
     panel_Permisos.Size = new System.Drawing.Size(370, 247);
     panel_Permisos.TabIndex = 0;
     //
     // bttn_Agregar
     //
     bttn_Agregar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     bttn_Agregar.Location = new System.Drawing.Point(148, 89);
     bttn_Agregar.Name = "bttn_Agregar";
     bttn_Agregar.Size = new System.Drawing.Size(75, 23);
     bttn_Agregar.TabIndex = 0;
     bttn_Agregar.Text = ">>";
     bttn_Agregar.Click += new System.EventHandler(bttn_Agregar_Click);
     bttn_Agregar.UseVisualStyleBackColor = true;
     //
     // bttn_Quitar
     //
     bttn_Quitar.Location = new System.Drawing.Point(148, 118);
     bttn_Quitar.Name = "bttn_Quitar";
     bttn_Quitar.Size = new System.Drawing.Size(75, 23);
     bttn_Quitar.TabIndex = 1;
     bttn_Quitar.Text = "<<";
     bttn_Quitar.Click += new System.EventHandler(bttn_Quitar_Click);
     bttn_Quitar.UseVisualStyleBackColor = true;
     //
     // dataGridView_Menu
     //
     dataGridView_Menu.AllowUserToAddRows = false;
     dataGridView_Menu.AllowUserToDeleteRows = false;
     dataGridView_Menu.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridView_Menu.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_Menu,
     Menu1});
     dataGridView_Menu.Location = new System.Drawing.Point(3, 36);
     dataGridView_Menu.Name = "dataGridView_Menu";
     dataGridView_Menu.ReadOnly = true;
     dataGridView_Menu.Size = new System.Drawing.Size(133, 205);
     dataGridView_Menu.TabIndex = 2;
     //
     // dataGridView_Permisos
     //
     dataGridView_Permisos.AllowUserToAddRows = false;
     dataGridView_Permisos.AllowUserToDeleteRows = false;
     dataGridView_Permisos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridView_Permisos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Id_MenuP,
     Permiso});
     dataGridView_Permisos.Location = new System.Drawing.Point(234, 36);
     dataGridView_Permisos.Name = "dataGridView_Permisos";
     dataGridView_Permisos.ReadOnly = true;
     dataGridView_Permisos.Size = new System.Drawing.Size(133, 205);
     dataGridView_Permisos.TabIndex = 3;
     //
     // Id_Menu
     //
     Id_Menu.HeaderText = "Id_Menu";
     Id_Menu.Name = "Id_Menu";
     Id_Menu.ReadOnly = true;
     Id_Menu.Visible = false;
     //
     // Menu
     //
     Menu1.HeaderText = "Menu";
     Menu1.Name = "Menu1";
     Menu1.ReadOnly = true;
     //
     // Id_MenuP
     //
     Id_MenuP.HeaderText = "Id_MenuP";
     Id_MenuP.Name = "Id_MenuP";
     Id_MenuP.ReadOnly = true;
     Id_MenuP.Visible = false;
     //
     // Permiso
     //
     Permiso.HeaderText = "Permiso";
     Permiso.Name = "Permiso";
     Permiso.ReadOnly = true;
     //
     // comboBox_TipoUsuario
     //
     comboBox_TipoUsuario.FormattingEnabled = true;
     comboBox_TipoUsuario.Location = new System.Drawing.Point(82, 10);
     comboBox_TipoUsuario.Name = "comboBox_TipoUsuario";
     comboBox_TipoUsuario.Size = new System.Drawing.Size(121, 21);
     comboBox_TipoUsuario.KeyPress += new KeyPressEventHandler(NoescrituracomboBox_KeyPress);
     comboBox_TipoUsuario.SelectedIndexChanged += new System.EventHandler(Permisos_SelectedIndexChanged);
     comboBox_TipoUsuario.TabIndex = 4;
     //
     // lbl_STipo_Usuario
     //
     lbl_STipo_Usuario.AutoSize = true;
     lbl_STipo_Usuario.FlatStyle = System.Windows.Forms.FlatStyle.System;
     lbl_STipo_Usuario.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     lbl_STipo_Usuario.Location = new System.Drawing.Point(3, 13);
     lbl_STipo_Usuario.Name = "lbl_STipo_Usuario";
     lbl_STipo_Usuario.Size = new System.Drawing.Size(80, 13);
     lbl_STipo_Usuario.TabIndex = 5;
     lbl_STipo_Usuario.Text = "Tipo de usuario";
     //
     // label1
     //
     label1.FlatStyle = System.Windows.Forms.FlatStyle.System;
     label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.ForeColor = System.Drawing.Color.Black;
     label1.Location = new System.Drawing.Point(235, 3);
     label1.Name = "label1";
     label1.Size = new System.Drawing.Size(132, 33);
     label1.TabIndex = 6;
     label1.Text = "Panel de asignación de permisos";
     //
     // Form1
     //
     Controls.Add(panel_Permisos);
     panel_Permisos.ResumeLayout(false);
     panel_Permisos.PerformLayout();
     panel_Permisos.BorderStyle = BorderStyle.FixedSingle;
     //groupBoxdatos.SendToBack();
     //pic_Logo.SendToBack();
     //pic_TipoUsuario.SendToBack();
     panel_Permisos.BringToFront();
     #endregion
     try
     {
         //Quito el panel de busqueda
         Controls.Remove(panel_Busqueda);
     }
     catch (Exception)
     {
         //En caso de que no existe todavia el panel de busqueda
         //omite la instrucción de quitar dicho control
     }
     //Llenando controles
     Llenando_DataGridViewMenus();
     Llenando_ComboboxTipoUsuario();
     eliminarToolStripMenuItem.Enabled = true;
     modificarToolStripMenuItem.Enabled = true;
     Tipo_Diseño = true;
 }
 private void InitializeComponent()
 {
     panel1 = new Panel();
     CancelButton = new Button();
     OkButton = new Button();
     label1 = new Label();
     panel2 = new Panel();
     columnsListTextBox = new TextBox();
     panel1.SuspendLayout();
     panel2.SuspendLayout();
     SuspendLayout();
     // 
     // panel1
     // 
     panel1.Controls.Add(CancelButton);
     panel1.Controls.Add(OkButton);
     panel1.Controls.Add(label1);
     panel1.Dock = DockStyle.Bottom;
     panel1.Location = new Point(0, 218);
     panel1.Name = "panel1";
     panel1.Size = new Size(292, 55);
     panel1.TabIndex = 0;
     // 
     // CancelButton
     // 
     CancelButton.Location = new Point(214, 29);
     CancelButton.Name = "CancelButton";
     CancelButton.Size = new Size(75, 23);
     CancelButton.TabIndex = 2;
     CancelButton.Text = "Cancel";
     CancelButton.UseVisualStyleBackColor = true;
     CancelButton.Click += CancelButtonClick;
     // 
     // OkButton
     // 
     OkButton.Location = new Point(133, 29);
     OkButton.Name = "OkButton";
     OkButton.Size = new Size(75, 23);
     OkButton.TabIndex = 1;
     OkButton.Text = "Ok";
     OkButton.UseVisualStyleBackColor = true;
     OkButton.Click += OkButtonClick;
     // 
     // label1
     // 
     label1.AutoSize = true;
     label1.Location = new Point(4, 4);
     label1.Name = "label1";
     label1.Size = new Size(181, 13);
     label1.TabIndex = 0;
     label1.Text = "Enter ignored Columns(One Per Line)";
     // 
     // panel2
     // 
     panel2.Controls.Add(columnsListTextBox);
     panel2.Dock = DockStyle.Fill;
     panel2.Location = new Point(0, 0);
     panel2.Name = "panel2";
     panel2.Size = new Size(292, 218);
     panel2.TabIndex = 1;
     // 
     // columnsListTextBox
     // 
     columnsListTextBox.Dock = DockStyle.Fill;
     columnsListTextBox.Location = new Point(0, 0);
     columnsListTextBox.Multiline = true;
     columnsListTextBox.Name = "columnsListTextBox";
     columnsListTextBox.Size = new Size(292, 218);
     columnsListTextBox.TabIndex = 0;
     // 
     // IgnoredColumnsForm
     // 
     ClientSize = new Size(292, 273);
     Controls.Add(panel2);
     Controls.Add(panel1);
     Name = "IgnoredColumnsForm";
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 36
0
		private void InitializeComponent()
		{
			components = new Container();
			errorProvider = new ErrorProvider(components);
			label4 = new Label();
			lblAGC = new Label();
			panel3 = new Panel();
			rBtnLnaZin200 = new RadioButton();
			rBtnLnaZin50 = new RadioButton();
			panel4 = new Panel();
			rBtnLnaLowPowerOff = new RadioButton();
			rBtnLnaLowPowerOn = new RadioButton();
			label7 = new Label();
			lblSensitivityBoost = new Label();
			pnlSensitivityBoost = new Panel();
			rBtnSensitivityBoostOff = new RadioButton();
			rBtnSensitivityBoostOn = new RadioButton();
			gBoxLnaSensitivity = new GroupBoxEx();
			gBoxAgc = new GroupBoxEx();
			panel2 = new Panel();
			rBtnAgcAutoRefOff = new RadioButton();
			rBtnAgcAutoRefOn = new RadioButton();
			label5 = new Label();
			label8 = new Label();
			label24 = new Label();
			label25 = new Label();
			label26 = new Label();
			label27 = new Label();
			label28 = new Label();
			label1 = new Label();
			label2 = new Label();
			label3 = new Label();
			label29 = new Label();
			label30 = new Label();
			label31 = new Label();
			label32 = new Label();
			label33 = new Label();
			nudAgcStep5 = new NumericUpDown();
			nudAgcSnrMargin = new NumericUpDownEx();
			nudAgcStep4 = new NumericUpDown();
			nudAgcRefLevel = new NumericUpDownEx();
			nudAgcStep3 = new NumericUpDown();
			nudAgcStep1 = new NumericUpDown();
			nudAgcStep2 = new NumericUpDown();
			gBoxRssi = new GroupBoxEx();
			pnlRssiPhase = new Panel();
			rBtnRssiPhaseManual = new RadioButton();
			rBtnRssiPhaseAuto = new RadioButton();
			label23 = new Label();
			btnRestartRx = new Button();
			panel7 = new Panel();
			rBtnFastRxOff = new RadioButton();
			rBtnFastRxOn = new RadioButton();
			label21 = new Label();
			btnRssiRead = new Button();
			label17 = new Label();
			label54 = new Label();
			label55 = new Label();
			label56 = new Label();
			lblRssiValue = new Label();
			nudRssiThresh = new NumericUpDownEx();
			ledRssiDone = new Led();
			panel1 = new Panel();
			rBtnRssiAutoThreshOff = new RadioButton();
			rBtnRssiAutoThreshOn = new RadioButton();
			label6 = new Label();
			nudTimeoutRxStart = new NumericUpDownEx();
			label9 = new Label();
			label14 = new Label();
			label11 = new Label();
			label15 = new Label();
			nudTimeoutRssiThresh = new NumericUpDownEx();
			gBoxAfcFei = new GroupBoxEx();
			nudLowBetaAfcOffset = new NumericUpDownEx();
			lblLowBetaAfcOffset = new Label();
			lblAfcLowBeta = new Label();
			label19 = new Label();
			lblLowBetaAfcOfssetUnit = new Label();
			label20 = new Label();
			pnlAfcLowBeta = new Panel();
			rBtnAfcLowBetaOff = new RadioButton();
			rBtnAfcLowBetaOn = new RadioButton();
			btnFeiRead = new Button();
			panel8 = new Panel();
			rBtnAfcAutoClearOff = new RadioButton();
			rBtnAfcAutoClearOn = new RadioButton();
			ledFeiDone = new Led();
			panel9 = new Panel();
			rBtnAfcAutoOff = new RadioButton();
			rBtnAfcAutoOn = new RadioButton();
			lblFeiValue = new Label();
			label12 = new Label();
			label18 = new Label();
			label10 = new Label();
			btnAfcClear = new Button();
			btnAfcStart = new Button();
			ledAfcDone = new Led();
			lblAfcValue = new Label();
			label22 = new Label();
			gBoxOok = new GroupBoxEx();
			cBoxOokThreshType = new ComboBox();
			lblOokType = new Label();
			lblOokStep = new Label();
			lblOokDec = new Label();
			lblOokCutoff = new Label();
			lblOokFixed = new Label();
			suffixOOKstep = new Label();
			suffixOOKfixed = new Label();
			nudOokPeakThreshStep = new NumericUpDownEx();
			nudOokFixedThresh = new NumericUpDownEx();
			cBoxOokPeakThreshDec = new ComboBox();
			cBoxOokAverageThreshFilt = new ComboBox();
			gBoxAfcBw = new GroupBoxEx();
			nudAfcDccFreq = new NumericUpDownEx();
			lblAfcDcc = new Label();
			lblAfcRxBw = new Label();
			suffixAFCDCC = new Label();
			suffixAFCRxBw = new Label();
			nudRxFilterBwAfc = new NumericUpDownEx();
			gBoxRxBw = new GroupBoxEx();
			nudDccFreq = new NumericUpDownEx();
			lblDcc = new Label();
			lblRxBw = new Label();
			suffixDCC = new Label();
			suffixRxBw = new Label();
			nudRxFilterBw = new NumericUpDownEx();
			gBoxLna = new GroupBoxEx();
			panel5 = new Panel();
			rBtnLnaGainAutoOff = new RadioButton();
			rBtnLnaGainAutoOn = new RadioButton();
			label13 = new Label();
			label16 = new Label();
			lblAgcReference = new Label();
			label48 = new Label();
			label49 = new Label();
			label50 = new Label();
			label51 = new Label();
			label52 = new Label();
			lblLnaGain1 = new Label();
			label53 = new Label();
			panel6 = new Panel();
			rBtnLnaGain1 = new RadioButton();
			rBtnLnaGain2 = new RadioButton();
			rBtnLnaGain3 = new RadioButton();
			rBtnLnaGain4 = new RadioButton();
			rBtnLnaGain5 = new RadioButton();
			rBtnLnaGain6 = new RadioButton();
			lblLnaGain2 = new Label();
			lblLnaGain3 = new Label();
			lblLnaGain4 = new Label();
			lblLnaGain5 = new Label();
			lblLnaGain6 = new Label();
			lblAgcThresh1 = new Label();
			lblAgcThresh2 = new Label();
			lblAgcThresh3 = new Label();
			lblAgcThresh4 = new Label();
			lblAgcThresh5 = new Label();
			label47 = new Label();
			gBoxDagc = new GroupBoxEx();
			label34 = new Label();
			panel11 = new Panel();
			rBtnDagcOff = new RadioButton();
			rBtnDagcOn = new RadioButton();
			((ISupportInitialize)errorProvider).BeginInit();
			panel3.SuspendLayout();
			panel4.SuspendLayout();
			pnlSensitivityBoost.SuspendLayout();
			gBoxLnaSensitivity.SuspendLayout();
			gBoxAgc.SuspendLayout();
			panel2.SuspendLayout();
			nudAgcStep5.BeginInit();
			nudAgcSnrMargin.BeginInit();
			nudAgcStep4.BeginInit();
			nudAgcRefLevel.BeginInit();
			nudAgcStep3.BeginInit();
			nudAgcStep1.BeginInit();
			nudAgcStep2.BeginInit();
			gBoxRssi.SuspendLayout();
			pnlRssiPhase.SuspendLayout();
			panel7.SuspendLayout();
			nudRssiThresh.BeginInit();
			panel1.SuspendLayout();
			nudTimeoutRxStart.BeginInit();
			nudTimeoutRssiThresh.BeginInit();
			gBoxAfcFei.SuspendLayout();
			nudLowBetaAfcOffset.BeginInit();
			pnlAfcLowBeta.SuspendLayout();
			panel8.SuspendLayout();
			panel9.SuspendLayout();
			gBoxOok.SuspendLayout();
			nudOokPeakThreshStep.BeginInit();
			nudOokFixedThresh.BeginInit();
			gBoxAfcBw.SuspendLayout();
			nudAfcDccFreq.BeginInit();
			nudRxFilterBwAfc.BeginInit();
			gBoxRxBw.SuspendLayout();
			nudDccFreq.BeginInit();
			nudRxFilterBw.BeginInit();
			gBoxLna.SuspendLayout();
			panel5.SuspendLayout();
			panel6.SuspendLayout();
			gBoxDagc.SuspendLayout();
			panel11.SuspendLayout();
			base.SuspendLayout();
			errorProvider.ContainerControl = this;
			label4.AutoSize = true;
			label4.Location = new Point(11, 0x56);
			label4.Name = "label4";
			label4.Size = new Size(0x56, 13);
			label4.TabIndex = 6;
			label4.Text = "Mixer low-power:";
			lblAGC.AutoSize = true;
			lblAGC.Location = new Point(11, 30);
			lblAGC.Name = "lblAGC";
			lblAGC.Size = new Size(0x59, 13);
			lblAGC.TabIndex = 0;
			lblAGC.Text = "Input impedance:";
			panel3.AutoSize = true;
			panel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel3.Controls.Add(rBtnLnaZin200);
			panel3.Controls.Add(rBtnLnaZin50);
			panel3.Location = new Point(0x6a, 0x13);
			panel3.Name = "panel3";
			panel3.Size = new Size(0x31, 0x22);
			panel3.TabIndex = 1;
			rBtnLnaZin200.AutoSize = true;
			rBtnLnaZin200.Location = new Point(3, 0x11);
			rBtnLnaZin200.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaZin200.Name = "rBtnLnaZin200";
			rBtnLnaZin200.Size = new Size(0x2b, 0x11);
			rBtnLnaZin200.TabIndex = 1;
			rBtnLnaZin200.Text = "200";
			rBtnLnaZin200.UseVisualStyleBackColor = true;
			rBtnLnaZin200.CheckedChanged += new EventHandler(rBtnLnaZin_CheckedChanged);
			rBtnLnaZin50.AutoSize = true;
			rBtnLnaZin50.Checked = true;
			rBtnLnaZin50.Location = new Point(3, 0);
			rBtnLnaZin50.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaZin50.Name = "rBtnLnaZin50";
			rBtnLnaZin50.Size = new Size(0x25, 0x11);
			rBtnLnaZin50.TabIndex = 0;
			rBtnLnaZin50.TabStop = true;
			rBtnLnaZin50.Text = "50";
			rBtnLnaZin50.UseVisualStyleBackColor = true;
			rBtnLnaZin50.CheckedChanged += new EventHandler(rBtnLnaZin_CheckedChanged);
			panel4.AutoSize = true;
			panel4.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel4.Controls.Add(rBtnLnaLowPowerOff);
			panel4.Controls.Add(rBtnLnaLowPowerOn);
			panel4.Location = new Point(0x6a, 0x54);
			panel4.Name = "panel4";
			panel4.Size = new Size(0x5d, 0x11);
			panel4.TabIndex = 5;
			rBtnLnaLowPowerOff.AutoSize = true;
			rBtnLnaLowPowerOff.BackColor = Color.Transparent;
			rBtnLnaLowPowerOff.Location = new Point(0x2d, 0);
			rBtnLnaLowPowerOff.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaLowPowerOff.Name = "rBtnLnaLowPowerOff";
			rBtnLnaLowPowerOff.Size = new Size(0x2d, 0x11);
			rBtnLnaLowPowerOff.TabIndex = 1;
			rBtnLnaLowPowerOff.Text = "OFF";
			rBtnLnaLowPowerOff.UseVisualStyleBackColor = false;
			rBtnLnaLowPowerOff.CheckedChanged += new EventHandler(rBtnLnaLowPower_CheckedChanged);
			rBtnLnaLowPowerOn.AutoSize = true;
			rBtnLnaLowPowerOn.BackColor = Color.Transparent;
			rBtnLnaLowPowerOn.Checked = true;
			rBtnLnaLowPowerOn.Location = new Point(3, 0);
			rBtnLnaLowPowerOn.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaLowPowerOn.Name = "rBtnLnaLowPowerOn";
			rBtnLnaLowPowerOn.Size = new Size(0x29, 0x11);
			rBtnLnaLowPowerOn.TabIndex = 0;
			rBtnLnaLowPowerOn.TabStop = true;
			rBtnLnaLowPowerOn.Text = "ON";
			rBtnLnaLowPowerOn.UseVisualStyleBackColor = false;
			rBtnLnaLowPowerOn.CheckedChanged += new EventHandler(rBtnLnaLowPower_CheckedChanged);
			label7.AutoSize = true;
			label7.BackColor = Color.Transparent;
			label7.Location = new Point(0xa1, 30);
			label7.Name = "label7";
			label7.Size = new Size(0x20, 13);
			label7.TabIndex = 2;
			label7.Text = "ohms";
			lblSensitivityBoost.AutoSize = true;
			lblSensitivityBoost.Location = new Point(11, 0x3d);
			lblSensitivityBoost.Name = "lblSensitivityBoost";
			lblSensitivityBoost.Size = new Size(0x56, 13);
			lblSensitivityBoost.TabIndex = 3;
			lblSensitivityBoost.Text = "Sensitivity boost:";
			pnlSensitivityBoost.AutoSize = true;
			pnlSensitivityBoost.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlSensitivityBoost.Controls.Add(rBtnSensitivityBoostOff);
			pnlSensitivityBoost.Controls.Add(rBtnSensitivityBoostOn);
			pnlSensitivityBoost.Location = new Point(0x6a, 0x3b);
			pnlSensitivityBoost.Name = "pnlSensitivityBoost";
			pnlSensitivityBoost.Size = new Size(0x5d, 0x11);
			pnlSensitivityBoost.TabIndex = 4;
			rBtnSensitivityBoostOff.AutoSize = true;
			rBtnSensitivityBoostOff.Location = new Point(0x2d, 0);
			rBtnSensitivityBoostOff.Margin = new Padding(3, 0, 3, 0);
			rBtnSensitivityBoostOff.Name = "rBtnSensitivityBoostOff";
			rBtnSensitivityBoostOff.Size = new Size(0x2d, 0x11);
			rBtnSensitivityBoostOff.TabIndex = 1;
			rBtnSensitivityBoostOff.Text = "OFF";
			rBtnSensitivityBoostOff.UseVisualStyleBackColor = true;
			rBtnSensitivityBoostOff.CheckedChanged += new EventHandler(rBtnSensitivityBoost_CheckedChanged);
			rBtnSensitivityBoostOn.AutoSize = true;
			rBtnSensitivityBoostOn.Checked = true;
			rBtnSensitivityBoostOn.Location = new Point(3, 0);
			rBtnSensitivityBoostOn.Margin = new Padding(3, 0, 3, 0);
			rBtnSensitivityBoostOn.Name = "rBtnSensitivityBoostOn";
			rBtnSensitivityBoostOn.Size = new Size(0x29, 0x11);
			rBtnSensitivityBoostOn.TabIndex = 0;
			rBtnSensitivityBoostOn.TabStop = true;
			rBtnSensitivityBoostOn.Text = "ON";
			rBtnSensitivityBoostOn.UseVisualStyleBackColor = true;
			rBtnSensitivityBoostOn.CheckedChanged += new EventHandler(rBtnSensitivityBoost_CheckedChanged);
			gBoxLnaSensitivity.Controls.Add(panel3);
			gBoxLnaSensitivity.Controls.Add(lblSensitivityBoost);
			gBoxLnaSensitivity.Controls.Add(lblAGC);
			gBoxLnaSensitivity.Controls.Add(pnlSensitivityBoost);
			gBoxLnaSensitivity.Controls.Add(label4);
			gBoxLnaSensitivity.Controls.Add(label7);
			gBoxLnaSensitivity.Controls.Add(panel4);
			gBoxLnaSensitivity.Location = new Point(0x249, 3);
			gBoxLnaSensitivity.Name = "gBoxLnaSensitivity";
			gBoxLnaSensitivity.Size = new Size(0xd3, 0x70);
			gBoxLnaSensitivity.TabIndex = 5;
			gBoxLnaSensitivity.TabStop = false;
			gBoxLnaSensitivity.Text = "Lna sensitivity";
			gBoxLnaSensitivity.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxLnaSensitivity.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxAgc.Controls.Add(panel2);
			gBoxAgc.Controls.Add(label5);
			gBoxAgc.Controls.Add(label8);
			gBoxAgc.Controls.Add(label24);
			gBoxAgc.Controls.Add(label25);
			gBoxAgc.Controls.Add(label26);
			gBoxAgc.Controls.Add(label27);
			gBoxAgc.Controls.Add(label28);
			gBoxAgc.Controls.Add(label1);
			gBoxAgc.Controls.Add(label2);
			gBoxAgc.Controls.Add(label3);
			gBoxAgc.Controls.Add(label29);
			gBoxAgc.Controls.Add(label30);
			gBoxAgc.Controls.Add(label31);
			gBoxAgc.Controls.Add(label32);
			gBoxAgc.Controls.Add(label33);
			gBoxAgc.Controls.Add(nudAgcStep5);
			gBoxAgc.Controls.Add(nudAgcSnrMargin);
			gBoxAgc.Controls.Add(nudAgcStep4);
			gBoxAgc.Controls.Add(nudAgcRefLevel);
			gBoxAgc.Controls.Add(nudAgcStep3);
			gBoxAgc.Controls.Add(nudAgcStep1);
			gBoxAgc.Controls.Add(nudAgcStep2);
			gBoxAgc.Location = new Point(0x249, 0x79);
			gBoxAgc.Name = "gBoxAgc";
			gBoxAgc.Size = new Size(0xd3, 0xfb);
			gBoxAgc.TabIndex = 6;
			gBoxAgc.TabStop = false;
			gBoxAgc.Text = "AGC";
			gBoxAgc.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxAgc.MouseEnter += new EventHandler(control_MouseEnter);
			panel2.AutoSize = true;
			panel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel2.Controls.Add(rBtnAgcAutoRefOff);
			panel2.Controls.Add(rBtnAgcAutoRefOn);
			panel2.Location = new Point(110, 0x17);
			panel2.Name = "panel2";
			panel2.Size = new Size(0x33, 0x22);
			panel2.TabIndex = 1;
			rBtnAgcAutoRefOff.AutoSize = true;
			rBtnAgcAutoRefOff.Location = new Point(3, 0x11);
			rBtnAgcAutoRefOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAgcAutoRefOff.Name = "rBtnAgcAutoRefOff";
			rBtnAgcAutoRefOff.Size = new Size(0x2d, 0x11);
			rBtnAgcAutoRefOff.TabIndex = 1;
			rBtnAgcAutoRefOff.Text = "OFF";
			rBtnAgcAutoRefOff.UseVisualStyleBackColor = true;
			rBtnAgcAutoRefOff.CheckedChanged += new EventHandler(rBtnAgcAutoRef_CheckedChanged);
			rBtnAgcAutoRefOn.AutoSize = true;
			rBtnAgcAutoRefOn.Checked = true;
			rBtnAgcAutoRefOn.Location = new Point(3, 0);
			rBtnAgcAutoRefOn.Margin = new Padding(3, 0, 3, 0);
			rBtnAgcAutoRefOn.Name = "rBtnAgcAutoRefOn";
			rBtnAgcAutoRefOn.Size = new Size(0x29, 0x11);
			rBtnAgcAutoRefOn.TabIndex = 0;
			rBtnAgcAutoRefOn.TabStop = true;
			rBtnAgcAutoRefOn.Text = "ON";
			rBtnAgcAutoRefOn.UseVisualStyleBackColor = true;
			rBtnAgcAutoRefOn.CheckedChanged += new EventHandler(rBtnAgcAutoRef_CheckedChanged);
			label5.AutoSize = true;
			label5.Location = new Point(15, 0x22);
			label5.Name = "label5";
			label5.Size = new Size(80, 13);
			label5.TabIndex = 0;
			label5.Text = "Auto reference:";
			label8.AutoSize = true;
			label8.BackColor = Color.Transparent;
			label8.Location = new Point(15, 0x41);
			label8.Name = "label8";
			label8.Size = new Size(0x59, 13);
			label8.TabIndex = 2;
			label8.Text = "Reference Level:";
			label24.AutoSize = true;
			label24.BackColor = Color.Transparent;
			label24.Location = new Point(15, 0x75);
			label24.Name = "label24";
			label24.Size = new Size(0x59, 13);
			label24.TabIndex = 8;
			label24.Text = "Threshold step 1:";
			label25.AutoSize = true;
			label25.BackColor = Color.Transparent;
			label25.Location = new Point(15, 0x8f);
			label25.Name = "label25";
			label25.Size = new Size(0x59, 13);
			label25.TabIndex = 11;
			label25.Text = "Threshold step 2:";
			label26.AutoSize = true;
			label26.BackColor = Color.Transparent;
			label26.Location = new Point(15, 0xa9);
			label26.Name = "label26";
			label26.Size = new Size(0x59, 13);
			label26.TabIndex = 14;
			label26.Text = "Threshold step 3:";
			label27.AutoSize = true;
			label27.BackColor = Color.Transparent;
			label27.Location = new Point(15, 0xc3);
			label27.Name = "label27";
			label27.Size = new Size(0x59, 13);
			label27.TabIndex = 0x11;
			label27.Text = "Threshold step 4:";
			label28.AutoSize = true;
			label28.BackColor = Color.Transparent;
			label28.Location = new Point(15, 0xdd);
			label28.Name = "label28";
			label28.Size = new Size(0x59, 13);
			label28.TabIndex = 20;
			label28.Text = "Threshold step 5:";
			label1.AutoSize = true;
			label1.BackColor = Color.Transparent;
			label1.Location = new Point(0xa7, 0x41);
			label1.Name = "label1";
			label1.Size = new Size(0x1c, 13);
			label1.TabIndex = 4;
			label1.Text = "dBm";
			label2.AutoSize = true;
			label2.Location = new Point(15, 0x5d);
			label2.Name = "label2";
			label2.Size = new Size(0x43, 13);
			label2.TabIndex = 5;
			label2.Text = "SNR margin:";
			label3.AutoSize = true;
			label3.BackColor = Color.Transparent;
			label3.Location = new Point(0xa7, 0x5c);
			label3.Name = "label3";
			label3.Size = new Size(20, 13);
			label3.TabIndex = 7;
			label3.Text = "dB";
			label29.AutoSize = true;
			label29.BackColor = Color.Transparent;
			label29.Location = new Point(0xa7, 0x76);
			label29.Name = "label29";
			label29.Size = new Size(20, 13);
			label29.TabIndex = 10;
			label29.Text = "dB";
			label30.AutoSize = true;
			label30.BackColor = Color.Transparent;
			label30.Location = new Point(0xa7, 0x90);
			label30.Name = "label30";
			label30.Size = new Size(20, 13);
			label30.TabIndex = 13;
			label30.Text = "dB";
			label31.AutoSize = true;
			label31.BackColor = Color.Transparent;
			label31.Location = new Point(0xa7, 170);
			label31.Name = "label31";
			label31.Size = new Size(20, 13);
			label31.TabIndex = 0x10;
			label31.Text = "dB";
			label32.AutoSize = true;
			label32.BackColor = Color.Transparent;
			label32.Location = new Point(0xa7, 0xc4);
			label32.Name = "label32";
			label32.Size = new Size(20, 13);
			label32.TabIndex = 0x13;
			label32.Text = "dB";
			label33.AutoSize = true;
			label33.BackColor = Color.Transparent;
			label33.Location = new Point(0xa7, 0xde);
			label33.Name = "label33";
			label33.Size = new Size(20, 13);
			label33.TabIndex = 0x16;
			label33.Text = "dB";
			nudAgcStep5.Location = new Point(110, 0xdb);
			int[] bits = new int[4];
			bits[0] = 15;
			nudAgcStep5.Maximum = new decimal(bits);
			nudAgcStep5.Name = "nudAgcStep5";
			nudAgcStep5.Size = new Size(0x33, 20);
			nudAgcStep5.TabIndex = 0x15;
			int[] numArray2 = new int[4];
			numArray2[0] = 11;
			nudAgcStep5.Value = new decimal(numArray2);
			nudAgcStep5.ValueChanged += new EventHandler(nudAgcStep_ValueChanged);
			nudAgcSnrMargin.Location = new Point(110, 0x59);
			int[] numArray3 = new int[4];
			numArray3[0] = 7;
			nudAgcSnrMargin.Maximum = new decimal(numArray3);
			nudAgcSnrMargin.Name = "nudAgcSnrMargin";
			nudAgcSnrMargin.Size = new Size(0x33, 20);
			nudAgcSnrMargin.TabIndex = 6;
			nudAgcSnrMargin.ThousandsSeparator = true;
			int[] numArray4 = new int[4];
			numArray4[0] = 5;
			nudAgcSnrMargin.Value = new decimal(numArray4);
			nudAgcSnrMargin.ValueChanged += new EventHandler(nudAgcSnrMargin_ValueChanged);
			nudAgcStep4.Location = new Point(110, 0xc1);
			int[] numArray5 = new int[4];
			numArray5[0] = 15;
			nudAgcStep4.Maximum = new decimal(numArray5);
			nudAgcStep4.Name = "nudAgcStep4";
			nudAgcStep4.Size = new Size(0x33, 20);
			nudAgcStep4.TabIndex = 0x12;
			int[] numArray6 = new int[4];
			numArray6[0] = 9;
			nudAgcStep4.Value = new decimal(numArray6);
			nudAgcStep4.ValueChanged += new EventHandler(nudAgcStep_ValueChanged);
			nudAgcRefLevel.Location = new Point(110, 0x3f);
			int[] numArray7 = new int[4];
			numArray7[0] = 80;
			numArray7[3] = -2147483648;
			nudAgcRefLevel.Maximum = new decimal(numArray7);
			int[] numArray8 = new int[4];
			numArray8[0] = 0x8f;
			numArray8[3] = -2147483648;
			nudAgcRefLevel.Minimum = new decimal(numArray8);
			nudAgcRefLevel.Name = "nudAgcRefLevel";
			nudAgcRefLevel.Size = new Size(0x33, 20);
			nudAgcRefLevel.TabIndex = 3;
			nudAgcRefLevel.ThousandsSeparator = true;
			int[] numArray9 = new int[4];
			numArray9[0] = 80;
			numArray9[3] = -2147483648;
			nudAgcRefLevel.Value = new decimal(numArray9);
			nudAgcRefLevel.ValueChanged += new EventHandler(nudAgcRefLevel_ValueChanged);
			nudAgcStep3.Location = new Point(110, 0xa7);
			int[] numArray10 = new int[4];
			numArray10[0] = 15;
			nudAgcStep3.Maximum = new decimal(numArray10);
			nudAgcStep3.Name = "nudAgcStep3";
			nudAgcStep3.Size = new Size(0x33, 20);
			nudAgcStep3.TabIndex = 15;
			int[] numArray11 = new int[4];
			numArray11[0] = 11;
			nudAgcStep3.Value = new decimal(numArray11);
			nudAgcStep3.ValueChanged += new EventHandler(nudAgcStep_ValueChanged);
			nudAgcStep1.Location = new Point(110, 0x73);
			int[] numArray12 = new int[4];
			numArray12[0] = 0x1f;
			nudAgcStep1.Maximum = new decimal(numArray12);
			nudAgcStep1.Name = "nudAgcStep1";
			nudAgcStep1.Size = new Size(0x33, 20);
			nudAgcStep1.TabIndex = 9;
			int[] numArray13 = new int[4];
			numArray13[0] = 0x10;
			nudAgcStep1.Value = new decimal(numArray13);
			nudAgcStep1.ValueChanged += new EventHandler(nudAgcStep_ValueChanged);
			nudAgcStep2.Location = new Point(110, 0x8d);
			int[] numArray14 = new int[4];
			numArray14[0] = 15;
			nudAgcStep2.Maximum = new decimal(numArray14);
			nudAgcStep2.Name = "nudAgcStep2";
			nudAgcStep2.Size = new Size(0x33, 20);
			nudAgcStep2.TabIndex = 12;
			int[] numArray15 = new int[4];
			numArray15[0] = 7;
			nudAgcStep2.Value = new decimal(numArray15);
			nudAgcStep2.ValueChanged += new EventHandler(nudAgcStep_ValueChanged);
			gBoxRssi.Controls.Add(pnlRssiPhase);
			gBoxRssi.Controls.Add(label23);
			gBoxRssi.Controls.Add(btnRestartRx);
			gBoxRssi.Controls.Add(panel7);
			gBoxRssi.Controls.Add(label21);
			gBoxRssi.Controls.Add(btnRssiRead);
			gBoxRssi.Controls.Add(label17);
			gBoxRssi.Controls.Add(label54);
			gBoxRssi.Controls.Add(label55);
			gBoxRssi.Controls.Add(label56);
			gBoxRssi.Controls.Add(lblRssiValue);
			gBoxRssi.Controls.Add(nudRssiThresh);
			gBoxRssi.Controls.Add(ledRssiDone);
			gBoxRssi.Controls.Add(panel1);
			gBoxRssi.Controls.Add(label6);
			gBoxRssi.Controls.Add(nudTimeoutRxStart);
			gBoxRssi.Controls.Add(label9);
			gBoxRssi.Controls.Add(label14);
			gBoxRssi.Controls.Add(label11);
			gBoxRssi.Controls.Add(label15);
			gBoxRssi.Controls.Add(nudTimeoutRssiThresh);
			gBoxRssi.Location = new Point(0x126, 0xb1);
			gBoxRssi.Name = "gBoxRssi";
			gBoxRssi.Size = new Size(0x11d, 0xc3);
			gBoxRssi.TabIndex = 4;
			gBoxRssi.TabStop = false;
			gBoxRssi.Text = "RSSI";
			gBoxRssi.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxRssi.MouseEnter += new EventHandler(control_MouseEnter);
			pnlRssiPhase.AutoSize = true;
			pnlRssiPhase.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlRssiPhase.Controls.Add(rBtnRssiPhaseManual);
			pnlRssiPhase.Controls.Add(rBtnRssiPhaseAuto);
			pnlRssiPhase.Location = new Point(0x85, 0xa8);
			pnlRssiPhase.Margin = new Padding(3, 2, 3, 2);
			pnlRssiPhase.Name = "pnlRssiPhase";
			pnlRssiPhase.Size = new Size(0x77, 20);
			pnlRssiPhase.TabIndex = 20;
			rBtnRssiPhaseManual.AutoSize = true;
			rBtnRssiPhaseManual.Location = new Point(0x38, 3);
			rBtnRssiPhaseManual.Margin = new Padding(3, 0, 3, 0);
			rBtnRssiPhaseManual.Name = "rBtnRssiPhaseManual";
			rBtnRssiPhaseManual.Size = new Size(60, 0x11);
			rBtnRssiPhaseManual.TabIndex = 1;
			rBtnRssiPhaseManual.Text = "Manual";
			rBtnRssiPhaseManual.UseVisualStyleBackColor = true;
			rBtnRssiPhaseManual.CheckedChanged += new EventHandler(rBtnRssiPhaseManual_CheckedChanged);
			rBtnRssiPhaseAuto.AutoSize = true;
			rBtnRssiPhaseAuto.Checked = true;
			rBtnRssiPhaseAuto.Location = new Point(3, 3);
			rBtnRssiPhaseAuto.Margin = new Padding(3, 0, 3, 0);
			rBtnRssiPhaseAuto.Name = "rBtnRssiPhaseAuto";
			rBtnRssiPhaseAuto.Size = new Size(0x2f, 0x11);
			rBtnRssiPhaseAuto.TabIndex = 0;
			rBtnRssiPhaseAuto.TabStop = true;
			rBtnRssiPhaseAuto.Text = "Auto";
			rBtnRssiPhaseAuto.UseVisualStyleBackColor = true;
			rBtnRssiPhaseAuto.CheckedChanged += new EventHandler(rBtnRssiPhaseAuto_CheckedChanged);
			label23.AutoSize = true;
			label23.Location = new Point(6, 0xac);
			label23.Name = "label23";
			label23.Size = new Size(40, 13);
			label23.TabIndex = 0x12;
			label23.Text = "Phase:";
			label23.TextAlign = ContentAlignment.MiddleLeft;
			btnRestartRx.Location = new Point(60, 0xa7);
			btnRestartRx.Name = "btnRestartRx";
			btnRestartRx.Size = new Size(0x43, 0x17);
			btnRestartRx.TabIndex = 0x13;
			btnRestartRx.Text = "Restart Rx";
			btnRestartRx.UseVisualStyleBackColor = true;
			btnRestartRx.Click += new EventHandler(btnRestartRx_Click);
			panel7.AutoSize = true;
			panel7.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel7.Controls.Add(rBtnFastRxOff);
			panel7.Controls.Add(rBtnFastRxOn);
			panel7.Location = new Point(0x85, 0x13);
			panel7.Name = "panel7";
			panel7.Size = new Size(0x62, 0x11);
			panel7.TabIndex = 1;
			rBtnFastRxOff.AutoSize = true;
			rBtnFastRxOff.Location = new Point(50, 0);
			rBtnFastRxOff.Margin = new Padding(3, 0, 3, 0);
			rBtnFastRxOff.Name = "rBtnFastRxOff";
			rBtnFastRxOff.Size = new Size(0x2d, 0x11);
			rBtnFastRxOff.TabIndex = 1;
			rBtnFastRxOff.Text = "OFF";
			rBtnFastRxOff.UseVisualStyleBackColor = true;
			rBtnFastRxOn.AutoSize = true;
			rBtnFastRxOn.Checked = true;
			rBtnFastRxOn.Location = new Point(3, 0);
			rBtnFastRxOn.Margin = new Padding(3, 0, 3, 0);
			rBtnFastRxOn.Name = "rBtnFastRxOn";
			rBtnFastRxOn.Size = new Size(0x29, 0x11);
			rBtnFastRxOn.TabIndex = 0;
			rBtnFastRxOn.TabStop = true;
			rBtnFastRxOn.Text = "ON";
			rBtnFastRxOn.UseVisualStyleBackColor = true;
			rBtnFastRxOn.CheckedChanged += new EventHandler(rBtnFastRx_CheckedChanged);
			label21.AutoSize = true;
			label21.Location = new Point(3, 0x15);
			label21.Name = "label21";
			label21.Size = new Size(0x57, 13);
			label21.TabIndex = 0;
			label21.Text = "Fast Rx wakeup:";
			btnRssiRead.Location = new Point(0x56, 0x8e);
			btnRssiRead.Name = "btnRssiRead";
			btnRssiRead.Size = new Size(0x29, 0x17);
			btnRssiRead.TabIndex = 14;
			btnRssiRead.Text = "Read";
			btnRssiRead.UseVisualStyleBackColor = true;
			btnRssiRead.Visible = false;
			btnRssiRead.Click += new EventHandler(btnRssiStart_Click);
			label17.AutoSize = true;
			label17.BackColor = Color.Transparent;
			label17.Location = new Point(0xff, 0x79);
			label17.Name = "label17";
			label17.Size = new Size(0x1c, 13);
			label17.TabIndex = 12;
			label17.Text = "dBm";
			label17.TextAlign = ContentAlignment.MiddleCenter;
			label54.AutoSize = true;
			label54.BackColor = Color.Transparent;
			label54.Location = new Point(0xff, 0x93);
			label54.Name = "label54";
			label54.Size = new Size(0x1c, 13);
			label54.TabIndex = 0x11;
			label54.Text = "dBm";
			label54.TextAlign = ContentAlignment.MiddleCenter;
			label55.AutoSize = true;
			label55.BackColor = Color.Transparent;
			label55.Location = new Point(3, 0x79);
			label55.Margin = new Padding(0);
			label55.Name = "label55";
			label55.Size = new Size(0x39, 13);
			label55.TabIndex = 10;
			label55.Text = "Threshold:";
			label55.TextAlign = ContentAlignment.MiddleCenter;
			label56.AutoSize = true;
			label56.BackColor = Color.Transparent;
			label56.Location = new Point(3, 0x93);
			label56.Margin = new Padding(0);
			label56.Name = "label56";
			label56.Size = new Size(0x25, 13);
			label56.TabIndex = 13;
			label56.Text = "Value:";
			label56.TextAlign = ContentAlignment.MiddleCenter;
			lblRssiValue.BackColor = Color.Transparent;
			lblRssiValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblRssiValue.Location = new Point(0x85, 0x8f);
			lblRssiValue.Margin = new Padding(3);
			lblRssiValue.Name = "lblRssiValue";
			lblRssiValue.Size = new Size(0x62, 20);
			lblRssiValue.TabIndex = 15;
			lblRssiValue.Text = "0";
			lblRssiValue.TextAlign = ContentAlignment.MiddleCenter;
			nudRssiThresh.DecimalPlaces = 1;
			nudRssiThresh.Enabled = false;
			int[] numArray16 = new int[4];
			numArray16[0] = 5;
			numArray16[3] = 0x10000;
			nudRssiThresh.Increment = new decimal(numArray16);
			nudRssiThresh.Location = new Point(0x85, 0x75);
			int[] numArray17 = new int[4];
			nudRssiThresh.Maximum = new decimal(numArray17);
			int[] numArray18 = new int[4];
			numArray18[0] = 0x4fb;
			numArray18[3] = -2147418112;
			nudRssiThresh.Minimum = new decimal(numArray18);
			nudRssiThresh.Name = "nudRssiThresh";
			nudRssiThresh.Size = new Size(0x62, 20);
			nudRssiThresh.TabIndex = 11;
			nudRssiThresh.ThousandsSeparator = true;
			int[] numArray19 = new int[4];
			numArray19[0] = 80;
			numArray19[3] = -2147483648;
			nudRssiThresh.Value = new decimal(numArray19);
			nudRssiThresh.ValueChanged += new EventHandler(nudRssiThresh_ValueChanged);
			ledRssiDone.BackColor = Color.Transparent;
			ledRssiDone.LedColor = Color.Green;
			ledRssiDone.LedSize = new Size(11, 11);
			ledRssiDone.Location = new Point(0xea, 0x92);
			ledRssiDone.Name = "ledRssiDone";
			ledRssiDone.Size = new Size(15, 15);
			ledRssiDone.TabIndex = 0x10;
			ledRssiDone.Text = "led1";
			panel1.AutoSize = true;
			panel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel1.Controls.Add(rBtnRssiAutoThreshOff);
			panel1.Controls.Add(rBtnRssiAutoThreshOn);
			panel1.Location = new Point(0x85, 0x5e);
			panel1.Name = "panel1";
			panel1.Size = new Size(0x62, 0x11);
			panel1.TabIndex = 9;
			rBtnRssiAutoThreshOff.AutoSize = true;
			rBtnRssiAutoThreshOff.Location = new Point(50, 0);
			rBtnRssiAutoThreshOff.Margin = new Padding(3, 0, 3, 0);
			rBtnRssiAutoThreshOff.Name = "rBtnRssiAutoThreshOff";
			rBtnRssiAutoThreshOff.Size = new Size(0x2d, 0x11);
			rBtnRssiAutoThreshOff.TabIndex = 1;
			rBtnRssiAutoThreshOff.Text = "OFF";
			rBtnRssiAutoThreshOff.UseVisualStyleBackColor = true;
			rBtnRssiAutoThreshOff.CheckedChanged += new EventHandler(rBtnRssiAutoThreshOn_CheckedChanged);
			rBtnRssiAutoThreshOn.AutoSize = true;
			rBtnRssiAutoThreshOn.Checked = true;
			rBtnRssiAutoThreshOn.Location = new Point(3, 0);
			rBtnRssiAutoThreshOn.Margin = new Padding(3, 0, 3, 0);
			rBtnRssiAutoThreshOn.Name = "rBtnRssiAutoThreshOn";
			rBtnRssiAutoThreshOn.Size = new Size(0x29, 0x11);
			rBtnRssiAutoThreshOn.TabIndex = 0;
			rBtnRssiAutoThreshOn.TabStop = true;
			rBtnRssiAutoThreshOn.Text = "ON";
			rBtnRssiAutoThreshOn.UseVisualStyleBackColor = true;
			rBtnRssiAutoThreshOn.CheckedChanged += new EventHandler(rBtnRssiAutoThreshOn_CheckedChanged);
			label6.AutoSize = true;
			label6.Location = new Point(3, 0x60);
			label6.Name = "label6";
			label6.Size = new Size(0x4e, 13);
			label6.TabIndex = 8;
			label6.Text = "Auto threshold:";
			nudTimeoutRxStart.Location = new Point(0x85, 0x2a);
			int[] numArray20 = new int[4];
			numArray20[0] = 850;
			nudTimeoutRxStart.Maximum = new decimal(numArray20);
			nudTimeoutRxStart.Name = "nudTimeoutRxStart";
			nudTimeoutRxStart.Size = new Size(0x62, 20);
			nudTimeoutRxStart.TabIndex = 3;
			nudTimeoutRxStart.ThousandsSeparator = true;
			nudTimeoutRxStart.ValueChanged += new EventHandler(nudTimeoutRxStart_ValueChanged);
			label9.AutoSize = true;
			label9.Location = new Point(3, 0x2e);
			label9.Name = "label9";
			label9.Size = new Size(0x57, 13);
			label9.TabIndex = 2;
			label9.Text = "Timeout Rx start:";
			label14.AutoSize = true;
			label14.Location = new Point(3, 0x48);
			label14.Name = "label14";
			label14.Size = new Size(0x5e, 13);
			label14.TabIndex = 5;
			label14.Text = "Timeout threshold:";
			label11.AutoSize = true;
			label11.Location = new Point(0xff, 0x2e);
			label11.Name = "label11";
			label11.Size = new Size(20, 13);
			label11.TabIndex = 4;
			label11.Text = "ms";
			label15.AutoSize = true;
			label15.Location = new Point(0xff, 0x48);
			label15.Name = "label15";
			label15.Size = new Size(20, 13);
			label15.TabIndex = 7;
			label15.Text = "ms";
			nudTimeoutRssiThresh.Location = new Point(0x85, 0x44);
			int[] numArray21 = new int[4];
			numArray21[0] = 850;
			nudTimeoutRssiThresh.Maximum = new decimal(numArray21);
			nudTimeoutRssiThresh.Name = "nudTimeoutRssiThresh";
			nudTimeoutRssiThresh.Size = new Size(0x62, 20);
			nudTimeoutRssiThresh.TabIndex = 6;
			nudTimeoutRssiThresh.ThousandsSeparator = true;
			nudTimeoutRssiThresh.ValueChanged += new EventHandler(nudTimeoutRssiThresh_ValueChanged);
			gBoxAfcFei.Controls.Add(nudLowBetaAfcOffset);
			gBoxAfcFei.Controls.Add(lblLowBetaAfcOffset);
			gBoxAfcFei.Controls.Add(lblAfcLowBeta);
			gBoxAfcFei.Controls.Add(label19);
			gBoxAfcFei.Controls.Add(lblLowBetaAfcOfssetUnit);
			gBoxAfcFei.Controls.Add(label20);
			gBoxAfcFei.Controls.Add(pnlAfcLowBeta);
			gBoxAfcFei.Controls.Add(btnFeiRead);
			gBoxAfcFei.Controls.Add(panel8);
			gBoxAfcFei.Controls.Add(ledFeiDone);
			gBoxAfcFei.Controls.Add(panel9);
			gBoxAfcFei.Controls.Add(lblFeiValue);
			gBoxAfcFei.Controls.Add(label12);
			gBoxAfcFei.Controls.Add(label18);
			gBoxAfcFei.Controls.Add(label10);
			gBoxAfcFei.Controls.Add(btnAfcClear);
			gBoxAfcFei.Controls.Add(btnAfcStart);
			gBoxAfcFei.Controls.Add(ledAfcDone);
			gBoxAfcFei.Controls.Add(lblAfcValue);
			gBoxAfcFei.Controls.Add(label22);
			gBoxAfcFei.Location = new Point(0x126, 3);
			gBoxAfcFei.Name = "gBoxAfcFei";
			gBoxAfcFei.Size = new Size(0x11d, 0xa8);
			gBoxAfcFei.TabIndex = 3;
			gBoxAfcFei.TabStop = false;
			gBoxAfcFei.Text = "AFC / FEI";
			gBoxAfcFei.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxAfcFei.MouseEnter += new EventHandler(control_MouseEnter);
			int[] numArray22 = new int[4];
			numArray22[0] = 0x1e8;
			nudLowBetaAfcOffset.Increment = new decimal(numArray22);
			nudLowBetaAfcOffset.Location = new Point(0x85, 0x2a);
			int[] numArray23 = new int[4];
			numArray23[0] = 0xf218;
			nudLowBetaAfcOffset.Maximum = new decimal(numArray23);
			int[] numArray24 = new int[4];
			numArray24[0] = 0xf400;
			numArray24[3] = -2147483648;
			nudLowBetaAfcOffset.Minimum = new decimal(numArray24);
			nudLowBetaAfcOffset.Name = "nudLowBetaAfcOffset";
			nudLowBetaAfcOffset.Size = new Size(0x62, 20);
			nudLowBetaAfcOffset.TabIndex = 2;
			nudLowBetaAfcOffset.ThousandsSeparator = true;
			nudLowBetaAfcOffset.ValueChanged += new EventHandler(nudLowBetaAfcOffset_ValueChanged);
			lblLowBetaAfcOffset.AutoSize = true;
			lblLowBetaAfcOffset.Location = new Point(3, 0x2c);
			lblLowBetaAfcOffset.Name = "lblLowBetaAfcOffset";
			lblLowBetaAfcOffset.Size = new Size(0x66, 13);
			lblLowBetaAfcOffset.TabIndex = 3;
			lblLowBetaAfcOffset.Text = "AFC low beta offset:";
			lblAfcLowBeta.AutoSize = true;
			lblAfcLowBeta.Location = new Point(3, 0x15);
			lblAfcLowBeta.Name = "lblAfcLowBeta";
			lblAfcLowBeta.Size = new Size(0x49, 13);
			lblAfcLowBeta.TabIndex = 0;
			lblAfcLowBeta.Text = "AFC low beta:";
			label19.AutoSize = true;
			label19.Location = new Point(3, 70);
			label19.Name = "label19";
			label19.Size = new Size(80, 13);
			label19.TabIndex = 5;
			label19.Text = "AFC auto clear:";
			lblLowBetaAfcOfssetUnit.AutoSize = true;
			lblLowBetaAfcOfssetUnit.Location = new Point(0xff, 0x2e);
			lblLowBetaAfcOfssetUnit.Name = "lblLowBetaAfcOfssetUnit";
			lblLowBetaAfcOfssetUnit.Size = new Size(20, 13);
			lblLowBetaAfcOfssetUnit.TabIndex = 4;
			lblLowBetaAfcOfssetUnit.Text = "Hz";
			label20.AutoSize = true;
			label20.Location = new Point(3, 0x5d);
			label20.Name = "label20";
			label20.Size = new Size(0x36, 13);
			label20.TabIndex = 8;
			label20.Text = "AFC auto:";
			pnlAfcLowBeta.AutoSize = true;
			pnlAfcLowBeta.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlAfcLowBeta.Controls.Add(rBtnAfcLowBetaOff);
			pnlAfcLowBeta.Controls.Add(rBtnAfcLowBetaOn);
			pnlAfcLowBeta.Location = new Point(0x85, 0x13);
			pnlAfcLowBeta.Name = "pnlAfcLowBeta";
			pnlAfcLowBeta.Size = new Size(0x62, 0x11);
			pnlAfcLowBeta.TabIndex = 1;
			rBtnAfcLowBetaOff.AutoSize = true;
			rBtnAfcLowBetaOff.Location = new Point(50, 0);
			rBtnAfcLowBetaOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcLowBetaOff.Name = "rBtnAfcLowBetaOff";
			rBtnAfcLowBetaOff.Size = new Size(0x2d, 0x11);
			rBtnAfcLowBetaOff.TabIndex = 1;
			rBtnAfcLowBetaOff.Text = "OFF";
			rBtnAfcLowBetaOff.UseVisualStyleBackColor = true;
			rBtnAfcLowBetaOff.CheckedChanged += new EventHandler(rBtnAfcLowBeta_CheckedChanged);
			rBtnAfcLowBetaOn.AutoSize = true;
			rBtnAfcLowBetaOn.Checked = true;
			rBtnAfcLowBetaOn.Location = new Point(3, 0);
			rBtnAfcLowBetaOn.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcLowBetaOn.Name = "rBtnAfcLowBetaOn";
			rBtnAfcLowBetaOn.Size = new Size(0x29, 0x11);
			rBtnAfcLowBetaOn.TabIndex = 0;
			rBtnAfcLowBetaOn.TabStop = true;
			rBtnAfcLowBetaOn.Text = "ON";
			rBtnAfcLowBetaOn.UseVisualStyleBackColor = true;
			rBtnAfcLowBetaOn.CheckedChanged += new EventHandler(rBtnAfcLowBeta_CheckedChanged);
			btnFeiRead.Location = new Point(0x56, 0x8b);
			btnFeiRead.Name = "btnFeiRead";
			btnFeiRead.Size = new Size(0x29, 0x17);
			btnFeiRead.TabIndex = 0x10;
			btnFeiRead.Text = "Read";
			btnFeiRead.UseVisualStyleBackColor = true;
			btnFeiRead.Click += new EventHandler(btnFeiStart_Click);
			panel8.AutoSize = true;
			panel8.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel8.Controls.Add(rBtnAfcAutoClearOff);
			panel8.Controls.Add(rBtnAfcAutoClearOn);
			panel8.Location = new Point(0x85, 0x44);
			panel8.Name = "panel8";
			panel8.Size = new Size(0x62, 0x11);
			panel8.TabIndex = 6;
			rBtnAfcAutoClearOff.AutoSize = true;
			rBtnAfcAutoClearOff.Location = new Point(50, 0);
			rBtnAfcAutoClearOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcAutoClearOff.Name = "rBtnAfcAutoClearOff";
			rBtnAfcAutoClearOff.Size = new Size(0x2d, 0x11);
			rBtnAfcAutoClearOff.TabIndex = 1;
			rBtnAfcAutoClearOff.Text = "OFF";
			rBtnAfcAutoClearOff.UseVisualStyleBackColor = true;
			rBtnAfcAutoClearOff.CheckedChanged += new EventHandler(rBtnAfcAutoClearOn_CheckedChanged);
			rBtnAfcAutoClearOn.AutoSize = true;
			rBtnAfcAutoClearOn.Checked = true;
			rBtnAfcAutoClearOn.Location = new Point(3, 0);
			rBtnAfcAutoClearOn.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcAutoClearOn.Name = "rBtnAfcAutoClearOn";
			rBtnAfcAutoClearOn.Size = new Size(0x29, 0x11);
			rBtnAfcAutoClearOn.TabIndex = 0;
			rBtnAfcAutoClearOn.TabStop = true;
			rBtnAfcAutoClearOn.Text = "ON";
			rBtnAfcAutoClearOn.UseVisualStyleBackColor = true;
			rBtnAfcAutoClearOn.CheckedChanged += new EventHandler(rBtnAfcAutoClearOn_CheckedChanged);
			ledFeiDone.BackColor = Color.Transparent;
			ledFeiDone.LedColor = Color.Green;
			ledFeiDone.LedSize = new Size(11, 11);
			ledFeiDone.Location = new Point(0xea, 0x8f);
			ledFeiDone.Name = "ledFeiDone";
			ledFeiDone.Size = new Size(15, 15);
			ledFeiDone.TabIndex = 0x12;
			ledFeiDone.Text = "led1";
			panel9.AutoSize = true;
			panel9.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel9.Controls.Add(rBtnAfcAutoOff);
			panel9.Controls.Add(rBtnAfcAutoOn);
			panel9.Location = new Point(0x85, 0x5b);
			panel9.Name = "panel9";
			panel9.Size = new Size(0x62, 0x11);
			panel9.TabIndex = 7;
			rBtnAfcAutoOff.AutoSize = true;
			rBtnAfcAutoOff.Location = new Point(50, 0);
			rBtnAfcAutoOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcAutoOff.Name = "rBtnAfcAutoOff";
			rBtnAfcAutoOff.Size = new Size(0x2d, 0x11);
			rBtnAfcAutoOff.TabIndex = 1;
			rBtnAfcAutoOff.Text = "OFF";
			rBtnAfcAutoOff.UseVisualStyleBackColor = true;
			rBtnAfcAutoOff.CheckedChanged += new EventHandler(rBtnAfcAutoOn_CheckedChanged);
			rBtnAfcAutoOn.AutoSize = true;
			rBtnAfcAutoOn.Checked = true;
			rBtnAfcAutoOn.Location = new Point(3, 0);
			rBtnAfcAutoOn.Margin = new Padding(3, 0, 3, 0);
			rBtnAfcAutoOn.Name = "rBtnAfcAutoOn";
			rBtnAfcAutoOn.Size = new Size(0x29, 0x11);
			rBtnAfcAutoOn.TabIndex = 0;
			rBtnAfcAutoOn.TabStop = true;
			rBtnAfcAutoOn.Text = "ON";
			rBtnAfcAutoOn.UseVisualStyleBackColor = true;
			rBtnAfcAutoOn.CheckedChanged += new EventHandler(rBtnAfcAutoOn_CheckedChanged);
			lblFeiValue.BackColor = Color.Transparent;
			lblFeiValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblFeiValue.Location = new Point(0x85, 140);
			lblFeiValue.Margin = new Padding(3);
			lblFeiValue.Name = "lblFeiValue";
			lblFeiValue.Size = new Size(0x62, 20);
			lblFeiValue.TabIndex = 0x11;
			lblFeiValue.Text = "0";
			lblFeiValue.TextAlign = ContentAlignment.MiddleLeft;
			label12.AutoSize = true;
			label12.BackColor = Color.Transparent;
			label12.Location = new Point(3, 0x90);
			label12.Name = "label12";
			label12.Size = new Size(0x1a, 13);
			label12.TabIndex = 15;
			label12.Text = "FEI:";
			label12.TextAlign = ContentAlignment.MiddleCenter;
			label18.AutoSize = true;
			label18.Location = new Point(0xff, 0x76);
			label18.Name = "label18";
			label18.Size = new Size(20, 13);
			label18.TabIndex = 14;
			label18.Text = "Hz";
			label10.AutoSize = true;
			label10.Location = new Point(0xff, 0x90);
			label10.Name = "label10";
			label10.Size = new Size(20, 13);
			label10.TabIndex = 0x13;
			label10.Text = "Hz";
			btnAfcClear.Location = new Point(0x56, 0x71);
			btnAfcClear.Name = "btnAfcClear";
			btnAfcClear.Size = new Size(0x29, 0x17);
			btnAfcClear.TabIndex = 11;
			btnAfcClear.Text = "Clear";
			btnAfcClear.UseVisualStyleBackColor = true;
			btnAfcClear.Click += new EventHandler(btnAfcClear_Click);
			btnAfcStart.Location = new Point(0x27, 0x71);
			btnAfcStart.Name = "btnAfcStart";
			btnAfcStart.Size = new Size(0x29, 0x17);
			btnAfcStart.TabIndex = 10;
			btnAfcStart.Text = "Start";
			btnAfcStart.UseVisualStyleBackColor = true;
			btnAfcStart.Click += new EventHandler(btnAfcStart_Click);
			ledAfcDone.BackColor = Color.Transparent;
			ledAfcDone.LedColor = Color.Green;
			ledAfcDone.LedSize = new Size(11, 11);
			ledAfcDone.Location = new Point(0xea, 0x75);
			ledAfcDone.Name = "ledAfcDone";
			ledAfcDone.Size = new Size(15, 15);
			ledAfcDone.TabIndex = 13;
			ledAfcDone.Text = "led1";
			lblAfcValue.BackColor = Color.Transparent;
			lblAfcValue.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblAfcValue.Location = new Point(0x85, 0x72);
			lblAfcValue.Margin = new Padding(3);
			lblAfcValue.Name = "lblAfcValue";
			lblAfcValue.Size = new Size(0x62, 20);
			lblAfcValue.TabIndex = 12;
			lblAfcValue.Text = "0";
			lblAfcValue.TextAlign = ContentAlignment.MiddleLeft;
			label22.AutoSize = true;
			label22.BackColor = Color.Transparent;
			label22.Location = new Point(3, 0x76);
			label22.Name = "label22";
			label22.Size = new Size(30, 13);
			label22.TabIndex = 9;
			label22.Text = "AFC:";
			label22.TextAlign = ContentAlignment.MiddleCenter;
			gBoxOok.Controls.Add(cBoxOokThreshType);
			gBoxOok.Controls.Add(lblOokType);
			gBoxOok.Controls.Add(lblOokStep);
			gBoxOok.Controls.Add(lblOokDec);
			gBoxOok.Controls.Add(lblOokCutoff);
			gBoxOok.Controls.Add(lblOokFixed);
			gBoxOok.Controls.Add(suffixOOKstep);
			gBoxOok.Controls.Add(suffixOOKfixed);
			gBoxOok.Controls.Add(nudOokPeakThreshStep);
			gBoxOok.Controls.Add(nudOokFixedThresh);
			gBoxOok.Controls.Add(cBoxOokPeakThreshDec);
			gBoxOok.Controls.Add(cBoxOokAverageThreshFilt);
			gBoxOok.Location = new Point(3, 0xc5);
			gBoxOok.Name = "gBoxOok";
			gBoxOok.Size = new Size(0x11d, 0xaf);
			gBoxOok.TabIndex = 2;
			gBoxOok.TabStop = false;
			gBoxOok.Text = "OOK";
			gBoxOok.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxOok.MouseEnter += new EventHandler(control_MouseEnter);
			cBoxOokThreshType.FormattingEnabled = true;
			cBoxOokThreshType.Items.AddRange(new object[] { "Fixed", "Peak", "Average" });
			cBoxOokThreshType.Location = new Point(0x7b, 30);
			cBoxOokThreshType.Name = "cBoxOokThreshType";
			cBoxOokThreshType.Size = new Size(0x7c, 0x15);
			cBoxOokThreshType.TabIndex = 1;
			cBoxOokThreshType.SelectedIndexChanged += new EventHandler(cBoxOokThreshType_SelectedIndexChanged);
			lblOokType.AutoSize = true;
			lblOokType.Location = new Point(6, 0x22);
			lblOokType.Name = "lblOokType";
			lblOokType.Size = new Size(80, 13);
			lblOokType.TabIndex = 0;
			lblOokType.Text = "Threshold type:";
			lblOokStep.AutoSize = true;
			lblOokStep.Location = new Point(6, 60);
			lblOokStep.Name = "lblOokStep";
			lblOokStep.Size = new Size(0x68, 13);
			lblOokStep.TabIndex = 2;
			lblOokStep.Text = "Peak threshold step:";
			lblOokDec.AutoSize = true;
			lblOokDec.Location = new Point(6, 0x56);
			lblOokDec.Name = "lblOokDec";
			lblOokDec.Size = new Size(0x66, 13);
			lblOokDec.TabIndex = 5;
			lblOokDec.Text = "Peak threshold dec:";
			lblOokCutoff.AutoSize = true;
			lblOokCutoff.Location = new Point(6, 0x70);
			lblOokCutoff.Name = "lblOokCutoff";
			lblOokCutoff.Size = new Size(0x69, 13);
			lblOokCutoff.TabIndex = 7;
			lblOokCutoff.Text = "Avg threshold cutoff:";
			lblOokFixed.AutoSize = true;
			lblOokFixed.Location = new Point(6, 0x8a);
			lblOokFixed.Name = "lblOokFixed";
			lblOokFixed.Size = new Size(0x51, 13);
			lblOokFixed.TabIndex = 9;
			lblOokFixed.Text = "Fixed threshold:";
			suffixOOKstep.AutoSize = true;
			suffixOOKstep.BackColor = Color.Transparent;
			suffixOOKstep.Location = new Point(0xfd, 60);
			suffixOOKstep.Name = "suffixOOKstep";
			suffixOOKstep.Size = new Size(20, 13);
			suffixOOKstep.TabIndex = 4;
			suffixOOKstep.Text = "dB";
			suffixOOKfixed.AutoSize = true;
			suffixOOKfixed.BackColor = Color.Transparent;
			suffixOOKfixed.Location = new Point(0xfd, 0x8a);
			suffixOOKfixed.Name = "suffixOOKfixed";
			suffixOOKfixed.Size = new Size(20, 13);
			suffixOOKfixed.TabIndex = 11;
			suffixOOKfixed.Text = "dB";
			nudOokPeakThreshStep.DecimalPlaces = 1;
			int[] numArray25 = new int[4];
			numArray25[0] = 5;
			numArray25[3] = 0x10000;
			nudOokPeakThreshStep.Increment = new decimal(numArray25);
			nudOokPeakThreshStep.Location = new Point(0x7b, 0x38);
			int[] numArray26 = new int[4];
			numArray26[0] = 60;
			numArray26[3] = 0x10000;
			nudOokPeakThreshStep.Maximum = new decimal(numArray26);
			int[] numArray27 = new int[4];
			numArray27[0] = 5;
			numArray27[3] = 0x10000;
			nudOokPeakThreshStep.Minimum = new decimal(numArray27);
			nudOokPeakThreshStep.Name = "nudOokPeakThreshStep";
			nudOokPeakThreshStep.Size = new Size(0x7c, 20);
			nudOokPeakThreshStep.TabIndex = 3;
			nudOokPeakThreshStep.ThousandsSeparator = true;
			int[] numArray28 = new int[4];
			numArray28[0] = 5;
			numArray28[3] = 0x10000;
			nudOokPeakThreshStep.Value = new decimal(numArray28);
			nudOokPeakThreshStep.ValueChanged += new EventHandler(nudOokPeakThreshStep_ValueChanged);
			nudOokPeakThreshStep.Validating += new CancelEventHandler(nudOokPeakThreshStep_Validating);
			nudOokFixedThresh.Location = new Point(0x7b, 0x86);
			int[] numArray29 = new int[4];
			numArray29[0] = 0xff;
			nudOokFixedThresh.Maximum = new decimal(numArray29);
			nudOokFixedThresh.Name = "nudOokFixedThresh";
			nudOokFixedThresh.Size = new Size(0x7c, 20);
			nudOokFixedThresh.TabIndex = 10;
			nudOokFixedThresh.ThousandsSeparator = true;
			int[] numArray30 = new int[4];
			numArray30[0] = 6;
			nudOokFixedThresh.Value = new decimal(numArray30);
			nudOokFixedThresh.ValueChanged += new EventHandler(nudOokFixedThresh_ValueChanged);
			cBoxOokPeakThreshDec.FormattingEnabled = true;
			cBoxOokPeakThreshDec.Items.AddRange(new object[] { "Once per chip", "Once every 2 chips", "Once every 4 chips", "Once every 8 chips", "2 times per chip", "4 times per chip", "8 times per chip", "16 times per chip" });
			cBoxOokPeakThreshDec.Location = new Point(0x7b, 0x52);
			cBoxOokPeakThreshDec.Name = "cBoxOokPeakThreshDec";
			cBoxOokPeakThreshDec.Size = new Size(0x7c, 0x15);
			cBoxOokPeakThreshDec.TabIndex = 6;
			cBoxOokPeakThreshDec.SelectedIndexChanged += new EventHandler(cBoxOokPeakThreshDec_SelectedIndexChanged);
			cBoxOokAverageThreshFilt.FormattingEnabled = true;
			cBoxOokAverageThreshFilt.Items.AddRange(new object[] { "Bitrate / 32π", "Bitrate / 8π", "Bitrate / 4π", "Bitrate / 2π" });
			cBoxOokAverageThreshFilt.Location = new Point(0x7b, 0x6c);
			cBoxOokAverageThreshFilt.Name = "cBoxOokAverageThreshFilt";
			cBoxOokAverageThreshFilt.Size = new Size(0x7c, 0x15);
			cBoxOokAverageThreshFilt.TabIndex = 8;
			cBoxOokAverageThreshFilt.SelectedIndexChanged += new EventHandler(cBoxOokAverageThreshFilt_SelectedIndexChanged);
			gBoxAfcBw.Controls.Add(nudAfcDccFreq);
			gBoxAfcBw.Controls.Add(lblAfcDcc);
			gBoxAfcBw.Controls.Add(lblAfcRxBw);
			gBoxAfcBw.Controls.Add(suffixAFCDCC);
			gBoxAfcBw.Controls.Add(suffixAFCRxBw);
			gBoxAfcBw.Controls.Add(nudRxFilterBwAfc);
			gBoxAfcBw.Location = new Point(3, 100);
			gBoxAfcBw.Name = "gBoxAfcBw";
			gBoxAfcBw.Size = new Size(0x11d, 0x5b);
			gBoxAfcBw.TabIndex = 1;
			gBoxAfcBw.TabStop = false;
			gBoxAfcBw.Text = "AFC bandwidth";
			gBoxAfcBw.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxAfcBw.MouseEnter += new EventHandler(control_MouseEnter);
			nudAfcDccFreq.Location = new Point(0x7b, 0x1c);
			int[] numArray31 = new int[4];
			numArray31[0] = 0x679;
			nudAfcDccFreq.Maximum = new decimal(numArray31);
			int[] numArray32 = new int[4];
			numArray32[0] = 12;
			nudAfcDccFreq.Minimum = new decimal(numArray32);
			nudAfcDccFreq.Name = "nudAfcDccFreq";
			nudAfcDccFreq.Size = new Size(0x7c, 20);
			nudAfcDccFreq.TabIndex = 1;
			nudAfcDccFreq.ThousandsSeparator = true;
			int[] numArray33 = new int[4];
			numArray33[0] = 0x1f1;
			nudAfcDccFreq.Value = new decimal(numArray33);
			nudAfcDccFreq.ValueChanged += new EventHandler(nudAfcDccFreq_ValueChanged);
			lblAfcDcc.AutoSize = true;
			lblAfcDcc.Location = new Point(6, 30);
			lblAfcDcc.Name = "lblAfcDcc";
			lblAfcDcc.Size = new Size(0x52, 13);
			lblAfcDcc.TabIndex = 0;
			lblAfcDcc.Text = "DCC frequency:";
			lblAfcRxBw.AutoSize = true;
			lblAfcRxBw.Location = new Point(6, 0x39);
			lblAfcRxBw.Name = "lblAfcRxBw";
			lblAfcRxBw.Size = new Size(0x61, 13);
			lblAfcRxBw.TabIndex = 3;
			lblAfcRxBw.Text = "Rx filter bandwidth:";
			suffixAFCDCC.AutoSize = true;
			suffixAFCDCC.Location = new Point(0xfd, 0x20);
			suffixAFCDCC.Name = "suffixAFCDCC";
			suffixAFCDCC.Size = new Size(20, 13);
			suffixAFCDCC.TabIndex = 2;
			suffixAFCDCC.Text = "Hz";
			suffixAFCRxBw.AutoSize = true;
			suffixAFCRxBw.Location = new Point(0xfd, 0x3b);
			suffixAFCRxBw.Name = "suffixAFCRxBw";
			suffixAFCRxBw.Size = new Size(20, 13);
			suffixAFCRxBw.TabIndex = 5;
			suffixAFCRxBw.Text = "Hz";
			nudRxFilterBwAfc.Location = new Point(0x7b, 0x37);
			int[] numArray34 = new int[4];
			numArray34[0] = 0x61a80;
			nudRxFilterBwAfc.Maximum = new decimal(numArray34);
			int[] numArray35 = new int[4];
			numArray35[0] = 0xc35;
			nudRxFilterBwAfc.Minimum = new decimal(numArray35);
			nudRxFilterBwAfc.Name = "nudRxFilterBwAfc";
			nudRxFilterBwAfc.Size = new Size(0x7c, 20);
			nudRxFilterBwAfc.TabIndex = 4;
			nudRxFilterBwAfc.ThousandsSeparator = true;
			int[] numArray36 = new int[4];
			numArray36[0] = 0xc350;
			nudRxFilterBwAfc.Value = new decimal(numArray36);
			nudRxFilterBwAfc.ValueChanged += new EventHandler(nudRxFilterBwAfc_ValueChanged);
			gBoxRxBw.Controls.Add(nudDccFreq);
			gBoxRxBw.Controls.Add(lblDcc);
			gBoxRxBw.Controls.Add(lblRxBw);
			gBoxRxBw.Controls.Add(suffixDCC);
			gBoxRxBw.Controls.Add(suffixRxBw);
			gBoxRxBw.Controls.Add(nudRxFilterBw);
			gBoxRxBw.Location = new Point(3, 3);
			gBoxRxBw.Name = "gBoxRxBw";
			gBoxRxBw.Size = new Size(0x11d, 0x5b);
			gBoxRxBw.TabIndex = 0;
			gBoxRxBw.TabStop = false;
			gBoxRxBw.Text = "Rx bandwidth";
			gBoxRxBw.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxRxBw.MouseEnter += new EventHandler(control_MouseEnter);
			nudDccFreq.Location = new Point(0x7b, 0x1d);
			int[] numArray37 = new int[4];
			numArray37[0] = 0x679;
			nudDccFreq.Maximum = new decimal(numArray37);
			int[] numArray38 = new int[4];
			numArray38[0] = 12;
			nudDccFreq.Minimum = new decimal(numArray38);
			nudDccFreq.Name = "nudDccFreq";
			nudDccFreq.Size = new Size(0x7c, 20);
			nudDccFreq.TabIndex = 1;
			nudDccFreq.ThousandsSeparator = true;
			int[] numArray39 = new int[4];
			numArray39[0] = 0x19e;
			nudDccFreq.Value = new decimal(numArray39);
			nudDccFreq.ValueChanged += new EventHandler(nudDccFreq_ValueChanged);
			lblDcc.AutoSize = true;
			lblDcc.Location = new Point(6, 0x1f);
			lblDcc.Name = "lblDcc";
			lblDcc.Size = new Size(0x52, 13);
			lblDcc.TabIndex = 0;
			lblDcc.Text = "DCC frequency:";
			lblRxBw.AutoSize = true;
			lblRxBw.Location = new Point(6, 0x39);
			lblRxBw.Name = "lblRxBw";
			lblRxBw.Size = new Size(0x61, 13);
			lblRxBw.TabIndex = 3;
			lblRxBw.Text = "Rx filter bandwidth:";
			suffixDCC.AutoSize = true;
			suffixDCC.Location = new Point(0xfd, 0x21);
			suffixDCC.Name = "suffixDCC";
			suffixDCC.Size = new Size(20, 13);
			suffixDCC.TabIndex = 2;
			suffixDCC.Text = "Hz";
			suffixRxBw.AutoSize = true;
			suffixRxBw.Location = new Point(0xfd, 0x39);
			suffixRxBw.Name = "suffixRxBw";
			suffixRxBw.Size = new Size(20, 13);
			suffixRxBw.TabIndex = 5;
			suffixRxBw.Text = "Hz";
			nudRxFilterBw.Location = new Point(0x7b, 0x35);
			int[] numArray40 = new int[4];
			numArray40[0] = 0x7a120;
			nudRxFilterBw.Maximum = new decimal(numArray40);
			int[] numArray41 = new int[4];
			numArray41[0] = 0xf42;
			nudRxFilterBw.Minimum = new decimal(numArray41);
			nudRxFilterBw.Name = "nudRxFilterBw";
			nudRxFilterBw.Size = new Size(0x7c, 20);
			nudRxFilterBw.TabIndex = 4;
			nudRxFilterBw.ThousandsSeparator = true;
			int[] numArray42 = new int[4];
			numArray42[0] = 0x28b1;
			nudRxFilterBw.Value = new decimal(numArray42);
			nudRxFilterBw.ValueChanged += new EventHandler(nudRxFilterBw_ValueChanged);
			gBoxLna.Controls.Add(panel5);
			gBoxLna.Controls.Add(label13);
			gBoxLna.Controls.Add(label16);
			gBoxLna.Controls.Add(lblAgcReference);
			gBoxLna.Controls.Add(label48);
			gBoxLna.Controls.Add(label49);
			gBoxLna.Controls.Add(label50);
			gBoxLna.Controls.Add(label51);
			gBoxLna.Controls.Add(label52);
			gBoxLna.Controls.Add(lblLnaGain1);
			gBoxLna.Controls.Add(label53);
			gBoxLna.Controls.Add(panel6);
			gBoxLna.Controls.Add(lblLnaGain2);
			gBoxLna.Controls.Add(lblLnaGain3);
			gBoxLna.Controls.Add(lblLnaGain4);
			gBoxLna.Controls.Add(lblLnaGain5);
			gBoxLna.Controls.Add(lblLnaGain6);
			gBoxLna.Controls.Add(lblAgcThresh1);
			gBoxLna.Controls.Add(lblAgcThresh2);
			gBoxLna.Controls.Add(lblAgcThresh3);
			gBoxLna.Controls.Add(lblAgcThresh4);
			gBoxLna.Controls.Add(lblAgcThresh5);
			gBoxLna.Controls.Add(label47);
			gBoxLna.Location = new Point(3, 0x17a);
			gBoxLna.Name = "gBoxLna";
			gBoxLna.Size = new Size(0x319, 0x70);
			gBoxLna.TabIndex = 7;
			gBoxLna.TabStop = false;
			gBoxLna.Text = "Lna gain";
			gBoxLna.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxLna.MouseEnter += new EventHandler(control_MouseEnter);
			panel5.AutoSize = true;
			panel5.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel5.Controls.Add(rBtnLnaGainAutoOff);
			panel5.Controls.Add(rBtnLnaGainAutoOn);
			panel5.Location = new Point(0x36, 0x51);
			panel5.Name = "panel5";
			panel5.Size = new Size(0x77, 0x11);
			panel5.TabIndex = 0x15;
			rBtnLnaGainAutoOff.AutoSize = true;
			rBtnLnaGainAutoOff.Location = new Point(0x38, 0);
			rBtnLnaGainAutoOff.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGainAutoOff.Name = "rBtnLnaGainAutoOff";
			rBtnLnaGainAutoOff.Size = new Size(60, 0x11);
			rBtnLnaGainAutoOff.TabIndex = 1;
			rBtnLnaGainAutoOff.Text = "Manual";
			rBtnLnaGainAutoOff.UseVisualStyleBackColor = true;
			rBtnLnaGainAutoOff.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGainAutoOn.AutoSize = true;
			rBtnLnaGainAutoOn.Checked = true;
			rBtnLnaGainAutoOn.Location = new Point(3, 0);
			rBtnLnaGainAutoOn.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGainAutoOn.Name = "rBtnLnaGainAutoOn";
			rBtnLnaGainAutoOn.Size = new Size(0x2f, 0x11);
			rBtnLnaGainAutoOn.TabIndex = 0;
			rBtnLnaGainAutoOn.TabStop = true;
			rBtnLnaGainAutoOn.Text = "Auto";
			rBtnLnaGainAutoOn.UseVisualStyleBackColor = true;
			rBtnLnaGainAutoOn.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			label13.BackColor = Color.Transparent;
			label13.Location = new Point(0x4f, 40);
			label13.Name = "label13";
			label13.Size = new Size(0x2a, 13);
			label13.TabIndex = 6;
			label13.Text = "AGC";
			label13.TextAlign = ContentAlignment.MiddleCenter;
			label16.BackColor = Color.Transparent;
			label16.Location = new Point(0x13, 0x51);
			label16.Margin = new Padding(0, 0, 0, 3);
			label16.Name = "label16";
			label16.Size = new Size(0x20, 0x11);
			label16.TabIndex = 20;
			label16.Text = "Gain:";
			label16.TextAlign = ContentAlignment.MiddleLeft;
			lblAgcReference.BackColor = Color.Transparent;
			lblAgcReference.Location = new Point(110, 40);
			lblAgcReference.Margin = new Padding(0, 0, 0, 3);
			lblAgcReference.Name = "lblAgcReference";
			lblAgcReference.Size = new Size(100, 13);
			lblAgcReference.TabIndex = 7;
			lblAgcReference.Text = "-80";
			lblAgcReference.TextAlign = ContentAlignment.MiddleCenter;
			label48.BackColor = Color.Transparent;
			label48.Location = new Point(110, 0x18);
			label48.Margin = new Padding(0, 0, 0, 3);
			label48.Name = "label48";
			label48.Size = new Size(100, 13);
			label48.TabIndex = 0;
			label48.Text = "Reference";
			label48.TextAlign = ContentAlignment.MiddleCenter;
			label49.BackColor = Color.Transparent;
			label49.Location = new Point(210, 0x18);
			label49.Margin = new Padding(0, 0, 0, 3);
			label49.Name = "label49";
			label49.Size = new Size(100, 13);
			label49.TabIndex = 1;
			label49.Text = "Threshold 1";
			label49.TextAlign = ContentAlignment.MiddleCenter;
			label50.BackColor = Color.Transparent;
			label50.Location = new Point(310, 0x18);
			label50.Margin = new Padding(0, 0, 0, 3);
			label50.Name = "label50";
			label50.Size = new Size(100, 13);
			label50.TabIndex = 2;
			label50.Text = "Threshold 2";
			label50.TextAlign = ContentAlignment.MiddleCenter;
			label51.BackColor = Color.Transparent;
			label51.Location = new Point(410, 0x18);
			label51.Margin = new Padding(0, 0, 0, 3);
			label51.Name = "label51";
			label51.Size = new Size(100, 13);
			label51.TabIndex = 3;
			label51.Text = "Threshold 3";
			label51.TextAlign = ContentAlignment.MiddleCenter;
			label52.BackColor = Color.Transparent;
			label52.Location = new Point(510, 0x18);
			label52.Margin = new Padding(0, 0, 0, 3);
			label52.Name = "label52";
			label52.Size = new Size(100, 13);
			label52.TabIndex = 4;
			label52.Text = "Threshold 4";
			label52.TextAlign = ContentAlignment.MiddleCenter;
			lblLnaGain1.BackColor = Color.LightSteelBlue;
			lblLnaGain1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain1.Location = new Point(160, 0x38);
			lblLnaGain1.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain1.Name = "lblLnaGain1";
			lblLnaGain1.Size = new Size(100, 20);
			lblLnaGain1.TabIndex = 14;
			lblLnaGain1.Text = "G1";
			lblLnaGain1.TextAlign = ContentAlignment.MiddleCenter;
			label53.BackColor = Color.Transparent;
			label53.Location = new Point(610, 0x18);
			label53.Margin = new Padding(0, 0, 0, 3);
			label53.Name = "label53";
			label53.Size = new Size(100, 13);
			label53.TabIndex = 5;
			label53.Text = "Threshold 5";
			label53.TextAlign = ContentAlignment.MiddleCenter;
			panel6.AutoSize = true;
			panel6.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel6.Controls.Add(rBtnLnaGain1);
			panel6.Controls.Add(rBtnLnaGain2);
			panel6.Controls.Add(rBtnLnaGain3);
			panel6.Controls.Add(rBtnLnaGain4);
			panel6.Controls.Add(rBtnLnaGain5);
			panel6.Controls.Add(rBtnLnaGain6);
			panel6.Location = new Point(0xc9, 0x53);
			panel6.Name = "panel6";
			panel6.Size = new Size(0x209, 13);
			panel6.TabIndex = 0x16;
			rBtnLnaGain1.AutoSize = true;
			rBtnLnaGain1.Checked = true;
			rBtnLnaGain1.Location = new Point(3, 0);
			rBtnLnaGain1.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain1.Name = "rBtnLnaGain1";
			rBtnLnaGain1.Size = new Size(14, 13);
			rBtnLnaGain1.TabIndex = 0;
			rBtnLnaGain1.TabStop = true;
			rBtnLnaGain1.UseVisualStyleBackColor = true;
			rBtnLnaGain1.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGain2.AutoSize = true;
			rBtnLnaGain2.Location = new Point(0x66, 0);
			rBtnLnaGain2.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain2.Name = "rBtnLnaGain2";
			rBtnLnaGain2.Size = new Size(14, 13);
			rBtnLnaGain2.TabIndex = 1;
			rBtnLnaGain2.UseVisualStyleBackColor = true;
			rBtnLnaGain2.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGain3.AutoSize = true;
			rBtnLnaGain3.Location = new Point(0xcb, 0);
			rBtnLnaGain3.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain3.Name = "rBtnLnaGain3";
			rBtnLnaGain3.Size = new Size(14, 13);
			rBtnLnaGain3.TabIndex = 2;
			rBtnLnaGain3.UseVisualStyleBackColor = true;
			rBtnLnaGain3.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGain4.AutoSize = true;
			rBtnLnaGain4.Location = new Point(0x12f, 0);
			rBtnLnaGain4.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain4.Name = "rBtnLnaGain4";
			rBtnLnaGain4.Size = new Size(14, 13);
			rBtnLnaGain4.TabIndex = 3;
			rBtnLnaGain4.UseVisualStyleBackColor = true;
			rBtnLnaGain4.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGain5.AutoSize = true;
			rBtnLnaGain5.Location = new Point(0x194, 0);
			rBtnLnaGain5.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain5.Name = "rBtnLnaGain5";
			rBtnLnaGain5.Size = new Size(14, 13);
			rBtnLnaGain5.TabIndex = 4;
			rBtnLnaGain5.UseVisualStyleBackColor = true;
			rBtnLnaGain5.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			rBtnLnaGain6.AutoSize = true;
			rBtnLnaGain6.Location = new Point(0x1f8, 0);
			rBtnLnaGain6.Margin = new Padding(3, 0, 3, 0);
			rBtnLnaGain6.Name = "rBtnLnaGain6";
			rBtnLnaGain6.Size = new Size(14, 13);
			rBtnLnaGain6.TabIndex = 5;
			rBtnLnaGain6.UseVisualStyleBackColor = true;
			rBtnLnaGain6.CheckedChanged += new EventHandler(rBtnLnaGain_CheckedChanged);
			lblLnaGain2.BackColor = Color.Transparent;
			lblLnaGain2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain2.Location = new Point(260, 0x38);
			lblLnaGain2.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain2.Name = "lblLnaGain2";
			lblLnaGain2.Size = new Size(100, 20);
			lblLnaGain2.TabIndex = 15;
			lblLnaGain2.Text = "G2";
			lblLnaGain2.TextAlign = ContentAlignment.MiddleCenter;
			lblLnaGain3.BackColor = Color.Transparent;
			lblLnaGain3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain3.Location = new Point(360, 0x38);
			lblLnaGain3.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain3.Name = "lblLnaGain3";
			lblLnaGain3.Size = new Size(100, 20);
			lblLnaGain3.TabIndex = 0x10;
			lblLnaGain3.Text = "G3";
			lblLnaGain3.TextAlign = ContentAlignment.MiddleCenter;
			lblLnaGain4.BackColor = Color.Transparent;
			lblLnaGain4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain4.Location = new Point(460, 0x38);
			lblLnaGain4.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain4.Name = "lblLnaGain4";
			lblLnaGain4.Size = new Size(100, 20);
			lblLnaGain4.TabIndex = 0x11;
			lblLnaGain4.Text = "G4";
			lblLnaGain4.TextAlign = ContentAlignment.MiddleCenter;
			lblLnaGain5.BackColor = Color.Transparent;
			lblLnaGain5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain5.Location = new Point(560, 0x38);
			lblLnaGain5.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain5.Name = "lblLnaGain5";
			lblLnaGain5.Size = new Size(100, 20);
			lblLnaGain5.TabIndex = 0x12;
			lblLnaGain5.Text = "G5";
			lblLnaGain5.TextAlign = ContentAlignment.MiddleCenter;
			lblLnaGain6.BackColor = Color.Transparent;
			lblLnaGain6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblLnaGain6.Location = new Point(660, 0x38);
			lblLnaGain6.Margin = new Padding(0, 0, 0, 3);
			lblLnaGain6.Name = "lblLnaGain6";
			lblLnaGain6.Size = new Size(100, 20);
			lblLnaGain6.TabIndex = 0x13;
			lblLnaGain6.Text = "G6";
			lblLnaGain6.TextAlign = ContentAlignment.MiddleCenter;
			lblAgcThresh1.BackColor = Color.Transparent;
			lblAgcThresh1.Location = new Point(210, 40);
			lblAgcThresh1.Margin = new Padding(0, 0, 0, 3);
			lblAgcThresh1.Name = "lblAgcThresh1";
			lblAgcThresh1.Size = new Size(100, 13);
			lblAgcThresh1.TabIndex = 8;
			lblAgcThresh1.Text = "0";
			lblAgcThresh1.TextAlign = ContentAlignment.MiddleCenter;
			lblAgcThresh2.BackColor = Color.Transparent;
			lblAgcThresh2.Location = new Point(310, 40);
			lblAgcThresh2.Margin = new Padding(0, 0, 0, 3);
			lblAgcThresh2.Name = "lblAgcThresh2";
			lblAgcThresh2.Size = new Size(100, 13);
			lblAgcThresh2.TabIndex = 9;
			lblAgcThresh2.Text = "0";
			lblAgcThresh2.TextAlign = ContentAlignment.MiddleCenter;
			lblAgcThresh3.BackColor = Color.Transparent;
			lblAgcThresh3.Location = new Point(410, 40);
			lblAgcThresh3.Margin = new Padding(0, 0, 0, 3);
			lblAgcThresh3.Name = "lblAgcThresh3";
			lblAgcThresh3.Size = new Size(100, 13);
			lblAgcThresh3.TabIndex = 10;
			lblAgcThresh3.Text = "0";
			lblAgcThresh3.TextAlign = ContentAlignment.MiddleCenter;
			lblAgcThresh4.BackColor = Color.Transparent;
			lblAgcThresh4.Location = new Point(510, 40);
			lblAgcThresh4.Margin = new Padding(0, 0, 0, 3);
			lblAgcThresh4.Name = "lblAgcThresh4";
			lblAgcThresh4.Size = new Size(100, 13);
			lblAgcThresh4.TabIndex = 11;
			lblAgcThresh4.Text = "0";
			lblAgcThresh4.TextAlign = ContentAlignment.MiddleCenter;
			lblAgcThresh5.BackColor = Color.Transparent;
			lblAgcThresh5.Location = new Point(610, 40);
			lblAgcThresh5.Margin = new Padding(0, 0, 0, 3);
			lblAgcThresh5.Name = "lblAgcThresh5";
			lblAgcThresh5.Size = new Size(100, 13);
			lblAgcThresh5.TabIndex = 12;
			lblAgcThresh5.Text = "0";
			lblAgcThresh5.TextAlign = ContentAlignment.MiddleCenter;
			label47.AutoSize = true;
			label47.BackColor = Color.Transparent;
			label47.Location = new Point(0x2c5, 40);
			label47.Margin = new Padding(0);
			label47.Name = "label47";
			label47.Size = new Size(0x40, 13);
			label47.TabIndex = 13;
			label47.Text = "-> Pin [dBm]";
			label47.TextAlign = ContentAlignment.MiddleLeft;
			gBoxDagc.Controls.Add(label34);
			gBoxDagc.Controls.Add(panel11);
			gBoxDagc.Location = new Point(0x249, 0x79);
			gBoxDagc.Name = "gBoxDagc";
			gBoxDagc.Size = new Size(0xd3, 50);
			gBoxDagc.TabIndex = 5;
			gBoxDagc.TabStop = false;
			gBoxDagc.Text = "DAGC";
			gBoxDagc.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxDagc.MouseEnter += new EventHandler(control_MouseEnter);
			label34.AutoSize = true;
			label34.Location = new Point(11, 0x15);
			label34.Name = "label34";
			label34.Size = new Size(40, 13);
			label34.TabIndex = 3;
			label34.Text = "DAGC:";
			panel11.AutoSize = true;
			panel11.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			panel11.Controls.Add(rBtnDagcOff);
			panel11.Controls.Add(rBtnDagcOn);
			panel11.Location = new Point(0x6a, 0x13);
			panel11.Name = "panel11";
			panel11.Size = new Size(0x5d, 0x11);
			panel11.TabIndex = 4;
			rBtnDagcOff.AutoSize = true;
			rBtnDagcOff.Location = new Point(0x2d, 0);
			rBtnDagcOff.Margin = new Padding(3, 0, 3, 0);
			rBtnDagcOff.Name = "rBtnDagcOff";
			rBtnDagcOff.Size = new Size(0x2d, 0x11);
			rBtnDagcOff.TabIndex = 1;
			rBtnDagcOff.Text = "OFF";
			rBtnDagcOff.UseVisualStyleBackColor = true;
			rBtnDagcOff.CheckedChanged += new EventHandler(rBtnDagc_CheckedChanged);
			rBtnDagcOn.AutoSize = true;
			rBtnDagcOn.Checked = true;
			rBtnDagcOn.Location = new Point(3, 0);
			rBtnDagcOn.Margin = new Padding(3, 0, 3, 0);
			rBtnDagcOn.Name = "rBtnDagcOn";
			rBtnDagcOn.Size = new Size(0x29, 0x11);
			rBtnDagcOn.TabIndex = 0;
			rBtnDagcOn.TabStop = true;
			rBtnDagcOn.Text = "ON";
			rBtnDagcOn.UseVisualStyleBackColor = true;
			rBtnDagcOn.CheckedChanged += new EventHandler(rBtnDagc_CheckedChanged);
			base.AutoScaleDimensions = new SizeF(6f, 13f);
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(gBoxDagc);
			base.Controls.Add(gBoxLnaSensitivity);
			base.Controls.Add(gBoxAgc);
			base.Controls.Add(gBoxRssi);
			base.Controls.Add(gBoxAfcFei);
			base.Controls.Add(gBoxOok);
			base.Controls.Add(gBoxAfcBw);
			base.Controls.Add(gBoxRxBw);
			base.Controls.Add(gBoxLna);
			base.Name = "ReceiverViewControl";
			base.Size = new Size(0x31f, 0x1ed);
			((ISupportInitialize)errorProvider).EndInit();
			panel3.ResumeLayout(false);
			panel3.PerformLayout();
			panel4.ResumeLayout(false);
			panel4.PerformLayout();
			pnlSensitivityBoost.ResumeLayout(false);
			pnlSensitivityBoost.PerformLayout();
			gBoxLnaSensitivity.ResumeLayout(false);
			gBoxLnaSensitivity.PerformLayout();
			gBoxAgc.ResumeLayout(false);
			gBoxAgc.PerformLayout();
			panel2.ResumeLayout(false);
			panel2.PerformLayout();
			nudAgcStep5.EndInit();
			nudAgcSnrMargin.EndInit();
			nudAgcStep4.EndInit();
			nudAgcRefLevel.EndInit();
			nudAgcStep3.EndInit();
			nudAgcStep1.EndInit();
			nudAgcStep2.EndInit();
			gBoxRssi.ResumeLayout(false);
			gBoxRssi.PerformLayout();
			pnlRssiPhase.ResumeLayout(false);
			pnlRssiPhase.PerformLayout();
			panel7.ResumeLayout(false);
			panel7.PerformLayout();
			nudRssiThresh.EndInit();
			panel1.ResumeLayout(false);
			panel1.PerformLayout();
			nudTimeoutRxStart.EndInit();
			nudTimeoutRssiThresh.EndInit();
			gBoxAfcFei.ResumeLayout(false);
			gBoxAfcFei.PerformLayout();
			nudLowBetaAfcOffset.EndInit();
			pnlAfcLowBeta.ResumeLayout(false);
			pnlAfcLowBeta.PerformLayout();
			panel8.ResumeLayout(false);
			panel8.PerformLayout();
			panel9.ResumeLayout(false);
			panel9.PerformLayout();
			gBoxOok.ResumeLayout(false);
			gBoxOok.PerformLayout();
			nudOokPeakThreshStep.EndInit();
			nudOokFixedThresh.EndInit();
			gBoxAfcBw.ResumeLayout(false);
			gBoxAfcBw.PerformLayout();
			nudAfcDccFreq.EndInit();
			nudRxFilterBwAfc.EndInit();
			gBoxRxBw.ResumeLayout(false);
			gBoxRxBw.PerformLayout();
			nudDccFreq.EndInit();
			nudRxFilterBw.EndInit();
			gBoxLna.ResumeLayout(false);
			gBoxLna.PerformLayout();
			panel5.ResumeLayout(false);
			panel5.PerformLayout();
			panel6.ResumeLayout(false);
			panel6.PerformLayout();
			gBoxDagc.ResumeLayout(false);
			gBoxDagc.PerformLayout();
			panel11.ResumeLayout(false);
			panel11.PerformLayout();
			base.ResumeLayout(false);
		}
Exemplo n.º 37
0
		private void InitializeComponent()
		{
			components = new Container();
			errorProvider = new ErrorProvider(components);
			btnCalibrate = new Button();
			lblMeasuring = new Label();
			tmrTempMeasStart = new System.Windows.Forms.Timer(components);
			pnlAdcLowPower = new Panel();
			rBtnAdcLowPowerOff = new RadioButton();
			rBtnAdcLowPowerOn = new RadioButton();
			label3 = new Label();
			panel1 = new Panel();
			thermometerCtrl = new TempCtrl();
			ledTempMeasRunning = new Led();
			((ISupportInitialize)errorProvider).BeginInit();
			pnlAdcLowPower.SuspendLayout();
			panel1.SuspendLayout();
			base.SuspendLayout();
			errorProvider.ContainerControl = this;
			btnCalibrate.Location = new Point(0x25, 3);
			btnCalibrate.Name = "btnCalibrate";
			btnCalibrate.Size = new Size(0x4b, 0x17);
			btnCalibrate.TabIndex = 0;
			btnCalibrate.Text = "Calibrate";
			btnCalibrate.UseVisualStyleBackColor = true;
			btnCalibrate.MouseLeave += new EventHandler(control_MouseLeave);
			btnCalibrate.Click += new EventHandler(btnTempCalibrate_Click);
			btnCalibrate.MouseEnter += new EventHandler(control_MouseEnter);
			lblMeasuring.AutoSize = true;
			lblMeasuring.Location = new Point(0x22, 0x1d);
			lblMeasuring.Name = "lblMeasuring";
			lblMeasuring.Size = new Size(0x3b, 13);
			lblMeasuring.TabIndex = 1;
			lblMeasuring.Text = "Measuring:";
			lblMeasuring.TextAlign = ContentAlignment.MiddleLeft;
			lblMeasuring.MouseLeave += new EventHandler(control_MouseLeave);
			lblMeasuring.MouseEnter += new EventHandler(control_MouseEnter);
			tmrTempMeasStart.Interval = 0x3e8;
			pnlAdcLowPower.AutoSize = true;
			pnlAdcLowPower.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlAdcLowPower.Controls.Add(rBtnAdcLowPowerOff);
			pnlAdcLowPower.Controls.Add(rBtnAdcLowPowerOn);
			pnlAdcLowPower.Location = new Point(0x2b6, 0x1d3);
			pnlAdcLowPower.Name = "pnlAdcLowPower";
			pnlAdcLowPower.Size = new Size(0x66, 0x17);
			pnlAdcLowPower.TabIndex = 3;
			pnlAdcLowPower.Visible = false;
			pnlAdcLowPower.MouseLeave += new EventHandler(control_MouseLeave);
			pnlAdcLowPower.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAdcLowPowerOff.AutoSize = true;
			rBtnAdcLowPowerOff.Location = new Point(0x36, 3);
			rBtnAdcLowPowerOff.Name = "rBtnAdcLowPowerOff";
			rBtnAdcLowPowerOff.Size = new Size(0x2d, 0x11);
			rBtnAdcLowPowerOff.TabIndex = 1;
			rBtnAdcLowPowerOff.Text = "OFF";
			rBtnAdcLowPowerOff.UseVisualStyleBackColor = true;
			rBtnAdcLowPowerOff.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAdcLowPowerOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAdcLowPowerOff.CheckedChanged += new EventHandler(rBtnAdcLowPower_CheckedChanged);
			rBtnAdcLowPowerOn.AutoSize = true;
			rBtnAdcLowPowerOn.Checked = true;
			rBtnAdcLowPowerOn.Location = new Point(3, 3);
			rBtnAdcLowPowerOn.Name = "rBtnAdcLowPowerOn";
			rBtnAdcLowPowerOn.Size = new Size(0x29, 0x11);
			rBtnAdcLowPowerOn.TabIndex = 0;
			rBtnAdcLowPowerOn.TabStop = true;
			rBtnAdcLowPowerOn.Text = "ON";
			rBtnAdcLowPowerOn.UseVisualStyleBackColor = true;
			rBtnAdcLowPowerOn.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAdcLowPowerOn.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAdcLowPowerOn.CheckedChanged += new EventHandler(rBtnAdcLowPower_CheckedChanged);
			label3.AutoSize = true;
			label3.Location = new Point(0x25a, 0x1d8);
			label3.Name = "label3";
			label3.Size = new Size(0x53, 13);
			label3.TabIndex = 2;
			label3.Text = "ADC low power:";
			label3.TextAlign = ContentAlignment.MiddleLeft;
			label3.Visible = false;
			label3.MouseLeave += new EventHandler(control_MouseLeave);
			label3.MouseEnter += new EventHandler(control_MouseEnter);
			panel1.Controls.Add(btnCalibrate);
			panel1.Controls.Add(lblMeasuring);
			panel1.Controls.Add(ledTempMeasRunning);
			panel1.Location = new Point(0x145, 0x1bb);
			panel1.Name = "panel1";
			panel1.Size = new Size(0x94, 0x2f);
			panel1.TabIndex = 1;
			panel1.MouseLeave += new EventHandler(control_MouseLeave);
			panel1.MouseEnter += new EventHandler(control_MouseEnter);
			thermometerCtrl.BackColor = Color.Transparent;
			thermometerCtrl.DrawTics = true;
			thermometerCtrl.Enabled = false;
			thermometerCtrl.ForeColor = Color.Red;
			thermometerCtrl.LargeTicFreq = 10;
			thermometerCtrl.Location = new Point(0x145, 3);
			thermometerCtrl.Name = "thermometerCtrl";
			thermometerCtrl.Range.Max = 90.0;
			thermometerCtrl.Range.Min = -40.0;
			thermometerCtrl.Size = new Size(0x94, 0x1b2);
			thermometerCtrl.SmallTicFreq = 5;
			thermometerCtrl.TabIndex = 0;
			thermometerCtrl.Text = "Thermometer";
			thermometerCtrl.Value = 25.0;
			thermometerCtrl.MouseLeave += new EventHandler(control_MouseLeave);
			thermometerCtrl.MouseEnter += new EventHandler(control_MouseEnter);
			ledTempMeasRunning.BackColor = Color.Transparent;
			ledTempMeasRunning.LedColor = Color.Green;
			ledTempMeasRunning.LedSize = new Size(11, 11);
			ledTempMeasRunning.Location = new Point(0x63, 0x1d);
			ledTempMeasRunning.Name = "ledTempMeasRunning";
			ledTempMeasRunning.Size = new Size(15, 15);
			ledTempMeasRunning.TabIndex = 2;
			ledTempMeasRunning.Text = "Measuring";
			ledTempMeasRunning.MouseLeave += new EventHandler(control_MouseLeave);
			ledTempMeasRunning.MouseEnter += new EventHandler(control_MouseEnter);
			base.AutoScaleDimensions = new SizeF(6f, 13f);
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(thermometerCtrl);
			base.Controls.Add(pnlAdcLowPower);
			base.Controls.Add(panel1);
			base.Controls.Add(label3);
			base.Name = "TemperatureViewControl";
			base.Size = new Size(0x31f, 0x1ed);
			((ISupportInitialize)errorProvider).EndInit();
			pnlAdcLowPower.ResumeLayout(false);
			pnlAdcLowPower.PerformLayout();
			panel1.ResumeLayout(false);
			panel1.PerformLayout();
			base.ResumeLayout(false);
			base.PerformLayout();
		}
Exemplo n.º 38
0
 private void InitializeComponent()
 {
     btnCancel   = new Button();
     btnOkay     = new Button();
     label1      = new Label();
     comboBox1   = new ComboBox();
     label2      = new Label();
     comboBox2   = new ComboBox();
     comboBox3   = new ComboBox();
     checkBox1   = new CheckBox();
     label3      = new Label();
     label4      = new Label();
     baseBone    = new Label();
     modelPanel1 = new ModelPanel();
     panel1      = new Panel();
     panel1.SuspendLayout();
     SuspendLayout();
     //
     // btnCancel
     //
     btnCancel.Anchor                  = AnchorStyles.Bottom | AnchorStyles.Right;
     btnCancel.DialogResult            = DialogResult.Cancel;
     btnCancel.Location                = new Drawing.Point(139, 131);
     btnCancel.Name                    = "btnCancel";
     btnCancel.Size                    = new Drawing.Size(75, 23);
     btnCancel.TabIndex                = 2;
     btnCancel.Text                    = "&Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     btnCancel.Click                  += new EventHandler(btnCancel_Click);
     //
     // btnOkay
     //
     btnOkay.Anchor   = AnchorStyles.Bottom | AnchorStyles.Right;
     btnOkay.Location = new Drawing.Point(58, 131);
     btnOkay.Name     = "btnOkay";
     btnOkay.Size     = new Drawing.Size(75, 23);
     btnOkay.TabIndex = 1;
     btnOkay.Text     = "&Okay";
     btnOkay.UseVisualStyleBackColor = true;
     btnOkay.Click += new EventHandler(btnOkay_Click);
     //
     // label1
     //
     label1.Anchor    = AnchorStyles.Bottom | AnchorStyles.Right;
     label1.AutoSize  = true;
     label1.Location  = new Drawing.Point(47, 12);
     label1.Name      = "label1";
     label1.Size      = new Drawing.Size(39, 13);
     label1.TabIndex  = 3;
     label1.Text      = "Import:";
     label1.TextAlign = Drawing.ContentAlignment.TopRight;
     //
     // comboBox1
     //
     comboBox1.Anchor            = AnchorStyles.Bottom | AnchorStyles.Right;
     comboBox1.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox1.FormattingEnabled = true;
     comboBox1.Location          = new Drawing.Point(92, 9);
     comboBox1.Name                  = "comboBox1";
     comboBox1.Size                  = new Drawing.Size(121, 21);
     comboBox1.TabIndex              = 4;
     comboBox1.SelectedIndexChanged += new EventHandler(comboBox1_SelectedIndexChanged);
     //
     // label2
     //
     label2.Anchor    = AnchorStyles.Bottom | AnchorStyles.Right;
     label2.Location  = new Drawing.Point(3, 58);
     label2.Name      = "label2";
     label2.Size      = new Drawing.Size(83, 18);
     label2.TabIndex  = 5;
     label2.Text      = "Skeleton Root:";
     label2.TextAlign = Drawing.ContentAlignment.TopRight;
     //
     // comboBox2
     //
     comboBox2.Anchor            = AnchorStyles.Bottom | AnchorStyles.Right;
     comboBox2.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox2.FormattingEnabled = true;
     comboBox2.Location          = new Drawing.Point(92, 55);
     comboBox2.Name                  = "comboBox2";
     comboBox2.Size                  = new Drawing.Size(121, 21);
     comboBox2.TabIndex              = 6;
     comboBox2.SelectedIndexChanged += new EventHandler(comboBox2_SelectedIndexChanged);
     //
     // comboBox3
     //
     comboBox3.Anchor            = AnchorStyles.Bottom | AnchorStyles.Right;
     comboBox3.DropDownStyle     = ComboBoxStyle.DropDownList;
     comboBox3.FormattingEnabled = true;
     comboBox3.Items.AddRange(new object[]
     {
         "Merge",
         "Replace",
         "Add As Child"
     });
     comboBox3.Location = new Drawing.Point(92, 82);
     comboBox3.Name     = "comboBox3";
     comboBox3.Size     = new Drawing.Size(121, 21);
     comboBox3.TabIndex = 7;
     //
     // checkBox1
     //
     checkBox1.Anchor   = AnchorStyles.Bottom | AnchorStyles.Right;
     checkBox1.AutoSize = true;
     checkBox1.Location = new Drawing.Point(92, 109);
     checkBox1.Name     = "checkBox1";
     checkBox1.Size     = new Drawing.Size(116, 17);
     checkBox1.TabIndex = 8;
     checkBox1.Text     = "Merge both models";
     checkBox1.UseVisualStyleBackColor = true;
     checkBox1.CheckedChanged         += new EventHandler(checkBox1_CheckedChanged);
     //
     // label3
     //
     label3.Anchor    = AnchorStyles.Bottom | AnchorStyles.Right;
     label3.AutoSize  = true;
     label3.Location  = new Drawing.Point(7, 85);
     label3.Name      = "label3";
     label3.Size      = new Drawing.Size(79, 13);
     label3.TabIndex  = 9;
     label3.Text      = "Base Skeleton:";
     label3.TextAlign = Drawing.ContentAlignment.TopRight;
     //
     // label4
     //
     label4.Anchor    = AnchorStyles.Bottom | AnchorStyles.Right;
     label4.AutoSize  = true;
     label4.Location  = new Drawing.Point(24, 35);
     label4.Name      = "label4";
     label4.Size      = new Drawing.Size(62, 13);
     label4.TabIndex  = 10;
     label4.Text      = "Base Bone:";
     label4.TextAlign = Drawing.ContentAlignment.TopRight;
     //
     // baseBone
     //
     baseBone.Anchor    = AnchorStyles.Bottom | AnchorStyles.Right;
     baseBone.AutoSize  = true;
     baseBone.Location  = new Drawing.Point(92, 35);
     baseBone.Name      = "baseBone";
     baseBone.Size      = new Drawing.Size(37, 13);
     baseBone.TabIndex  = 11;
     baseBone.Text      = "(none)";
     baseBone.TextAlign = Drawing.ContentAlignment.TopRight;
     //
     // modelPanel1
     //
     modelPanel1.Dock     = DockStyle.Fill;
     modelPanel1.Location = new Drawing.Point(0, 0);
     modelPanel1.Name     = "modelPanel1";
     modelPanel1.Size     = new Drawing.Size(203, 166);
     modelPanel1.TabIndex = 12;
     //
     // panel1
     //
     panel1.Controls.Add(baseBone);
     panel1.Controls.Add(label4);
     panel1.Controls.Add(label3);
     panel1.Controls.Add(checkBox1);
     panel1.Controls.Add(comboBox3);
     panel1.Controls.Add(comboBox2);
     panel1.Controls.Add(label2);
     panel1.Controls.Add(comboBox1);
     panel1.Controls.Add(label1);
     panel1.Controls.Add(btnOkay);
     panel1.Controls.Add(btnCancel);
     panel1.Dock     = DockStyle.Right;
     panel1.Location = new Drawing.Point(203, 0);
     panel1.Name     = "panel1";
     panel1.Size     = new Drawing.Size(226, 166);
     panel1.TabIndex = 13;
     //
     // ObjectImporter
     //
     AcceptButton = btnOkay;
     CancelButton = btnCancel;
     ClientSize   = new Drawing.Size(429, 166);
     Controls.Add(modelPanel1);
     Controls.Add(panel1);
     //this.Icon = BrawlLib.Properties.Resources.Icon;
     MinimumSize   = new Drawing.Size(242, 204);
     Name          = "ObjectImporter";
     ShowIcon      = false;
     ShowInTaskbar = false;
     StartPosition = FormStartPosition.CenterParent;
     Text          = "Import Object";
     panel1.ResumeLayout(false);
     panel1.PerformLayout();
     ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new Container();
     ComponentResourceManager manager = new ComponentResourceManager(typeof(CopyWorkerDialog));
     this.lblElapsedTime = new Label();
     this.lblRemainingTime = new Label();
     this.lblCopyMode = new Label();
     this.lblStarted = new Label();
     this.lblFiles = new Label();
     this.lblTotalSize = new Label();
     this.lblProcessedSize = new Label();
     this.lblSpeed = new Label();
     this.lblFileProgress = new Label();
     this.barFileProgress = new VistaProgressBar();
     this.lblToName = new Label();
     this.lblFromName = new Label();
     this.lblAction = new Label();
     this.tmrUpdateProgress = new System.Windows.Forms.Timer(this.components);
     this.tblCopyDetails = new TableLayoutPanel();
     this.btnSkipFile = new Button();
     Label label = new Label();
     Label label2 = new Label();
     Bevel control = new Bevel();
     Bevel bevel2 = new Bevel();
     Label label3 = new Label();
     Label label4 = new Label();
     Label label5 = new Label();
     Label label6 = new Label();
     Label label7 = new Label();
     Label label8 = new Label();
     Label label9 = new Label();
     Label label10 = new Label();
     Panel panel = new Panel();
     Panel panel2 = new Panel();
     Panel panel3 = new Panel();
     Panel panel4 = new Panel();
     Panel panel5 = new Panel();
     Panel panel6 = new Panel();
     Panel panel7 = new Panel();
     Panel panel8 = new Panel();
     panel.SuspendLayout();
     panel2.SuspendLayout();
     panel3.SuspendLayout();
     panel4.SuspendLayout();
     panel5.SuspendLayout();
     panel6.SuspendLayout();
     panel7.SuspendLayout();
     panel8.SuspendLayout();
     this.tblCopyDetails.SuspendLayout();
     base.SuspendLayout();
     manager.ApplyResources(label, "lblProgress2");
     label.Name = "lblProgress2";
     label.UseMnemonic = false;
     manager.ApplyResources(label2, "lblTo");
     label2.Name = "lblTo";
     label2.UseMnemonic = false;
     this.tblCopyDetails.SetColumnSpan(control, 3);
     manager.ApplyResources(control, "bvlSeparator1");
     control.Name = "bvlSeparator1";
     control.Sides = Border3DSide.Top;
     this.tblCopyDetails.SetColumnSpan(bevel2, 3);
     manager.ApplyResources(bevel2, "bvlSeparator2");
     bevel2.Name = "bvlSeparator2";
     bevel2.Sides = Border3DSide.Top;
     manager.ApplyResources(label3, "lblStartedCaption");
     label3.Name = "lblStartedCaption";
     manager.ApplyResources(label4, "lblElapsedCaption");
     label4.Name = "lblElapsedCaption";
     manager.ApplyResources(label5, "lblRemainingCaption");
     label5.Name = "lblRemainingCaption";
     manager.ApplyResources(label6, "lblCopyModeCaption");
     label6.Name = "lblCopyModeCaption";
     manager.ApplyResources(label7, "lblTotalSizeCaption");
     label7.Name = "lblTotalSizeCaption";
     manager.ApplyResources(label8, "lblProcessedSizeCaption");
     label8.Name = "lblProcessedSizeCaption";
     manager.ApplyResources(label9, "lblSpeedCaption");
     label9.Name = "lblSpeedCaption";
     manager.ApplyResources(label10, "lblFilesCaption");
     label10.Name = "lblFilesCaption";
     panel.Controls.Add(this.lblElapsedTime);
     panel.Controls.Add(label4);
     manager.ApplyResources(panel, "pnlElapsedTime");
     panel.Name = "pnlElapsedTime";
     manager.ApplyResources(this.lblElapsedTime, "lblElapsedTime");
     this.lblElapsedTime.Name = "lblElapsedTime";
     panel2.Controls.Add(this.lblRemainingTime);
     panel2.Controls.Add(label5);
     manager.ApplyResources(panel2, "pnlRemainingTime");
     panel2.Name = "pnlRemainingTime";
     manager.ApplyResources(this.lblRemainingTime, "lblRemainingTime");
     this.lblRemainingTime.Name = "lblRemainingTime";
     panel3.Controls.Add(this.lblCopyMode);
     panel3.Controls.Add(label6);
     manager.ApplyResources(panel3, "pnlCopyMode");
     panel3.Name = "pnlCopyMode";
     manager.ApplyResources(this.lblCopyMode, "lblCopyMode");
     this.lblCopyMode.Name = "lblCopyMode";
     this.lblCopyMode.UseMnemonic = false;
     panel4.Controls.Add(this.lblStarted);
     panel4.Controls.Add(label3);
     manager.ApplyResources(panel4, "pnlStarted");
     panel4.Name = "pnlStarted";
     manager.ApplyResources(this.lblStarted, "lblStarted");
     this.lblStarted.Name = "lblStarted";
     manager.ApplyResources(panel5, "pnlFiles");
     panel5.Controls.Add(this.lblFiles);
     panel5.Controls.Add(label10);
     panel5.Name = "pnlFiles";
     manager.ApplyResources(this.lblFiles, "lblFiles");
     this.lblFiles.Name = "lblFiles";
     manager.ApplyResources(panel6, "pnlTotalSize");
     panel6.Controls.Add(this.lblTotalSize);
     panel6.Controls.Add(label7);
     panel6.Name = "pnlTotalSize";
     manager.ApplyResources(this.lblTotalSize, "lblTotalSize");
     this.lblTotalSize.Name = "lblTotalSize";
     manager.ApplyResources(panel7, "pnlProcessedSize");
     panel7.Controls.Add(this.lblProcessedSize);
     panel7.Controls.Add(label8);
     panel7.Name = "pnlProcessedSize";
     manager.ApplyResources(this.lblProcessedSize, "lblProcessedSize");
     this.lblProcessedSize.Name = "lblProcessedSize";
     manager.ApplyResources(panel8, "pnlSpeed");
     panel8.Controls.Add(this.lblSpeed);
     panel8.Controls.Add(label9);
     panel8.Name = "pnlSpeed";
     manager.ApplyResources(this.lblSpeed, "lblSpeed");
     this.lblSpeed.Name = "lblSpeed";
     manager.ApplyResources(this.lblFileProgress, "lblFileProgress");
     this.lblFileProgress.Name = "lblFileProgress";
     this.lblFileProgress.UseMnemonic = false;
     this.tblCopyDetails.SetColumnSpan(this.barFileProgress, 3);
     manager.ApplyResources(this.barFileProgress, "barFileProgress");
     this.barFileProgress.Name = "barFileProgress";
     this.barFileProgress.RenderMode = ProgressRenderMode.Vista;
     this.tblCopyDetails.SetColumnSpan(this.lblToName, 3);
     manager.ApplyResources(this.lblToName, "lblToName");
     this.lblToName.Name = "lblToName";
     this.lblToName.UseMnemonic = false;
     this.tblCopyDetails.SetColumnSpan(this.lblFromName, 3);
     manager.ApplyResources(this.lblFromName, "lblFromName");
     this.lblFromName.Name = "lblFromName";
     this.lblFromName.UseMnemonic = false;
     manager.ApplyResources(this.lblAction, "lblAction");
     this.tblCopyDetails.SetColumnSpan(this.lblAction, 3);
     this.lblAction.Name = "lblAction";
     this.lblAction.UseMnemonic = false;
     this.tmrUpdateProgress.Enabled = true;
     this.tmrUpdateProgress.Interval = 350;
     this.tmrUpdateProgress.Tick += new EventHandler(this.tmrUpdateProgress_Tick);
     manager.ApplyResources(this.tblCopyDetails, "tblCopyDetails");
     this.tblCopyDetails.Controls.Add(bevel2, 0, 9);
     this.tblCopyDetails.Controls.Add(this.barFileProgress, 0, 11);
     this.tblCopyDetails.Controls.Add(this.lblAction, 0, 0);
     this.tblCopyDetails.Controls.Add(label, 0, 10);
     this.tblCopyDetails.Controls.Add(control, 0, 4);
     this.tblCopyDetails.Controls.Add(this.lblFromName, 0, 1);
     this.tblCopyDetails.Controls.Add(label2, 0, 2);
     this.tblCopyDetails.Controls.Add(this.lblToName, 0, 3);
     this.tblCopyDetails.Controls.Add(panel, 0, 6);
     this.tblCopyDetails.Controls.Add(panel2, 0, 7);
     this.tblCopyDetails.Controls.Add(panel3, 0, 8);
     this.tblCopyDetails.Controls.Add(panel4, 0, 5);
     this.tblCopyDetails.Controls.Add(panel5, 2, 5);
     this.tblCopyDetails.Controls.Add(panel6, 2, 6);
     this.tblCopyDetails.Controls.Add(panel7, 2, 7);
     this.tblCopyDetails.Controls.Add(panel8, 2, 8);
     this.tblCopyDetails.Controls.Add(this.lblFileProgress, 2, 10);
     this.tblCopyDetails.Name = "tblCopyDetails";
     this.tblCopyDetails.VisibleChanged += new EventHandler(this.tlbCopyDetails_VisibleChanged);
     manager.ApplyResources(this.btnSkipFile, "btnSkipFile");
     this.btnSkipFile.Name = "btnSkipFile";
     this.btnSkipFile.UseVisualStyleBackColor = true;
     this.btnSkipFile.Click += new EventHandler(this.btnSkipFile_Click);
     manager.ApplyResources(this, "$this");
     base.Controls.Add(this.tblCopyDetails);
     base.Name = "CopyWorkerDialog";
     base.Shown += new EventHandler(this.CopyWorkerDialog_Shown);
     base.Controls.SetChildIndex(this.tblCopyDetails, 0);
     panel.ResumeLayout(false);
     panel.PerformLayout();
     panel2.ResumeLayout(false);
     panel2.PerformLayout();
     panel3.ResumeLayout(false);
     panel3.PerformLayout();
     panel4.ResumeLayout(false);
     panel4.PerformLayout();
     panel5.ResumeLayout(false);
     panel5.PerformLayout();
     panel6.ResumeLayout(false);
     panel6.PerformLayout();
     panel7.ResumeLayout(false);
     panel7.PerformLayout();
     panel8.ResumeLayout(false);
     panel8.PerformLayout();
     this.tblCopyDetails.ResumeLayout(false);
     this.tblCopyDetails.PerformLayout();
     base.ResumeLayout(false);
     base.PerformLayout();
 }
Exemplo n.º 40
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(MGADialog));
     System.Windows.Forms.TableLayoutPanel          panelGlossComponents;
     System.Windows.Forms.TableLayoutPanel          tableLayoutPanel1;
     System.Windows.Forms.Panel            panel1;
     System.Windows.Forms.Panel            panelInsertRemove;
     System.Windows.Forms.TableLayoutPanel panelSelectedGloss;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanelSelectedGloss;
     System.Windows.Forms.Panel            panel;
     System.Windows.Forms.Panel            panel2;
     System.Windows.Forms.Panel            panelTop;
     System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
     this.splitContainerVertical  = new System.Windows.Forms.SplitContainer();
     this.groupBoxGlossComponents = new System.Windows.Forms.GroupBox();
     this.comboGlossListItem      = new SIL.FieldWorks.Common.Controls.FwOverrideComboBox();
     this.labelGlossListItem      = new System.Windows.Forms.Label();
     this.checkBoxShowUsed        = new System.Windows.Forms.CheckBox();
     this.buttonInfo                     = new System.Windows.Forms.Button();
     this.buttonInsert                   = new System.Windows.Forms.Button();
     this.buttonRemove                   = new System.Windows.Forms.Button();
     this.groupBoxSelectedGloss          = new System.Windows.Forms.GroupBox();
     this.buttonMoveUp                   = new System.Windows.Forms.Button();
     this.buttonMoveDown                 = new System.Windows.Forms.Button();
     this.buttonModify                   = new System.Windows.Forms.Button();
     this.buttonHelp                     = new System.Windows.Forms.Button();
     this.buttonAcceptGloss              = new System.Windows.Forms.Button();
     this.buttonCancel                   = new System.Windows.Forms.Button();
     this.labelConstructedGlossForPrompt = new System.Windows.Forms.Label();
     this.labelAllomorph                 = new System.Windows.Forms.Label();
     this.textBoxResult                  = new System.Windows.Forms.TextBox();
     this.webBrowserInfo                 = new System.Windows.Forms.WebBrowser();
     this.splitContainerHorizontal       = new System.Windows.Forms.SplitContainer();
     this.treeViewGlossListItem          = new SIL.FieldWorks.LexText.Controls.MGA.GlossListTreeView();
     this.glossListBoxGloss              = new SIL.FieldWorks.LexText.Controls.MGA.GlossListBox();
     panelGlossComponents                = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanel1                   = new System.Windows.Forms.TableLayoutPanel();
     panel1                        = new System.Windows.Forms.Panel();
     panelInsertRemove             = new System.Windows.Forms.Panel();
     panelSelectedGloss            = new System.Windows.Forms.TableLayoutPanel();
     tableLayoutPanelSelectedGloss = new System.Windows.Forms.TableLayoutPanel();
     panel             = new System.Windows.Forms.Panel();
     panel2            = new System.Windows.Forms.Panel();
     panelTop          = new System.Windows.Forms.Panel();
     tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.splitContainerVertical.Panel1.SuspendLayout();
     this.splitContainerVertical.Panel2.SuspendLayout();
     this.splitContainerVertical.SuspendLayout();
     panelGlossComponents.SuspendLayout();
     this.groupBoxGlossComponents.SuspendLayout();
     tableLayoutPanel1.SuspendLayout();
     panel1.SuspendLayout();
     panelInsertRemove.SuspendLayout();
     panelSelectedGloss.SuspendLayout();
     this.groupBoxSelectedGloss.SuspendLayout();
     tableLayoutPanelSelectedGloss.SuspendLayout();
     panel.SuspendLayout();
     panel2.SuspendLayout();
     panelTop.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     this.splitContainerHorizontal.Panel1.SuspendLayout();
     this.splitContainerHorizontal.Panel2.SuspendLayout();
     this.splitContainerHorizontal.SuspendLayout();
     this.SuspendLayout();
     //
     // splitContainerVertical
     //
     resources.ApplyResources(this.splitContainerVertical, "splitContainerVertical");
     this.splitContainerVertical.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
     this.splitContainerVertical.Name       = "splitContainerVertical";
     //
     // splitContainerVertical.Panel1
     //
     this.splitContainerVertical.Panel1.Controls.Add(panelGlossComponents);
     this.splitContainerVertical.Panel1.Controls.Add(panelInsertRemove);
     //
     // splitContainerVertical.Panel2
     //
     this.splitContainerVertical.Panel2.Controls.Add(panelSelectedGloss);
     resources.ApplyResources(this.splitContainerVertical.Panel2, "splitContainerVertical.Panel2");
     //
     // panelGlossComponents
     //
     resources.ApplyResources(panelGlossComponents, "panelGlossComponents");
     panelGlossComponents.Controls.Add(this.groupBoxGlossComponents, 0, 0);
     panelGlossComponents.Controls.Add(this.buttonInfo, 0, 1);
     panelGlossComponents.Name = "panelGlossComponents";
     //
     // groupBoxGlossComponents
     //
     this.groupBoxGlossComponents.Controls.Add(tableLayoutPanel1);
     resources.ApplyResources(this.groupBoxGlossComponents, "groupBoxGlossComponents");
     this.groupBoxGlossComponents.Name    = "groupBoxGlossComponents";
     this.groupBoxGlossComponents.TabStop = false;
     //
     // tableLayoutPanel1
     //
     resources.ApplyResources(tableLayoutPanel1, "tableLayoutPanel1");
     tableLayoutPanel1.Controls.Add(panel1, 0, 0);
     tableLayoutPanel1.Controls.Add(this.checkBoxShowUsed, 0, 2);
     tableLayoutPanel1.Controls.Add(this.treeViewGlossListItem, 0, 1);
     tableLayoutPanel1.Name = "tableLayoutPanel1";
     //
     // panel1
     //
     panel1.Controls.Add(this.comboGlossListItem);
     panel1.Controls.Add(this.labelGlossListItem);
     resources.ApplyResources(panel1, "panel1");
     panel1.Name = "panel1";
     //
     // comboGlossListItem
     //
     resources.ApplyResources(this.comboGlossListItem, "comboGlossListItem");
     this.comboGlossListItem.Name = "comboGlossListItem";
     //
     // labelGlossListItem
     //
     resources.ApplyResources(this.labelGlossListItem, "labelGlossListItem");
     this.labelGlossListItem.Name = "labelGlossListItem";
     //
     // checkBoxShowUsed
     //
     resources.ApplyResources(this.checkBoxShowUsed, "checkBoxShowUsed");
     this.checkBoxShowUsed.Name = "checkBoxShowUsed";
     //
     // buttonInfo
     //
     resources.ApplyResources(this.buttonInfo, "buttonInfo");
     this.buttonInfo.Name   = "buttonInfo";
     this.buttonInfo.Click += new System.EventHandler(this.OnInfoButtonClick);
     //
     // panelInsertRemove
     //
     panelInsertRemove.Controls.Add(this.buttonInsert);
     panelInsertRemove.Controls.Add(this.buttonRemove);
     resources.ApplyResources(panelInsertRemove, "panelInsertRemove");
     panelInsertRemove.Name    = "panelInsertRemove";
     panelInsertRemove.TabStop = true;
     //
     // buttonInsert
     //
     resources.ApplyResources(this.buttonInsert, "buttonInsert");
     this.buttonInsert.Name   = "buttonInsert";
     this.buttonInsert.Click += new System.EventHandler(this.OnInsertButtonClick);
     //
     // buttonRemove
     //
     resources.ApplyResources(this.buttonRemove, "buttonRemove");
     this.buttonRemove.Name   = "buttonRemove";
     this.buttonRemove.Click += new System.EventHandler(this.OnRemoveButtonClick);
     //
     // panelSelectedGloss
     //
     resources.ApplyResources(panelSelectedGloss, "panelSelectedGloss");
     panelSelectedGloss.Controls.Add(this.groupBoxSelectedGloss, 0, 0);
     panelSelectedGloss.Controls.Add(panel2, 0, 1);
     panelSelectedGloss.Name = "panelSelectedGloss";
     //
     // groupBoxSelectedGloss
     //
     this.groupBoxSelectedGloss.Controls.Add(tableLayoutPanelSelectedGloss);
     resources.ApplyResources(this.groupBoxSelectedGloss, "groupBoxSelectedGloss");
     this.groupBoxSelectedGloss.Name    = "groupBoxSelectedGloss";
     this.groupBoxSelectedGloss.TabStop = false;
     //
     // tableLayoutPanelSelectedGloss
     //
     resources.ApplyResources(tableLayoutPanelSelectedGloss, "tableLayoutPanelSelectedGloss");
     tableLayoutPanelSelectedGloss.Controls.Add(this.glossListBoxGloss, 0, 0);
     tableLayoutPanelSelectedGloss.Controls.Add(panel, 1, 0);
     tableLayoutPanelSelectedGloss.Name = "tableLayoutPanelSelectedGloss";
     //
     // panel
     //
     panel.Controls.Add(this.buttonMoveUp);
     panel.Controls.Add(this.buttonMoveDown);
     panel.Controls.Add(this.buttonModify);
     resources.ApplyResources(panel, "panel");
     panel.Name = "panel";
     //
     // buttonMoveUp
     //
     resources.ApplyResources(this.buttonMoveUp, "buttonMoveUp");
     this.buttonMoveUp.Name   = "buttonMoveUp";
     this.buttonMoveUp.Click += new System.EventHandler(this.OnMoveUpButtonClick);
     //
     // buttonMoveDown
     //
     resources.ApplyResources(this.buttonMoveDown, "buttonMoveDown");
     this.buttonMoveDown.Name   = "buttonMoveDown";
     this.buttonMoveDown.Click += new System.EventHandler(this.OnMoveDownButtonClick);
     //
     // buttonModify
     //
     resources.ApplyResources(this.buttonModify, "buttonModify");
     this.buttonModify.Name   = "buttonModify";
     this.buttonModify.Click += new System.EventHandler(this.OnModifyButtonClick);
     //
     // panel2
     //
     panel2.Controls.Add(this.buttonHelp);
     panel2.Controls.Add(this.buttonAcceptGloss);
     panel2.Controls.Add(this.buttonCancel);
     resources.ApplyResources(panel2, "panel2");
     panel2.Name = "panel2";
     //
     // buttonHelp
     //
     resources.ApplyResources(this.buttonHelp, "buttonHelp");
     this.buttonHelp.Name   = "buttonHelp";
     this.buttonHelp.Click += new System.EventHandler(this.OnHelpButtonClick);
     //
     // buttonAcceptGloss
     //
     this.buttonAcceptGloss.DialogResult = System.Windows.Forms.DialogResult.OK;
     resources.ApplyResources(this.buttonAcceptGloss, "buttonAcceptGloss");
     this.buttonAcceptGloss.Name   = "buttonAcceptGloss";
     this.buttonAcceptGloss.Click += new System.EventHandler(this.OnAcceptGlossButtonClick);
     //
     // buttonCancel
     //
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     resources.ApplyResources(this.buttonCancel, "buttonCancel");
     this.buttonCancel.Name   = "buttonCancel";
     this.buttonCancel.Click += new System.EventHandler(this.OnCancelButtonClick);
     //
     // panelTop
     //
     panelTop.Controls.Add(tableLayoutPanel2);
     panelTop.Controls.Add(this.textBoxResult);
     resources.ApplyResources(panelTop, "panelTop");
     panelTop.Name    = "panelTop";
     panelTop.TabStop = true;
     //
     // tableLayoutPanel2
     //
     resources.ApplyResources(tableLayoutPanel2, "tableLayoutPanel2");
     tableLayoutPanel2.Controls.Add(this.labelConstructedGlossForPrompt, 0, 0);
     tableLayoutPanel2.Controls.Add(this.labelAllomorph, 0, 1);
     tableLayoutPanel2.Name = "tableLayoutPanel2";
     //
     // labelConstructedGlossForPrompt
     //
     resources.ApplyResources(this.labelConstructedGlossForPrompt, "labelConstructedGlossForPrompt");
     this.labelConstructedGlossForPrompt.Name = "labelConstructedGlossForPrompt";
     //
     // labelAllomorph
     //
     resources.ApplyResources(this.labelAllomorph, "labelAllomorph");
     this.labelAllomorph.Name = "labelAllomorph";
     //
     // textBoxResult
     //
     resources.ApplyResources(this.textBoxResult, "textBoxResult");
     this.textBoxResult.Name = "textBoxResult";
     //
     // webBrowserInfo
     //
     resources.ApplyResources(this.webBrowserInfo, "webBrowserInfo");
     this.webBrowserInfo.IsWebBrowserContextMenuEnabled = false;
     this.webBrowserInfo.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserInfo.Name        = "webBrowserInfo";
     this.webBrowserInfo.WebBrowserShortcutsEnabled = false;
     //
     // splitContainerHorizontal
     //
     resources.ApplyResources(this.splitContainerHorizontal, "splitContainerHorizontal");
     this.splitContainerHorizontal.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     this.splitContainerHorizontal.Name       = "splitContainerHorizontal";
     //
     // splitContainerHorizontal.Panel1
     //
     this.splitContainerHorizontal.Panel1.Controls.Add(this.splitContainerVertical);
     //
     // splitContainerHorizontal.Panel2
     //
     this.splitContainerHorizontal.Panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.splitContainerHorizontal.Panel2.Controls.Add(this.webBrowserInfo);
     //
     // treeViewGlossListItem
     //
     resources.ApplyResources(this.treeViewGlossListItem, "treeViewGlossListItem");
     this.treeViewGlossListItem.HideSelection          = false;
     this.treeViewGlossListItem.ItemHeight             = 16;
     this.treeViewGlossListItem.Name                   = "treeViewGlossListItem";
     this.treeViewGlossListItem.TerminalsUseCheckBoxes = false;
     this.treeViewGlossListItem.AfterSelect           += new System.Windows.Forms.TreeViewEventHandler(this.OnGlossListTreeSelect);
     //
     // glossListBoxGloss
     //
     resources.ApplyResources(this.glossListBoxGloss, "glossListBoxGloss");
     this.glossListBoxGloss.FormattingEnabled = true;
     this.glossListBoxGloss.MGADialog         = null;
     this.glossListBoxGloss.Name = "glossListBoxGloss";
     this.glossListBoxGloss.SelectedIndexChanged += new System.EventHandler(this.OnGlossListBoxSelectedIndexChanged);
     //
     // MGADialog
     //
     this.AcceptButton = this.buttonAcceptGloss;
     resources.ApplyResources(this, "$this");
     this.CancelButton = this.buttonCancel;
     this.Controls.Add(this.splitContainerHorizontal);
     this.Controls.Add(panelTop);
     this.HelpButton = true;
     this.Name       = "MGADialog";
     this.splitContainerVertical.Panel1.ResumeLayout(false);
     this.splitContainerVertical.Panel2.ResumeLayout(false);
     this.splitContainerVertical.ResumeLayout(false);
     panelGlossComponents.ResumeLayout(false);
     this.groupBoxGlossComponents.ResumeLayout(false);
     tableLayoutPanel1.ResumeLayout(false);
     panel1.ResumeLayout(false);
     panelInsertRemove.ResumeLayout(false);
     panelSelectedGloss.ResumeLayout(false);
     this.groupBoxSelectedGloss.ResumeLayout(false);
     tableLayoutPanelSelectedGloss.ResumeLayout(false);
     panel.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panelTop.ResumeLayout(false);
     panelTop.PerformLayout();
     tableLayoutPanel2.ResumeLayout(false);
     this.splitContainerHorizontal.Panel1.ResumeLayout(false);
     this.splitContainerHorizontal.Panel2.ResumeLayout(false);
     this.splitContainerHorizontal.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()
 {
     TitlePanel        = new System.Windows.Forms.Panel();
     TitleLabel        = new System.Windows.Forms.Label();
     Title             = new System.Windows.Forms.Label();
     tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     CancelLabel       = new System.Windows.Forms.Label();
     ConfirmLabel      = new System.Windows.Forms.Label();
     CareerTabel       = new System.Windows.Forms.TableLayoutPanel();
     label20           = new System.Windows.Forms.Label();
     label19           = new System.Windows.Forms.Label();
     label18           = new System.Windows.Forms.Label();
     label17           = new System.Windows.Forms.Label();
     label16           = new System.Windows.Forms.Label();
     label15           = new System.Windows.Forms.Label();
     label14           = new System.Windows.Forms.Label();
     label13           = new System.Windows.Forms.Label();
     label12           = new System.Windows.Forms.Label();
     label11           = new System.Windows.Forms.Label();
     label10           = new System.Windows.Forms.Label();
     label8            = new System.Windows.Forms.Label();
     label1            = new System.Windows.Forms.Label();
     label9            = new System.Windows.Forms.Label();
     label31           = new System.Windows.Forms.Label();
     label32           = new System.Windows.Forms.Label();
     label33           = new System.Windows.Forms.Label();
     CareerLabel       = new System.Windows.Forms.Label();
     label3            = new System.Windows.Forms.Label();
     TitlePanel.SuspendLayout();
     tableLayoutPanel2.SuspendLayout();
     CareerTabel.SuspendLayout();
     SuspendLayout();
     //
     // TitlePanel
     //
     TitlePanel.BackColor = System.Drawing.Color.Transparent;
     TitlePanel.Controls.Add(TitleLabel);
     TitlePanel.Controls.Add(Title);
     TitlePanel.Dock     = System.Windows.Forms.DockStyle.Top;
     TitlePanel.Location = new System.Drawing.Point(0, 0);
     TitlePanel.Name     = "TitlePanel";
     TitlePanel.Size     = new System.Drawing.Size(1096, 40);
     TitlePanel.TabIndex = 1;
     //
     // TitleLabel
     //
     TitleLabel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     TitleLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     TitleLabel.Font      = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     TitleLabel.ForeColor = System.Drawing.Color.White;
     TitleLabel.Location  = new System.Drawing.Point(0, 0);
     TitleLabel.Name      = "TitleLabel";
     TitleLabel.Size      = new System.Drawing.Size(1096, 40);
     TitleLabel.TabIndex  = 2;
     TitleLabel.Text      = "職業選取";
     TitleLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     TitleLabel.UseCompatibleTextRendering = true;
     TitleLabel.MouseDown += new System.Windows.Forms.MouseEventHandler(TitleLabel_MouseDown);
     TitleLabel.MouseMove += new System.Windows.Forms.MouseEventHandler(TitleLabel_MouseMove);
     TitleLabel.MouseUp   += new System.Windows.Forms.MouseEventHandler(TitleLabel_MouseUp);
     //
     // Title
     //
     Title.AutoSize  = true;
     Title.BackColor = System.Drawing.Color.Transparent;
     Title.Location  = new System.Drawing.Point(0, 0);
     Title.Name      = "Title";
     Title.Size      = new System.Drawing.Size(41, 15);
     Title.TabIndex  = 0;
     Title.Text      = "label1";
     //
     // tableLayoutPanel2
     //
     tableLayoutPanel2.BackColor       = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     tableLayoutPanel2.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
     tableLayoutPanel2.ColumnCount     = 2;
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel2.Controls.Add(CancelLabel, 0, 0);
     tableLayoutPanel2.Controls.Add(ConfirmLabel, 0, 0);
     tableLayoutPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     tableLayoutPanel2.Location = new System.Drawing.Point(0, 448);
     tableLayoutPanel2.Name     = "tableLayoutPanel2";
     tableLayoutPanel2.RowCount = 1;
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 41F));
     tableLayoutPanel2.Size     = new System.Drawing.Size(1096, 42);
     tableLayoutPanel2.TabIndex = 2;
     //
     // CancelLabel
     //
     CancelLabel.BackColor = System.Drawing.Color.Transparent;
     CancelLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     CancelLabel.Font      = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     CancelLabel.ForeColor = System.Drawing.Color.White;
     CancelLabel.Location  = new System.Drawing.Point(551, 1);
     CancelLabel.Name      = "CancelLabel";
     CancelLabel.Size      = new System.Drawing.Size(541, 40);
     CancelLabel.TabIndex  = 4;
     CancelLabel.Text      = "取消";
     CancelLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     CancelLabel.UseCompatibleTextRendering = true;
     CancelLabel.Click += new System.EventHandler(CancelLabel_Click);
     //
     // ConfirmLabel
     //
     ConfirmLabel.BackColor = System.Drawing.Color.Transparent;
     ConfirmLabel.Dock      = System.Windows.Forms.DockStyle.Fill;
     ConfirmLabel.Font      = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     ConfirmLabel.ForeColor = System.Drawing.Color.White;
     ConfirmLabel.Location  = new System.Drawing.Point(4, 1);
     ConfirmLabel.Name      = "ConfirmLabel";
     ConfirmLabel.Size      = new System.Drawing.Size(540, 40);
     ConfirmLabel.TabIndex  = 3;
     ConfirmLabel.Text      = "確認";
     ConfirmLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     ConfirmLabel.UseCompatibleTextRendering = true;
     ConfirmLabel.Click += new System.EventHandler(ConfirmLabel_Click);
     //
     // CareerTabel
     //
     CareerTabel.BackColor   = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(180)))));
     CareerTabel.ColumnCount = 13;
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 180F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 8.333333F));
     CareerTabel.Controls.Add(label20, 11, 0);
     CareerTabel.Controls.Add(label19, 10, 0);
     CareerTabel.Controls.Add(label18, 9, 0);
     CareerTabel.Controls.Add(label17, 8, 0);
     CareerTabel.Controls.Add(label16, 7, 0);
     CareerTabel.Controls.Add(label15, 6, 0);
     CareerTabel.Controls.Add(label14, 5, 0);
     CareerTabel.Controls.Add(label13, 4, 0);
     CareerTabel.Controls.Add(label12, 3, 0);
     CareerTabel.Controls.Add(label11, 2, 0);
     CareerTabel.Controls.Add(label10, 1, 0);
     CareerTabel.Controls.Add(label8, 0, 6);
     CareerTabel.Controls.Add(label1, 0, 0);
     CareerTabel.Controls.Add(label9, 0, 2);
     CareerTabel.Controls.Add(label31, 0, 3);
     CareerTabel.Controls.Add(label32, 0, 4);
     CareerTabel.Controls.Add(label33, 0, 5);
     CareerTabel.Controls.Add(CareerLabel, 0, 1);
     CareerTabel.Controls.Add(label3, 12, 0);
     CareerTabel.Dock     = System.Windows.Forms.DockStyle.Fill;
     CareerTabel.Location = new System.Drawing.Point(0, 40);
     CareerTabel.Name     = "CareerTabel";
     CareerTabel.RowCount = 7;
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 14.28571F));
     CareerTabel.Size     = new System.Drawing.Size(1096, 408);
     CareerTabel.TabIndex = 3;
     //
     // label20
     //
     label20.BackColor   = System.Drawing.Color.Transparent;
     label20.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label20.Dock        = System.Windows.Forms.DockStyle.Fill;
     label20.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label20.ForeColor   = System.Drawing.Color.White;
     label20.Location    = new System.Drawing.Point(943, 0);
     label20.Name        = "label20";
     label20.Size        = new System.Drawing.Size(70, 58);
     label20.TabIndex    = 20;
     label20.Text        = "十一";
     label20.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label20.UseCompatibleTextRendering = true;
     //
     // label19
     //
     label19.BackColor   = System.Drawing.Color.Transparent;
     label19.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label19.Dock        = System.Windows.Forms.DockStyle.Fill;
     label19.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label19.ForeColor   = System.Drawing.Color.White;
     label19.Location    = new System.Drawing.Point(867, 0);
     label19.Name        = "label19";
     label19.Size        = new System.Drawing.Size(70, 58);
     label19.TabIndex    = 19;
     label19.Text        = "十";
     label19.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label19.UseCompatibleTextRendering = true;
     //
     // label18
     //
     label18.BackColor   = System.Drawing.Color.Transparent;
     label18.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label18.Dock        = System.Windows.Forms.DockStyle.Fill;
     label18.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label18.ForeColor   = System.Drawing.Color.White;
     label18.Location    = new System.Drawing.Point(791, 0);
     label18.Name        = "label18";
     label18.Size        = new System.Drawing.Size(70, 58);
     label18.TabIndex    = 18;
     label18.Text        = "九";
     label18.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label18.UseCompatibleTextRendering = true;
     //
     // label17
     //
     label17.BackColor   = System.Drawing.Color.Transparent;
     label17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label17.Dock        = System.Windows.Forms.DockStyle.Fill;
     label17.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label17.ForeColor   = System.Drawing.Color.White;
     label17.Location    = new System.Drawing.Point(715, 0);
     label17.Name        = "label17";
     label17.Size        = new System.Drawing.Size(70, 58);
     label17.TabIndex    = 17;
     label17.Text        = "八";
     label17.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label17.UseCompatibleTextRendering = true;
     //
     // label16
     //
     label16.BackColor   = System.Drawing.Color.Transparent;
     label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label16.Dock        = System.Windows.Forms.DockStyle.Fill;
     label16.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label16.ForeColor   = System.Drawing.Color.White;
     label16.Location    = new System.Drawing.Point(639, 0);
     label16.Name        = "label16";
     label16.Size        = new System.Drawing.Size(70, 58);
     label16.TabIndex    = 16;
     label16.Text        = "七";
     label16.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label16.UseCompatibleTextRendering = true;
     //
     // label15
     //
     label15.BackColor   = System.Drawing.Color.Transparent;
     label15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label15.Dock        = System.Windows.Forms.DockStyle.Fill;
     label15.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label15.ForeColor   = System.Drawing.Color.White;
     label15.Location    = new System.Drawing.Point(563, 0);
     label15.Name        = "label15";
     label15.Size        = new System.Drawing.Size(70, 58);
     label15.TabIndex    = 15;
     label15.Text        = "六";
     label15.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label15.UseCompatibleTextRendering = true;
     //
     // label14
     //
     label14.BackColor   = System.Drawing.Color.Transparent;
     label14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label14.Dock        = System.Windows.Forms.DockStyle.Fill;
     label14.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label14.ForeColor   = System.Drawing.Color.White;
     label14.Location    = new System.Drawing.Point(487, 0);
     label14.Name        = "label14";
     label14.Size        = new System.Drawing.Size(70, 58);
     label14.TabIndex    = 14;
     label14.Text        = "五";
     label14.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label14.UseCompatibleTextRendering = true;
     //
     // label13
     //
     label13.BackColor   = System.Drawing.Color.Transparent;
     label13.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label13.Dock        = System.Windows.Forms.DockStyle.Fill;
     label13.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label13.ForeColor   = System.Drawing.Color.White;
     label13.Location    = new System.Drawing.Point(411, 0);
     label13.Name        = "label13";
     label13.Size        = new System.Drawing.Size(70, 58);
     label13.TabIndex    = 13;
     label13.Text        = "四";
     label13.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label13.UseCompatibleTextRendering = true;
     //
     // label12
     //
     label12.BackColor   = System.Drawing.Color.Transparent;
     label12.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label12.Dock        = System.Windows.Forms.DockStyle.Fill;
     label12.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label12.ForeColor   = System.Drawing.Color.White;
     label12.Location    = new System.Drawing.Point(335, 0);
     label12.Name        = "label12";
     label12.Size        = new System.Drawing.Size(70, 58);
     label12.TabIndex    = 12;
     label12.Text        = "三";
     label12.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label12.UseCompatibleTextRendering = true;
     //
     // label11
     //
     label11.BackColor   = System.Drawing.Color.Transparent;
     label11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label11.Dock        = System.Windows.Forms.DockStyle.Fill;
     label11.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label11.ForeColor   = System.Drawing.Color.White;
     label11.Location    = new System.Drawing.Point(259, 0);
     label11.Name        = "label11";
     label11.Size        = new System.Drawing.Size(70, 58);
     label11.TabIndex    = 11;
     label11.Text        = "二";
     label11.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label11.UseCompatibleTextRendering = true;
     //
     // label10
     //
     label10.BackColor   = System.Drawing.Color.Transparent;
     label10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label10.Dock        = System.Windows.Forms.DockStyle.Fill;
     label10.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label10.ForeColor   = System.Drawing.Color.White;
     label10.Location    = new System.Drawing.Point(183, 0);
     label10.Name        = "label10";
     label10.Size        = new System.Drawing.Size(70, 58);
     label10.TabIndex    = 10;
     label10.Text        = "一";
     label10.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label10.UseCompatibleTextRendering = true;
     //
     // label8
     //
     label8.BackColor   = System.Drawing.Color.Transparent;
     label8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label8.Dock        = System.Windows.Forms.DockStyle.Fill;
     label8.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label8.ForeColor   = System.Drawing.Color.White;
     label8.Location    = new System.Drawing.Point(3, 348);
     label8.Name        = "label8";
     label8.Size        = new System.Drawing.Size(174, 60);
     label8.TabIndex    = 8;
     label8.Text        = "會計師";
     label8.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label8.UseCompatibleTextRendering = true;
     //
     // label1
     //
     label1.BackColor   = System.Drawing.Color.Transparent;
     label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label1.Dock        = System.Windows.Forms.DockStyle.Fill;
     label1.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label1.ForeColor   = System.Drawing.Color.White;
     label1.Location    = new System.Drawing.Point(3, 0);
     label1.Name        = "label1";
     label1.Size        = new System.Drawing.Size(174, 58);
     label1.TabIndex    = 2;
     label1.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label1.UseCompatibleTextRendering = true;
     //
     // label9
     //
     label9.BackColor   = System.Drawing.Color.Transparent;
     label9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label9.Dock        = System.Windows.Forms.DockStyle.Fill;
     label9.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label9.ForeColor   = System.Drawing.Color.White;
     label9.Location    = new System.Drawing.Point(3, 116);
     label9.Name        = "label9";
     label9.Size        = new System.Drawing.Size(174, 58);
     label9.TabIndex    = 9;
     label9.Text        = "醫師";
     label9.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label9.UseCompatibleTextRendering = true;
     //
     // label31
     //
     label31.BackColor   = System.Drawing.Color.Transparent;
     label31.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label31.Dock        = System.Windows.Forms.DockStyle.Fill;
     label31.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label31.ForeColor   = System.Drawing.Color.White;
     label31.Location    = new System.Drawing.Point(3, 174);
     label31.Name        = "label31";
     label31.Size        = new System.Drawing.Size(174, 58);
     label31.TabIndex    = 9;
     label31.Text        = "建築師";
     label31.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label31.UseCompatibleTextRendering = true;
     //
     // label32
     //
     label32.BackColor   = System.Drawing.Color.Transparent;
     label32.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label32.Dock        = System.Windows.Forms.DockStyle.Fill;
     label32.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label32.ForeColor   = System.Drawing.Color.White;
     label32.Location    = new System.Drawing.Point(3, 232);
     label32.Name        = "label32";
     label32.Size        = new System.Drawing.Size(174, 58);
     label32.TabIndex    = 9;
     label32.Text        = "電腦工程師";
     label32.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label32.UseCompatibleTextRendering = true;
     //
     // label33
     //
     label33.BackColor   = System.Drawing.Color.Transparent;
     label33.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label33.Dock        = System.Windows.Forms.DockStyle.Fill;
     label33.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label33.ForeColor   = System.Drawing.Color.White;
     label33.Location    = new System.Drawing.Point(3, 290);
     label33.Name        = "label33";
     label33.Size        = new System.Drawing.Size(174, 58);
     label33.TabIndex    = 9;
     label33.Text        = "立委";
     label33.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label33.UseCompatibleTextRendering = true;
     //
     // CareerLabel
     //
     CareerLabel.BackColor   = System.Drawing.Color.Transparent;
     CareerLabel.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     CareerLabel.Dock        = System.Windows.Forms.DockStyle.Fill;
     CareerLabel.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     CareerLabel.ForeColor   = System.Drawing.Color.White;
     CareerLabel.Location    = new System.Drawing.Point(3, 58);
     CareerLabel.Name        = "CareerLabel";
     CareerLabel.Size        = new System.Drawing.Size(174, 58);
     CareerLabel.TabIndex    = 21;
     CareerLabel.Text        = "記者";
     CareerLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     CareerLabel.UseCompatibleTextRendering = true;
     //
     // label3
     //
     label3.BackColor   = System.Drawing.Color.Transparent;
     label3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     label3.Dock        = System.Windows.Forms.DockStyle.Fill;
     label3.Font        = new System.Drawing.Font("Microsoft JhengHei", 20F, System.Drawing.FontStyle.Bold);
     label3.ForeColor   = System.Drawing.Color.White;
     label3.Location    = new System.Drawing.Point(1019, 0);
     label3.Name        = "label3";
     label3.Size        = new System.Drawing.Size(74, 58);
     label3.TabIndex    = 20;
     label3.Text        = "十二";
     label3.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
     label3.UseCompatibleTextRendering = true;
     //
     // Team_Selection
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     BackgroundImage     = global::Clockwork_Battle_V.CSharp.Properties.Resources.Background;
     ClientSize          = new System.Drawing.Size(1096, 490);
     ControlBox          = false;
     Controls.Add(CareerTabel);
     Controls.Add(tableLayoutPanel2);
     Controls.Add(TitlePanel);
     DoubleBuffered  = true;
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "TeamSelection";
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     TopMost         = true;
     TitlePanel.ResumeLayout(false);
     TitlePanel.PerformLayout();
     tableLayoutPanel2.ResumeLayout(false);
     CareerTabel.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 42
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.Panel           flagPanel;
     Brewmaster.StatusView.HorizontalLine horizontalLine2;
     Brewmaster.StatusView.HorizontalLine horizontalLine1;
     this.flagN                = new Brewmaster.Modules.OpcodeHelper.FlagIndicator();
     this.flagV                = new Brewmaster.Modules.OpcodeHelper.FlagIndicator();
     this.flagZ                = new Brewmaster.Modules.OpcodeHelper.FlagIndicator();
     this.flagC                = new Brewmaster.Modules.OpcodeHelper.FlagIndicator();
     this.affectFlags          = new System.Windows.Forms.Label();
     this.buttonPanel          = new System.Windows.Forms.FlowLayoutPanel();
     this.buttonPanelContainer = new System.Windows.Forms.Panel();
     this.panel2               = new System.Windows.Forms.Panel();
     this.descriptionPanel     = new System.Windows.Forms.Panel();
     this.description          = new System.Windows.Forms.Label();
     this.subDescription       = new System.Windows.Forms.Label();
     this.title                = new System.Windows.Forms.Label();
     this.toolTip              = new System.Windows.Forms.ToolTip(this.components);
     flagPanel       = new System.Windows.Forms.Panel();
     horizontalLine2 = new Brewmaster.StatusView.HorizontalLine();
     horizontalLine1 = new Brewmaster.StatusView.HorizontalLine();
     flagPanel.SuspendLayout();
     this.buttonPanelContainer.SuspendLayout();
     this.panel2.SuspendLayout();
     this.descriptionPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // flagPanel
     //
     flagPanel.Controls.Add(this.flagN);
     flagPanel.Controls.Add(this.flagV);
     flagPanel.Controls.Add(this.flagZ);
     flagPanel.Controls.Add(this.flagC);
     flagPanel.Controls.Add(this.affectFlags);
     flagPanel.Dock     = System.Windows.Forms.DockStyle.Top;
     flagPanel.Location = new System.Drawing.Point(0, 21);
     flagPanel.Margin   = new System.Windows.Forms.Padding(0);
     flagPanel.Name     = "flagPanel";
     flagPanel.Size     = new System.Drawing.Size(238, 28);
     flagPanel.TabIndex = 3;
     //
     // flagN
     //
     this.flagN.Checked  = false;
     this.flagN.Flag     = "N";
     this.flagN.Location = new System.Drawing.Point(123, 5);
     this.flagN.Name     = "flagN";
     this.flagN.Size     = new System.Drawing.Size(18, 18);
     this.flagN.TabIndex = 6;
     //
     // flagV
     //
     this.flagV.Checked  = false;
     this.flagV.Flag     = "V";
     this.flagV.Location = new System.Drawing.Point(104, 5);
     this.flagV.Name     = "flagV";
     this.flagV.Size     = new System.Drawing.Size(18, 18);
     this.flagV.TabIndex = 5;
     //
     // flagZ
     //
     this.flagZ.Checked  = false;
     this.flagZ.Flag     = "Z";
     this.flagZ.Location = new System.Drawing.Point(85, 5);
     this.flagZ.Name     = "flagZ";
     this.flagZ.Size     = new System.Drawing.Size(18, 18);
     this.flagZ.TabIndex = 4;
     //
     // flagC
     //
     this.flagC.Checked  = false;
     this.flagC.Flag     = "C";
     this.flagC.Location = new System.Drawing.Point(66, 5);
     this.flagC.Name     = "flagC";
     this.flagC.Size     = new System.Drawing.Size(18, 18);
     this.flagC.TabIndex = 3;
     //
     // affectFlags
     //
     this.affectFlags.AutoSize = true;
     this.affectFlags.Location = new System.Drawing.Point(0, 7);
     this.affectFlags.Name     = "affectFlags";
     this.affectFlags.Size     = new System.Drawing.Size(68, 13);
     this.affectFlags.TabIndex = 2;
     this.affectFlags.Text     = "Affects flags:";
     //
     // horizontalLine2
     //
     horizontalLine2.Dock      = System.Windows.Forms.DockStyle.Top;
     horizontalLine2.LineColor = System.Drawing.SystemColors.ButtonShadow;
     horizontalLine2.Location  = new System.Drawing.Point(0, 20);
     horizontalLine2.Name      = "horizontalLine2";
     horizontalLine2.Size      = new System.Drawing.Size(238, 1);
     horizontalLine2.TabIndex  = 4;
     horizontalLine2.Text      = "horizontalLine2";
     //
     // horizontalLine1
     //
     horizontalLine1.Dock      = System.Windows.Forms.DockStyle.Top;
     horizontalLine1.LineColor = System.Drawing.SystemColors.ButtonShadow;
     horizontalLine1.Location  = new System.Drawing.Point(0, 59);
     horizontalLine1.Name      = "horizontalLine1";
     horizontalLine1.Size      = new System.Drawing.Size(244, 1);
     horizontalLine1.TabIndex  = 0;
     horizontalLine1.Text      = "horizontalLine1";
     //
     // buttonPanel
     //
     this.buttonPanel.AutoSize    = true;
     this.buttonPanel.Dock        = System.Windows.Forms.DockStyle.Top;
     this.buttonPanel.Location    = new System.Drawing.Point(0, 0);
     this.buttonPanel.MinimumSize = new System.Drawing.Size(0, 50);
     this.buttonPanel.Name        = "buttonPanel";
     this.buttonPanel.Size        = new System.Drawing.Size(244, 50);
     this.buttonPanel.TabIndex    = 0;
     //
     // buttonPanelContainer
     //
     this.buttonPanelContainer.AutoScroll = true;
     this.buttonPanelContainer.Controls.Add(this.buttonPanel);
     this.buttonPanelContainer.Dock     = System.Windows.Forms.DockStyle.Top;
     this.buttonPanelContainer.Location = new System.Drawing.Point(0, 0);
     this.buttonPanelContainer.Name     = "buttonPanelContainer";
     this.buttonPanelContainer.Size     = new System.Drawing.Size(244, 59);
     this.buttonPanelContainer.TabIndex = 1;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.Window;
     this.panel2.Controls.Add(this.descriptionPanel);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 60);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(244, 436);
     this.panel2.TabIndex = 2;
     //
     // descriptionPanel
     //
     this.descriptionPanel.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.descriptionPanel.AutoScroll = true;
     this.descriptionPanel.Controls.Add(this.description);
     this.descriptionPanel.Controls.Add(this.subDescription);
     this.descriptionPanel.Controls.Add(flagPanel);
     this.descriptionPanel.Controls.Add(horizontalLine2);
     this.descriptionPanel.Controls.Add(this.title);
     this.descriptionPanel.Location = new System.Drawing.Point(3, 6);
     this.descriptionPanel.Name     = "descriptionPanel";
     this.descriptionPanel.Size     = new System.Drawing.Size(238, 427);
     this.descriptionPanel.TabIndex = 2;
     //
     // description
     //
     this.description.AutoSize    = true;
     this.description.Dock        = System.Windows.Forms.DockStyle.Top;
     this.description.Location    = new System.Drawing.Point(0, 67);
     this.description.MaximumSize = new System.Drawing.Size(200, 0);
     this.description.Name        = "description";
     this.description.Padding     = new System.Windows.Forms.Padding(0, 0, 0, 5);
     this.description.Size        = new System.Drawing.Size(0, 18);
     this.description.TabIndex    = 1;
     //
     // subDescription
     //
     this.subDescription.AutoSize  = true;
     this.subDescription.Dock      = System.Windows.Forms.DockStyle.Top;
     this.subDescription.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
     this.subDescription.Location  = new System.Drawing.Point(0, 49);
     this.subDescription.Name      = "subDescription";
     this.subDescription.Padding   = new System.Windows.Forms.Padding(0, 0, 0, 5);
     this.subDescription.Size      = new System.Drawing.Size(0, 18);
     this.subDescription.TabIndex  = 5;
     //
     // title
     //
     this.title.Dock     = System.Windows.Forms.DockStyle.Top;
     this.title.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.title.Location = new System.Drawing.Point(0, 0);
     this.title.Name     = "title";
     this.title.Size     = new System.Drawing.Size(238, 20);
     this.title.TabIndex = 0;
     //
     // toolTip
     //
     this.toolTip.AutomaticDelay = 2;
     this.toolTip.AutoPopDelay   = 0;
     this.toolTip.InitialDelay   = 2;
     this.toolTip.ReshowDelay    = 0;
     //
     // OpcodeHelper
     //
     this.Controls.Add(this.panel2);
     this.Controls.Add(horizontalLine1);
     this.Controls.Add(this.buttonPanelContainer);
     this.Name = "OpcodeHelper";
     this.Size = new System.Drawing.Size(244, 496);
     flagPanel.ResumeLayout(false);
     flagPanel.PerformLayout();
     this.buttonPanelContainer.ResumeLayout(false);
     this.buttonPanelContainer.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.descriptionPanel.ResumeLayout(false);
     this.descriptionPanel.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 43
0
		private void InitializeComponent()
		{
			components = new Container();
			errorProvider = new ErrorProvider(components);
			tBoxSyncValue = new MaskedTextBox();
			nudPreambleSize = new NumericUpDownEx();
			label12 = new Label();
			label1 = new Label();
			label6 = new Label();
			label8 = new Label();
			label2 = new Label();
			label18 = new Label();
			tBoxAesKey = new MaskedTextBox();
			label11 = new Label();
			label20 = new Label();
			label10 = new Label();
			label21 = new Label();
			label7 = new Label();
			label5 = new Label();
			label25 = new Label();
			label24 = new Label();
			label19 = new Label();
			lblInterPacketRxDelayUnit = new Label();
			cBoxEnterCondition = new ComboBox();
			label14 = new Label();
			cBoxExitCondition = new ComboBox();
			label15 = new Label();
			cBoxIntermediateMode = new ComboBox();
			label28 = new Label();
			label16 = new Label();
			label27 = new Label();
			label26 = new Label();
			pnlAesEncryption = new Panel();
			rBtnAesOff = new RadioButton();
			rBtnAesOn = new RadioButton();
			pnlDcFree = new Panel();
			rBtnDcFreeWhitening = new RadioButton();
			rBtnDcFreeManchester = new RadioButton();
			rBtnDcFreeOff = new RadioButton();
			pnlAddressInPayload = new Panel();
			rBtnNodeAddressInPayloadNo = new RadioButton();
			rBtnNodeAddressInPayloadYes = new RadioButton();
			label17 = new Label();
			pnlFifoFillCondition = new Panel();
			rBtnFifoFillAlways = new RadioButton();
			rBtnFifoFillSyncAddress = new RadioButton();
			label4 = new Label();
			pnlSync = new Panel();
			rBtnSyncOff = new RadioButton();
			rBtnSyncOn = new RadioButton();
			label3 = new Label();
			label9 = new Label();
			pnlCrcAutoClear = new Panel();
			rBtnCrcAutoClearOff = new RadioButton();
			rBtnCrcAutoClearOn = new RadioButton();
			label23 = new Label();
			pnlCrcCalculation = new Panel();
			rBtnCrcOff = new RadioButton();
			rBtnCrcOn = new RadioButton();
			label22 = new Label();
			pnlTxStart = new Panel();
			rBtnTxStartFifoNotEmpty = new RadioButton();
			rBtnTxStartFifoLevel = new RadioButton();
			pnlAddressFiltering = new Panel();
			rBtnAddressFilteringNodeBroadcast = new RadioButton();
			rBtnAddressFilteringNode = new RadioButton();
			rBtnAddressFilteringOff = new RadioButton();
			lblNodeAddress = new Label();
			lblPayloadLength = new Label();
			lblBroadcastAddress = new Label();
			pnlPacketFormat = new Panel();
			rBtnPacketFormatFixed = new RadioButton();
			rBtnPacketFormatVariable = new RadioButton();
			tableLayoutPanel1 = new TableLayoutPanel();
			pnlPayloadLength = new Panel();
			nudPayloadLength = new NumericUpDownEx();
			nudSyncSize = new NumericUpDownEx();
			nudSyncTol = new NumericUpDownEx();
			pnlNodeAddress = new Panel();
			nudNodeAddress = new NumericUpDownEx();
			pnlBroadcastAddress = new Panel();
			nudBroadcastAddress = new NumericUpDownEx();
			tableLayoutPanel2 = new TableLayoutPanel();
			nudFifoThreshold = new NumericUpDownEx();
			cBoxInterPacketRxDelay = new ComboBox();
			gBoxDeviceStatus = new GroupBoxEx();
			lblOperatingMode = new Label();
			label37 = new Label();
			lblBitSynchroniser = new Label();
			lblDataMode = new Label();
			label38 = new Label();
			label39 = new Label();
			gBoxControl = new GroupBoxEx();
			tBoxPacketsNb = new TextBox();
			cBtnLog = new CheckBox();
			cBtnPacketHandlerStartStop = new CheckBox();
			lblPacketsNb = new Label();
			tBoxPacketsRepeatValue = new TextBox();
			lblPacketsRepeatValue = new Label();
			gBoxPacket = new GroupBoxEx();
			imgPacketMessage = new PayloadImg();
			gBoxMessage = new GroupBoxEx();
			tblPayloadMessage = new TableLayoutPanel();
			hexBoxPayload = new HexBox();
			label36 = new Label();
			label35 = new Label();
			tblPacket = new TableLayoutPanel();
			label29 = new Label();
			label30 = new Label();
			label31 = new Label();
			label32 = new Label();
			label33 = new Label();
			label34 = new Label();
			lblPacketPreamble = new Label();
			lblPayload = new Label();
			pnlPacketCrc = new Panel();
			ledPacketCrc = new Led();
			lblPacketCrc = new Label();
			pnlPacketAddr = new Panel();
			lblPacketAddr = new Label();
			lblPacketLength = new Label();
			lblPacketSyncValue = new Label();
			((ISupportInitialize)errorProvider).BeginInit();
			nudPreambleSize.BeginInit();
			pnlAesEncryption.SuspendLayout();
			pnlDcFree.SuspendLayout();
			pnlAddressInPayload.SuspendLayout();
			pnlFifoFillCondition.SuspendLayout();
			pnlSync.SuspendLayout();
			pnlCrcAutoClear.SuspendLayout();
			pnlCrcCalculation.SuspendLayout();
			pnlTxStart.SuspendLayout();
			pnlAddressFiltering.SuspendLayout();
			pnlPacketFormat.SuspendLayout();
			tableLayoutPanel1.SuspendLayout();
			pnlPayloadLength.SuspendLayout();
			nudPayloadLength.BeginInit();
			nudSyncSize.BeginInit();
			nudSyncTol.BeginInit();
			pnlNodeAddress.SuspendLayout();
			nudNodeAddress.BeginInit();
			pnlBroadcastAddress.SuspendLayout();
			nudBroadcastAddress.BeginInit();
			tableLayoutPanel2.SuspendLayout();
			nudFifoThreshold.BeginInit();
			gBoxDeviceStatus.SuspendLayout();
			gBoxControl.SuspendLayout();
			gBoxPacket.SuspendLayout();
			gBoxMessage.SuspendLayout();
			tblPayloadMessage.SuspendLayout();
			tblPacket.SuspendLayout();
			pnlPacketCrc.SuspendLayout();
			pnlPacketAddr.SuspendLayout();
			base.SuspendLayout();
			errorProvider.ContainerControl = this;
			tBoxSyncValue.Anchor = AnchorStyles.Left;
			errorProvider.SetIconPadding(tBoxSyncValue, 6);
			tBoxSyncValue.InsertKeyMode = InsertKeyMode.Overwrite;
			tBoxSyncValue.Location = new Point(0xa3, 0x7a);
			tBoxSyncValue.Margin = new Padding(3, 2, 3, 2);
			tBoxSyncValue.Mask = "&&-&&-&&-&&-&&-&&-&&-&&";
			tBoxSyncValue.Name = "tBoxSyncValue";
			tBoxSyncValue.Size = new Size(0x8f, 20);
			tBoxSyncValue.TabIndex = 14;
			tBoxSyncValue.Text = "AAAAAAAAAAAAAAAA";
			tBoxSyncValue.MaskInputRejected += new MaskInputRejectedEventHandler(tBoxSyncValue_MaskInputRejected);
			tBoxSyncValue.TypeValidationCompleted += new TypeValidationEventHandler(tBoxSyncValue_TypeValidationCompleted);
			tBoxSyncValue.TextChanged += new EventHandler(tBoxSyncValue_TextChanged);
			tBoxSyncValue.KeyDown += new KeyEventHandler(tBoxSyncValue_KeyDown);
			tBoxSyncValue.MouseEnter += new EventHandler(control_MouseEnter);
			tBoxSyncValue.MouseLeave += new EventHandler(control_MouseLeave);
			tBoxSyncValue.Validated += new EventHandler(tBox_Validated);
			nudPreambleSize.Anchor = AnchorStyles.Left;
			errorProvider.SetIconPadding(nudPreambleSize, 6);
			nudPreambleSize.Location = new Point(0xa3, 2);
			nudPreambleSize.Margin = new Padding(3, 2, 3, 2);
			int[] bits = new int[4];
			bits[0] = 0xffff;
			nudPreambleSize.Maximum = new decimal(bits);
			nudPreambleSize.Name = "nudPreambleSize";
			nudPreambleSize.Size = new Size(0x3b, 20);
			nudPreambleSize.TabIndex = 1;
			int[] numArray2 = new int[4];
			numArray2[0] = 3;
			nudPreambleSize.Value = new decimal(numArray2);
			nudPreambleSize.MouseEnter += new EventHandler(control_MouseEnter);
			nudPreambleSize.MouseLeave += new EventHandler(control_MouseLeave);
			nudPreambleSize.ValueChanged += new EventHandler(nudPreambleSize_ValueChanged);
			label12.Anchor = AnchorStyles.None;
			label12.AutoSize = true;
			label12.Location = new Point(0x155, 0xad);
			label12.Name = "label12";
			label12.Size = new Size(0x20, 13);
			label12.TabIndex = 0x13;
			label12.Text = "bytes";
			label12.TextAlign = ContentAlignment.MiddleLeft;
			label1.Anchor = AnchorStyles.Left;
			label1.AutoSize = true;
			label1.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label1.Location = new Point(3, 5);
			label1.Name = "label1";
			label1.Size = new Size(0x4b, 13);
			label1.TabIndex = 0;
			label1.Text = "Preamble size:";
			label1.TextAlign = ContentAlignment.MiddleLeft;
			label6.Anchor = AnchorStyles.None;
			label6.AutoSize = true;
			label6.Location = new Point(0x155, 0x4d);
			label6.Name = "label6";
			label6.Size = new Size(0x20, 13);
			label6.TabIndex = 9;
			label6.Text = "bytes";
			label6.TextAlign = ContentAlignment.MiddleLeft;
			label8.Anchor = AnchorStyles.None;
			label8.AutoSize = true;
			label8.Location = new Point(0x159, 0x65);
			label8.Name = "label8";
			label8.Size = new Size(0x17, 13);
			label8.TabIndex = 12;
			label8.Text = "bits";
			label8.TextAlign = ContentAlignment.MiddleLeft;
			label2.Anchor = AnchorStyles.None;
			label2.AutoSize = true;
			label2.Location = new Point(0x155, 5);
			label2.Name = "label2";
			label2.Size = new Size(0x20, 13);
			label2.TabIndex = 2;
			label2.Text = "bytes";
			label2.TextAlign = ContentAlignment.MiddleLeft;
			label18.Anchor = AnchorStyles.Left;
			label18.AutoSize = true;
			label18.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label18.Location = new Point(3, 0x1d);
			label18.Name = "label18";
			label18.Size = new Size(0x74, 13);
			label18.TabIndex = 2;
			label18.Text = "Address based filtering:";
			label18.TextAlign = ContentAlignment.MiddleLeft;
			tBoxAesKey.Anchor = AnchorStyles.Left;
			tableLayoutPanel2.SetColumnSpan(tBoxAesKey, 2);
			tBoxAesKey.InsertKeyMode = InsertKeyMode.Overwrite;
			tBoxAesKey.Location = new Point(0x81, 0xc3);
			tBoxAesKey.Margin = new Padding(3, 3, 3, 4);
			tBoxAesKey.Mask = "&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&-&&";
			tBoxAesKey.Name = "tBoxAesKey";
			tBoxAesKey.Size = new Size(0x115, 20);
			tBoxAesKey.TabIndex = 15;
			tBoxAesKey.Text = "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
			tBoxAesKey.TextAlign = HorizontalAlignment.Center;
			tBoxAesKey.MaskInputRejected += new MaskInputRejectedEventHandler(tBoxAesKey_MaskInputRejected);
			tBoxAesKey.TypeValidationCompleted += new TypeValidationEventHandler(tBoxAesKey_TypeValidationCompleted);
			tBoxAesKey.TextChanged += new EventHandler(tBoxAesKey_TextChanged);
			tBoxAesKey.KeyDown += new KeyEventHandler(tBoxAesKey_KeyDown);
			tBoxAesKey.MouseEnter += new EventHandler(control_MouseEnter);
			tBoxAesKey.MouseLeave += new EventHandler(control_MouseLeave);
			tBoxAesKey.Validated += new EventHandler(tBox_Validated);
			label11.Anchor = AnchorStyles.Left;
			label11.AutoSize = true;
			label11.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label11.Location = new Point(3, 0xad);
			label11.Name = "label11";
			label11.Size = new Size(80, 13);
			label11.TabIndex = 0x11;
			label11.Text = "Payload length:";
			label11.TextAlign = ContentAlignment.MiddleLeft;
			label20.Anchor = AnchorStyles.Left;
			label20.AutoSize = true;
			label20.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label20.Location = new Point(3, 0x4d);
			label20.Name = "label20";
			label20.Size = new Size(0x62, 13);
			label20.TabIndex = 5;
			label20.Text = "Broadcast address:";
			label20.TextAlign = ContentAlignment.MiddleLeft;
			label10.Anchor = AnchorStyles.Left;
			label10.AutoSize = true;
			label10.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label10.Location = new Point(3, 0x95);
			label10.Name = "label10";
			label10.Size = new Size(0x4c, 13);
			label10.TabIndex = 15;
			label10.Text = "Packet format:";
			label10.TextAlign = ContentAlignment.MiddleLeft;
			label21.Anchor = AnchorStyles.Left;
			label21.AutoSize = true;
			label21.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label21.Location = new Point(3, 0x65);
			label21.Name = "label21";
			label21.Size = new Size(0x2e, 13);
			label21.TabIndex = 6;
			label21.Text = "DC-free:";
			label21.TextAlign = ContentAlignment.MiddleLeft;
			label7.Anchor = AnchorStyles.Left;
			label7.AutoSize = true;
			label7.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label7.Location = new Point(3, 0x65);
			label7.Name = "label7";
			label7.Size = new Size(0x6b, 13);
			label7.TabIndex = 10;
			label7.Text = "Sync word tolerance:";
			label7.TextAlign = ContentAlignment.MiddleLeft;
			label5.Anchor = AnchorStyles.Left;
			label5.AutoSize = true;
			label5.BackColor = Color.Transparent;
			label5.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label5.Location = new Point(3, 0x4d);
			label5.Name = "label5";
			label5.Size = new Size(0x51, 13);
			label5.TabIndex = 7;
			label5.Text = "Sync word size:";
			label5.TextAlign = ContentAlignment.MiddleLeft;
			label25.Anchor = AnchorStyles.Left;
			label25.AutoSize = true;
			label25.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label25.Location = new Point(3, 0xc7);
			label25.Name = "label25";
			label25.Size = new Size(0x33, 13);
			label25.TabIndex = 14;
			label25.Text = "AES key:";
			label25.TextAlign = ContentAlignment.MiddleLeft;
			label24.Anchor = AnchorStyles.Left;
			label24.AutoSize = true;
			label24.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label24.Location = new Point(3, 0xad);
			label24.Name = "label24";
			label24.Size = new Size(0x1f, 13);
			label24.TabIndex = 12;
			label24.Text = "AES:";
			label24.TextAlign = ContentAlignment.MiddleLeft;
			label19.Anchor = AnchorStyles.Left;
			label19.AutoSize = true;
			label19.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label19.Location = new Point(3, 0x35);
			label19.Name = "label19";
			label19.Size = new Size(0x4c, 13);
			label19.TabIndex = 4;
			label19.Text = "Node address:";
			label19.TextAlign = ContentAlignment.MiddleLeft;
			lblInterPacketRxDelayUnit.Anchor = AnchorStyles.None;
			lblInterPacketRxDelayUnit.AutoSize = true;
			lblInterPacketRxDelayUnit.Location = new Point(0x176, 0x113);
			lblInterPacketRxDelayUnit.Name = "lblInterPacketRxDelayUnit";
			lblInterPacketRxDelayUnit.Size = new Size(20, 13);
			lblInterPacketRxDelayUnit.TabIndex = 0x16;
			lblInterPacketRxDelayUnit.Text = "ms";
			lblInterPacketRxDelayUnit.TextAlign = ContentAlignment.MiddleLeft;
			cBoxEnterCondition.Anchor = AnchorStyles.Left;
			cBoxEnterCondition.DropDownStyle = ComboBoxStyle.DropDownList;
			cBoxEnterCondition.FormattingEnabled = true;
			cBoxEnterCondition.Items.AddRange(new object[] { "None ( Auto Modes OFF )", "Rising edge of FifoNotEmpty", "Rising edge of FifoLevel", "Rising edge of CrcOk", "Rising edge of PayloadReady", "Rising edge of SyncAddress", "Rising edge of PacketSent", "Falling edge of FifoNotEmpty" });
			cBoxEnterCondition.Location = new Point(0xa3, 0xc2);
			cBoxEnterCondition.Margin = new Padding(3, 2, 3, 2);
			cBoxEnterCondition.Name = "cBoxEnterCondition";
			cBoxEnterCondition.Size = new Size(0xac, 0x15);
			cBoxEnterCondition.TabIndex = 0x17;
			cBoxEnterCondition.SelectedIndexChanged += new EventHandler(cBoxEnterCondition_SelectedIndexChanged);
			cBoxEnterCondition.MouseEnter += new EventHandler(control_MouseEnter);
			cBoxEnterCondition.MouseLeave += new EventHandler(control_MouseLeave);
			label14.Anchor = AnchorStyles.Left;
			label14.AutoSize = true;
			label14.Location = new Point(3, 0xc6);
			label14.Name = "label14";
			label14.Size = new Size(0x7c, 13);
			label14.TabIndex = 0x16;
			label14.Text = "Intermediate mode enter:";
			label14.TextAlign = ContentAlignment.MiddleLeft;
			cBoxExitCondition.Anchor = AnchorStyles.Left;
			cBoxExitCondition.DropDownStyle = ComboBoxStyle.DropDownList;
			cBoxExitCondition.FormattingEnabled = true;
			cBoxExitCondition.Items.AddRange(new object[] { "None ( Auto Modes OFF )", "Falling edge of FifoNotEmpty", "Rising edge of FifoLevel or Timeout", "Rising edge of CrcOk or TimeOut", "Rising edge of PayloadReady or Timeout", "Rising edge of SyncAddress or Timeout", "Rising edge of PacketSent", "Rising edge of Timeout" });
			cBoxExitCondition.Location = new Point(0xa3, 0xdb);
			cBoxExitCondition.Margin = new Padding(3, 2, 3, 2);
			cBoxExitCondition.Name = "cBoxExitCondition";
			cBoxExitCondition.Size = new Size(0xac, 0x15);
			cBoxExitCondition.TabIndex = 0x19;
			cBoxExitCondition.SelectedIndexChanged += new EventHandler(cBoxExitCondition_SelectedIndexChanged);
			cBoxExitCondition.MouseEnter += new EventHandler(control_MouseEnter);
			cBoxExitCondition.MouseLeave += new EventHandler(control_MouseLeave);
			label15.Anchor = AnchorStyles.Left;
			label15.AutoSize = true;
			label15.Location = new Point(3, 0xdf);
			label15.Name = "label15";
			label15.Size = new Size(0x74, 13);
			label15.TabIndex = 0x18;
			label15.Text = "Intermediate mode exit:";
			label15.TextAlign = ContentAlignment.MiddleLeft;
			cBoxIntermediateMode.Anchor = AnchorStyles.Left;
			cBoxIntermediateMode.DropDownStyle = ComboBoxStyle.DropDownList;
			cBoxIntermediateMode.FormattingEnabled = true;
			cBoxIntermediateMode.Items.AddRange(new object[] { "Sleep", "Standby", "Rx", "Tx" });
			cBoxIntermediateMode.Location = new Point(0xa3, 0xf4);
			cBoxIntermediateMode.Margin = new Padding(3, 2, 3, 2);
			cBoxIntermediateMode.Name = "cBoxIntermediateMode";
			cBoxIntermediateMode.Size = new Size(0xac, 0x15);
			cBoxIntermediateMode.TabIndex = 0x1b;
			cBoxIntermediateMode.SelectedIndexChanged += new EventHandler(cBoxIntermediateMode_SelectedIndexChanged);
			cBoxIntermediateMode.MouseEnter += new EventHandler(control_MouseEnter);
			cBoxIntermediateMode.MouseLeave += new EventHandler(control_MouseLeave);
			label28.Anchor = AnchorStyles.Left;
			label28.AutoSize = true;
			label28.Location = new Point(3, 0x113);
			label28.Name = "label28";
			label28.Size = new Size(0x6f, 13);
			label28.TabIndex = 20;
			label28.Text = "Inter packet Rx delay:";
			label28.TextAlign = ContentAlignment.MiddleLeft;
			label16.Anchor = AnchorStyles.Left;
			label16.AutoSize = true;
			label16.Location = new Point(3, 0xf8);
			label16.Name = "label16";
			label16.Size = new Size(100, 13);
			label16.TabIndex = 0x1a;
			label16.Text = "Intermediate  mode:";
			label16.TextAlign = ContentAlignment.MiddleLeft;
			label27.Anchor = AnchorStyles.Left;
			label27.AutoSize = true;
			label27.Location = new Point(3, 250);
			label27.Name = "label27";
			label27.Size = new Size(0x53, 13);
			label27.TabIndex = 0x12;
			label27.Text = "FIFO Threshold:";
			label27.TextAlign = ContentAlignment.MiddleLeft;
			label26.Anchor = AnchorStyles.Left;
			label26.AutoSize = true;
			label26.Location = new Point(3, 0xe1);
			label26.Name = "label26";
			label26.Size = new Size(0x2d, 13);
			label26.TabIndex = 0x10;
			label26.Text = "Tx start:";
			label26.TextAlign = ContentAlignment.MiddleLeft;
			pnlAesEncryption.Anchor = AnchorStyles.Left;
			pnlAesEncryption.AutoSize = true;
			pnlAesEncryption.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlAesEncryption.Controls.Add(rBtnAesOff);
			pnlAesEncryption.Controls.Add(rBtnAesOn);
			pnlAesEncryption.Location = new Point(0x81, 170);
			pnlAesEncryption.Margin = new Padding(3, 2, 3, 2);
			pnlAesEncryption.Name = "pnlAesEncryption";
			pnlAesEncryption.Size = new Size(0x66, 20);
			pnlAesEncryption.TabIndex = 13;
			pnlAesEncryption.MouseEnter += new EventHandler(control_MouseEnter);
			pnlAesEncryption.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAesOff.AutoSize = true;
			rBtnAesOff.Location = new Point(0x36, 3);
			rBtnAesOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAesOff.Name = "rBtnAesOff";
			rBtnAesOff.Size = new Size(0x2d, 0x11);
			rBtnAesOff.TabIndex = 1;
			rBtnAesOff.Text = "OFF";
			rBtnAesOff.UseVisualStyleBackColor = true;
			rBtnAesOff.CheckedChanged += new EventHandler(rBtnAesOff_CheckedChanged);
			rBtnAesOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAesOff.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAesOn.AutoSize = true;
			rBtnAesOn.Checked = true;
			rBtnAesOn.Location = new Point(3, 3);
			rBtnAesOn.Margin = new Padding(3, 0, 3, 0);
			rBtnAesOn.Name = "rBtnAesOn";
			rBtnAesOn.Size = new Size(0x29, 0x11);
			rBtnAesOn.TabIndex = 0;
			rBtnAesOn.TabStop = true;
			rBtnAesOn.Text = "ON";
			rBtnAesOn.UseVisualStyleBackColor = true;
			rBtnAesOn.CheckedChanged += new EventHandler(rBtnAesOn_CheckedChanged);
			rBtnAesOn.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAesOn.MouseLeave += new EventHandler(control_MouseLeave);
			pnlDcFree.Anchor = AnchorStyles.Left;
			pnlDcFree.AutoSize = true;
			pnlDcFree.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlDcFree.Controls.Add(rBtnDcFreeWhitening);
			pnlDcFree.Controls.Add(rBtnDcFreeManchester);
			pnlDcFree.Controls.Add(rBtnDcFreeOff);
			pnlDcFree.Location = new Point(0x81, 0x62);
			pnlDcFree.Margin = new Padding(3, 2, 3, 2);
			pnlDcFree.Name = "pnlDcFree";
			pnlDcFree.Size = new Size(0xd9, 20);
			pnlDcFree.TabIndex = 7;
			pnlDcFree.MouseEnter += new EventHandler(control_MouseEnter);
			pnlDcFree.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnDcFreeWhitening.AutoSize = true;
			rBtnDcFreeWhitening.Location = new Point(0x8d, 3);
			rBtnDcFreeWhitening.Margin = new Padding(3, 0, 3, 0);
			rBtnDcFreeWhitening.Name = "rBtnDcFreeWhitening";
			rBtnDcFreeWhitening.Size = new Size(0x49, 0x11);
			rBtnDcFreeWhitening.TabIndex = 2;
			rBtnDcFreeWhitening.Text = "Whitening";
			rBtnDcFreeWhitening.UseVisualStyleBackColor = true;
			rBtnDcFreeWhitening.CheckedChanged += new EventHandler(rBtnDcFreeWhitening_CheckedChanged);
			rBtnDcFreeWhitening.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnDcFreeWhitening.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnDcFreeManchester.AutoSize = true;
			rBtnDcFreeManchester.Location = new Point(0x36, 3);
			rBtnDcFreeManchester.Margin = new Padding(3, 0, 3, 0);
			rBtnDcFreeManchester.Name = "rBtnDcFreeManchester";
			rBtnDcFreeManchester.Size = new Size(0x51, 0x11);
			rBtnDcFreeManchester.TabIndex = 1;
			rBtnDcFreeManchester.Text = "Manchester";
			rBtnDcFreeManchester.UseVisualStyleBackColor = true;
			rBtnDcFreeManchester.CheckedChanged += new EventHandler(rBtnDcFreeManchester_CheckedChanged);
			rBtnDcFreeManchester.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnDcFreeManchester.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnDcFreeOff.AutoSize = true;
			rBtnDcFreeOff.Checked = true;
			rBtnDcFreeOff.Location = new Point(3, 3);
			rBtnDcFreeOff.Margin = new Padding(3, 0, 3, 0);
			rBtnDcFreeOff.Name = "rBtnDcFreeOff";
			rBtnDcFreeOff.Size = new Size(0x2d, 0x11);
			rBtnDcFreeOff.TabIndex = 0;
			rBtnDcFreeOff.TabStop = true;
			rBtnDcFreeOff.Text = "OFF";
			rBtnDcFreeOff.UseVisualStyleBackColor = true;
			rBtnDcFreeOff.CheckedChanged += new EventHandler(rBtnDcFreeOff_CheckedChanged);
			rBtnDcFreeOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnDcFreeOff.MouseLeave += new EventHandler(control_MouseLeave);
			pnlAddressInPayload.Anchor = AnchorStyles.Left;
			pnlAddressInPayload.AutoSize = true;
			pnlAddressInPayload.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlAddressInPayload.Controls.Add(rBtnNodeAddressInPayloadNo);
			pnlAddressInPayload.Controls.Add(rBtnNodeAddressInPayloadYes);
			pnlAddressInPayload.Location = new Point(0x81, 2);
			pnlAddressInPayload.Margin = new Padding(3, 2, 3, 2);
			pnlAddressInPayload.Name = "pnlAddressInPayload";
			pnlAddressInPayload.Size = new Size(0x62, 20);
			pnlAddressInPayload.TabIndex = 1;
			pnlAddressInPayload.Visible = false;
			pnlAddressInPayload.MouseEnter += new EventHandler(control_MouseEnter);
			pnlAddressInPayload.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnNodeAddressInPayloadNo.AutoSize = true;
			rBtnNodeAddressInPayloadNo.Location = new Point(0x36, 3);
			rBtnNodeAddressInPayloadNo.Margin = new Padding(3, 0, 3, 0);
			rBtnNodeAddressInPayloadNo.Name = "rBtnNodeAddressInPayloadNo";
			rBtnNodeAddressInPayloadNo.Size = new Size(0x29, 0x11);
			rBtnNodeAddressInPayloadNo.TabIndex = 1;
			rBtnNodeAddressInPayloadNo.Text = "NO";
			rBtnNodeAddressInPayloadNo.UseVisualStyleBackColor = true;
			rBtnNodeAddressInPayloadNo.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnNodeAddressInPayloadNo.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnNodeAddressInPayloadYes.AutoSize = true;
			rBtnNodeAddressInPayloadYes.Checked = true;
			rBtnNodeAddressInPayloadYes.Location = new Point(3, 3);
			rBtnNodeAddressInPayloadYes.Margin = new Padding(3, 0, 3, 0);
			rBtnNodeAddressInPayloadYes.Name = "rBtnNodeAddressInPayloadYes";
			rBtnNodeAddressInPayloadYes.Size = new Size(0x2e, 0x11);
			rBtnNodeAddressInPayloadYes.TabIndex = 0;
			rBtnNodeAddressInPayloadYes.TabStop = true;
			rBtnNodeAddressInPayloadYes.Text = "YES";
			rBtnNodeAddressInPayloadYes.UseVisualStyleBackColor = true;
			rBtnNodeAddressInPayloadYes.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnNodeAddressInPayloadYes.MouseLeave += new EventHandler(control_MouseLeave);
			label17.Anchor = AnchorStyles.Left;
			label17.AutoSize = true;
			label17.Location = new Point(3, 5);
			label17.Name = "label17";
			label17.Size = new Size(120, 13);
			label17.TabIndex = 0;
			label17.Text = "Add address in payload:";
			label17.TextAlign = ContentAlignment.MiddleLeft;
			label17.Visible = false;
			pnlFifoFillCondition.Anchor = AnchorStyles.Left;
			pnlFifoFillCondition.AutoSize = true;
			pnlFifoFillCondition.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlFifoFillCondition.Controls.Add(rBtnFifoFillAlways);
			pnlFifoFillCondition.Controls.Add(rBtnFifoFillSyncAddress);
			pnlFifoFillCondition.Location = new Point(0xa3, 50);
			pnlFifoFillCondition.Margin = new Padding(3, 2, 3, 2);
			pnlFifoFillCondition.Name = "pnlFifoFillCondition";
			pnlFifoFillCondition.Size = new Size(0x9f, 20);
			pnlFifoFillCondition.TabIndex = 6;
			pnlFifoFillCondition.MouseEnter += new EventHandler(control_MouseEnter);
			pnlFifoFillCondition.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnFifoFillAlways.AutoSize = true;
			rBtnFifoFillAlways.Location = new Point(0x62, 3);
			rBtnFifoFillAlways.Margin = new Padding(3, 0, 3, 0);
			rBtnFifoFillAlways.Name = "rBtnFifoFillAlways";
			rBtnFifoFillAlways.Size = new Size(0x3a, 0x11);
			rBtnFifoFillAlways.TabIndex = 1;
			rBtnFifoFillAlways.Text = "Always";
			rBtnFifoFillAlways.UseVisualStyleBackColor = true;
			rBtnFifoFillAlways.CheckedChanged += new EventHandler(rBtnFifoFill_CheckedChanged);
			rBtnFifoFillAlways.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnFifoFillAlways.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnFifoFillSyncAddress.AutoSize = true;
			rBtnFifoFillSyncAddress.Checked = true;
			rBtnFifoFillSyncAddress.Location = new Point(3, 3);
			rBtnFifoFillSyncAddress.Margin = new Padding(3, 0, 3, 0);
			rBtnFifoFillSyncAddress.Name = "rBtnFifoFillSyncAddress";
			rBtnFifoFillSyncAddress.Size = new Size(0x59, 0x11);
			rBtnFifoFillSyncAddress.TabIndex = 0;
			rBtnFifoFillSyncAddress.TabStop = true;
			rBtnFifoFillSyncAddress.Text = "Sync address";
			rBtnFifoFillSyncAddress.UseVisualStyleBackColor = true;
			rBtnFifoFillSyncAddress.CheckedChanged += new EventHandler(rBtnFifoFill_CheckedChanged);
			rBtnFifoFillSyncAddress.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnFifoFillSyncAddress.MouseLeave += new EventHandler(control_MouseLeave);
			label4.Anchor = AnchorStyles.Left;
			label4.AutoSize = true;
			label4.Location = new Point(3, 0x35);
			label4.Name = "label4";
			label4.Size = new Size(0x5b, 13);
			label4.TabIndex = 5;
			label4.Text = "FIFO fill condition:";
			label4.TextAlign = ContentAlignment.MiddleLeft;
			pnlSync.Anchor = AnchorStyles.Left;
			pnlSync.AutoSize = true;
			pnlSync.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlSync.Controls.Add(rBtnSyncOff);
			pnlSync.Controls.Add(rBtnSyncOn);
			pnlSync.Location = new Point(0xa3, 0x1a);
			pnlSync.Margin = new Padding(3, 2, 3, 2);
			pnlSync.Name = "pnlSync";
			pnlSync.Size = new Size(0x62, 20);
			pnlSync.TabIndex = 4;
			pnlSync.MouseEnter += new EventHandler(control_MouseEnter);
			pnlSync.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnSyncOff.AutoSize = true;
			rBtnSyncOff.Location = new Point(50, 3);
			rBtnSyncOff.Margin = new Padding(3, 0, 3, 0);
			rBtnSyncOff.Name = "rBtnSyncOff";
			rBtnSyncOff.Size = new Size(0x2d, 0x11);
			rBtnSyncOff.TabIndex = 1;
			rBtnSyncOff.Text = "OFF";
			rBtnSyncOff.UseVisualStyleBackColor = true;
			rBtnSyncOff.CheckedChanged += new EventHandler(rBtnSyncOn_CheckedChanged);
			rBtnSyncOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnSyncOff.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnSyncOn.AutoSize = true;
			rBtnSyncOn.Checked = true;
			rBtnSyncOn.Location = new Point(3, 3);
			rBtnSyncOn.Margin = new Padding(3, 0, 3, 0);
			rBtnSyncOn.Name = "rBtnSyncOn";
			rBtnSyncOn.Size = new Size(0x29, 0x11);
			rBtnSyncOn.TabIndex = 0;
			rBtnSyncOn.TabStop = true;
			rBtnSyncOn.Text = "ON";
			rBtnSyncOn.UseVisualStyleBackColor = true;
			rBtnSyncOn.CheckedChanged += new EventHandler(rBtnSyncOn_CheckedChanged);
			rBtnSyncOn.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnSyncOn.MouseLeave += new EventHandler(control_MouseLeave);
			label3.Anchor = AnchorStyles.Left;
			label3.AutoSize = true;
			label3.Location = new Point(3, 0x1d);
			label3.Name = "label3";
			label3.Size = new Size(60, 13);
			label3.TabIndex = 3;
			label3.Text = "Sync word:";
			label3.TextAlign = ContentAlignment.MiddleLeft;
			label9.Anchor = AnchorStyles.Left;
			label9.AutoSize = true;
			label9.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			label9.Location = new Point(3, 0x7d);
			label9.Name = "label9";
			label9.Size = new Size(0x59, 13);
			label9.TabIndex = 13;
			label9.Text = "Sync word value:";
			label9.TextAlign = ContentAlignment.MiddleLeft;
			pnlCrcAutoClear.Anchor = AnchorStyles.Left;
			pnlCrcAutoClear.AutoSize = true;
			pnlCrcAutoClear.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlCrcAutoClear.Controls.Add(rBtnCrcAutoClearOff);
			pnlCrcAutoClear.Controls.Add(rBtnCrcAutoClearOn);
			pnlCrcAutoClear.Location = new Point(0x81, 0x92);
			pnlCrcAutoClear.Margin = new Padding(3, 2, 3, 2);
			pnlCrcAutoClear.Name = "pnlCrcAutoClear";
			pnlCrcAutoClear.Size = new Size(0x66, 20);
			pnlCrcAutoClear.TabIndex = 11;
			pnlCrcAutoClear.MouseEnter += new EventHandler(control_MouseEnter);
			pnlCrcAutoClear.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnCrcAutoClearOff.AutoSize = true;
			rBtnCrcAutoClearOff.Location = new Point(0x36, 3);
			rBtnCrcAutoClearOff.Margin = new Padding(3, 0, 3, 0);
			rBtnCrcAutoClearOff.Name = "rBtnCrcAutoClearOff";
			rBtnCrcAutoClearOff.Size = new Size(0x2d, 0x11);
			rBtnCrcAutoClearOff.TabIndex = 1;
			rBtnCrcAutoClearOff.Text = "OFF";
			rBtnCrcAutoClearOff.UseVisualStyleBackColor = true;
			rBtnCrcAutoClearOff.CheckedChanged += new EventHandler(rBtnCrcAutoClearOff_CheckedChanged);
			rBtnCrcAutoClearOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnCrcAutoClearOff.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnCrcAutoClearOn.AutoSize = true;
			rBtnCrcAutoClearOn.Checked = true;
			rBtnCrcAutoClearOn.Location = new Point(3, 3);
			rBtnCrcAutoClearOn.Margin = new Padding(3, 0, 3, 0);
			rBtnCrcAutoClearOn.Name = "rBtnCrcAutoClearOn";
			rBtnCrcAutoClearOn.Size = new Size(0x29, 0x11);
			rBtnCrcAutoClearOn.TabIndex = 0;
			rBtnCrcAutoClearOn.TabStop = true;
			rBtnCrcAutoClearOn.Text = "ON";
			rBtnCrcAutoClearOn.UseVisualStyleBackColor = true;
			rBtnCrcAutoClearOn.CheckedChanged += new EventHandler(rBtnCrcAutoClearOn_CheckedChanged);
			rBtnCrcAutoClearOn.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnCrcAutoClearOn.MouseLeave += new EventHandler(control_MouseLeave);
			label23.Anchor = AnchorStyles.Left;
			label23.AutoSize = true;
			label23.Location = new Point(3, 0x95);
			label23.Name = "label23";
			label23.Size = new Size(0x52, 13);
			label23.TabIndex = 10;
			label23.Text = "CRC auto clear:";
			label23.TextAlign = ContentAlignment.MiddleLeft;
			pnlCrcCalculation.Anchor = AnchorStyles.Left;
			pnlCrcCalculation.AutoSize = true;
			pnlCrcCalculation.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlCrcCalculation.Controls.Add(rBtnCrcOff);
			pnlCrcCalculation.Controls.Add(rBtnCrcOn);
			pnlCrcCalculation.Location = new Point(0x81, 0x7a);
			pnlCrcCalculation.Margin = new Padding(3, 2, 3, 2);
			pnlCrcCalculation.Name = "pnlCrcCalculation";
			pnlCrcCalculation.Size = new Size(0x66, 20);
			pnlCrcCalculation.TabIndex = 9;
			pnlCrcCalculation.MouseEnter += new EventHandler(control_MouseEnter);
			pnlCrcCalculation.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnCrcOff.AutoSize = true;
			rBtnCrcOff.Location = new Point(0x36, 3);
			rBtnCrcOff.Margin = new Padding(3, 0, 3, 0);
			rBtnCrcOff.Name = "rBtnCrcOff";
			rBtnCrcOff.Size = new Size(0x2d, 0x11);
			rBtnCrcOff.TabIndex = 1;
			rBtnCrcOff.Text = "OFF";
			rBtnCrcOff.UseVisualStyleBackColor = true;
			rBtnCrcOff.CheckedChanged += new EventHandler(rBtnCrcOff_CheckedChanged);
			rBtnCrcOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnCrcOff.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnCrcOn.AutoSize = true;
			rBtnCrcOn.Checked = true;
			rBtnCrcOn.Location = new Point(3, 3);
			rBtnCrcOn.Margin = new Padding(3, 0, 3, 0);
			rBtnCrcOn.Name = "rBtnCrcOn";
			rBtnCrcOn.Size = new Size(0x29, 0x11);
			rBtnCrcOn.TabIndex = 0;
			rBtnCrcOn.TabStop = true;
			rBtnCrcOn.Text = "ON";
			rBtnCrcOn.UseVisualStyleBackColor = true;
			rBtnCrcOn.CheckedChanged += new EventHandler(rBtnCrcOn_CheckedChanged);
			rBtnCrcOn.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnCrcOn.MouseLeave += new EventHandler(control_MouseLeave);
			label22.Anchor = AnchorStyles.Left;
			label22.AutoSize = true;
			label22.Location = new Point(3, 0x7d);
			label22.Name = "label22";
			label22.Size = new Size(0x56, 13);
			label22.TabIndex = 8;
			label22.Text = "CRC calculation:";
			label22.TextAlign = ContentAlignment.MiddleLeft;
			pnlTxStart.Anchor = AnchorStyles.Left;
			pnlTxStart.AutoSize = true;
			pnlTxStart.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlTxStart.Controls.Add(rBtnTxStartFifoNotEmpty);
			pnlTxStart.Controls.Add(rBtnTxStartFifoLevel);
			pnlTxStart.Location = new Point(0x81, 0xde);
			pnlTxStart.Margin = new Padding(3, 3, 3, 2);
			pnlTxStart.Name = "pnlTxStart";
			pnlTxStart.Size = new Size(0xa8, 20);
			pnlTxStart.TabIndex = 0x11;
			pnlTxStart.MouseEnter += new EventHandler(control_MouseEnter);
			pnlTxStart.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnTxStartFifoNotEmpty.AutoSize = true;
			rBtnTxStartFifoNotEmpty.Checked = true;
			rBtnTxStartFifoNotEmpty.Location = new Point(0x4d, 3);
			rBtnTxStartFifoNotEmpty.Margin = new Padding(3, 0, 3, 0);
			rBtnTxStartFifoNotEmpty.Name = "rBtnTxStartFifoNotEmpty";
			rBtnTxStartFifoNotEmpty.Size = new Size(0x58, 0x11);
			rBtnTxStartFifoNotEmpty.TabIndex = 1;
			rBtnTxStartFifoNotEmpty.TabStop = true;
			rBtnTxStartFifoNotEmpty.Text = "FifoNotEmpty";
			rBtnTxStartFifoNotEmpty.UseVisualStyleBackColor = true;
			rBtnTxStartFifoNotEmpty.CheckedChanged += new EventHandler(rBtnTxStartFifoNotEmpty_CheckedChanged);
			rBtnTxStartFifoNotEmpty.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnTxStartFifoNotEmpty.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnTxStartFifoLevel.AutoSize = true;
			rBtnTxStartFifoLevel.Location = new Point(3, 3);
			rBtnTxStartFifoLevel.Margin = new Padding(3, 0, 3, 0);
			rBtnTxStartFifoLevel.Name = "rBtnTxStartFifoLevel";
			rBtnTxStartFifoLevel.Size = new Size(0x44, 0x11);
			rBtnTxStartFifoLevel.TabIndex = 0;
			rBtnTxStartFifoLevel.Text = "FifoLevel";
			rBtnTxStartFifoLevel.UseVisualStyleBackColor = true;
			rBtnTxStartFifoLevel.CheckedChanged += new EventHandler(rBtnTxStartFifoLevel_CheckedChanged);
			rBtnTxStartFifoLevel.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnTxStartFifoLevel.MouseLeave += new EventHandler(control_MouseLeave);
			pnlAddressFiltering.Anchor = AnchorStyles.Left;
			pnlAddressFiltering.AutoSize = true;
			pnlAddressFiltering.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlAddressFiltering.Controls.Add(rBtnAddressFilteringNodeBroadcast);
			pnlAddressFiltering.Controls.Add(rBtnAddressFilteringNode);
			pnlAddressFiltering.Controls.Add(rBtnAddressFilteringOff);
			pnlAddressFiltering.Location = new Point(0x81, 0x1a);
			pnlAddressFiltering.Margin = new Padding(3, 2, 3, 2);
			pnlAddressFiltering.Name = "pnlAddressFiltering";
			pnlAddressFiltering.Size = new Size(0xe4, 20);
			pnlAddressFiltering.TabIndex = 3;
			pnlAddressFiltering.MouseEnter += new EventHandler(control_MouseEnter);
			pnlAddressFiltering.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAddressFilteringNodeBroadcast.AutoSize = true;
			rBtnAddressFilteringNodeBroadcast.Location = new Point(0x6f, 3);
			rBtnAddressFilteringNodeBroadcast.Margin = new Padding(3, 0, 3, 0);
			rBtnAddressFilteringNodeBroadcast.Name = "rBtnAddressFilteringNodeBroadcast";
			rBtnAddressFilteringNodeBroadcast.Size = new Size(0x72, 0x11);
			rBtnAddressFilteringNodeBroadcast.TabIndex = 2;
			rBtnAddressFilteringNodeBroadcast.Text = "Node or Broadcast";
			rBtnAddressFilteringNodeBroadcast.UseVisualStyleBackColor = true;
			rBtnAddressFilteringNodeBroadcast.CheckedChanged += new EventHandler(rBtnAddressFilteringNodeBroadcast_CheckedChanged);
			rBtnAddressFilteringNodeBroadcast.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAddressFilteringNodeBroadcast.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAddressFilteringNode.AutoSize = true;
			rBtnAddressFilteringNode.Location = new Point(0x36, 3);
			rBtnAddressFilteringNode.Margin = new Padding(3, 0, 3, 0);
			rBtnAddressFilteringNode.Name = "rBtnAddressFilteringNode";
			rBtnAddressFilteringNode.Size = new Size(0x33, 0x11);
			rBtnAddressFilteringNode.TabIndex = 1;
			rBtnAddressFilteringNode.Text = "Node";
			rBtnAddressFilteringNode.UseVisualStyleBackColor = true;
			rBtnAddressFilteringNode.CheckedChanged += new EventHandler(rBtnAddressFilteringNode_CheckedChanged);
			rBtnAddressFilteringNode.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAddressFilteringNode.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnAddressFilteringOff.AutoSize = true;
			rBtnAddressFilteringOff.Checked = true;
			rBtnAddressFilteringOff.Location = new Point(3, 3);
			rBtnAddressFilteringOff.Margin = new Padding(3, 0, 3, 0);
			rBtnAddressFilteringOff.Name = "rBtnAddressFilteringOff";
			rBtnAddressFilteringOff.Size = new Size(0x2d, 0x11);
			rBtnAddressFilteringOff.TabIndex = 0;
			rBtnAddressFilteringOff.TabStop = true;
			rBtnAddressFilteringOff.Text = "OFF";
			rBtnAddressFilteringOff.UseVisualStyleBackColor = true;
			rBtnAddressFilteringOff.CheckedChanged += new EventHandler(rBtnAddressFilteringOff_CheckedChanged);
			rBtnAddressFilteringOff.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnAddressFilteringOff.MouseLeave += new EventHandler(control_MouseLeave);
			lblNodeAddress.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblNodeAddress.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblNodeAddress.Location = new Point(0x41, 0);
			lblNodeAddress.Name = "lblNodeAddress";
			lblNodeAddress.Size = new Size(0x3b, 20);
			lblNodeAddress.TabIndex = 1;
			lblNodeAddress.Text = "0x00";
			lblNodeAddress.TextAlign = ContentAlignment.MiddleCenter;
			lblNodeAddress.MouseEnter += new EventHandler(control_MouseEnter);
			lblNodeAddress.MouseLeave += new EventHandler(control_MouseLeave);
			lblPayloadLength.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblPayloadLength.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPayloadLength.Location = new Point(0x41, 0);
			lblPayloadLength.Name = "lblPayloadLength";
			lblPayloadLength.Size = new Size(0x3b, 20);
			lblPayloadLength.TabIndex = 1;
			lblPayloadLength.Text = "0x00";
			lblPayloadLength.TextAlign = ContentAlignment.MiddleCenter;
			lblPayloadLength.MouseEnter += new EventHandler(control_MouseEnter);
			lblPayloadLength.MouseLeave += new EventHandler(control_MouseLeave);
			lblBroadcastAddress.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			lblBroadcastAddress.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblBroadcastAddress.Location = new Point(0x41, 0);
			lblBroadcastAddress.Name = "lblBroadcastAddress";
			lblBroadcastAddress.Size = new Size(0x3b, 20);
			lblBroadcastAddress.TabIndex = 1;
			lblBroadcastAddress.Text = "0x00";
			lblBroadcastAddress.TextAlign = ContentAlignment.MiddleCenter;
			lblBroadcastAddress.MouseEnter += new EventHandler(control_MouseEnter);
			lblBroadcastAddress.MouseLeave += new EventHandler(control_MouseLeave);
			pnlPacketFormat.Anchor = AnchorStyles.Left;
			pnlPacketFormat.AutoSize = true;
			pnlPacketFormat.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlPacketFormat.Controls.Add(rBtnPacketFormatFixed);
			pnlPacketFormat.Controls.Add(rBtnPacketFormatVariable);
			pnlPacketFormat.Location = new Point(0xa3, 0x92);
			pnlPacketFormat.Margin = new Padding(3, 2, 3, 2);
			pnlPacketFormat.Name = "pnlPacketFormat";
			pnlPacketFormat.Size = new Size(0x7d, 20);
			pnlPacketFormat.TabIndex = 0x10;
			pnlPacketFormat.MouseEnter += new EventHandler(control_MouseEnter);
			pnlPacketFormat.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnPacketFormatFixed.AutoSize = true;
			rBtnPacketFormatFixed.Location = new Point(0x48, 3);
			rBtnPacketFormatFixed.Margin = new Padding(3, 0, 3, 0);
			rBtnPacketFormatFixed.Name = "rBtnPacketFormatFixed";
			rBtnPacketFormatFixed.Size = new Size(50, 0x11);
			rBtnPacketFormatFixed.TabIndex = 1;
			rBtnPacketFormatFixed.Text = "Fixed";
			rBtnPacketFormatFixed.UseVisualStyleBackColor = true;
			rBtnPacketFormatFixed.CheckedChanged += new EventHandler(rBtnPacketFormat_CheckedChanged);
			rBtnPacketFormatFixed.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnPacketFormatFixed.MouseLeave += new EventHandler(control_MouseLeave);
			rBtnPacketFormatVariable.AutoSize = true;
			rBtnPacketFormatVariable.Checked = true;
			rBtnPacketFormatVariable.Location = new Point(3, 3);
			rBtnPacketFormatVariable.Margin = new Padding(3, 0, 3, 0);
			rBtnPacketFormatVariable.Name = "rBtnPacketFormatVariable";
			rBtnPacketFormatVariable.Size = new Size(0x3f, 0x11);
			rBtnPacketFormatVariable.TabIndex = 0;
			rBtnPacketFormatVariable.TabStop = true;
			rBtnPacketFormatVariable.Text = "Variable";
			rBtnPacketFormatVariable.UseVisualStyleBackColor = true;
			rBtnPacketFormatVariable.CheckedChanged += new EventHandler(rBtnPacketFormat_CheckedChanged);
			rBtnPacketFormatVariable.MouseEnter += new EventHandler(control_MouseEnter);
			rBtnPacketFormatVariable.MouseLeave += new EventHandler(control_MouseLeave);
			tableLayoutPanel1.AutoSize = true;
			tableLayoutPanel1.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			tableLayoutPanel1.ColumnCount = 3;
			tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 160f));
			tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle());
			tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle());
			tableLayoutPanel1.Controls.Add(pnlPayloadLength, 1, 7);
			tableLayoutPanel1.Controls.Add(label1, 0, 0);
			tableLayoutPanel1.Controls.Add(pnlPacketFormat, 1, 6);
			tableLayoutPanel1.Controls.Add(label3, 0, 1);
			tableLayoutPanel1.Controls.Add(label4, 0, 2);
			tableLayoutPanel1.Controls.Add(label5, 0, 3);
			tableLayoutPanel1.Controls.Add(label7, 0, 4);
			tableLayoutPanel1.Controls.Add(label9, 0, 5);
			tableLayoutPanel1.Controls.Add(label10, 0, 6);
			tableLayoutPanel1.Controls.Add(label11, 0, 7);
			tableLayoutPanel1.Controls.Add(pnlFifoFillCondition, 1, 2);
			tableLayoutPanel1.Controls.Add(pnlSync, 1, 1);
			tableLayoutPanel1.Controls.Add(cBoxEnterCondition, 1, 8);
			tableLayoutPanel1.Controls.Add(cBoxExitCondition, 1, 9);
			tableLayoutPanel1.Controls.Add(tBoxSyncValue, 1, 5);
			tableLayoutPanel1.Controls.Add(label12, 2, 7);
			tableLayoutPanel1.Controls.Add(label14, 0, 8);
			tableLayoutPanel1.Controls.Add(label15, 0, 9);
			tableLayoutPanel1.Controls.Add(label16, 0, 10);
			tableLayoutPanel1.Controls.Add(cBoxIntermediateMode, 1, 10);
			tableLayoutPanel1.Controls.Add(nudPreambleSize, 1, 0);
			tableLayoutPanel1.Controls.Add(label2, 2, 0);
			tableLayoutPanel1.Controls.Add(nudSyncSize, 1, 3);
			tableLayoutPanel1.Controls.Add(label6, 2, 3);
			tableLayoutPanel1.Controls.Add(nudSyncTol, 1, 4);
			tableLayoutPanel1.Controls.Add(label8, 2, 4);
			tableLayoutPanel1.Location = new Point(3, 3);
			tableLayoutPanel1.Name = "tableLayoutPanel1";
			tableLayoutPanel1.RowCount = 11;
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.RowStyles.Add(new RowStyle());
			tableLayoutPanel1.Size = new Size(0x178, 0x10b);
			tableLayoutPanel1.TabIndex = 0;
			pnlPayloadLength.Anchor = AnchorStyles.Left;
			pnlPayloadLength.AutoSize = true;
			pnlPayloadLength.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlPayloadLength.Controls.Add(lblPayloadLength);
			pnlPayloadLength.Controls.Add(nudPayloadLength);
			pnlPayloadLength.Location = new Point(0xa3, 170);
			pnlPayloadLength.Margin = new Padding(3, 2, 3, 2);
			pnlPayloadLength.Name = "pnlPayloadLength";
			pnlPayloadLength.Size = new Size(0x7f, 20);
			pnlPayloadLength.TabIndex = 0x12;
			pnlPayloadLength.MouseEnter += new EventHandler(control_MouseEnter);
			pnlPayloadLength.MouseLeave += new EventHandler(control_MouseLeave);
			nudPayloadLength.Location = new Point(3, 0);
			nudPayloadLength.Margin = new Padding(3, 0, 3, 0);
			int[] numArray3 = new int[4];
			numArray3[0] = 0x42;
			nudPayloadLength.Maximum = new decimal(numArray3);
			nudPayloadLength.Name = "nudPayloadLength";
			nudPayloadLength.Size = new Size(0x3b, 20);
			nudPayloadLength.TabIndex = 0;
			int[] numArray4 = new int[4];
			numArray4[0] = 0x42;
			nudPayloadLength.Value = new decimal(numArray4);
			nudPayloadLength.MouseEnter += new EventHandler(control_MouseEnter);
			nudPayloadLength.MouseLeave += new EventHandler(control_MouseLeave);
			nudPayloadLength.ValueChanged += new EventHandler(nudPayloadLength_ValueChanged);
			nudSyncSize.Anchor = AnchorStyles.Left;
			nudSyncSize.Location = new Point(0xa3, 0x4a);
			nudSyncSize.Margin = new Padding(3, 2, 3, 2);
			int[] numArray5 = new int[4];
			numArray5[0] = 8;
			nudSyncSize.Maximum = new decimal(numArray5);
			int[] numArray6 = new int[4];
			numArray6[0] = 1;
			nudSyncSize.Minimum = new decimal(numArray6);
			nudSyncSize.Name = "nudSyncSize";
			nudSyncSize.Size = new Size(0x3b, 20);
			nudSyncSize.TabIndex = 8;
			int[] numArray7 = new int[4];
			numArray7[0] = 4;
			nudSyncSize.Value = new decimal(numArray7);
			nudSyncSize.MouseEnter += new EventHandler(control_MouseEnter);
			nudSyncSize.MouseLeave += new EventHandler(control_MouseLeave);
			nudSyncSize.ValueChanged += new EventHandler(nudSyncSize_ValueChanged);
			nudSyncTol.Anchor = AnchorStyles.Left;
			nudSyncTol.Location = new Point(0xa3, 0x62);
			nudSyncTol.Margin = new Padding(3, 2, 3, 2);
			int[] numArray8 = new int[4];
			numArray8[0] = 7;
			nudSyncTol.Maximum = new decimal(numArray8);
			nudSyncTol.Name = "nudSyncTol";
			nudSyncTol.Size = new Size(0x3b, 20);
			nudSyncTol.TabIndex = 11;
			nudSyncTol.MouseEnter += new EventHandler(control_MouseEnter);
			nudSyncTol.MouseLeave += new EventHandler(control_MouseLeave);
			nudSyncTol.ValueChanged += new EventHandler(nudSyncTol_ValueChanged);
			pnlNodeAddress.Anchor = AnchorStyles.Left;
			pnlNodeAddress.AutoSize = true;
			pnlNodeAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlNodeAddress.Controls.Add(nudNodeAddress);
			pnlNodeAddress.Controls.Add(lblNodeAddress);
			pnlNodeAddress.Location = new Point(0x81, 50);
			pnlNodeAddress.Margin = new Padding(3, 2, 3, 2);
			pnlNodeAddress.Name = "pnlNodeAddress";
			pnlNodeAddress.Size = new Size(0x7f, 20);
			pnlNodeAddress.TabIndex = 0x3b;
			pnlNodeAddress.MouseEnter += new EventHandler(control_MouseEnter);
			pnlNodeAddress.MouseLeave += new EventHandler(control_MouseLeave);
			nudNodeAddress.Location = new Point(0, 0);
			nudNodeAddress.Margin = new Padding(3, 0, 3, 0);
			int[] numArray9 = new int[4];
			numArray9[0] = 0xff;
			nudNodeAddress.Maximum = new decimal(numArray9);
			nudNodeAddress.Name = "nudNodeAddress";
			nudNodeAddress.Size = new Size(0x3b, 20);
			nudNodeAddress.TabIndex = 0;
			nudNodeAddress.MouseEnter += new EventHandler(control_MouseEnter);
			nudNodeAddress.MouseLeave += new EventHandler(control_MouseLeave);
			nudNodeAddress.ValueChanged += new EventHandler(nudNodeAddress_ValueChanged);
			pnlBroadcastAddress.Anchor = AnchorStyles.Left;
			pnlBroadcastAddress.AutoSize = true;
			pnlBroadcastAddress.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			pnlBroadcastAddress.Controls.Add(nudBroadcastAddress);
			pnlBroadcastAddress.Controls.Add(lblBroadcastAddress);
			pnlBroadcastAddress.Location = new Point(0x81, 0x4a);
			pnlBroadcastAddress.Margin = new Padding(3, 2, 3, 2);
			pnlBroadcastAddress.Name = "pnlBroadcastAddress";
			pnlBroadcastAddress.Size = new Size(0x7f, 20);
			pnlBroadcastAddress.TabIndex = 60;
			pnlBroadcastAddress.MouseEnter += new EventHandler(control_MouseEnter);
			pnlBroadcastAddress.MouseLeave += new EventHandler(control_MouseLeave);
			nudBroadcastAddress.Location = new Point(0, 0);
			nudBroadcastAddress.Margin = new Padding(3, 0, 3, 0);
			int[] numArray10 = new int[4];
			numArray10[0] = 0xff;
			nudBroadcastAddress.Maximum = new decimal(numArray10);
			nudBroadcastAddress.Name = "nudBroadcastAddress";
			nudBroadcastAddress.Size = new Size(0x3b, 20);
			nudBroadcastAddress.TabIndex = 0;
			nudBroadcastAddress.MouseEnter += new EventHandler(control_MouseEnter);
			nudBroadcastAddress.MouseLeave += new EventHandler(control_MouseLeave);
			nudBroadcastAddress.ValueChanged += new EventHandler(nudBroadcastAddress_ValueChanged);
			tableLayoutPanel2.AutoSize = true;
			tableLayoutPanel2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			tableLayoutPanel2.ColumnCount = 3;
			tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle());
			tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle());
			tableLayoutPanel2.ColumnStyles.Add(new ColumnStyle());
			tableLayoutPanel2.Controls.Add(label17, 0, 0);
			tableLayoutPanel2.Controls.Add(pnlBroadcastAddress, 1, 3);
			tableLayoutPanel2.Controls.Add(lblInterPacketRxDelayUnit, 2, 11);
			tableLayoutPanel2.Controls.Add(pnlTxStart, 1, 9);
			tableLayoutPanel2.Controls.Add(label18, 0, 1);
			tableLayoutPanel2.Controls.Add(pnlAesEncryption, 1, 7);
			tableLayoutPanel2.Controls.Add(nudFifoThreshold, 1, 10);
			tableLayoutPanel2.Controls.Add(pnlCrcAutoClear, 1, 6);
			tableLayoutPanel2.Controls.Add(pnlNodeAddress, 1, 2);
			tableLayoutPanel2.Controls.Add(pnlCrcCalculation, 1, 5);
			tableLayoutPanel2.Controls.Add(tBoxAesKey, 1, 8);
			tableLayoutPanel2.Controls.Add(label19, 0, 2);
			tableLayoutPanel2.Controls.Add(pnlDcFree, 1, 4);
			tableLayoutPanel2.Controls.Add(label20, 0, 3);
			tableLayoutPanel2.Controls.Add(pnlAddressFiltering, 1, 1);
			tableLayoutPanel2.Controls.Add(label21, 0, 4);
			tableLayoutPanel2.Controls.Add(label22, 0, 5);
			tableLayoutPanel2.Controls.Add(label23, 0, 6);
			tableLayoutPanel2.Controls.Add(label24, 0, 7);
			tableLayoutPanel2.Controls.Add(label25, 0, 8);
			tableLayoutPanel2.Controls.Add(label26, 0, 9);
			tableLayoutPanel2.Controls.Add(label27, 0, 10);
			tableLayoutPanel2.Controls.Add(label28, 0, 11);
			tableLayoutPanel2.Controls.Add(pnlAddressInPayload, 1, 0);
			tableLayoutPanel2.Controls.Add(cBoxInterPacketRxDelay, 1, 11);
			tableLayoutPanel2.Location = new Point(0x183, 3);
			tableLayoutPanel2.Name = "tableLayoutPanel2";
			tableLayoutPanel2.RowCount = 12;
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.RowStyles.Add(new RowStyle());
			tableLayoutPanel2.Size = new Size(0x199, 0x126);
			tableLayoutPanel2.TabIndex = 1;
			nudFifoThreshold.Anchor = AnchorStyles.Left;
			nudFifoThreshold.Location = new Point(0x81, 0xf7);
			nudFifoThreshold.Margin = new Padding(3, 3, 3, 2);
			int[] numArray11 = new int[4];
			numArray11[0] = 0x80;
			nudFifoThreshold.Maximum = new decimal(numArray11);
			nudFifoThreshold.Name = "nudFifoThreshold";
			nudFifoThreshold.Size = new Size(0x3b, 20);
			nudFifoThreshold.TabIndex = 0x13;
			nudFifoThreshold.MouseEnter += new EventHandler(control_MouseEnter);
			nudFifoThreshold.MouseLeave += new EventHandler(control_MouseLeave);
			nudFifoThreshold.ValueChanged += new EventHandler(nudFifoThreshold_ValueChanged);
			cBoxInterPacketRxDelay.Anchor = AnchorStyles.Left;
			cBoxInterPacketRxDelay.DropDownStyle = ComboBoxStyle.DropDownList;
			cBoxInterPacketRxDelay.FormatString = "###0.000";
			cBoxInterPacketRxDelay.FormattingEnabled = true;
			cBoxInterPacketRxDelay.Items.AddRange(new object[] { "0.208" });
			cBoxInterPacketRxDelay.Location = new Point(0x81, 0x10f);
			cBoxInterPacketRxDelay.Margin = new Padding(3, 2, 3, 2);
			cBoxInterPacketRxDelay.Name = "cBoxInterPacketRxDelay";
			cBoxInterPacketRxDelay.Size = new Size(0x5d, 0x15);
			cBoxInterPacketRxDelay.TabIndex = 0x15;
			cBoxInterPacketRxDelay.SelectedIndexChanged += new EventHandler(nudInterPacketRxDelay_SelectedIndexChanged);
			cBoxInterPacketRxDelay.MouseEnter += new EventHandler(control_MouseEnter);
			cBoxInterPacketRxDelay.MouseLeave += new EventHandler(control_MouseLeave);
			gBoxDeviceStatus.Controls.Add(lblOperatingMode);
			gBoxDeviceStatus.Controls.Add(label37);
			gBoxDeviceStatus.Controls.Add(lblBitSynchroniser);
			gBoxDeviceStatus.Controls.Add(lblDataMode);
			gBoxDeviceStatus.Controls.Add(label38);
			gBoxDeviceStatus.Controls.Add(label39);
			gBoxDeviceStatus.Location = new Point(0x235, 0x13d);
			gBoxDeviceStatus.Name = "gBoxDeviceStatus";
			gBoxDeviceStatus.Size = new Size(0xe7, 0x4d);
			gBoxDeviceStatus.TabIndex = 3;
			gBoxDeviceStatus.TabStop = false;
			gBoxDeviceStatus.Text = "Device status";
			gBoxDeviceStatus.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxDeviceStatus.MouseLeave += new EventHandler(control_MouseLeave);
			lblOperatingMode.AutoSize = true;
			lblOperatingMode.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			lblOperatingMode.Location = new Point(0x92, 0x3a);
			lblOperatingMode.Margin = new Padding(3);
			lblOperatingMode.Name = "lblOperatingMode";
			lblOperatingMode.Size = new Size(0x27, 13);
			lblOperatingMode.TabIndex = 5;
			lblOperatingMode.Text = "Sleep";
			lblOperatingMode.TextAlign = ContentAlignment.MiddleLeft;
			label37.AutoSize = true;
			label37.Location = new Point(3, 0x3a);
			label37.Margin = new Padding(3);
			label37.Name = "label37";
			label37.Size = new Size(0x55, 13);
			label37.TabIndex = 4;
			label37.Text = "Operating mode:";
			label37.TextAlign = ContentAlignment.MiddleLeft;
			lblBitSynchroniser.AutoSize = true;
			lblBitSynchroniser.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			lblBitSynchroniser.Location = new Point(0x92, 20);
			lblBitSynchroniser.Margin = new Padding(3);
			lblBitSynchroniser.Name = "lblBitSynchroniser";
			lblBitSynchroniser.Size = new Size(0x19, 13);
			lblBitSynchroniser.TabIndex = 1;
			lblBitSynchroniser.Text = "ON";
			lblBitSynchroniser.TextAlign = ContentAlignment.MiddleLeft;
			lblDataMode.AutoSize = true;
			lblDataMode.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			lblDataMode.Location = new Point(0x92, 0x27);
			lblDataMode.Margin = new Padding(3);
			lblDataMode.Name = "lblDataMode";
			lblDataMode.Size = new Size(0x2f, 13);
			lblDataMode.TabIndex = 3;
			lblDataMode.Text = "Packet";
			lblDataMode.TextAlign = ContentAlignment.MiddleLeft;
			label38.AutoSize = true;
			label38.Location = new Point(3, 20);
			label38.Margin = new Padding(3);
			label38.Name = "label38";
			label38.Size = new Size(0x56, 13);
			label38.TabIndex = 0;
			label38.Text = "Bit Synchronizer:";
			label38.TextAlign = ContentAlignment.MiddleLeft;
			label39.AutoSize = true;
			label39.Location = new Point(3, 0x27);
			label39.Margin = new Padding(3);
			label39.Name = "label39";
			label39.Size = new Size(0x3e, 13);
			label39.TabIndex = 2;
			label39.Text = "Data mode:";
			label39.TextAlign = ContentAlignment.MiddleLeft;
			gBoxControl.Controls.Add(tBoxPacketsNb);
			gBoxControl.Controls.Add(cBtnLog);
			gBoxControl.Controls.Add(cBtnPacketHandlerStartStop);
			gBoxControl.Controls.Add(lblPacketsNb);
			gBoxControl.Controls.Add(tBoxPacketsRepeatValue);
			gBoxControl.Controls.Add(lblPacketsRepeatValue);
			gBoxControl.Location = new Point(0x235, 0x18a);
			gBoxControl.Name = "gBoxControl";
			gBoxControl.Size = new Size(0xe7, 0x60);
			gBoxControl.TabIndex = 4;
			gBoxControl.TabStop = false;
			gBoxControl.Text = "Control";
			gBoxControl.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxControl.MouseLeave += new EventHandler(control_MouseLeave);
			tBoxPacketsNb.Location = new Point(0x95, 0x30);
			tBoxPacketsNb.Name = "tBoxPacketsNb";
			tBoxPacketsNb.ReadOnly = true;
			tBoxPacketsNb.Size = new Size(0x4f, 20);
			tBoxPacketsNb.TabIndex = 2;
			tBoxPacketsNb.Text = "0";
			tBoxPacketsNb.TextAlign = HorizontalAlignment.Right;
			cBtnLog.Appearance = Appearance.Button;
			cBtnLog.Location = new Point(0x76, 0x13);
			cBtnLog.Name = "cBtnLog";
			cBtnLog.Size = new Size(0x4b, 0x17);
			cBtnLog.TabIndex = 0;
			cBtnLog.Text = "Log";
			cBtnLog.TextAlign = ContentAlignment.MiddleCenter;
			cBtnLog.UseVisualStyleBackColor = true;
			cBtnLog.CheckedChanged += new EventHandler(cBtnLog_CheckedChanged);
			cBtnPacketHandlerStartStop.Appearance = Appearance.Button;
			cBtnPacketHandlerStartStop.Location = new Point(0x25, 0x13);
			cBtnPacketHandlerStartStop.Name = "cBtnPacketHandlerStartStop";
			cBtnPacketHandlerStartStop.Size = new Size(0x4b, 0x17);
			cBtnPacketHandlerStartStop.TabIndex = 0;
			cBtnPacketHandlerStartStop.Text = "Start";
			cBtnPacketHandlerStartStop.TextAlign = ContentAlignment.MiddleCenter;
			cBtnPacketHandlerStartStop.UseVisualStyleBackColor = true;
			cBtnPacketHandlerStartStop.CheckedChanged += new EventHandler(cBtnPacketHandlerStartStop_CheckedChanged);
			lblPacketsNb.AutoSize = true;
			lblPacketsNb.Location = new Point(3, 0x33);
			lblPacketsNb.Name = "lblPacketsNb";
			lblPacketsNb.Size = new Size(0x40, 13);
			lblPacketsNb.TabIndex = 1;
			lblPacketsNb.Text = "Tx Packets:";
			lblPacketsNb.TextAlign = ContentAlignment.MiddleLeft;
			tBoxPacketsRepeatValue.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			tBoxPacketsRepeatValue.Location = new Point(0x95, 70);
			tBoxPacketsRepeatValue.Name = "tBoxPacketsRepeatValue";
			tBoxPacketsRepeatValue.Size = new Size(0x4f, 20);
			tBoxPacketsRepeatValue.TabIndex = 4;
			tBoxPacketsRepeatValue.Text = "0";
			tBoxPacketsRepeatValue.TextAlign = HorizontalAlignment.Right;
			lblPacketsRepeatValue.AutoSize = true;
			lblPacketsRepeatValue.Location = new Point(3, 0x49);
			lblPacketsRepeatValue.Name = "lblPacketsRepeatValue";
			lblPacketsRepeatValue.Size = new Size(0x4a, 13);
			lblPacketsRepeatValue.TabIndex = 3;
			lblPacketsRepeatValue.Text = "Repeat value:";
			lblPacketsRepeatValue.TextAlign = ContentAlignment.MiddleLeft;
			gBoxPacket.Controls.Add(imgPacketMessage);
			gBoxPacket.Controls.Add(gBoxMessage);
			gBoxPacket.Controls.Add(tblPacket);
			gBoxPacket.Location = new Point(3, 0x13d);
			gBoxPacket.Margin = new Padding(3, 1, 3, 1);
			gBoxPacket.Name = "gBoxPacket";
			gBoxPacket.Size = new Size(0x22d, 0xac);
			gBoxPacket.TabIndex = 2;
			gBoxPacket.TabStop = false;
			gBoxPacket.Text = "Packet";
			gBoxPacket.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxPacket.MouseLeave += new EventHandler(control_MouseLeave);
			imgPacketMessage.BackColor = Color.Transparent;
			imgPacketMessage.Location = new Point(5, 0x3d);
			imgPacketMessage.Margin = new Padding(0);
			imgPacketMessage.Name = "imgPacketMessage";
			imgPacketMessage.Size = new Size(0x223, 5);
			imgPacketMessage.TabIndex = 1;
			imgPacketMessage.Text = "payloadImg1";
			gBoxMessage.Controls.Add(tblPayloadMessage);
			gBoxMessage.Location = new Point(6, 0x43);
			gBoxMessage.Margin = new Padding(1);
			gBoxMessage.Name = "gBoxMessage";
			gBoxMessage.Size = new Size(0x223, 0x65);
			gBoxMessage.TabIndex = 2;
			gBoxMessage.TabStop = false;
			gBoxMessage.Text = "Message";
			gBoxMessage.MouseEnter += new EventHandler(control_MouseEnter);
			gBoxMessage.MouseLeave += new EventHandler(control_MouseLeave);
			tblPayloadMessage.AutoSize = true;
			tblPayloadMessage.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			tblPayloadMessage.ColumnCount = 2;
			tblPayloadMessage.ColumnStyles.Add(new ColumnStyle());
			tblPayloadMessage.ColumnStyles.Add(new ColumnStyle());
			tblPayloadMessage.Controls.Add(hexBoxPayload, 0, 1);
			tblPayloadMessage.Controls.Add(label36, 1, 0);
			tblPayloadMessage.Controls.Add(label35, 0, 0);
			tblPayloadMessage.Location = new Point(20, 0x13);
			tblPayloadMessage.Name = "tblPayloadMessage";
			tblPayloadMessage.RowCount = 2;
			tblPayloadMessage.RowStyles.Add(new RowStyle());
			tblPayloadMessage.RowStyles.Add(new RowStyle());
			tblPayloadMessage.Size = new Size(0x1fb, 0x4f);
			tblPayloadMessage.TabIndex = 0;
			hexBoxPayload.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
			tblPayloadMessage.SetColumnSpan(hexBoxPayload, 2);
			hexBoxPayload.Font = new Font("Courier New", 8.25f);
			hexBoxPayload.LineInfoDigits = 2;
			hexBoxPayload.LineInfoForeColor = Color.Empty;
			hexBoxPayload.Location = new Point(3, 0x10);
			hexBoxPayload.Name = "hexBoxPayload";
			hexBoxPayload.ShadowSelectionColor = Color.FromArgb(100, 60, 0xbc, 0xff);
			hexBoxPayload.Size = new Size(0x1f5, 60);
			hexBoxPayload.StringViewVisible = true;
			hexBoxPayload.TabIndex = 2;
			hexBoxPayload.UseFixedBytesPerLine = true;
			hexBoxPayload.VScrollBarVisible = true;
			label36.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
			label36.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label36.Location = new Point(0x149, 0);
			label36.Name = "label36";
			label36.Size = new Size(0xaf, 13);
			label36.TabIndex = 1;
			label36.Text = "ASCII";
			label36.TextAlign = ContentAlignment.MiddleCenter;
			label35.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Bottom | AnchorStyles.Top;
			label35.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label35.Location = new Point(3, 0);
			label35.Name = "label35";
			label35.Size = new Size(320, 13);
			label35.TabIndex = 0;
			label35.Text = "HEXADECIMAL";
			label35.TextAlign = ContentAlignment.MiddleCenter;
			tblPacket.AutoSize = true;
			tblPacket.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
			tblPacket.CellBorderStyle = TableLayoutPanelCellBorderStyle.Single;
			tblPacket.ColumnCount = 6;
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.ColumnStyles.Add(new ColumnStyle());
			tblPacket.Controls.Add(label29, 0, 0);
			tblPacket.Controls.Add(label30, 1, 0);
			tblPacket.Controls.Add(label31, 2, 0);
			tblPacket.Controls.Add(label32, 3, 0);
			tblPacket.Controls.Add(label33, 4, 0);
			tblPacket.Controls.Add(label34, 5, 0);
			tblPacket.Controls.Add(lblPacketPreamble, 0, 1);
			tblPacket.Controls.Add(lblPayload, 4, 1);
			tblPacket.Controls.Add(pnlPacketCrc, 5, 1);
			tblPacket.Controls.Add(pnlPacketAddr, 3, 1);
			tblPacket.Controls.Add(lblPacketLength, 2, 1);
			tblPacket.Controls.Add(lblPacketSyncValue, 1, 1);
			tblPacket.Location = new Point(5, 0x11);
			tblPacket.Margin = new Padding(1);
			tblPacket.Name = "tblPacket";
			tblPacket.RowCount = 2;
			tblPacket.RowStyles.Add(new RowStyle());
			tblPacket.RowStyles.Add(new RowStyle());
			tblPacket.Size = new Size(0x223, 0x2b);
			tblPacket.TabIndex = 0;
			label29.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label29.Location = new Point(1, 1);
			label29.Margin = new Padding(0);
			label29.Name = "label29";
			label29.Size = new Size(0x67, 20);
			label29.TabIndex = 0;
			label29.Text = "Preamble";
			label29.TextAlign = ContentAlignment.MiddleCenter;
			label30.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label30.Location = new Point(0x6c, 1);
			label30.Margin = new Padding(0);
			label30.Name = "label30";
			label30.Size = new Size(0x98, 20);
			label30.TabIndex = 1;
			label30.Text = "Sync";
			label30.TextAlign = ContentAlignment.MiddleCenter;
			label31.BackColor = Color.LightGray;
			label31.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label31.Location = new Point(0x105, 1);
			label31.Margin = new Padding(0);
			label31.Name = "label31";
			label31.Size = new Size(0x3b, 20);
			label31.TabIndex = 2;
			label31.Text = "Length";
			label31.TextAlign = ContentAlignment.MiddleCenter;
			label32.BackColor = Color.LightGray;
			label32.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label32.Location = new Point(0x141, 1);
			label32.Margin = new Padding(0);
			label32.Name = "label32";
			label32.Size = new Size(0x57, 20);
			label32.TabIndex = 3;
			label32.Text = "Node Address";
			label32.TextAlign = ContentAlignment.MiddleCenter;
			label33.BackColor = Color.LightGray;
			label33.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label33.ForeColor = SystemColors.WindowText;
			label33.Location = new Point(0x199, 1);
			label33.Margin = new Padding(0);
			label33.Name = "label33";
			label33.Size = new Size(0x55, 20);
			label33.TabIndex = 4;
			label33.Text = "Message";
			label33.TextAlign = ContentAlignment.MiddleCenter;
			label34.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			label34.Location = new Point(0x1ef, 1);
			label34.Margin = new Padding(0);
			label34.Name = "label34";
			label34.Size = new Size(0x33, 20);
			label34.TabIndex = 5;
			label34.Text = "CRC";
			label34.TextAlign = ContentAlignment.MiddleCenter;
			lblPacketPreamble.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPacketPreamble.Location = new Point(1, 0x16);
			lblPacketPreamble.Margin = new Padding(0);
			lblPacketPreamble.Name = "lblPacketPreamble";
			lblPacketPreamble.Size = new Size(0x6a, 20);
			lblPacketPreamble.TabIndex = 6;
			lblPacketPreamble.Text = "55-55-55-55-...-55";
			lblPacketPreamble.TextAlign = ContentAlignment.MiddleCenter;
			lblPayload.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Bold, GraphicsUnit.Point, 0);
			lblPayload.Location = new Point(0x199, 0x16);
			lblPayload.Margin = new Padding(0);
			lblPayload.Name = "lblPayload";
			lblPayload.Size = new Size(0x55, 20);
			lblPayload.TabIndex = 9;
			lblPayload.TextAlign = ContentAlignment.MiddleCenter;
			pnlPacketCrc.Controls.Add(ledPacketCrc);
			pnlPacketCrc.Controls.Add(lblPacketCrc);
			pnlPacketCrc.Location = new Point(0x1ef, 0x16);
			pnlPacketCrc.Margin = new Padding(0);
			pnlPacketCrc.Name = "pnlPacketCrc";
			pnlPacketCrc.Size = new Size(0x33, 20);
			pnlPacketCrc.TabIndex = 0x12;
			ledPacketCrc.BackColor = Color.Transparent;
			ledPacketCrc.LedColor = Color.Green;
			ledPacketCrc.LedSize = new Size(11, 11);
			ledPacketCrc.Location = new Point(0x11, 3);
			ledPacketCrc.Name = "ledPacketCrc";
			ledPacketCrc.Size = new Size(15, 15);
			ledPacketCrc.TabIndex = 1;
			ledPacketCrc.Text = "CRC";
			ledPacketCrc.Visible = false;
			lblPacketCrc.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPacketCrc.Location = new Point(0, 0);
			lblPacketCrc.Margin = new Padding(0);
			lblPacketCrc.Name = "lblPacketCrc";
			lblPacketCrc.Size = new Size(0x33, 20);
			lblPacketCrc.TabIndex = 0;
			lblPacketCrc.Text = "XX-XX";
			lblPacketCrc.TextAlign = ContentAlignment.MiddleCenter;
			pnlPacketAddr.Controls.Add(lblPacketAddr);
			pnlPacketAddr.Location = new Point(0x141, 0x16);
			pnlPacketAddr.Margin = new Padding(0);
			pnlPacketAddr.Name = "pnlPacketAddr";
			pnlPacketAddr.Size = new Size(0x57, 20);
			pnlPacketAddr.TabIndex = 11;
			lblPacketAddr.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPacketAddr.Location = new Point(0, 0);
			lblPacketAddr.Margin = new Padding(0);
			lblPacketAddr.Name = "lblPacketAddr";
			lblPacketAddr.Size = new Size(0x57, 20);
			lblPacketAddr.TabIndex = 0;
			lblPacketAddr.Text = "00";
			lblPacketAddr.TextAlign = ContentAlignment.MiddleCenter;
			lblPacketLength.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPacketLength.Location = new Point(0x105, 0x16);
			lblPacketLength.Margin = new Padding(0);
			lblPacketLength.Name = "lblPacketLength";
			lblPacketLength.Size = new Size(0x3b, 20);
			lblPacketLength.TabIndex = 8;
			lblPacketLength.Text = "00";
			lblPacketLength.TextAlign = ContentAlignment.MiddleCenter;
			lblPacketSyncValue.Font = new Font("Microsoft Sans Serif", 8.25f, FontStyle.Regular, GraphicsUnit.Point, 0);
			lblPacketSyncValue.Location = new Point(0x6c, 0x16);
			lblPacketSyncValue.Margin = new Padding(0);
			lblPacketSyncValue.Name = "lblPacketSyncValue";
			lblPacketSyncValue.Size = new Size(0x98, 20);
			lblPacketSyncValue.TabIndex = 7;
			lblPacketSyncValue.Text = "AA-AA-AA-AA-AA-AA-AA-AA";
			lblPacketSyncValue.TextAlign = ContentAlignment.MiddleCenter;
			base.AutoScaleDimensions = new SizeF(6f, 13f);
			base.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			base.Controls.Add(gBoxDeviceStatus);
			base.Controls.Add(tableLayoutPanel2);
			base.Controls.Add(tableLayoutPanel1);
			base.Controls.Add(gBoxControl);
			base.Controls.Add(gBoxPacket);
			base.Name = "PacketHandlerView";
			base.Size = new Size(0x31f, 0x1ed);
			((ISupportInitialize)errorProvider).EndInit();
			nudPreambleSize.EndInit();
			pnlAesEncryption.ResumeLayout(false);
			pnlAesEncryption.PerformLayout();
			pnlDcFree.ResumeLayout(false);
			pnlDcFree.PerformLayout();
			pnlAddressInPayload.ResumeLayout(false);
			pnlAddressInPayload.PerformLayout();
			pnlFifoFillCondition.ResumeLayout(false);
			pnlFifoFillCondition.PerformLayout();
			pnlSync.ResumeLayout(false);
			pnlSync.PerformLayout();
			pnlCrcAutoClear.ResumeLayout(false);
			pnlCrcAutoClear.PerformLayout();
			pnlCrcCalculation.ResumeLayout(false);
			pnlCrcCalculation.PerformLayout();
			pnlTxStart.ResumeLayout(false);
			pnlTxStart.PerformLayout();
			pnlAddressFiltering.ResumeLayout(false);
			pnlAddressFiltering.PerformLayout();
			pnlPacketFormat.ResumeLayout(false);
			pnlPacketFormat.PerformLayout();
			tableLayoutPanel1.ResumeLayout(false);
			tableLayoutPanel1.PerformLayout();
			pnlPayloadLength.ResumeLayout(false);
			nudPayloadLength.EndInit();
			nudSyncSize.EndInit();
			nudSyncTol.EndInit();
			pnlNodeAddress.ResumeLayout(false);
			nudNodeAddress.EndInit();
			pnlBroadcastAddress.ResumeLayout(false);
			nudBroadcastAddress.EndInit();
			tableLayoutPanel2.ResumeLayout(false);
			tableLayoutPanel2.PerformLayout();
			nudFifoThreshold.EndInit();
			gBoxDeviceStatus.ResumeLayout(false);
			gBoxDeviceStatus.PerformLayout();
			gBoxControl.ResumeLayout(false);
			gBoxControl.PerformLayout();
			gBoxPacket.ResumeLayout(false);
			gBoxPacket.PerformLayout();
			gBoxMessage.ResumeLayout(false);
			gBoxMessage.PerformLayout();
			tblPayloadMessage.ResumeLayout(false);
			tblPacket.ResumeLayout(false);
			pnlPacketCrc.ResumeLayout(false);
			pnlPacketAddr.ResumeLayout(false);
			base.ResumeLayout(false);
			base.PerformLayout();
		}
Exemplo n.º 44
0
        Panel CreatePanelPart(string name, string imagePath, string price)
        {
            Panel panelPart = new Panel();

            panelPart = new System.Windows.Forms.Panel();
            this.pictureBoxImagePart = new System.Windows.Forms.PictureBox();
            this.labelPrice          = new System.Windows.Forms.Label();
            this.labelNamePart       = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePart)).BeginInit();
            //
            // panelPart
            //
            panelPart.Controls.Add(this.pictureBoxImagePart);
            panelPart.Controls.Add(this.labelPrice);
            panelPart.Controls.Add(this.labelNamePart);
            panelPart.Location = new System.Drawing.Point(3, 266);
            panelPart.Name     = "panelPart";
            panelPart.Size     = new System.Drawing.Size(535, 120);
            panelPart.TabIndex = 2;
            //
            // pictureBoxImagePart
            //
            this.pictureBoxImagePart.Location = new System.Drawing.Point(6, 3);
            this.pictureBoxImagePart.Name     = "pictureBoxImagePart";
            this.pictureBoxImagePart.Size     = new System.Drawing.Size(121, 114);
            this.pictureBoxImagePart.TabIndex = 2;
            this.pictureBoxImagePart.TabStop  = false;
            this.pictureBoxImagePart.SizeMode = PictureBoxSizeMode.StretchImage;
            //this.pictureBoxImagePart.Image = Image.FromFile(@"\partImage\Подушка УАЗ-3151,452 двигателя комплект 4шт.в упаковке "АВЕС"(Ульяновск)5.jpg")
            this.pictureBoxImagePart.Image = Image.FromFile(Environment.CurrentDirectory + imagePath);
            //
            // labelPrice
            //
            this.labelPrice.AutoSize = true;
            this.labelPrice.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.labelPrice.Location = new System.Drawing.Point(438, 74);
            this.labelPrice.Name     = "labelPrice";
            this.labelPrice.Size     = new System.Drawing.Size(51, 20);
            this.labelPrice.TabIndex = 1;
            this.labelPrice.Text     = price;
            //
            // labelNamePart
            //
            this.labelNamePart.AutoSize    = true;
            this.labelNamePart.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.labelNamePart.Location    = new System.Drawing.Point(149, 14);
            this.labelNamePart.Name        = "labelNamePart";
            this.labelNamePart.Size        = new System.Drawing.Size(51, 20);
            this.labelNamePart.TabIndex    = 0;
            this.labelNamePart.MaximumSize = new Size(200, 50);
            this.labelNamePart.Text        = name;


            panelPart.ResumeLayout(false);
            panelPart.PerformLayout();
            panelPart.SuspendLayout();
            this.flowLayoutPanel1.Controls.Add(panelPart);

            ((System.ComponentModel.ISupportInitialize)(this.pictureBoxImagePart)).EndInit();

            return(panelPart);
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     components        = new System.ComponentModel.Container();
     ButtonsPN         = new System.Windows.Forms.Panel();
     CancelBTN         = new System.Windows.Forms.Button();
     OkBTN             = new System.Windows.Forms.Button();
     TypeTV            = new System.Windows.Forms.TreeView();
     PopupMenu         = new System.Windows.Forms.ContextMenuStrip();
     EditMI            = new System.Windows.Forms.ToolStripMenuItem();
     FormattedPN       = new System.Windows.Forms.Panel();
     FieldsLV          = new System.Windows.Forms.ListView();
     Splitter01        = new System.Windows.Forms.Splitter();
     RawPN             = new System.Windows.Forms.Panel();
     RawTB             = new System.Windows.Forms.RichTextBox();
     MainMenu          = new System.Windows.Forms.MenuStrip();
     ViewMI            = new System.Windows.Forms.ToolStripMenuItem();
     FormattedMI       = new System.Windows.Forms.ToolStripMenuItem();
     RawMI             = new System.Windows.Forms.ToolStripMenuItem();
     TypeDictionaryMI  = new System.Windows.Forms.ToolStripMenuItem();
     TypeDescriptionMI = new System.Windows.Forms.ToolStripMenuItem();
     SchemaPN          = new System.Windows.Forms.Panel();
     TypeDictionaryTB  = new System.Windows.Forms.TextBox();
     TypeDescriptionTB = new System.Windows.Forms.TextBox();
     ButtonsPN.SuspendLayout();
     FormattedPN.SuspendLayout();
     RawPN.SuspendLayout();
     SchemaPN.SuspendLayout();
     SuspendLayout();
     //
     // ButtonsPN
     //
     ButtonsPN.Controls.Add(CancelBTN);
     ButtonsPN.Controls.Add(OkBTN);
     ButtonsPN.Dock     = System.Windows.Forms.DockStyle.Bottom;
     ButtonsPN.Location = new System.Drawing.Point(0, 418);
     ButtonsPN.Name     = "ButtonsPN";
     ButtonsPN.Size     = new System.Drawing.Size(592, 36);
     ButtonsPN.TabIndex = 1;
     //
     // CancelBTN
     //
     CancelBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     CancelBTN.Location     = new System.Drawing.Point(512, 8);
     CancelBTN.Name         = "CancelBTN";
     CancelBTN.Size         = new System.Drawing.Size(75, 23);
     CancelBTN.TabIndex     = 0;
     CancelBTN.Text         = "Close";
     CancelBTN.Click       += new System.EventHandler(CancelBTN_Click);
     //
     // OkBTN
     //
     OkBTN.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     OkBTN.DialogResult = System.Windows.Forms.DialogResult.OK;
     OkBTN.Location     = new System.Drawing.Point(431, 8);
     OkBTN.Name         = "OkBTN";
     OkBTN.Size         = new System.Drawing.Size(75, 23);
     OkBTN.TabIndex     = 1;
     OkBTN.Text         = "OK";
     //
     // TypeTV
     //
     TypeTV.ContextMenuStrip = PopupMenu;
     TypeTV.Dock             = System.Windows.Forms.DockStyle.Left;
     TypeTV.Location         = new System.Drawing.Point(4, 4);
     TypeTV.Name             = "TypeTV";
     TypeTV.Size             = new System.Drawing.Size(228, 410);
     TypeTV.TabIndex         = 2;
     TypeTV.AfterSelect     += new System.Windows.Forms.TreeViewEventHandler(TypeTV_AfterSelect);
     TypeTV.MouseDown       += new System.Windows.Forms.MouseEventHandler(TypeTV_MouseDown);
     //
     // PopupMenu
     //
     PopupMenu.Items.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
         EditMI
     });
     //
     // EditMI
     //
     EditMI.ImageIndex = 0;
     EditMI.Text       = "Edit...";
     EditMI.Click     += new System.EventHandler(EditMI_Click);
     //
     // FormattedPN
     //
     FormattedPN.Controls.Add(FieldsLV);
     FormattedPN.Controls.Add(Splitter01);
     FormattedPN.Controls.Add(TypeTV);
     FormattedPN.Dock     = System.Windows.Forms.DockStyle.Fill;
     FormattedPN.Location = new System.Drawing.Point(0, 0);
     FormattedPN.Name     = "FormattedPN";
     FormattedPN.Padding  = new System.Windows.Forms.Padding(4);
     FormattedPN.Size     = new System.Drawing.Size(592, 418);
     FormattedPN.TabIndex = 3;
     //
     // FieldsLV
     //
     FieldsLV.Dock          = System.Windows.Forms.DockStyle.Fill;
     FieldsLV.FullRowSelect = true;
     FieldsLV.Location      = new System.Drawing.Point(236, 4);
     FieldsLV.MultiSelect   = false;
     FieldsLV.Name          = "FieldsLV";
     FieldsLV.Size          = new System.Drawing.Size(352, 410);
     FieldsLV.TabIndex      = 6;
     FieldsLV.UseCompatibleStateImageBehavior = false;
     FieldsLV.View = System.Windows.Forms.View.Details;
     //
     // Splitter01
     //
     Splitter01.Location = new System.Drawing.Point(232, 4);
     Splitter01.Name     = "Splitter01";
     Splitter01.Size     = new System.Drawing.Size(4, 410);
     Splitter01.TabIndex = 7;
     Splitter01.TabStop  = false;
     //
     // RawPN
     //
     RawPN.Controls.Add(RawTB);
     RawPN.Dock     = System.Windows.Forms.DockStyle.Fill;
     RawPN.Location = new System.Drawing.Point(0, 0);
     RawPN.Name     = "RawPN";
     RawPN.Padding  = new System.Windows.Forms.Padding(4);
     RawPN.Size     = new System.Drawing.Size(592, 418);
     RawPN.TabIndex = 5;
     RawPN.Visible  = false;
     //
     // RawTB
     //
     RawTB.Dock     = System.Windows.Forms.DockStyle.Fill;
     RawTB.Font     = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     RawTB.Location = new System.Drawing.Point(4, 4);
     RawTB.Name     = "RawTB";
     RawTB.Size     = new System.Drawing.Size(584, 410);
     RawTB.TabIndex = 1;
     RawTB.Text     = "0000 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 10 123456789ABCDEF0";
     //
     // MainMenu
     //
     MainMenu.Items.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
         ViewMI
     });
     //
     // ViewMI
     //
     ViewMI.ImageIndex = 0;
     ViewMI.DropDownItems.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
         FormattedMI,
         RawMI,
         TypeDictionaryMI,
         TypeDescriptionMI
     });
     ViewMI.Text = "&View";
     //
     // FormattedMI
     //
     FormattedMI.ImageIndex = 0;
     FormattedMI.Text       = "&Formatted Value";
     FormattedMI.Click     += new System.EventHandler(ViewMI_Click);
     //
     // RawMI
     //
     RawMI.ImageIndex = 1;
     RawMI.Text       = "&Raw Value";
     RawMI.Click     += new System.EventHandler(ViewMI_Click);
     //
     // TypeDictionaryMI
     //
     TypeDictionaryMI.ImageIndex = 2;
     TypeDictionaryMI.Text       = "BuiltInTypes Type";
     TypeDictionaryMI.Click     += new System.EventHandler(ViewMI_Click);
     //
     // TypeDescriptionMI
     //
     TypeDescriptionMI.ImageIndex = 3;
     TypeDescriptionMI.Text       = "Type Description";
     TypeDescriptionMI.Click     += new System.EventHandler(ViewMI_Click);
     //
     // SchemaPN
     //
     SchemaPN.Controls.Add(TypeDictionaryTB);
     SchemaPN.Controls.Add(TypeDescriptionTB);
     SchemaPN.Dock     = System.Windows.Forms.DockStyle.Fill;
     SchemaPN.Location = new System.Drawing.Point(0, 0);
     SchemaPN.Name     = "SchemaPN";
     SchemaPN.Padding  = new System.Windows.Forms.Padding(4);
     SchemaPN.Size     = new System.Drawing.Size(592, 418);
     SchemaPN.TabIndex = 1;
     SchemaPN.Visible  = false;
     //
     // TypeDictionaryTB
     //
     TypeDictionaryTB.Dock       = System.Windows.Forms.DockStyle.Fill;
     TypeDictionaryTB.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     TypeDictionaryTB.Location   = new System.Drawing.Point(4, 4);
     TypeDictionaryTB.Multiline  = true;
     TypeDictionaryTB.Name       = "TypeDictionaryTB";
     TypeDictionaryTB.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     TypeDictionaryTB.Size       = new System.Drawing.Size(584, 410);
     TypeDictionaryTB.TabIndex   = 1;
     TypeDictionaryTB.WordWrap   = false;
     //
     // TypeDescriptionTB
     //
     TypeDescriptionTB.Dock       = System.Windows.Forms.DockStyle.Fill;
     TypeDescriptionTB.Font       = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     TypeDescriptionTB.Location   = new System.Drawing.Point(4, 4);
     TypeDescriptionTB.Multiline  = true;
     TypeDescriptionTB.Name       = "TypeDescriptionTB";
     TypeDescriptionTB.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     TypeDescriptionTB.Size       = new System.Drawing.Size(584, 410);
     TypeDescriptionTB.TabIndex   = 2;
     TypeDescriptionTB.WordWrap   = false;
     //
     // EditComplexValueDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     ClientSize        = new System.Drawing.Size(592, 454);
     Controls.Add(RawPN);
     Controls.Add(FormattedPN);
     Controls.Add(SchemaPN);
     Controls.Add(ButtonsPN);
     Name          = "EditComplexValueDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "View Complex Data";
     ButtonsPN.ResumeLayout(false);
     FormattedPN.ResumeLayout(false);
     RawPN.ResumeLayout(false);
     SchemaPN.ResumeLayout(false);
     SchemaPN.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 46
0
    private void InitializeComponent()
    {
      panel1 = new Panel();
      lblEditIndex = new Label();
      cmdSaveEdit = new Button();
      cmdCancelEdit = new Button();
      cmdInvert = new Button();
      cmdSetAll = new Button();
      cmdClearAll = new Button();
      lblCurrentIcon = new Label();
      C4_B0 = new CheckBox();
      C4_B1 = new CheckBox();
      C4_B2 = new CheckBox();
      C4_B3 = new CheckBox();
      C4_B4 = new CheckBox();
      C4_B5 = new CheckBox();
      C4_B6 = new CheckBox();
      C4_B7 = new CheckBox();
      C5_B0 = new CheckBox();
      C5_B1 = new CheckBox();
      C5_B2 = new CheckBox();
      C5_B3 = new CheckBox();
      C5_B4 = new CheckBox();
      C5_B5 = new CheckBox();
      C5_B6 = new CheckBox();
      C5_B7 = new CheckBox();
      C2_B0 = new CheckBox();
      C2_B1 = new CheckBox();
      C2_B2 = new CheckBox();
      C2_B3 = new CheckBox();
      C2_B4 = new CheckBox();
      C2_B5 = new CheckBox();
      C2_B6 = new CheckBox();
      C2_B7 = new CheckBox();
      C3_B0 = new CheckBox();
      C3_B1 = new CheckBox();
      C3_B2 = new CheckBox();
      C3_B3 = new CheckBox();
      C3_B4 = new CheckBox();
      C3_B5 = new CheckBox();
      C3_B6 = new CheckBox();
      C3_B7 = new CheckBox();
      C0_B0 = new CheckBox();
      C0_B1 = new CheckBox();
      C0_B2 = new CheckBox();
      C0_B3 = new CheckBox();
      C0_B4 = new CheckBox();
      C0_B5 = new CheckBox();
      C0_B6 = new CheckBox();
      C0_B7 = new CheckBox();
      C1_B0 = new CheckBox();
      C1_B1 = new CheckBox();
      C1_B2 = new CheckBox();
      C1_B3 = new CheckBox();
      C1_B4 = new CheckBox();
      C1_B5 = new CheckBox();
      C1_B6 = new CheckBox();
      C1_B7 = new CheckBox();
      cmdLoadInternal = new Button();
      cmdLoadCustom = new Button();
      cmdSave = new Button();
      cmdExit = new Button();
      cmdCopy = new Button();
      cmdPaste = new Button();
      Icon0 = new PictureBox();
      Icon1 = new PictureBox();
      Icon2 = new PictureBox();
      Icon3 = new PictureBox();
      Icon4 = new PictureBox();
      Icon5 = new PictureBox();
      Icon6 = new PictureBox();
      Icon7 = new PictureBox();
      Icon8 = new PictureBox();
      Icon9 = new PictureBox();
      Icon10 = new PictureBox();
      Icon11 = new PictureBox();
      Icon12 = new PictureBox();
      Icon13 = new PictureBox();
      Icon14 = new PictureBox();
      Icon15 = new PictureBox();
      Icon16 = new PictureBox();
      Icon17 = new PictureBox();
      Icon18 = new PictureBox();
      Icon19 = new PictureBox();
      Icon20 = new PictureBox();
      Icon21 = new PictureBox();
      Icon22 = new PictureBox();
      Icon23 = new PictureBox();
      Icon24 = new PictureBox();
      Icon25 = new PictureBox();
      Icon26 = new PictureBox();
      Icon27 = new PictureBox();
      Icon28 = new PictureBox();
      Icon29 = new PictureBox();
      Icon30 = new PictureBox();
      Icon31 = new PictureBox();
      Icon32 = new PictureBox();
      Icon33 = new PictureBox();
      Icon34 = new PictureBox();
      Icon35 = new PictureBox();
      Icon36 = new PictureBox();
      Icon37 = new PictureBox();
      Icon38 = new PictureBox();
      Icon39 = new PictureBox();
      Icon40 = new PictureBox();
      Icon41 = new PictureBox();
      Icon42 = new PictureBox();
      Icon43 = new PictureBox();
      Icon44 = new PictureBox();
      Icon45 = new PictureBox();
      Icon46 = new PictureBox();
      Icon47 = new PictureBox();
      Icon48 = new PictureBox();
      Icon49 = new PictureBox();
      Icon50 = new PictureBox();
      Icon51 = new PictureBox();
      Icon52 = new PictureBox();
      Icon53 = new PictureBox();
      Icon54 = new PictureBox();
      Icon55 = new PictureBox();
      Icon56 = new PictureBox();
      Icon57 = new PictureBox();
      Icon58 = new PictureBox();
      Icon59 = new PictureBox();
      Icon60 = new PictureBox();
      Icon61 = new PictureBox();
      Icon62 = new PictureBox();
      Icon63 = new PictureBox();
      Icon64 = new PictureBox();
      Icon65 = new PictureBox();
      Icon66 = new PictureBox();
      Icon67 = new PictureBox();
      Icon68 = new PictureBox();
      Icon69 = new PictureBox();
      Icon70 = new PictureBox();
      Icon71 = new PictureBox();
      Icon72 = new PictureBox();
      Icon73 = new PictureBox();
      Icon74 = new PictureBox();
      Icon75 = new PictureBox();
      Icon76 = new PictureBox();
      Icon77 = new PictureBox();
      Icon78 = new PictureBox();
      Icon79 = new PictureBox();
      Icon80 = new PictureBox();
      Icon81 = new PictureBox();
      Icon82 = new PictureBox();
      Icon83 = new PictureBox();
      Icon84 = new PictureBox();
      Icon85 = new PictureBox();
      Icon86 = new PictureBox();
      Icon87 = new PictureBox();
      Icon88 = new PictureBox();
      Icon89 = new PictureBox();
      Icon90 = new PictureBox();
      Icon91 = new PictureBox();
      Icon92 = new PictureBox();
      Icon93 = new PictureBox();
      Icon94 = new PictureBox();
      Icon95 = new PictureBox();
      Icon96 = new PictureBox();
      Icon97 = new PictureBox();
      Icon98 = new PictureBox();
      Icon99 = new PictureBox();
      Icon100 = new PictureBox();
      Icon101 = new PictureBox();
      Icon102 = new PictureBox();
      Icon103 = new PictureBox();
      Icon104 = new PictureBox();
      Icon105 = new PictureBox();
      Icon106 = new PictureBox();
      Icon107 = new PictureBox();
      Icon108 = new PictureBox();
      Icon109 = new PictureBox();
      Icon110 = new PictureBox();
      Icon111 = new PictureBox();
      Icon112 = new PictureBox();
      Icon113 = new PictureBox();
      Icon114 = new PictureBox();
      Icon115 = new PictureBox();
      Icon116 = new PictureBox();
      Icon117 = new PictureBox();
      Icon118 = new PictureBox();
      Icon119 = new PictureBox();
      Icon120 = new PictureBox();
      Icon121 = new PictureBox();
      Icon122 = new PictureBox();
      Icon123 = new PictureBox();
      Icon124 = new PictureBox();
      Icon125 = new PictureBox();
      Icon126 = new PictureBox();
      Icon127 = new PictureBox();
      Icon128 = new PictureBox();
      Icon129 = new PictureBox();
      Icon130 = new PictureBox();
      Icon131 = new PictureBox();
      Icon132 = new PictureBox();
      Icon133 = new PictureBox();
      Icon134 = new PictureBox();
      Icon135 = new PictureBox();
      Icon136 = new PictureBox();
      Icon137 = new PictureBox();
      Icon138 = new PictureBox();
      Icon139 = new PictureBox();
      Icon140 = new PictureBox();
      Icon141 = new PictureBox();
      Icon142 = new PictureBox();
      Icon143 = new PictureBox();
      Icon144 = new PictureBox();
      Icon145 = new PictureBox();
      Icon146 = new PictureBox();
      Icon147 = new PictureBox();
      Icon148 = new PictureBox();
      Icon149 = new PictureBox();
      Icon150 = new PictureBox();
      Icon151 = new PictureBox();
      Icon152 = new PictureBox();
      Icon153 = new PictureBox();
      Icon154 = new PictureBox();
      Icon155 = new PictureBox();
      Icon156 = new PictureBox();
      Icon157 = new PictureBox();
      Icon158 = new PictureBox();
      Icon159 = new PictureBox();
      Icon160 = new PictureBox();
      Icon161 = new PictureBox();
      Icon162 = new PictureBox();
      Icon163 = new PictureBox();
      Icon164 = new PictureBox();
      Icon165 = new PictureBox();
      Icon166 = new PictureBox();
      Icon167 = new PictureBox();
      Icon168 = new PictureBox();
      Icon169 = new PictureBox();
      Icon170 = new PictureBox();
      Icon171 = new PictureBox();
      Icon172 = new PictureBox();
      Icon173 = new PictureBox();
      Icon174 = new PictureBox();
      Icon175 = new PictureBox();
      Icon176 = new PictureBox();
      Icon177 = new PictureBox();
      Icon178 = new PictureBox();
      Icon179 = new PictureBox();
      Icon180 = new PictureBox();
      Icon181 = new PictureBox();
      Icon182 = new PictureBox();
      Icon183 = new PictureBox();
      Icon184 = new PictureBox();
      Icon185 = new PictureBox();
      Icon186 = new PictureBox();
      Icon187 = new PictureBox();
      Icon188 = new PictureBox();
      Icon189 = new PictureBox();
      Icon190 = new PictureBox();
      Icon191 = new PictureBox();
      Icon192 = new PictureBox();
      Icon193 = new PictureBox();
      Icon194 = new PictureBox();
      Icon195 = new PictureBox();
      Icon196 = new PictureBox();
      Icon197 = new PictureBox();
      Icon198 = new PictureBox();
      Icon199 = new PictureBox();
      Icon200 = new PictureBox();
      Icon201 = new PictureBox();
      Icon202 = new PictureBox();
      Icon203 = new PictureBox();
      Icon204 = new PictureBox();
      Icon205 = new PictureBox();
      Icon206 = new PictureBox();
      Icon207 = new PictureBox();
      Icon208 = new PictureBox();
      Icon209 = new PictureBox();
      Icon210 = new PictureBox();
      Icon211 = new PictureBox();
      Icon212 = new PictureBox();
      Icon213 = new PictureBox();
      Icon214 = new PictureBox();
      Icon215 = new PictureBox();
      Icon216 = new PictureBox();
      Icon217 = new PictureBox();
      Icon218 = new PictureBox();
      Icon219 = new PictureBox();
      Icon220 = new PictureBox();
      Icon221 = new PictureBox();
      Icon222 = new PictureBox();
      Icon223 = new PictureBox();
      Icon224 = new PictureBox();
      Icon225 = new PictureBox();
      Icon226 = new PictureBox();
      Icon227 = new PictureBox();
      Icon228 = new PictureBox();
      Icon229 = new PictureBox();
      Icon230 = new PictureBox();
      Icon231 = new PictureBox();
      Icon232 = new PictureBox();
      Icon233 = new PictureBox();
      Icon234 = new PictureBox();
      Icon235 = new PictureBox();
      Icon236 = new PictureBox();
      Icon237 = new PictureBox();
      Icon238 = new PictureBox();
      Icon239 = new PictureBox();
      Icon240 = new PictureBox();
      Icon241 = new PictureBox();
      Icon242 = new PictureBox();
      Icon243 = new PictureBox();
      Icon244 = new PictureBox();
      Icon245 = new PictureBox();
      Icon246 = new PictureBox();
      Icon247 = new PictureBox();
      Icon248 = new PictureBox();
      Icon249 = new PictureBox();
      Icon250 = new PictureBox();
      Icon251 = new PictureBox();
      Icon252 = new PictureBox();
      Icon253 = new PictureBox();
      Icon254 = new PictureBox();
      Icon255 = new PictureBox();
      panel1.SuspendLayout();
      ((ISupportInitialize)(Icon0)).BeginInit();
      ((ISupportInitialize)(Icon1)).BeginInit();
      ((ISupportInitialize)(Icon2)).BeginInit();
      ((ISupportInitialize)(Icon3)).BeginInit();
      ((ISupportInitialize)(Icon4)).BeginInit();
      ((ISupportInitialize)(Icon5)).BeginInit();
      ((ISupportInitialize)(Icon6)).BeginInit();
      ((ISupportInitialize)(Icon7)).BeginInit();
      ((ISupportInitialize)(Icon8)).BeginInit();
      ((ISupportInitialize)(Icon9)).BeginInit();
      ((ISupportInitialize)(Icon10)).BeginInit();
      ((ISupportInitialize)(Icon11)).BeginInit();
      ((ISupportInitialize)(Icon12)).BeginInit();
      ((ISupportInitialize)(Icon13)).BeginInit();
      ((ISupportInitialize)(Icon14)).BeginInit();
      ((ISupportInitialize)(Icon15)).BeginInit();
      ((ISupportInitialize)(Icon16)).BeginInit();
      ((ISupportInitialize)(Icon17)).BeginInit();
      ((ISupportInitialize)(Icon18)).BeginInit();
      ((ISupportInitialize)(Icon19)).BeginInit();
      ((ISupportInitialize)(Icon20)).BeginInit();
      ((ISupportInitialize)(Icon21)).BeginInit();
      ((ISupportInitialize)(Icon22)).BeginInit();
      ((ISupportInitialize)(Icon23)).BeginInit();
      ((ISupportInitialize)(Icon24)).BeginInit();
      ((ISupportInitialize)(Icon25)).BeginInit();
      ((ISupportInitialize)(Icon26)).BeginInit();
      ((ISupportInitialize)(Icon27)).BeginInit();
      ((ISupportInitialize)(Icon28)).BeginInit();
      ((ISupportInitialize)(Icon29)).BeginInit();
      ((ISupportInitialize)(Icon30)).BeginInit();
      ((ISupportInitialize)(Icon31)).BeginInit();
      ((ISupportInitialize)(Icon32)).BeginInit();
      ((ISupportInitialize)(Icon33)).BeginInit();
      ((ISupportInitialize)(Icon34)).BeginInit();
      ((ISupportInitialize)(Icon35)).BeginInit();
      ((ISupportInitialize)(Icon36)).BeginInit();
      ((ISupportInitialize)(Icon37)).BeginInit();
      ((ISupportInitialize)(Icon38)).BeginInit();
      ((ISupportInitialize)(Icon39)).BeginInit();
      ((ISupportInitialize)(Icon40)).BeginInit();
      ((ISupportInitialize)(Icon41)).BeginInit();
      ((ISupportInitialize)(Icon42)).BeginInit();
      ((ISupportInitialize)(Icon43)).BeginInit();
      ((ISupportInitialize)(Icon44)).BeginInit();
      ((ISupportInitialize)(Icon45)).BeginInit();
      ((ISupportInitialize)(Icon46)).BeginInit();
      ((ISupportInitialize)(Icon47)).BeginInit();
      ((ISupportInitialize)(Icon48)).BeginInit();
      ((ISupportInitialize)(Icon49)).BeginInit();
      ((ISupportInitialize)(Icon50)).BeginInit();
      ((ISupportInitialize)(Icon51)).BeginInit();
      ((ISupportInitialize)(Icon52)).BeginInit();
      ((ISupportInitialize)(Icon53)).BeginInit();
      ((ISupportInitialize)(Icon54)).BeginInit();
      ((ISupportInitialize)(Icon55)).BeginInit();
      ((ISupportInitialize)(Icon56)).BeginInit();
      ((ISupportInitialize)(Icon57)).BeginInit();
      ((ISupportInitialize)(Icon58)).BeginInit();
      ((ISupportInitialize)(Icon59)).BeginInit();
      ((ISupportInitialize)(Icon60)).BeginInit();
      ((ISupportInitialize)(Icon61)).BeginInit();
      ((ISupportInitialize)(Icon62)).BeginInit();
      ((ISupportInitialize)(Icon63)).BeginInit();
      ((ISupportInitialize)(Icon64)).BeginInit();
      ((ISupportInitialize)(Icon65)).BeginInit();
      ((ISupportInitialize)(Icon66)).BeginInit();
      ((ISupportInitialize)(Icon67)).BeginInit();
      ((ISupportInitialize)(Icon68)).BeginInit();
      ((ISupportInitialize)(Icon69)).BeginInit();
      ((ISupportInitialize)(Icon70)).BeginInit();
      ((ISupportInitialize)(Icon71)).BeginInit();
      ((ISupportInitialize)(Icon72)).BeginInit();
      ((ISupportInitialize)(Icon73)).BeginInit();
      ((ISupportInitialize)(Icon74)).BeginInit();
      ((ISupportInitialize)(Icon75)).BeginInit();
      ((ISupportInitialize)(Icon76)).BeginInit();
      ((ISupportInitialize)(Icon77)).BeginInit();
      ((ISupportInitialize)(Icon78)).BeginInit();
      ((ISupportInitialize)(Icon79)).BeginInit();
      ((ISupportInitialize)(Icon80)).BeginInit();
      ((ISupportInitialize)(Icon81)).BeginInit();
      ((ISupportInitialize)(Icon82)).BeginInit();
      ((ISupportInitialize)(Icon83)).BeginInit();
      ((ISupportInitialize)(Icon84)).BeginInit();
      ((ISupportInitialize)(Icon85)).BeginInit();
      ((ISupportInitialize)(Icon86)).BeginInit();
      ((ISupportInitialize)(Icon87)).BeginInit();
      ((ISupportInitialize)(Icon88)).BeginInit();
      ((ISupportInitialize)(Icon89)).BeginInit();
      ((ISupportInitialize)(Icon90)).BeginInit();
      ((ISupportInitialize)(Icon91)).BeginInit();
      ((ISupportInitialize)(Icon92)).BeginInit();
      ((ISupportInitialize)(Icon93)).BeginInit();
      ((ISupportInitialize)(Icon94)).BeginInit();
      ((ISupportInitialize)(Icon95)).BeginInit();
      ((ISupportInitialize)(Icon96)).BeginInit();
      ((ISupportInitialize)(Icon97)).BeginInit();
      ((ISupportInitialize)(Icon98)).BeginInit();
      ((ISupportInitialize)(Icon99)).BeginInit();
      ((ISupportInitialize)(Icon100)).BeginInit();
      ((ISupportInitialize)(Icon101)).BeginInit();
      ((ISupportInitialize)(Icon102)).BeginInit();
      ((ISupportInitialize)(Icon103)).BeginInit();
      ((ISupportInitialize)(Icon104)).BeginInit();
      ((ISupportInitialize)(Icon105)).BeginInit();
      ((ISupportInitialize)(Icon106)).BeginInit();
      ((ISupportInitialize)(Icon107)).BeginInit();
      ((ISupportInitialize)(Icon108)).BeginInit();
      ((ISupportInitialize)(Icon109)).BeginInit();
      ((ISupportInitialize)(Icon110)).BeginInit();
      ((ISupportInitialize)(Icon111)).BeginInit();
      ((ISupportInitialize)(Icon112)).BeginInit();
      ((ISupportInitialize)(Icon113)).BeginInit();
      ((ISupportInitialize)(Icon114)).BeginInit();
      ((ISupportInitialize)(Icon115)).BeginInit();
      ((ISupportInitialize)(Icon116)).BeginInit();
      ((ISupportInitialize)(Icon117)).BeginInit();
      ((ISupportInitialize)(Icon118)).BeginInit();
      ((ISupportInitialize)(Icon119)).BeginInit();
      ((ISupportInitialize)(Icon120)).BeginInit();
      ((ISupportInitialize)(Icon121)).BeginInit();
      ((ISupportInitialize)(Icon122)).BeginInit();
      ((ISupportInitialize)(Icon123)).BeginInit();
      ((ISupportInitialize)(Icon124)).BeginInit();
      ((ISupportInitialize)(Icon125)).BeginInit();
      ((ISupportInitialize)(Icon126)).BeginInit();
      ((ISupportInitialize)(Icon127)).BeginInit();
      ((ISupportInitialize)(Icon128)).BeginInit();
      ((ISupportInitialize)(Icon129)).BeginInit();
      ((ISupportInitialize)(Icon130)).BeginInit();
      ((ISupportInitialize)(Icon131)).BeginInit();
      ((ISupportInitialize)(Icon132)).BeginInit();
      ((ISupportInitialize)(Icon133)).BeginInit();
      ((ISupportInitialize)(Icon134)).BeginInit();
      ((ISupportInitialize)(Icon135)).BeginInit();
      ((ISupportInitialize)(Icon136)).BeginInit();
      ((ISupportInitialize)(Icon137)).BeginInit();
      ((ISupportInitialize)(Icon138)).BeginInit();
      ((ISupportInitialize)(Icon139)).BeginInit();
      ((ISupportInitialize)(Icon140)).BeginInit();
      ((ISupportInitialize)(Icon141)).BeginInit();
      ((ISupportInitialize)(Icon142)).BeginInit();
      ((ISupportInitialize)(Icon143)).BeginInit();
      ((ISupportInitialize)(Icon144)).BeginInit();
      ((ISupportInitialize)(Icon145)).BeginInit();
      ((ISupportInitialize)(Icon146)).BeginInit();
      ((ISupportInitialize)(Icon147)).BeginInit();
      ((ISupportInitialize)(Icon148)).BeginInit();
      ((ISupportInitialize)(Icon149)).BeginInit();
      ((ISupportInitialize)(Icon150)).BeginInit();
      ((ISupportInitialize)(Icon151)).BeginInit();
      ((ISupportInitialize)(Icon152)).BeginInit();
      ((ISupportInitialize)(Icon153)).BeginInit();
      ((ISupportInitialize)(Icon154)).BeginInit();
      ((ISupportInitialize)(Icon155)).BeginInit();
      ((ISupportInitialize)(Icon156)).BeginInit();
      ((ISupportInitialize)(Icon157)).BeginInit();
      ((ISupportInitialize)(Icon158)).BeginInit();
      ((ISupportInitialize)(Icon159)).BeginInit();
      ((ISupportInitialize)(Icon160)).BeginInit();
      ((ISupportInitialize)(Icon161)).BeginInit();
      ((ISupportInitialize)(Icon162)).BeginInit();
      ((ISupportInitialize)(Icon163)).BeginInit();
      ((ISupportInitialize)(Icon164)).BeginInit();
      ((ISupportInitialize)(Icon165)).BeginInit();
      ((ISupportInitialize)(Icon166)).BeginInit();
      ((ISupportInitialize)(Icon167)).BeginInit();
      ((ISupportInitialize)(Icon168)).BeginInit();
      ((ISupportInitialize)(Icon169)).BeginInit();
      ((ISupportInitialize)(Icon170)).BeginInit();
      ((ISupportInitialize)(Icon171)).BeginInit();
      ((ISupportInitialize)(Icon172)).BeginInit();
      ((ISupportInitialize)(Icon173)).BeginInit();
      ((ISupportInitialize)(Icon174)).BeginInit();
      ((ISupportInitialize)(Icon175)).BeginInit();
      ((ISupportInitialize)(Icon176)).BeginInit();
      ((ISupportInitialize)(Icon177)).BeginInit();
      ((ISupportInitialize)(Icon178)).BeginInit();
      ((ISupportInitialize)(Icon179)).BeginInit();
      ((ISupportInitialize)(Icon180)).BeginInit();
      ((ISupportInitialize)(Icon181)).BeginInit();
      ((ISupportInitialize)(Icon182)).BeginInit();
      ((ISupportInitialize)(Icon183)).BeginInit();
      ((ISupportInitialize)(Icon184)).BeginInit();
      ((ISupportInitialize)(Icon185)).BeginInit();
      ((ISupportInitialize)(Icon186)).BeginInit();
      ((ISupportInitialize)(Icon187)).BeginInit();
      ((ISupportInitialize)(Icon188)).BeginInit();
      ((ISupportInitialize)(Icon189)).BeginInit();
      ((ISupportInitialize)(Icon190)).BeginInit();
      ((ISupportInitialize)(Icon191)).BeginInit();
      ((ISupportInitialize)(Icon192)).BeginInit();
      ((ISupportInitialize)(Icon193)).BeginInit();
      ((ISupportInitialize)(Icon194)).BeginInit();
      ((ISupportInitialize)(Icon195)).BeginInit();
      ((ISupportInitialize)(Icon196)).BeginInit();
      ((ISupportInitialize)(Icon197)).BeginInit();
      ((ISupportInitialize)(Icon198)).BeginInit();
      ((ISupportInitialize)(Icon199)).BeginInit();
      ((ISupportInitialize)(Icon200)).BeginInit();
      ((ISupportInitialize)(Icon201)).BeginInit();
      ((ISupportInitialize)(Icon202)).BeginInit();
      ((ISupportInitialize)(Icon203)).BeginInit();
      ((ISupportInitialize)(Icon204)).BeginInit();
      ((ISupportInitialize)(Icon205)).BeginInit();
      ((ISupportInitialize)(Icon206)).BeginInit();
      ((ISupportInitialize)(Icon207)).BeginInit();
      ((ISupportInitialize)(Icon208)).BeginInit();
      ((ISupportInitialize)(Icon209)).BeginInit();
      ((ISupportInitialize)(Icon210)).BeginInit();
      ((ISupportInitialize)(Icon211)).BeginInit();
      ((ISupportInitialize)(Icon212)).BeginInit();
      ((ISupportInitialize)(Icon213)).BeginInit();
      ((ISupportInitialize)(Icon214)).BeginInit();
      ((ISupportInitialize)(Icon215)).BeginInit();
      ((ISupportInitialize)(Icon216)).BeginInit();
      ((ISupportInitialize)(Icon217)).BeginInit();
      ((ISupportInitialize)(Icon218)).BeginInit();
      ((ISupportInitialize)(Icon219)).BeginInit();
      ((ISupportInitialize)(Icon220)).BeginInit();
      ((ISupportInitialize)(Icon221)).BeginInit();
      ((ISupportInitialize)(Icon222)).BeginInit();
      ((ISupportInitialize)(Icon223)).BeginInit();
      ((ISupportInitialize)(Icon224)).BeginInit();
      ((ISupportInitialize)(Icon225)).BeginInit();
      ((ISupportInitialize)(Icon226)).BeginInit();
      ((ISupportInitialize)(Icon227)).BeginInit();
      ((ISupportInitialize)(Icon228)).BeginInit();
      ((ISupportInitialize)(Icon229)).BeginInit();
      ((ISupportInitialize)(Icon230)).BeginInit();
      ((ISupportInitialize)(Icon231)).BeginInit();
      ((ISupportInitialize)(Icon232)).BeginInit();
      ((ISupportInitialize)(Icon233)).BeginInit();
      ((ISupportInitialize)(Icon234)).BeginInit();
      ((ISupportInitialize)(Icon235)).BeginInit();
      ((ISupportInitialize)(Icon236)).BeginInit();
      ((ISupportInitialize)(Icon237)).BeginInit();
      ((ISupportInitialize)(Icon238)).BeginInit();
      ((ISupportInitialize)(Icon239)).BeginInit();
      ((ISupportInitialize)(Icon240)).BeginInit();
      ((ISupportInitialize)(Icon241)).BeginInit();
      ((ISupportInitialize)(Icon242)).BeginInit();
      ((ISupportInitialize)(Icon243)).BeginInit();
      ((ISupportInitialize)(Icon244)).BeginInit();
      ((ISupportInitialize)(Icon245)).BeginInit();
      ((ISupportInitialize)(Icon246)).BeginInit();
      ((ISupportInitialize)(Icon247)).BeginInit();
      ((ISupportInitialize)(Icon248)).BeginInit();
      ((ISupportInitialize)(Icon249)).BeginInit();
      ((ISupportInitialize)(Icon250)).BeginInit();
      ((ISupportInitialize)(Icon251)).BeginInit();
      ((ISupportInitialize)(Icon252)).BeginInit();
      ((ISupportInitialize)(Icon253)).BeginInit();
      ((ISupportInitialize)(Icon254)).BeginInit();
      ((ISupportInitialize)(Icon255)).BeginInit();
      SuspendLayout();
      // 
      // panel1
      // 
      panel1.BorderStyle = BorderStyle.FixedSingle;
      panel1.Controls.Add(lblEditIndex);
      panel1.Controls.Add(cmdSaveEdit);
      panel1.Controls.Add(cmdCancelEdit);
      panel1.Controls.Add(cmdInvert);
      panel1.Controls.Add(cmdSetAll);
      panel1.Controls.Add(cmdClearAll);
      panel1.Controls.Add(cmdCopy);
      panel1.Controls.Add(cmdPaste);
      panel1.Controls.Add(lblCurrentIcon);
      panel1.Controls.Add(C4_B0);
      panel1.Controls.Add(C4_B1);
      panel1.Controls.Add(C4_B2);
      panel1.Controls.Add(C4_B3);
      panel1.Controls.Add(C4_B4);
      panel1.Controls.Add(C4_B5);
      panel1.Controls.Add(C4_B6);
      panel1.Controls.Add(C4_B7);
      panel1.Controls.Add(C5_B0);
      panel1.Controls.Add(C5_B1);
      panel1.Controls.Add(C5_B2);
      panel1.Controls.Add(C5_B3);
      panel1.Controls.Add(C5_B4);
      panel1.Controls.Add(C5_B5);
      panel1.Controls.Add(C5_B6);
      panel1.Controls.Add(C5_B7);
      panel1.Controls.Add(C2_B0);
      panel1.Controls.Add(C2_B1);
      panel1.Controls.Add(C2_B2);
      panel1.Controls.Add(C2_B3);
      panel1.Controls.Add(C2_B4);
      panel1.Controls.Add(C2_B5);
      panel1.Controls.Add(C2_B6);
      panel1.Controls.Add(C2_B7);
      panel1.Controls.Add(C3_B0);
      panel1.Controls.Add(C3_B1);
      panel1.Controls.Add(C3_B2);
      panel1.Controls.Add(C3_B3);
      panel1.Controls.Add(C3_B4);
      panel1.Controls.Add(C3_B5);
      panel1.Controls.Add(C3_B6);
      panel1.Controls.Add(C3_B7);
      panel1.Controls.Add(C0_B0);
      panel1.Controls.Add(C0_B1);
      panel1.Controls.Add(C0_B2);
      panel1.Controls.Add(C0_B3);
      panel1.Controls.Add(C0_B4);
      panel1.Controls.Add(C0_B5);
      panel1.Controls.Add(C0_B6);
      panel1.Controls.Add(C0_B7);
      panel1.Controls.Add(C1_B0);
      panel1.Controls.Add(C1_B1);
      panel1.Controls.Add(C1_B2);
      panel1.Controls.Add(C1_B3);
      panel1.Controls.Add(C1_B4);
      panel1.Controls.Add(C1_B5);
      panel1.Controls.Add(C1_B6);
      panel1.Controls.Add(C1_B7);
      panel1.Enabled = false;
      panel1.Location = new Point(6, 7);
      panel1.Name = "panel1";
      panel1.Size = new Size(302, 150);
      panel1.TabIndex = 288;
      // 
      // lblEditIndex
      // 
      lblEditIndex.AutoSize = true;
      lblEditIndex.Location = new Point(95, 76);
      lblEditIndex.Name = "lblEditIndex";
      lblEditIndex.Size = new Size(61, 13);
      lblEditIndex.TabIndex = 550;
      lblEditIndex.Text = "lblEditIndex";
      lblEditIndex.Visible = false;
      // 
      // cmdSaveEdit
      // 
      cmdSaveEdit.Enabled = false;
      cmdSaveEdit.Location = new Point(231, 3);
      cmdSaveEdit.Name = "cmdSaveEdit";
      cmdSaveEdit.Size = new Size(58, 23);
      cmdSaveEdit.TabIndex = 549;
      cmdSaveEdit.Text = "Save";
      cmdSaveEdit.UseVisualStyleBackColor = true;
      cmdSaveEdit.Click += cmdSaveEdit_Click;
      // 
      // cmdCancelEdit
      // 
      cmdCancelEdit.Enabled = false;
      cmdCancelEdit.Location = new Point(231, 27);
      cmdCancelEdit.Name = "cmdCancelEdit";
      cmdCancelEdit.Size = new Size(58, 23);
      cmdCancelEdit.TabIndex = 548;
      cmdCancelEdit.Text = "Cancel";
      cmdCancelEdit.UseVisualStyleBackColor = true;
      cmdCancelEdit.Click += cmdCancelEdit_Click;
      // 
      // cmdInvert
      // 
      cmdInvert.Enabled = false;
      cmdInvert.Location = new Point(87, 49);
      cmdInvert.Name = "cmdInvert";
      cmdInvert.Size = new Size(58, 23);
      cmdInvert.TabIndex = 547;
      cmdInvert.Text = "Invert";
      cmdInvert.UseVisualStyleBackColor = true;
      cmdInvert.Click += cmdInvert_Click;
      // 
      // cmdSetAll
      // 
      cmdSetAll.Enabled = false;
      cmdSetAll.Location = new Point(87, 27);
      cmdSetAll.Name = "cmdSetAll";
      cmdSetAll.Size = new Size(58, 23);
      cmdSetAll.TabIndex = 546;
      cmdSetAll.Text = "Set All";
      cmdSetAll.UseVisualStyleBackColor = true;
      cmdSetAll.Click += cmdSetAll_Click;
      // 
      // cmdClearAll
      // 
      cmdClearAll.Enabled = false;
      cmdClearAll.Location = new Point(87, 3);
      cmdClearAll.Name = "cmdClearAll";
      cmdClearAll.Size = new Size(58, 23);
      cmdClearAll.TabIndex = 545;
      cmdClearAll.Text = "Clear All";
      cmdClearAll.UseVisualStyleBackColor = true;
      cmdClearAll.Click += cmdClearAll_Click;
      // 
      // cmdCopy
      // 
      cmdCopy.Enabled = false;
      cmdCopy.Location = new Point(156, 3);
      cmdCopy.Name = "cmdCopy";
      cmdCopy.Size = new Size(58, 23);
      cmdCopy.TabIndex = 552;
      cmdCopy.Text = "Copy";
      cmdCopy.UseVisualStyleBackColor = true;
      cmdCopy.Click += cmdCopy_Click;
      // 
      // cmdPaste
      // 
      cmdPaste.Enabled = false;
      cmdPaste.Location = new Point(156, 27);
      cmdPaste.Name = "cmdPaste";
      cmdPaste.Size = new Size(58, 23);
      cmdPaste.TabIndex = 553;
      cmdPaste.Text = "Paste";
      cmdPaste.UseVisualStyleBackColor = true;
      cmdPaste.Click += cmdPaste_Click;

      // 
      // lblCurrentIcon
      // 
      lblCurrentIcon.BorderStyle = BorderStyle.FixedSingle;
      lblCurrentIcon.Font = new Font("Microsoft Sans Serif", 15.75F, FontStyle.Bold, GraphicsUnit.Point,
                                     ((0)));
      lblCurrentIcon.Location = new Point(3, 104);
      lblCurrentIcon.Name = "lblCurrentIcon";
      lblCurrentIcon.Size = new Size(275, 33);
      lblCurrentIcon.TabIndex = 544;
      lblCurrentIcon.TextAlign = ContentAlignment.MiddleCenter;
      // 
      // C4_B0
      // 
      C4_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B0.Location = new Point(53, 87);
      C4_B0.Name = "C4_B0";
      C4_B0.Size = new Size(14, 14);
      C4_B0.TabIndex = 335;
      C4_B0.TextAlign = ContentAlignment.MiddleCenter;
      C4_B0.ThreeState = true;
      C4_B0.UseVisualStyleBackColor = true;
      C4_B0.Click += Pixel_Click;
      // 
      // C4_B1
      // 
      C4_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B1.Location = new Point(53, 75);
      C4_B1.Name = "C4_B1";
      C4_B1.Size = new Size(14, 14);
      C4_B1.TabIndex = 334;
      C4_B1.TextAlign = ContentAlignment.MiddleCenter;
      C4_B1.ThreeState = true;
      C4_B1.UseVisualStyleBackColor = true;
      C4_B1.Click += Pixel_Click;
      // 
      // C4_B2
      // 
      C4_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B2.Location = new Point(53, 63);
      C4_B2.Name = "C4_B2";
      C4_B2.Size = new Size(14, 14);
      C4_B2.TabIndex = 333;
      C4_B2.TextAlign = ContentAlignment.MiddleCenter;
      C4_B2.ThreeState = true;
      C4_B2.UseVisualStyleBackColor = true;
      C4_B2.Click += Pixel_Click;
      // 
      // C4_B3
      // 
      C4_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B3.Location = new Point(53, 51);
      C4_B3.Name = "C4_B3";
      C4_B3.Size = new Size(14, 14);
      C4_B3.TabIndex = 332;
      C4_B3.TextAlign = ContentAlignment.MiddleCenter;
      C4_B3.ThreeState = true;
      C4_B3.UseVisualStyleBackColor = true;
      C4_B3.Click += Pixel_Click;
      // 
      // C4_B4
      // 
      C4_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B4.Location = new Point(53, 39);
      C4_B4.Name = "C4_B4";
      C4_B4.Size = new Size(14, 14);
      C4_B4.TabIndex = 331;
      C4_B4.TextAlign = ContentAlignment.MiddleCenter;
      C4_B4.ThreeState = true;
      C4_B4.UseVisualStyleBackColor = true;
      C4_B4.Click += Pixel_Click;
      // 
      // C4_B5
      // 
      C4_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B5.Location = new Point(53, 27);
      C4_B5.Name = "C4_B5";
      C4_B5.Size = new Size(14, 14);
      C4_B5.TabIndex = 330;
      C4_B5.TextAlign = ContentAlignment.MiddleCenter;
      C4_B5.ThreeState = true;
      C4_B5.UseVisualStyleBackColor = true;
      C4_B5.Click += Pixel_Click;
      // 
      // C4_B6
      // 
      C4_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B6.Location = new Point(53, 15);
      C4_B6.Name = "C4_B6";
      C4_B6.Size = new Size(14, 14);
      C4_B6.TabIndex = 329;
      C4_B6.TextAlign = ContentAlignment.MiddleCenter;
      C4_B6.ThreeState = true;
      C4_B6.UseVisualStyleBackColor = true;
      C4_B6.Click += Pixel_Click;
      // 
      // C4_B7
      // 
      C4_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C4_B7.Location = new Point(53, 3);
      C4_B7.Name = "C4_B7";
      C4_B7.Size = new Size(14, 14);
      C4_B7.TabIndex = 328;
      C4_B7.TextAlign = ContentAlignment.MiddleCenter;
      C4_B7.ThreeState = true;
      C4_B7.UseVisualStyleBackColor = true;
      C4_B7.Click += Pixel_Click;
      // 
      // C5_B0
      // 
      C5_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B0.Location = new Point(66, 87);
      C5_B0.Name = "C5_B0";
      C5_B0.Size = new Size(14, 14);
      C5_B0.TabIndex = 327;
      C5_B0.TextAlign = ContentAlignment.MiddleCenter;
      C5_B0.ThreeState = true;
      C5_B0.UseVisualStyleBackColor = true;
      C5_B0.Click += Pixel_Click;
      // 
      // C5_B1
      // 
      C5_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B1.Location = new Point(66, 75);
      C5_B1.Name = "C5_B1";
      C5_B1.Size = new Size(14, 14);
      C5_B1.TabIndex = 326;
      C5_B1.TextAlign = ContentAlignment.MiddleCenter;
      C5_B1.ThreeState = true;
      C5_B1.UseVisualStyleBackColor = true;
      C5_B1.Click += Pixel_Click;
      // 
      // C5_B2
      // 
      C5_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B2.Location = new Point(66, 63);
      C5_B2.Name = "C5_B2";
      C5_B2.Size = new Size(14, 14);
      C5_B2.TabIndex = 325;
      C5_B2.TextAlign = ContentAlignment.MiddleCenter;
      C5_B2.ThreeState = true;
      C5_B2.UseVisualStyleBackColor = true;
      C5_B2.Click += Pixel_Click;
      // 
      // C5_B3
      // 
      C5_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B3.Location = new Point(66, 51);
      C5_B3.Name = "C5_B3";
      C5_B3.Size = new Size(14, 14);
      C5_B3.TabIndex = 324;
      C5_B3.TextAlign = ContentAlignment.MiddleCenter;
      C5_B3.ThreeState = true;
      C5_B3.UseVisualStyleBackColor = true;
      C5_B3.Click += Pixel_Click;
      // 
      // C5_B4
      // 
      C5_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B4.Location = new Point(66, 39);
      C5_B4.Name = "C5_B4";
      C5_B4.Size = new Size(14, 14);
      C5_B4.TabIndex = 323;
      C5_B4.TextAlign = ContentAlignment.MiddleCenter;
      C5_B4.ThreeState = true;
      C5_B4.UseVisualStyleBackColor = true;
      C5_B4.Click += Pixel_Click;
      // 
      // C5_B5
      // 
      C5_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B5.Location = new Point(66, 27);
      C5_B5.Name = "C5_B5";
      C5_B5.Size = new Size(14, 14);
      C5_B5.TabIndex = 322;
      C5_B5.TextAlign = ContentAlignment.MiddleCenter;
      C5_B5.ThreeState = true;
      C5_B5.UseVisualStyleBackColor = true;
      C5_B5.Click += Pixel_Click;
      // 
      // C5_B6
      // 
      C5_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B6.Location = new Point(66, 15);
      C5_B6.Name = "C5_B6";
      C5_B6.Size = new Size(14, 14);
      C5_B6.TabIndex = 321;
      C5_B6.TextAlign = ContentAlignment.MiddleCenter;
      C5_B6.ThreeState = true;
      C5_B6.UseVisualStyleBackColor = true;
      C5_B6.Click += Pixel_Click;
      // 
      // C5_B7
      // 
      C5_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C5_B7.Location = new Point(66, 3);
      C5_B7.Name = "C5_B7";
      C5_B7.Size = new Size(14, 14);
      C5_B7.TabIndex = 320;
      C5_B7.TextAlign = ContentAlignment.MiddleCenter;
      C5_B7.ThreeState = true;
      C5_B7.UseVisualStyleBackColor = true;
      C5_B7.Click += Pixel_Click;
      // 
      // C2_B0
      // 
      C2_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B0.Location = new Point(28, 87);
      C2_B0.Name = "C2_B0";
      C2_B0.Size = new Size(14, 14);
      C2_B0.TabIndex = 319;
      C2_B0.TextAlign = ContentAlignment.MiddleCenter;
      C2_B0.ThreeState = true;
      C2_B0.UseVisualStyleBackColor = true;
      C2_B0.Click += Pixel_Click;
      // 
      // C2_B1
      // 
      C2_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B1.Location = new Point(28, 75);
      C2_B1.Name = "C2_B1";
      C2_B1.Size = new Size(14, 14);
      C2_B1.TabIndex = 318;
      C2_B1.TextAlign = ContentAlignment.MiddleCenter;
      C2_B1.ThreeState = true;
      C2_B1.UseVisualStyleBackColor = true;
      C2_B1.Click += Pixel_Click;
      // 
      // C2_B2
      // 
      C2_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B2.Location = new Point(28, 63);
      C2_B2.Name = "C2_B2";
      C2_B2.Size = new Size(14, 14);
      C2_B2.TabIndex = 317;
      C2_B2.TextAlign = ContentAlignment.MiddleCenter;
      C2_B2.ThreeState = true;
      C2_B2.UseVisualStyleBackColor = true;
      C2_B2.Click += Pixel_Click;
      // 
      // C2_B3
      // 
      C2_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B3.Location = new Point(28, 51);
      C2_B3.Name = "C2_B3";
      C2_B3.Size = new Size(14, 14);
      C2_B3.TabIndex = 316;
      C2_B3.TextAlign = ContentAlignment.MiddleCenter;
      C2_B3.ThreeState = true;
      C2_B3.UseVisualStyleBackColor = true;
      C2_B3.Click += Pixel_Click;
      // 
      // C2_B4
      // 
      C2_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B4.Location = new Point(28, 39);
      C2_B4.Name = "C2_B4";
      C2_B4.Size = new Size(14, 14);
      C2_B4.TabIndex = 315;
      C2_B4.TextAlign = ContentAlignment.MiddleCenter;
      C2_B4.ThreeState = true;
      C2_B4.UseVisualStyleBackColor = true;
      C2_B4.Click += Pixel_Click;
      // 
      // C2_B5
      // 
      C2_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B5.Location = new Point(28, 27);
      C2_B5.Name = "C2_B5";
      C2_B5.Size = new Size(14, 14);
      C2_B5.TabIndex = 314;
      C2_B5.TextAlign = ContentAlignment.MiddleCenter;
      C2_B5.ThreeState = true;
      C2_B5.UseVisualStyleBackColor = true;
      C2_B5.Click += Pixel_Click;
      // 
      // C2_B6
      // 
      C2_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B6.Location = new Point(28, 15);
      C2_B6.Name = "C2_B6";
      C2_B6.Size = new Size(14, 14);
      C2_B6.TabIndex = 313;
      C2_B6.TextAlign = ContentAlignment.MiddleCenter;
      C2_B6.ThreeState = true;
      C2_B6.UseVisualStyleBackColor = true;
      C2_B6.Click += Pixel_Click;
      // 
      // C2_B7
      // 
      C2_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C2_B7.Location = new Point(28, 3);
      C2_B7.Name = "C2_B7";
      C2_B7.Size = new Size(14, 14);
      C2_B7.TabIndex = 312;
      C2_B7.TextAlign = ContentAlignment.MiddleCenter;
      C2_B7.ThreeState = true;
      C2_B7.UseVisualStyleBackColor = true;
      C2_B7.Click += Pixel_Click;
      // 
      // C3_B0
      // 
      C3_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B0.Location = new Point(41, 87);
      C3_B0.Name = "C3_B0";
      C3_B0.Size = new Size(14, 14);
      C3_B0.TabIndex = 311;
      C3_B0.TextAlign = ContentAlignment.MiddleCenter;
      C3_B0.ThreeState = true;
      C3_B0.UseVisualStyleBackColor = true;
      C3_B0.Click += Pixel_Click;
      // 
      // C3_B1
      // 
      C3_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B1.Location = new Point(41, 75);
      C3_B1.Name = "C3_B1";
      C3_B1.Size = new Size(14, 14);
      C3_B1.TabIndex = 310;
      C3_B1.TextAlign = ContentAlignment.MiddleCenter;
      C3_B1.ThreeState = true;
      C3_B1.UseVisualStyleBackColor = true;
      C3_B1.Click += Pixel_Click;
      // 
      // C3_B2
      // 
      C3_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B2.Location = new Point(41, 63);
      C3_B2.Name = "C3_B2";
      C3_B2.Size = new Size(14, 14);
      C3_B2.TabIndex = 309;
      C3_B2.TextAlign = ContentAlignment.MiddleCenter;
      C3_B2.ThreeState = true;
      C3_B2.UseVisualStyleBackColor = true;
      C3_B2.Click += Pixel_Click;
      // 
      // C3_B3
      // 
      C3_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B3.Location = new Point(41, 51);
      C3_B3.Name = "C3_B3";
      C3_B3.Size = new Size(14, 14);
      C3_B3.TabIndex = 308;
      C3_B3.TextAlign = ContentAlignment.MiddleCenter;
      C3_B3.ThreeState = true;
      C3_B3.UseVisualStyleBackColor = true;
      C3_B3.Click += Pixel_Click;
      // 
      // C3_B4
      // 
      C3_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B4.Location = new Point(41, 39);
      C3_B4.Name = "C3_B4";
      C3_B4.Size = new Size(14, 14);
      C3_B4.TabIndex = 307;
      C3_B4.TextAlign = ContentAlignment.MiddleCenter;
      C3_B4.ThreeState = true;
      C3_B4.UseVisualStyleBackColor = true;
      C3_B4.Click += Pixel_Click;
      // 
      // C3_B5
      // 
      C3_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B5.Location = new Point(41, 27);
      C3_B5.Name = "C3_B5";
      C3_B5.Size = new Size(14, 14);
      C3_B5.TabIndex = 306;
      C3_B5.TextAlign = ContentAlignment.MiddleCenter;
      C3_B5.ThreeState = true;
      C3_B5.UseVisualStyleBackColor = true;
      C3_B5.Click += Pixel_Click;
      // 
      // C3_B6
      // 
      C3_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B6.Location = new Point(41, 15);
      C3_B6.Name = "C3_B6";
      C3_B6.Size = new Size(14, 14);
      C3_B6.TabIndex = 305;
      C3_B6.TextAlign = ContentAlignment.MiddleCenter;
      C3_B6.ThreeState = true;
      C3_B6.UseVisualStyleBackColor = true;
      C3_B6.Click += Pixel_Click;
      // 
      // C3_B7
      // 
      C3_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C3_B7.Location = new Point(41, 3);
      C3_B7.Name = "C3_B7";
      C3_B7.Size = new Size(14, 14);
      C3_B7.TabIndex = 304;
      C3_B7.TextAlign = ContentAlignment.MiddleCenter;
      C3_B7.ThreeState = true;
      C3_B7.UseVisualStyleBackColor = true;
      C3_B7.Click += Pixel_Click;
      // 
      // C0_B0
      // 
      C0_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B0.Location = new Point(3, 87);
      C0_B0.Name = "C0_B0";
      C0_B0.Size = new Size(14, 14);
      C0_B0.TabIndex = 303;
      C0_B0.TextAlign = ContentAlignment.MiddleCenter;
      C0_B0.ThreeState = true;
      C0_B0.UseVisualStyleBackColor = true;
      C0_B0.Click += Pixel_Click;
      // 
      // C0_B1
      // 
      C0_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B1.Location = new Point(3, 75);
      C0_B1.Name = "C0_B1";
      C0_B1.Size = new Size(14, 14);
      C0_B1.TabIndex = 302;
      C0_B1.TextAlign = ContentAlignment.MiddleCenter;
      C0_B1.ThreeState = true;
      C0_B1.UseVisualStyleBackColor = true;
      C0_B1.Click += Pixel_Click;
      // 
      // C0_B2
      // 
      C0_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B2.Location = new Point(3, 63);
      C0_B2.Name = "C0_B2";
      C0_B2.Size = new Size(14, 14);
      C0_B2.TabIndex = 301;
      C0_B2.TextAlign = ContentAlignment.MiddleCenter;
      C0_B2.ThreeState = true;
      C0_B2.UseVisualStyleBackColor = true;
      C0_B2.Click += Pixel_Click;
      // 
      // C0_B3
      // 
      C0_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B3.Location = new Point(3, 51);
      C0_B3.Name = "C0_B3";
      C0_B3.Size = new Size(14, 14);
      C0_B3.TabIndex = 300;
      C0_B3.TextAlign = ContentAlignment.MiddleCenter;
      C0_B3.ThreeState = true;
      C0_B3.UseVisualStyleBackColor = true;
      C0_B3.Click += Pixel_Click;
      // 
      // C0_B4
      // 
      C0_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B4.Location = new Point(3, 39);
      C0_B4.Name = "C0_B4";
      C0_B4.Size = new Size(14, 14);
      C0_B4.TabIndex = 299;
      C0_B4.TextAlign = ContentAlignment.MiddleCenter;
      C0_B4.ThreeState = true;
      C0_B4.UseVisualStyleBackColor = true;
      C0_B4.Click += Pixel_Click;
      // 
      // C0_B5
      // 
      C0_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B5.Location = new Point(3, 27);
      C0_B5.Name = "C0_B5";
      C0_B5.Size = new Size(14, 14);
      C0_B5.TabIndex = 298;
      C0_B5.TextAlign = ContentAlignment.MiddleCenter;
      C0_B5.ThreeState = true;
      C0_B5.UseVisualStyleBackColor = true;
      C0_B5.Click += Pixel_Click;
      // 
      // C0_B6
      // 
      C0_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B6.Location = new Point(3, 15);
      C0_B6.Name = "C0_B6";
      C0_B6.Size = new Size(14, 14);
      C0_B6.TabIndex = 297;
      C0_B6.TextAlign = ContentAlignment.MiddleCenter;
      C0_B6.ThreeState = true;
      C0_B6.UseVisualStyleBackColor = true;
      C0_B6.Click += Pixel_Click;
      // 
      // C0_B7
      // 
      C0_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C0_B7.Location = new Point(3, 3);
      C0_B7.Name = "C0_B7";
      C0_B7.Size = new Size(14, 14);
      C0_B7.TabIndex = 296;
      C0_B7.TextAlign = ContentAlignment.MiddleCenter;
      C0_B7.ThreeState = true;
      C0_B7.UseVisualStyleBackColor = true;
      C0_B7.Click += Pixel_Click;
      // 
      // C1_B0
      // 
      C1_B0.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B0.Location = new Point(16, 87);
      C1_B0.Name = "C1_B0";
      C1_B0.Size = new Size(14, 14);
      C1_B0.TabIndex = 295;
      C1_B0.TextAlign = ContentAlignment.MiddleCenter;
      C1_B0.ThreeState = true;
      C1_B0.UseVisualStyleBackColor = true;
      C1_B0.Click += Pixel_Click;
      // 
      // C1_B1
      // 
      C1_B1.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B1.Location = new Point(16, 75);
      C1_B1.Name = "C1_B1";
      C1_B1.Size = new Size(14, 14);
      C1_B1.TabIndex = 294;
      C1_B1.TextAlign = ContentAlignment.MiddleCenter;
      C1_B1.ThreeState = true;
      C1_B1.UseVisualStyleBackColor = true;
      C1_B1.Click += Pixel_Click;
      // 
      // C1_B2
      // 
      C1_B2.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B2.Location = new Point(16, 63);
      C1_B2.Name = "C1_B2";
      C1_B2.Size = new Size(14, 14);
      C1_B2.TabIndex = 293;
      C1_B2.TextAlign = ContentAlignment.MiddleCenter;
      C1_B2.ThreeState = true;
      C1_B2.UseVisualStyleBackColor = true;
      C1_B2.Click += Pixel_Click;
      // 
      // C1_B3
      // 
      C1_B3.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B3.Location = new Point(16, 51);
      C1_B3.Name = "C1_B3";
      C1_B3.Size = new Size(14, 14);
      C1_B3.TabIndex = 292;
      C1_B3.TextAlign = ContentAlignment.MiddleCenter;
      C1_B3.ThreeState = true;
      C1_B3.UseVisualStyleBackColor = true;
      C1_B3.Click += Pixel_Click;
      // 
      // C1_B4
      // 
      C1_B4.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B4.Location = new Point(16, 39);
      C1_B4.Name = "C1_B4";
      C1_B4.Size = new Size(14, 14);
      C1_B4.TabIndex = 291;
      C1_B4.TextAlign = ContentAlignment.MiddleCenter;
      C1_B4.ThreeState = true;
      C1_B4.UseVisualStyleBackColor = true;
      C1_B4.Click += Pixel_Click;
      // 
      // C1_B5
      // 
      C1_B5.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B5.Location = new Point(16, 27);
      C1_B5.Name = "C1_B5";
      C1_B5.Size = new Size(14, 14);
      C1_B5.TabIndex = 290;
      C1_B5.TextAlign = ContentAlignment.MiddleCenter;
      C1_B5.ThreeState = true;
      C1_B5.UseVisualStyleBackColor = true;
      C1_B5.Click += Pixel_Click;
      // 
      // C1_B6
      // 
      C1_B6.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B6.Location = new Point(16, 15);
      C1_B6.Name = "C1_B6";
      C1_B6.Size = new Size(14, 14);
      C1_B6.TabIndex = 289;
      C1_B6.TextAlign = ContentAlignment.MiddleCenter;
      C1_B6.ThreeState = true;
      C1_B6.UseVisualStyleBackColor = true;
      C1_B6.Click += Pixel_Click;
      // 
      // C1_B7
      // 
      C1_B7.CheckAlign = ContentAlignment.MiddleCenter;
      C1_B7.Location = new Point(16, 3);
      C1_B7.Name = "C1_B7";
      C1_B7.Size = new Size(14, 14);
      C1_B7.TabIndex = 288;
      C1_B7.TextAlign = ContentAlignment.MiddleCenter;
      C1_B7.ThreeState = true;
      C1_B7.UseVisualStyleBackColor = true;
      C1_B7.Click += Pixel_Click;
      // 
      // cmdLoadInternal
      // 
      cmdLoadInternal.Anchor = (((AnchorStyles.Top | AnchorStyles.Right)));
      cmdLoadInternal.Location = new Point(314, 39);
      cmdLoadInternal.Name = "cmdLoadInternal";
      cmdLoadInternal.Size = new Size(75, 23);
      cmdLoadInternal.TabIndex = 548;
      cmdLoadInternal.Text = "Internal";
      cmdLoadInternal.UseVisualStyleBackColor = true;
      cmdLoadInternal.Click += cmdLoadInternal_Click;
      // 
      // cmdLoadCustom
      // 
      cmdLoadCustom.Anchor = (((AnchorStyles.Top | AnchorStyles.Right)));
      cmdLoadCustom.Location = new Point(314, 14);
      cmdLoadCustom.Name = "cmdLoadCustom";
      cmdLoadCustom.Size = new Size(75, 23);
      cmdLoadCustom.TabIndex = 549;
      cmdLoadCustom.Text = "Custom";
      cmdLoadCustom.UseVisualStyleBackColor = true;
      cmdLoadCustom.Click += cmdLoadCustom_Click;
      // 
      // cmdSave
      // 
      cmdSave.Anchor = (((AnchorStyles.Bottom | AnchorStyles.Right)));
      cmdSave.Enabled = false;
      cmdSave.Location = new Point(233, 456);
      cmdSave.Name = "cmdSave";
      cmdSave.Size = new Size(75, 23);
      cmdSave.TabIndex = 550;
      cmdSave.Text = "Save";
      cmdSave.UseVisualStyleBackColor = true;
      cmdSave.Click += cmdSave_Click;
      // 
      // cmdExit
      // 
      cmdExit.Anchor = (((AnchorStyles.Bottom | AnchorStyles.Right)));
      cmdExit.Location = new Point(314, 456);
      cmdExit.Name = "cmdExit";
      cmdExit.Size = new Size(75, 23);
      cmdExit.TabIndex = 551;
      cmdExit.Text = "Exit";
      cmdExit.UseVisualStyleBackColor = true;
      cmdExit.Click += cmdExit_Click;
      // 
      // Icon0
      // 
      Icon0.BorderStyle = BorderStyle.FixedSingle;
      Icon0.Enabled = false;
      Icon0.Location = new Point(20, 163);
      Icon0.Name = "Icon0";
      Icon0.Size = new Size(14, 18);
      Icon0.TabIndex = 1;
      Icon0.TabStop = false;
      Icon0.Click += Icon_Click;
      // 
      // Icon1
      // 
      Icon1.BorderStyle = BorderStyle.FixedSingle;
      Icon1.Enabled = false;
      Icon1.Location = new Point(33, 163);
      Icon1.Name = "Icon1";
      Icon1.Size = new Size(14, 18);
      Icon1.TabIndex = 2;
      Icon1.TabStop = false;
      Icon1.Click += Icon_Click;
      // 
      // Icon2
      // 
      Icon2.BorderStyle = BorderStyle.FixedSingle;
      Icon2.Enabled = false;
      Icon2.Location = new Point(46, 163);
      Icon2.Name = "Icon2";
      Icon2.Size = new Size(14, 18);
      Icon2.TabIndex = 3;
      Icon2.TabStop = false;
      Icon2.Click += Icon_Click;
      // 
      // Icon3
      // 
      Icon3.BorderStyle = BorderStyle.FixedSingle;
      Icon3.Enabled = false;
      Icon3.Location = new Point(59, 163);
      Icon3.Name = "Icon3";
      Icon3.Size = new Size(14, 18);
      Icon3.TabIndex = 4;
      Icon3.TabStop = false;
      Icon3.Click += Icon_Click;
      // 
      // Icon4
      // 
      Icon4.BorderStyle = BorderStyle.FixedSingle;
      Icon4.Enabled = false;
      Icon4.Location = new Point(72, 163);
      Icon4.Name = "Icon4";
      Icon4.Size = new Size(14, 18);
      Icon4.TabIndex = 5;
      Icon4.TabStop = false;
      Icon4.Click += Icon_Click;
      // 
      // Icon5
      // 
      Icon5.BorderStyle = BorderStyle.FixedSingle;
      Icon5.Enabled = false;
      Icon5.Location = new Point(85, 163);
      Icon5.Name = "Icon5";
      Icon5.Size = new Size(14, 18);
      Icon5.TabIndex = 6;
      Icon5.TabStop = false;
      Icon5.Click += Icon_Click;
      // 
      // Icon6
      // 
      Icon6.BorderStyle = BorderStyle.FixedSingle;
      Icon6.Enabled = false;
      Icon6.Location = new Point(98, 163);
      Icon6.Name = "Icon6";
      Icon6.Size = new Size(14, 18);
      Icon6.TabIndex = 7;
      Icon6.TabStop = false;
      Icon6.Click += Icon_Click;
      // 
      // Icon7
      // 
      Icon7.BorderStyle = BorderStyle.FixedSingle;
      Icon7.Enabled = false;
      Icon7.Location = new Point(111, 163);
      Icon7.Name = "Icon7";
      Icon7.Size = new Size(14, 18);
      Icon7.TabIndex = 8;
      Icon7.TabStop = false;
      Icon7.Click += Icon_Click;
      // 
      // Icon8
      // 
      Icon8.BorderStyle = BorderStyle.FixedSingle;
      Icon8.Enabled = false;
      Icon8.Location = new Point(124, 163);
      Icon8.Name = "Icon8";
      Icon8.Size = new Size(14, 18);
      Icon8.TabIndex = 9;
      Icon8.TabStop = false;
      Icon8.Click += Icon_Click;
      // 
      // Icon9
      // 
      Icon9.BorderStyle = BorderStyle.FixedSingle;
      Icon9.Enabled = false;
      Icon9.Location = new Point(137, 163);
      Icon9.Name = "Icon9";
      Icon9.Size = new Size(14, 18);
      Icon9.TabIndex = 10;
      Icon9.TabStop = false;
      Icon9.Click += Icon_Click;
      // 
      // Icon10
      // 
      Icon10.BorderStyle = BorderStyle.FixedSingle;
      Icon10.Enabled = false;
      Icon10.Location = new Point(150, 163);
      Icon10.Name = "Icon10";
      Icon10.Size = new Size(14, 18);
      Icon10.TabIndex = 552;
      Icon10.TabStop = false;
      Icon10.Click += Icon_Click;
      // 
      // Icon11
      // 
      Icon11.BorderStyle = BorderStyle.FixedSingle;
      Icon11.Enabled = false;
      Icon11.Location = new Point(163, 163);
      Icon11.Name = "Icon11";
      Icon11.Size = new Size(14, 18);
      Icon11.TabIndex = 553;
      Icon11.TabStop = false;
      Icon11.Click += Icon_Click;
      // 
      // Icon12
      // 
      Icon12.BorderStyle = BorderStyle.FixedSingle;
      Icon12.Enabled = false;
      Icon12.Location = new Point(176, 163);
      Icon12.Name = "Icon12";
      Icon12.Size = new Size(14, 18);
      Icon12.TabIndex = 554;
      Icon12.TabStop = false;
      Icon12.Click += Icon_Click;
      // 
      // Icon13
      // 
      Icon13.BorderStyle = BorderStyle.FixedSingle;
      Icon13.Enabled = false;
      Icon13.Location = new Point(189, 163);
      Icon13.Name = "Icon13";
      Icon13.Size = new Size(14, 18);
      Icon13.TabIndex = 555;
      Icon13.TabStop = false;
      Icon13.Click += Icon_Click;
      // 
      // Icon14
      // 
      Icon14.BorderStyle = BorderStyle.FixedSingle;
      Icon14.Enabled = false;
      Icon14.Location = new Point(202, 163);
      Icon14.Name = "Icon14";
      Icon14.Size = new Size(14, 18);
      Icon14.TabIndex = 556;
      Icon14.TabStop = false;
      Icon14.Click += Icon_Click;
      // 
      // Icon15
      // 
      Icon15.BorderStyle = BorderStyle.FixedSingle;
      Icon15.Enabled = false;
      Icon15.Location = new Point(215, 163);
      Icon15.Name = "Icon15";
      Icon15.Size = new Size(14, 18);
      Icon15.TabIndex = 557;
      Icon15.TabStop = false;
      Icon15.Click += Icon_Click;
      // 
      // Icon16
      // 
      Icon16.BorderStyle = BorderStyle.FixedSingle;
      Icon16.Enabled = false;
      Icon16.Location = new Point(20, 180);
      Icon16.Name = "Icon16";
      Icon16.Size = new Size(14, 18);
      Icon16.TabIndex = 558;
      Icon16.TabStop = false;
      Icon16.Click += Icon_Click;
      // 
      // Icon17
      // 
      Icon17.BorderStyle = BorderStyle.FixedSingle;
      Icon17.Enabled = false;
      Icon17.Location = new Point(33, 180);
      Icon17.Name = "Icon17";
      Icon17.Size = new Size(14, 18);
      Icon17.TabIndex = 559;
      Icon17.TabStop = false;
      Icon17.Click += Icon_Click;
      // 
      // Icon18
      // 
      Icon18.BorderStyle = BorderStyle.FixedSingle;
      Icon18.Enabled = false;
      Icon18.Location = new Point(46, 180);
      Icon18.Name = "Icon18";
      Icon18.Size = new Size(14, 18);
      Icon18.TabIndex = 560;
      Icon18.TabStop = false;
      Icon18.Click += Icon_Click;
      // 
      // Icon19
      // 
      Icon19.BorderStyle = BorderStyle.FixedSingle;
      Icon19.Enabled = false;
      Icon19.Location = new Point(59, 180);
      Icon19.Name = "Icon19";
      Icon19.Size = new Size(14, 18);
      Icon19.TabIndex = 561;
      Icon19.TabStop = false;
      Icon19.Click += Icon_Click;
      // 
      // Icon20
      // 
      Icon20.BorderStyle = BorderStyle.FixedSingle;
      Icon20.Enabled = false;
      Icon20.Location = new Point(72, 180);
      Icon20.Name = "Icon20";
      Icon20.Size = new Size(14, 18);
      Icon20.TabIndex = 562;
      Icon20.TabStop = false;
      Icon20.Click += Icon_Click;
      // 
      // Icon21
      // 
      Icon21.BorderStyle = BorderStyle.FixedSingle;
      Icon21.Enabled = false;
      Icon21.Location = new Point(85, 180);
      Icon21.Name = "Icon21";
      Icon21.Size = new Size(14, 18);
      Icon21.TabIndex = 563;
      Icon21.TabStop = false;
      Icon21.Click += Icon_Click;
      // 
      // Icon22
      // 
      Icon22.BorderStyle = BorderStyle.FixedSingle;
      Icon22.Enabled = false;
      Icon22.Location = new Point(98, 180);
      Icon22.Name = "Icon22";
      Icon22.Size = new Size(14, 18);
      Icon22.TabIndex = 564;
      Icon22.TabStop = false;
      Icon22.Click += Icon_Click;
      // 
      // Icon23
      // 
      Icon23.BorderStyle = BorderStyle.FixedSingle;
      Icon23.Enabled = false;
      Icon23.Location = new Point(111, 180);
      Icon23.Name = "Icon23";
      Icon23.Size = new Size(14, 18);
      Icon23.TabIndex = 565;
      Icon23.TabStop = false;
      Icon23.Click += Icon_Click;
      // 
      // Icon24
      // 
      Icon24.BorderStyle = BorderStyle.FixedSingle;
      Icon24.Enabled = false;
      Icon24.Location = new Point(124, 180);
      Icon24.Name = "Icon24";
      Icon24.Size = new Size(14, 18);
      Icon24.TabIndex = 566;
      Icon24.TabStop = false;
      Icon24.Click += Icon_Click;
      // 
      // Icon25
      // 
      Icon25.BorderStyle = BorderStyle.FixedSingle;
      Icon25.Enabled = false;
      Icon25.Location = new Point(137, 180);
      Icon25.Name = "Icon25";
      Icon25.Size = new Size(14, 18);
      Icon25.TabIndex = 567;
      Icon25.TabStop = false;
      Icon25.Click += Icon_Click;
      // 
      // Icon26
      // 
      Icon26.BorderStyle = BorderStyle.FixedSingle;
      Icon26.Enabled = false;
      Icon26.Location = new Point(150, 180);
      Icon26.Name = "Icon26";
      Icon26.Size = new Size(14, 18);
      Icon26.TabIndex = 568;
      Icon26.TabStop = false;
      Icon26.Click += Icon_Click;
      // 
      // Icon27
      // 
      Icon27.BorderStyle = BorderStyle.FixedSingle;
      Icon27.Enabled = false;
      Icon27.Location = new Point(163, 180);
      Icon27.Name = "Icon27";
      Icon27.Size = new Size(14, 18);
      Icon27.TabIndex = 569;
      Icon27.TabStop = false;
      Icon27.Click += Icon_Click;
      // 
      // Icon28
      // 
      Icon28.BorderStyle = BorderStyle.FixedSingle;
      Icon28.Enabled = false;
      Icon28.Location = new Point(176, 180);
      Icon28.Name = "Icon28";
      Icon28.Size = new Size(14, 18);
      Icon28.TabIndex = 570;
      Icon28.TabStop = false;
      Icon28.Click += Icon_Click;
      // 
      // Icon29
      // 
      Icon29.BorderStyle = BorderStyle.FixedSingle;
      Icon29.Enabled = false;
      Icon29.Location = new Point(189, 180);
      Icon29.Name = "Icon29";
      Icon29.Size = new Size(14, 18);
      Icon29.TabIndex = 571;
      Icon29.TabStop = false;
      Icon29.Click += Icon_Click;
      // 
      // Icon30
      // 
      Icon30.BorderStyle = BorderStyle.FixedSingle;
      Icon30.Enabled = false;
      Icon30.Location = new Point(202, 180);
      Icon30.Name = "Icon30";
      Icon30.Size = new Size(14, 18);
      Icon30.TabIndex = 572;
      Icon30.TabStop = false;
      Icon30.Click += Icon_Click;
      // 
      // Icon31
      // 
      Icon31.BorderStyle = BorderStyle.FixedSingle;
      Icon31.Enabled = false;
      Icon31.Location = new Point(215, 180);
      Icon31.Name = "Icon31";
      Icon31.Size = new Size(14, 18);
      Icon31.TabIndex = 573;
      Icon31.TabStop = false;
      Icon31.Click += Icon_Click;
      // 
      // Icon32
      // 
      Icon32.BorderStyle = BorderStyle.FixedSingle;
      Icon32.Enabled = false;
      Icon32.Location = new Point(20, 197);
      Icon32.Name = "Icon32";
      Icon32.Size = new Size(14, 18);
      Icon32.TabIndex = 1;
      Icon32.TabStop = false;
      Icon32.Click += Icon_Click;
      // 
      // Icon33
      // 
      Icon33.BorderStyle = BorderStyle.FixedSingle;
      Icon33.Enabled = false;
      Icon33.Location = new Point(33, 197);
      Icon33.Name = "Icon33";
      Icon33.Size = new Size(14, 18);
      Icon33.TabIndex = 2;
      Icon33.TabStop = false;
      Icon33.Click += Icon_Click;
      // 
      // Icon34
      // 
      Icon34.BorderStyle = BorderStyle.FixedSingle;
      Icon34.Enabled = false;
      Icon34.Location = new Point(46, 197);
      Icon34.Name = "Icon34";
      Icon34.Size = new Size(14, 18);
      Icon34.TabIndex = 3;
      Icon34.TabStop = false;
      Icon34.Click += Icon_Click;
      // 
      // Icon35
      // 
      Icon35.BorderStyle = BorderStyle.FixedSingle;
      Icon35.Enabled = false;
      Icon35.Location = new Point(59, 197);
      Icon35.Name = "Icon35";
      Icon35.Size = new Size(14, 18);
      Icon35.TabIndex = 4;
      Icon35.TabStop = false;
      Icon35.Click += Icon_Click;
      // 
      // Icon36
      // 
      Icon36.BorderStyle = BorderStyle.FixedSingle;
      Icon36.Enabled = false;
      Icon36.Location = new Point(72, 197);
      Icon36.Name = "Icon36";
      Icon36.Size = new Size(14, 18);
      Icon36.TabIndex = 5;
      Icon36.TabStop = false;
      Icon36.Click += Icon_Click;
      // 
      // Icon37
      // 
      Icon37.BorderStyle = BorderStyle.FixedSingle;
      Icon37.Enabled = false;
      Icon37.Location = new Point(85, 197);
      Icon37.Name = "Icon37";
      Icon37.Size = new Size(14, 18);
      Icon37.TabIndex = 6;
      Icon37.TabStop = false;
      Icon37.Click += Icon_Click;
      // 
      // Icon38
      // 
      Icon38.BorderStyle = BorderStyle.FixedSingle;
      Icon38.Enabled = false;
      Icon38.Location = new Point(98, 197);
      Icon38.Name = "Icon38";
      Icon38.Size = new Size(14, 18);
      Icon38.TabIndex = 7;
      Icon38.TabStop = false;
      Icon38.Click += Icon_Click;
      // 
      // Icon39
      // 
      Icon39.BorderStyle = BorderStyle.FixedSingle;
      Icon39.Enabled = false;
      Icon39.Location = new Point(111, 197);
      Icon39.Name = "Icon39";
      Icon39.Size = new Size(14, 18);
      Icon39.TabIndex = 8;
      Icon39.TabStop = false;
      Icon39.Click += Icon_Click;
      // 
      // Icon40
      // 
      Icon40.BorderStyle = BorderStyle.FixedSingle;
      Icon40.Enabled = false;
      Icon40.Location = new Point(124, 197);
      Icon40.Name = "Icon40";
      Icon40.Size = new Size(14, 18);
      Icon40.TabIndex = 9;
      Icon40.TabStop = false;
      Icon40.Click += Icon_Click;
      // 
      // Icon41
      // 
      Icon41.BorderStyle = BorderStyle.FixedSingle;
      Icon41.Enabled = false;
      Icon41.Location = new Point(137, 197);
      Icon41.Name = "Icon41";
      Icon41.Size = new Size(14, 18);
      Icon41.TabIndex = 10;
      Icon41.TabStop = false;
      Icon41.Click += Icon_Click;
      // 
      // Icon42
      // 
      Icon42.BorderStyle = BorderStyle.FixedSingle;
      Icon42.Enabled = false;
      Icon42.Location = new Point(150, 197);
      Icon42.Name = "Icon42";
      Icon42.Size = new Size(14, 18);
      Icon42.TabIndex = 552;
      Icon42.TabStop = false;
      Icon42.Click += Icon_Click;
      // 
      // Icon43
      // 
      Icon43.BorderStyle = BorderStyle.FixedSingle;
      Icon43.Enabled = false;
      Icon43.Location = new Point(163, 197);
      Icon43.Name = "Icon43";
      Icon43.Size = new Size(14, 18);
      Icon43.TabIndex = 553;
      Icon43.TabStop = false;
      Icon43.Click += Icon_Click;
      // 
      // Icon44
      // 
      Icon44.BorderStyle = BorderStyle.FixedSingle;
      Icon44.Enabled = false;
      Icon44.Location = new Point(176, 197);
      Icon44.Name = "Icon44";
      Icon44.Size = new Size(14, 18);
      Icon44.TabIndex = 554;
      Icon44.TabStop = false;
      Icon44.Click += Icon_Click;
      // 
      // Icon45
      // 
      Icon45.BorderStyle = BorderStyle.FixedSingle;
      Icon45.Enabled = false;
      Icon45.Location = new Point(189, 197);
      Icon45.Name = "Icon45";
      Icon45.Size = new Size(14, 18);
      Icon45.TabIndex = 555;
      Icon45.TabStop = false;
      Icon45.Click += Icon_Click;
      // 
      // Icon46
      // 
      Icon46.BorderStyle = BorderStyle.FixedSingle;
      Icon46.Enabled = false;
      Icon46.Location = new Point(202, 197);
      Icon46.Name = "Icon46";
      Icon46.Size = new Size(14, 18);
      Icon46.TabIndex = 556;
      Icon46.TabStop = false;
      Icon46.Click += Icon_Click;
      // 
      // Icon47
      // 
      Icon47.BorderStyle = BorderStyle.FixedSingle;
      Icon47.Enabled = false;
      Icon47.Location = new Point(215, 197);
      Icon47.Name = "Icon47";
      Icon47.Size = new Size(14, 18);
      Icon47.TabIndex = 557;
      Icon47.TabStop = false;
      Icon47.Click += Icon_Click;
      // 
      // Icon48
      // 
      Icon48.BorderStyle = BorderStyle.FixedSingle;
      Icon48.Enabled = false;
      Icon48.Location = new Point(20, 214);
      Icon48.Name = "Icon48";
      Icon48.Size = new Size(14, 18);
      Icon48.TabIndex = 558;
      Icon48.TabStop = false;
      Icon48.Click += Icon_Click;
      // 
      // Icon49
      // 
      Icon49.BorderStyle = BorderStyle.FixedSingle;
      Icon49.Enabled = false;
      Icon49.Location = new Point(33, 214);
      Icon49.Name = "Icon49";
      Icon49.Size = new Size(14, 18);
      Icon49.TabIndex = 559;
      Icon49.TabStop = false;
      Icon49.Click += Icon_Click;
      // 
      // Icon50
      // 
      Icon50.BorderStyle = BorderStyle.FixedSingle;
      Icon50.Enabled = false;
      Icon50.Location = new Point(46, 214);
      Icon50.Name = "Icon50";
      Icon50.Size = new Size(14, 18);
      Icon50.TabIndex = 560;
      Icon50.TabStop = false;
      Icon50.Click += Icon_Click;
      // 
      // Icon51
      // 
      Icon51.BorderStyle = BorderStyle.FixedSingle;
      Icon51.Enabled = false;
      Icon51.Location = new Point(59, 214);
      Icon51.Name = "Icon51";
      Icon51.Size = new Size(14, 18);
      Icon51.TabIndex = 561;
      Icon51.TabStop = false;
      Icon51.Click += Icon_Click;
      // 
      // Icon52
      // 
      Icon52.BorderStyle = BorderStyle.FixedSingle;
      Icon52.Enabled = false;
      Icon52.Location = new Point(72, 214);
      Icon52.Name = "Icon52";
      Icon52.Size = new Size(14, 18);
      Icon52.TabIndex = 562;
      Icon52.TabStop = false;
      Icon52.Click += Icon_Click;
      // 
      // Icon53
      // 
      Icon53.BorderStyle = BorderStyle.FixedSingle;
      Icon53.Enabled = false;
      Icon53.Location = new Point(85, 214);
      Icon53.Name = "Icon53";
      Icon53.Size = new Size(14, 18);
      Icon53.TabIndex = 563;
      Icon53.TabStop = false;
      Icon53.Click += Icon_Click;
      // 
      // Icon54
      // 
      Icon54.BorderStyle = BorderStyle.FixedSingle;
      Icon54.Enabled = false;
      Icon54.Location = new Point(98, 214);
      Icon54.Name = "Icon54";
      Icon54.Size = new Size(14, 18);
      Icon54.TabIndex = 564;
      Icon54.TabStop = false;
      Icon54.Click += Icon_Click;
      // 
      // Icon55
      // 
      Icon55.BorderStyle = BorderStyle.FixedSingle;
      Icon55.Enabled = false;
      Icon55.Location = new Point(111, 214);
      Icon55.Name = "Icon55";
      Icon55.Size = new Size(14, 18);
      Icon55.TabIndex = 565;
      Icon55.TabStop = false;
      Icon55.Click += Icon_Click;
      // 
      // Icon56
      // 
      Icon56.BorderStyle = BorderStyle.FixedSingle;
      Icon56.Enabled = false;
      Icon56.Location = new Point(124, 214);
      Icon56.Name = "Icon56";
      Icon56.Size = new Size(14, 18);
      Icon56.TabIndex = 566;
      Icon56.TabStop = false;
      Icon56.Click += Icon_Click;
      // 
      // Icon57
      // 
      Icon57.BorderStyle = BorderStyle.FixedSingle;
      Icon57.Enabled = false;
      Icon57.Location = new Point(137, 214);
      Icon57.Name = "Icon57";
      Icon57.Size = new Size(14, 18);
      Icon57.TabIndex = 567;
      Icon57.TabStop = false;
      Icon57.Click += Icon_Click;
      // 
      // Icon58
      // 
      Icon58.BorderStyle = BorderStyle.FixedSingle;
      Icon58.Enabled = false;
      Icon58.Location = new Point(150, 214);
      Icon58.Name = "Icon58";
      Icon58.Size = new Size(14, 18);
      Icon58.TabIndex = 568;
      Icon58.TabStop = false;
      Icon58.Click += Icon_Click;
      // 
      // Icon59
      // 
      Icon59.BorderStyle = BorderStyle.FixedSingle;
      Icon59.Enabled = false;
      Icon59.Location = new Point(163, 214);
      Icon59.Name = "Icon59";
      Icon59.Size = new Size(14, 18);
      Icon59.TabIndex = 569;
      Icon59.TabStop = false;
      Icon59.Click += Icon_Click;
      // 
      // Icon60
      // 
      Icon60.BorderStyle = BorderStyle.FixedSingle;
      Icon60.Enabled = false;
      Icon60.Location = new Point(176, 214);
      Icon60.Name = "Icon60";
      Icon60.Size = new Size(14, 18);
      Icon60.TabIndex = 570;
      Icon60.TabStop = false;
      Icon60.Click += Icon_Click;
      // 
      // Icon61
      // 
      Icon61.BorderStyle = BorderStyle.FixedSingle;
      Icon61.Enabled = false;
      Icon61.Location = new Point(189, 214);
      Icon61.Name = "Icon61";
      Icon61.Size = new Size(14, 18);
      Icon61.TabIndex = 571;
      Icon61.TabStop = false;
      Icon61.Click += Icon_Click;
      // 
      // Icon62
      // 
      Icon62.BorderStyle = BorderStyle.FixedSingle;
      Icon62.Enabled = false;
      Icon62.Location = new Point(202, 214);
      Icon62.Name = "Icon62";
      Icon62.Size = new Size(14, 18);
      Icon62.TabIndex = 572;
      Icon62.TabStop = false;
      Icon62.Click += Icon_Click;
      // 
      // Icon63
      // 
      Icon63.BorderStyle = BorderStyle.FixedSingle;
      Icon63.Enabled = false;
      Icon63.Location = new Point(215, 214);
      Icon63.Name = "Icon63";
      Icon63.Size = new Size(14, 18);
      Icon63.TabIndex = 573;
      Icon63.TabStop = false;
      Icon63.Click += Icon_Click;
      // 
      // Icon64
      // 
      Icon64.BorderStyle = BorderStyle.FixedSingle;
      Icon64.Enabled = false;
      Icon64.Location = new Point(20, 231);
      Icon64.Name = "Icon64";
      Icon64.Size = new Size(14, 18);
      Icon64.TabIndex = 1;
      Icon64.TabStop = false;
      Icon64.Click += Icon_Click;
      // 
      // Icon65
      // 
      Icon65.BorderStyle = BorderStyle.FixedSingle;
      Icon65.Enabled = false;
      Icon65.Location = new Point(33, 231);
      Icon65.Name = "Icon65";
      Icon65.Size = new Size(14, 18);
      Icon65.TabIndex = 2;
      Icon65.TabStop = false;
      Icon65.Click += Icon_Click;
      // 
      // Icon66
      // 
      Icon66.BorderStyle = BorderStyle.FixedSingle;
      Icon66.Enabled = false;
      Icon66.Location = new Point(46, 231);
      Icon66.Name = "Icon66";
      Icon66.Size = new Size(14, 18);
      Icon66.TabIndex = 3;
      Icon66.TabStop = false;
      Icon66.Click += Icon_Click;
      // 
      // Icon67
      // 
      Icon67.BorderStyle = BorderStyle.FixedSingle;
      Icon67.Enabled = false;
      Icon67.Location = new Point(59, 231);
      Icon67.Name = "Icon67";
      Icon67.Size = new Size(14, 18);
      Icon67.TabIndex = 4;
      Icon67.TabStop = false;
      Icon67.Click += Icon_Click;
      // 
      // Icon68
      // 
      Icon68.BorderStyle = BorderStyle.FixedSingle;
      Icon68.Enabled = false;
      Icon68.Location = new Point(72, 231);
      Icon68.Name = "Icon68";
      Icon68.Size = new Size(14, 18);
      Icon68.TabIndex = 5;
      Icon68.TabStop = false;
      Icon68.Click += Icon_Click;
      // 
      // Icon69
      // 
      Icon69.BorderStyle = BorderStyle.FixedSingle;
      Icon69.Enabled = false;
      Icon69.Location = new Point(85, 231);
      Icon69.Name = "Icon69";
      Icon69.Size = new Size(14, 18);
      Icon69.TabIndex = 6;
      Icon69.TabStop = false;
      Icon69.Click += Icon_Click;
      // 
      // Icon70
      // 
      Icon70.BorderStyle = BorderStyle.FixedSingle;
      Icon70.Enabled = false;
      Icon70.Location = new Point(98, 231);
      Icon70.Name = "Icon70";
      Icon70.Size = new Size(14, 18);
      Icon70.TabIndex = 7;
      Icon70.TabStop = false;
      Icon70.Click += Icon_Click;
      // 
      // Icon71
      // 
      Icon71.BorderStyle = BorderStyle.FixedSingle;
      Icon71.Enabled = false;
      Icon71.Location = new Point(111, 231);
      Icon71.Name = "Icon71";
      Icon71.Size = new Size(14, 18);
      Icon71.TabIndex = 8;
      Icon71.TabStop = false;
      Icon71.Click += Icon_Click;
      // 
      // Icon72
      // 
      Icon72.BorderStyle = BorderStyle.FixedSingle;
      Icon72.Enabled = false;
      Icon72.Location = new Point(124, 231);
      Icon72.Name = "Icon72";
      Icon72.Size = new Size(14, 18);
      Icon72.TabIndex = 9;
      Icon72.TabStop = false;
      Icon72.Click += Icon_Click;
      // 
      // Icon73
      // 
      Icon73.BorderStyle = BorderStyle.FixedSingle;
      Icon73.Enabled = false;
      Icon73.Location = new Point(137, 231);
      Icon73.Name = "Icon73";
      Icon73.Size = new Size(14, 18);
      Icon73.TabIndex = 10;
      Icon73.TabStop = false;
      Icon73.Click += Icon_Click;
      // 
      // Icon74
      // 
      Icon74.BorderStyle = BorderStyle.FixedSingle;
      Icon74.Enabled = false;
      Icon74.Location = new Point(150, 231);
      Icon74.Name = "Icon74";
      Icon74.Size = new Size(14, 18);
      Icon74.TabIndex = 552;
      Icon74.TabStop = false;
      Icon74.Click += Icon_Click;
      // 
      // Icon75
      // 
      Icon75.BorderStyle = BorderStyle.FixedSingle;
      Icon75.Enabled = false;
      Icon75.Location = new Point(163, 231);
      Icon75.Name = "Icon75";
      Icon75.Size = new Size(14, 18);
      Icon75.TabIndex = 553;
      Icon75.TabStop = false;
      Icon75.Click += Icon_Click;
      // 
      // Icon76
      // 
      Icon76.BorderStyle = BorderStyle.FixedSingle;
      Icon76.Enabled = false;
      Icon76.Location = new Point(176, 231);
      Icon76.Name = "Icon76";
      Icon76.Size = new Size(14, 18);
      Icon76.TabIndex = 554;
      Icon76.TabStop = false;
      Icon76.Click += Icon_Click;
      // 
      // Icon77
      // 
      Icon77.BorderStyle = BorderStyle.FixedSingle;
      Icon77.Enabled = false;
      Icon77.Location = new Point(189, 231);
      Icon77.Name = "Icon77";
      Icon77.Size = new Size(14, 18);
      Icon77.TabIndex = 555;
      Icon77.TabStop = false;
      Icon77.Click += Icon_Click;
      // 
      // Icon78
      // 
      Icon78.BorderStyle = BorderStyle.FixedSingle;
      Icon78.Enabled = false;
      Icon78.Location = new Point(202, 231);
      Icon78.Name = "Icon78";
      Icon78.Size = new Size(14, 18);
      Icon78.TabIndex = 556;
      Icon78.TabStop = false;
      Icon78.Click += Icon_Click;
      // 
      // Icon79
      // 
      Icon79.BorderStyle = BorderStyle.FixedSingle;
      Icon79.Enabled = false;
      Icon79.Location = new Point(215, 231);
      Icon79.Name = "Icon79";
      Icon79.Size = new Size(14, 18);
      Icon79.TabIndex = 557;
      Icon79.TabStop = false;
      Icon79.Click += Icon_Click;
      // 
      // Icon80
      // 
      Icon80.BorderStyle = BorderStyle.FixedSingle;
      Icon80.Enabled = false;
      Icon80.Location = new Point(20, 248);
      Icon80.Name = "Icon80";
      Icon80.Size = new Size(14, 18);
      Icon80.TabIndex = 558;
      Icon80.TabStop = false;
      Icon80.Click += Icon_Click;
      // 
      // Icon81
      // 
      Icon81.BorderStyle = BorderStyle.FixedSingle;
      Icon81.Enabled = false;
      Icon81.Location = new Point(33, 248);
      Icon81.Name = "Icon81";
      Icon81.Size = new Size(14, 18);
      Icon81.TabIndex = 559;
      Icon81.TabStop = false;
      Icon81.Click += Icon_Click;
      // 
      // Icon82
      // 
      Icon82.BorderStyle = BorderStyle.FixedSingle;
      Icon82.Enabled = false;
      Icon82.Location = new Point(46, 248);
      Icon82.Name = "Icon82";
      Icon82.Size = new Size(14, 18);
      Icon82.TabIndex = 560;
      Icon82.TabStop = false;
      Icon82.Click += Icon_Click;
      // 
      // Icon83
      // 
      Icon83.BorderStyle = BorderStyle.FixedSingle;
      Icon83.Enabled = false;
      Icon83.Location = new Point(59, 248);
      Icon83.Name = "Icon83";
      Icon83.Size = new Size(14, 18);
      Icon83.TabIndex = 561;
      Icon83.TabStop = false;
      Icon83.Click += Icon_Click;
      // 
      // Icon84
      // 
      Icon84.BorderStyle = BorderStyle.FixedSingle;
      Icon84.Enabled = false;
      Icon84.Location = new Point(72, 248);
      Icon84.Name = "Icon84";
      Icon84.Size = new Size(14, 18);
      Icon84.TabIndex = 562;
      Icon84.TabStop = false;
      Icon84.Click += Icon_Click;
      // 
      // Icon85
      // 
      Icon85.BorderStyle = BorderStyle.FixedSingle;
      Icon85.Enabled = false;
      Icon85.Location = new Point(85, 248);
      Icon85.Name = "Icon85";
      Icon85.Size = new Size(14, 18);
      Icon85.TabIndex = 563;
      Icon85.TabStop = false;
      Icon85.Click += Icon_Click;
      // 
      // Icon86
      // 
      Icon86.BorderStyle = BorderStyle.FixedSingle;
      Icon86.Enabled = false;
      Icon86.Location = new Point(98, 248);
      Icon86.Name = "Icon86";
      Icon86.Size = new Size(14, 18);
      Icon86.TabIndex = 564;
      Icon86.TabStop = false;
      Icon86.Click += Icon_Click;
      // 
      // Icon87
      // 
      Icon87.BorderStyle = BorderStyle.FixedSingle;
      Icon87.Enabled = false;
      Icon87.Location = new Point(111, 248);
      Icon87.Name = "Icon87";
      Icon87.Size = new Size(14, 18);
      Icon87.TabIndex = 565;
      Icon87.TabStop = false;
      Icon87.Click += Icon_Click;
      // 
      // Icon88
      // 
      Icon88.BorderStyle = BorderStyle.FixedSingle;
      Icon88.Enabled = false;
      Icon88.Location = new Point(124, 248);
      Icon88.Name = "Icon88";
      Icon88.Size = new Size(14, 18);
      Icon88.TabIndex = 566;
      Icon88.TabStop = false;
      Icon88.Click += Icon_Click;
      // 
      // Icon89
      // 
      Icon89.BorderStyle = BorderStyle.FixedSingle;
      Icon89.Enabled = false;
      Icon89.Location = new Point(137, 248);
      Icon89.Name = "Icon89";
      Icon89.Size = new Size(14, 18);
      Icon89.TabIndex = 567;
      Icon89.TabStop = false;
      Icon89.Click += Icon_Click;
      // 
      // Icon90
      // 
      Icon90.BorderStyle = BorderStyle.FixedSingle;
      Icon90.Enabled = false;
      Icon90.Location = new Point(150, 248);
      Icon90.Name = "Icon90";
      Icon90.Size = new Size(14, 18);
      Icon90.TabIndex = 568;
      Icon90.TabStop = false;
      Icon90.Click += Icon_Click;
      // 
      // Icon91
      // 
      Icon91.BorderStyle = BorderStyle.FixedSingle;
      Icon91.Enabled = false;
      Icon91.Location = new Point(163, 248);
      Icon91.Name = "Icon91";
      Icon91.Size = new Size(14, 18);
      Icon91.TabIndex = 569;
      Icon91.TabStop = false;
      Icon91.Click += Icon_Click;
      // 
      // Icon92
      // 
      Icon92.BorderStyle = BorderStyle.FixedSingle;
      Icon92.Enabled = false;
      Icon92.Location = new Point(176, 248);
      Icon92.Name = "Icon92";
      Icon92.Size = new Size(14, 18);
      Icon92.TabIndex = 570;
      Icon92.TabStop = false;
      Icon92.Click += Icon_Click;
      // 
      // Icon93
      // 
      Icon93.BorderStyle = BorderStyle.FixedSingle;
      Icon93.Enabled = false;
      Icon93.Location = new Point(189, 248);
      Icon93.Name = "Icon93";
      Icon93.Size = new Size(14, 18);
      Icon93.TabIndex = 571;
      Icon93.TabStop = false;
      Icon93.Click += Icon_Click;
      // 
      // Icon94
      // 
      Icon94.BorderStyle = BorderStyle.FixedSingle;
      Icon94.Enabled = false;
      Icon94.Location = new Point(202, 248);
      Icon94.Name = "Icon94";
      Icon94.Size = new Size(14, 18);
      Icon94.TabIndex = 572;
      Icon94.TabStop = false;
      Icon94.Click += Icon_Click;
      // 
      // Icon95
      // 
      Icon95.BorderStyle = BorderStyle.FixedSingle;
      Icon95.Enabled = false;
      Icon95.Location = new Point(215, 248);
      Icon95.Name = "Icon95";
      Icon95.Size = new Size(14, 18);
      Icon95.TabIndex = 573;
      Icon95.TabStop = false;
      Icon95.Click += Icon_Click;
      // 
      // Icon96
      // 
      Icon96.BorderStyle = BorderStyle.FixedSingle;
      Icon96.Enabled = false;
      Icon96.Location = new Point(20, 265);
      Icon96.Name = "Icon96";
      Icon96.Size = new Size(14, 18);
      Icon96.TabIndex = 1;
      Icon96.TabStop = false;
      Icon96.Click += Icon_Click;
      // 
      // Icon97
      // 
      Icon97.BorderStyle = BorderStyle.FixedSingle;
      Icon97.Enabled = false;
      Icon97.Location = new Point(33, 265);
      Icon97.Name = "Icon97";
      Icon97.Size = new Size(14, 18);
      Icon97.TabIndex = 2;
      Icon97.TabStop = false;
      Icon97.Click += Icon_Click;
      // 
      // Icon98
      // 
      Icon98.BorderStyle = BorderStyle.FixedSingle;
      Icon98.Enabled = false;
      Icon98.Location = new Point(46, 265);
      Icon98.Name = "Icon98";
      Icon98.Size = new Size(14, 18);
      Icon98.TabIndex = 3;
      Icon98.TabStop = false;
      Icon98.Click += Icon_Click;
      // 
      // Icon99
      // 
      Icon99.BorderStyle = BorderStyle.FixedSingle;
      Icon99.Enabled = false;
      Icon99.Location = new Point(59, 265);
      Icon99.Name = "Icon99";
      Icon99.Size = new Size(14, 18);
      Icon99.TabIndex = 4;
      Icon99.TabStop = false;
      Icon99.Click += Icon_Click;
      // 
      // Icon100
      // 
      Icon100.BorderStyle = BorderStyle.FixedSingle;
      Icon100.Enabled = false;
      Icon100.Location = new Point(72, 265);
      Icon100.Name = "Icon100";
      Icon100.Size = new Size(14, 18);
      Icon100.TabIndex = 5;
      Icon100.TabStop = false;
      Icon100.Click += Icon_Click;
      // 
      // Icon101
      // 
      Icon101.BorderStyle = BorderStyle.FixedSingle;
      Icon101.Enabled = false;
      Icon101.Location = new Point(85, 265);
      Icon101.Name = "Icon101";
      Icon101.Size = new Size(14, 18);
      Icon101.TabIndex = 6;
      Icon101.TabStop = false;
      Icon101.Click += Icon_Click;
      // 
      // Icon102
      // 
      Icon102.BorderStyle = BorderStyle.FixedSingle;
      Icon102.Enabled = false;
      Icon102.Location = new Point(98, 265);
      Icon102.Name = "Icon102";
      Icon102.Size = new Size(14, 18);
      Icon102.TabIndex = 7;
      Icon102.TabStop = false;
      Icon102.Click += Icon_Click;
      // 
      // Icon103
      // 
      Icon103.BorderStyle = BorderStyle.FixedSingle;
      Icon103.Enabled = false;
      Icon103.Location = new Point(111, 265);
      Icon103.Name = "Icon103";
      Icon103.Size = new Size(14, 18);
      Icon103.TabIndex = 8;
      Icon103.TabStop = false;
      Icon103.Click += Icon_Click;
      // 
      // Icon104
      // 
      Icon104.BorderStyle = BorderStyle.FixedSingle;
      Icon104.Enabled = false;
      Icon104.Location = new Point(124, 265);
      Icon104.Name = "Icon104";
      Icon104.Size = new Size(14, 18);
      Icon104.TabIndex = 9;
      Icon104.TabStop = false;
      Icon104.Click += Icon_Click;
      // 
      // Icon105
      // 
      Icon105.BorderStyle = BorderStyle.FixedSingle;
      Icon105.Enabled = false;
      Icon105.Location = new Point(137, 265);
      Icon105.Name = "Icon105";
      Icon105.Size = new Size(14, 18);
      Icon105.TabIndex = 10;
      Icon105.TabStop = false;
      Icon105.Click += Icon_Click;
      // 
      // Icon106
      // 
      Icon106.BorderStyle = BorderStyle.FixedSingle;
      Icon106.Enabled = false;
      Icon106.Location = new Point(150, 265);
      Icon106.Name = "Icon106";
      Icon106.Size = new Size(14, 18);
      Icon106.TabIndex = 552;
      Icon106.TabStop = false;
      Icon106.Click += Icon_Click;
      // 
      // Icon107
      // 
      Icon107.BorderStyle = BorderStyle.FixedSingle;
      Icon107.Enabled = false;
      Icon107.Location = new Point(163, 265);
      Icon107.Name = "Icon107";
      Icon107.Size = new Size(14, 18);
      Icon107.TabIndex = 553;
      Icon107.TabStop = false;
      Icon107.Click += Icon_Click;
      // 
      // Icon108
      // 
      Icon108.BorderStyle = BorderStyle.FixedSingle;
      Icon108.Enabled = false;
      Icon108.Location = new Point(176, 265);
      Icon108.Name = "Icon108";
      Icon108.Size = new Size(14, 18);
      Icon108.TabIndex = 554;
      Icon108.TabStop = false;
      Icon108.Click += Icon_Click;
      // 
      // Icon109
      // 
      Icon109.BorderStyle = BorderStyle.FixedSingle;
      Icon109.Enabled = false;
      Icon109.Location = new Point(189, 265);
      Icon109.Name = "Icon109";
      Icon109.Size = new Size(14, 18);
      Icon109.TabIndex = 555;
      Icon109.TabStop = false;
      Icon109.Click += Icon_Click;
      // 
      // Icon110
      // 
      Icon110.BorderStyle = BorderStyle.FixedSingle;
      Icon110.Enabled = false;
      Icon110.Location = new Point(202, 265);
      Icon110.Name = "Icon110";
      Icon110.Size = new Size(14, 18);
      Icon110.TabIndex = 556;
      Icon110.TabStop = false;
      Icon110.Click += Icon_Click;
      // 
      // Icon111
      // 
      Icon111.BorderStyle = BorderStyle.FixedSingle;
      Icon111.Enabled = false;
      Icon111.Location = new Point(215, 265);
      Icon111.Name = "Icon111";
      Icon111.Size = new Size(14, 18);
      Icon111.TabIndex = 557;
      Icon111.TabStop = false;
      Icon111.Click += Icon_Click;
      // 
      // Icon112
      // 
      Icon112.BorderStyle = BorderStyle.FixedSingle;
      Icon112.Enabled = false;
      Icon112.Location = new Point(20, 282);
      Icon112.Name = "Icon112";
      Icon112.Size = new Size(14, 18);
      Icon112.TabIndex = 558;
      Icon112.TabStop = false;
      Icon112.Click += Icon_Click;
      // 
      // Icon113
      // 
      Icon113.BorderStyle = BorderStyle.FixedSingle;
      Icon113.Enabled = false;
      Icon113.Location = new Point(33, 282);
      Icon113.Name = "Icon113";
      Icon113.Size = new Size(14, 18);
      Icon113.TabIndex = 559;
      Icon113.TabStop = false;
      Icon113.Click += Icon_Click;
      // 
      // Icon114
      // 
      Icon114.BorderStyle = BorderStyle.FixedSingle;
      Icon114.Enabled = false;
      Icon114.Location = new Point(46, 282);
      Icon114.Name = "Icon114";
      Icon114.Size = new Size(14, 18);
      Icon114.TabIndex = 560;
      Icon114.TabStop = false;
      Icon114.Click += Icon_Click;
      // 
      // Icon115
      // 
      Icon115.BorderStyle = BorderStyle.FixedSingle;
      Icon115.Enabled = false;
      Icon115.Location = new Point(59, 282);
      Icon115.Name = "Icon115";
      Icon115.Size = new Size(14, 18);
      Icon115.TabIndex = 561;
      Icon115.TabStop = false;
      Icon115.Click += Icon_Click;
      // 
      // Icon116
      // 
      Icon116.BorderStyle = BorderStyle.FixedSingle;
      Icon116.Enabled = false;
      Icon116.Location = new Point(72, 282);
      Icon116.Name = "Icon116";
      Icon116.Size = new Size(14, 18);
      Icon116.TabIndex = 562;
      Icon116.TabStop = false;
      Icon116.Click += Icon_Click;
      // 
      // Icon117
      // 
      Icon117.BorderStyle = BorderStyle.FixedSingle;
      Icon117.Enabled = false;
      Icon117.Location = new Point(85, 282);
      Icon117.Name = "Icon117";
      Icon117.Size = new Size(14, 18);
      Icon117.TabIndex = 563;
      Icon117.TabStop = false;
      Icon117.Click += Icon_Click;
      // 
      // Icon118
      // 
      Icon118.BorderStyle = BorderStyle.FixedSingle;
      Icon118.Enabled = false;
      Icon118.Location = new Point(98, 282);
      Icon118.Name = "Icon118";
      Icon118.Size = new Size(14, 18);
      Icon118.TabIndex = 564;
      Icon118.TabStop = false;
      Icon118.Click += Icon_Click;
      // 
      // Icon119
      // 
      Icon119.BorderStyle = BorderStyle.FixedSingle;
      Icon119.Enabled = false;
      Icon119.Location = new Point(111, 282);
      Icon119.Name = "Icon119";
      Icon119.Size = new Size(14, 18);
      Icon119.TabIndex = 565;
      Icon119.TabStop = false;
      Icon119.Click += Icon_Click;
      // 
      // Icon120
      // 
      Icon120.BorderStyle = BorderStyle.FixedSingle;
      Icon120.Enabled = false;
      Icon120.Location = new Point(124, 282);
      Icon120.Name = "Icon120";
      Icon120.Size = new Size(14, 18);
      Icon120.TabIndex = 566;
      Icon120.TabStop = false;
      Icon120.Click += Icon_Click;
      // 
      // Icon121
      // 
      Icon121.BorderStyle = BorderStyle.FixedSingle;
      Icon121.Enabled = false;
      Icon121.Location = new Point(137, 282);
      Icon121.Name = "Icon121";
      Icon121.Size = new Size(14, 18);
      Icon121.TabIndex = 567;
      Icon121.TabStop = false;
      Icon121.Click += Icon_Click;
      // 
      // Icon122
      // 
      Icon122.BorderStyle = BorderStyle.FixedSingle;
      Icon122.Enabled = false;
      Icon122.Location = new Point(150, 282);
      Icon122.Name = "Icon122";
      Icon122.Size = new Size(14, 18);
      Icon122.TabIndex = 568;
      Icon122.TabStop = false;
      Icon122.Click += Icon_Click;
      // 
      // Icon123
      // 
      Icon123.BorderStyle = BorderStyle.FixedSingle;
      Icon123.Enabled = false;
      Icon123.Location = new Point(163, 282);
      Icon123.Name = "Icon123";
      Icon123.Size = new Size(14, 18);
      Icon123.TabIndex = 569;
      Icon123.TabStop = false;
      Icon123.Click += Icon_Click;
      // 
      // Icon124
      // 
      Icon124.BorderStyle = BorderStyle.FixedSingle;
      Icon124.Enabled = false;
      Icon124.Location = new Point(176, 282);
      Icon124.Name = "Icon124";
      Icon124.Size = new Size(14, 18);
      Icon124.TabIndex = 570;
      Icon124.TabStop = false;
      Icon124.Click += Icon_Click;
      // 
      // Icon125
      // 
      Icon125.BorderStyle = BorderStyle.FixedSingle;
      Icon125.Enabled = false;
      Icon125.Location = new Point(189, 282);
      Icon125.Name = "Icon125";
      Icon125.Size = new Size(14, 18);
      Icon125.TabIndex = 571;
      Icon125.TabStop = false;
      Icon125.Click += Icon_Click;
      // 
      // Icon126
      // 
      Icon126.BorderStyle = BorderStyle.FixedSingle;
      Icon126.Enabled = false;
      Icon126.Location = new Point(202, 282);
      Icon126.Name = "Icon126";
      Icon126.Size = new Size(14, 18);
      Icon126.TabIndex = 572;
      Icon126.TabStop = false;
      Icon126.Click += Icon_Click;
      // 
      // Icon127
      // 
      Icon127.BorderStyle = BorderStyle.FixedSingle;
      Icon127.Enabled = false;
      Icon127.Location = new Point(215, 282);
      Icon127.Name = "Icon127";
      Icon127.Size = new Size(14, 18);
      Icon127.TabIndex = 573;
      Icon127.TabStop = false;
      Icon127.Click += Icon_Click;
      // 
      // Icon128
      // 
      Icon128.BorderStyle = BorderStyle.FixedSingle;
      Icon128.Enabled = false;
      Icon128.Location = new Point(20, 299);
      Icon128.Name = "Icon128";
      Icon128.Size = new Size(14, 18);
      Icon128.TabIndex = 1;
      Icon128.TabStop = false;
      Icon128.Click += Icon_Click;
      // 
      // Icon129
      // 
      Icon129.BorderStyle = BorderStyle.FixedSingle;
      Icon129.Enabled = false;
      Icon129.Location = new Point(33, 299);
      Icon129.Name = "Icon129";
      Icon129.Size = new Size(14, 18);
      Icon129.TabIndex = 2;
      Icon129.TabStop = false;
      Icon129.Click += Icon_Click;
      // 
      // Icon130
      // 
      Icon130.BorderStyle = BorderStyle.FixedSingle;
      Icon130.Enabled = false;
      Icon130.Location = new Point(46, 299);
      Icon130.Name = "Icon130";
      Icon130.Size = new Size(14, 18);
      Icon130.TabIndex = 3;
      Icon130.TabStop = false;
      Icon130.Click += Icon_Click;
      // 
      // Icon131
      // 
      Icon131.BorderStyle = BorderStyle.FixedSingle;
      Icon131.Enabled = false;
      Icon131.Location = new Point(59, 299);
      Icon131.Name = "Icon131";
      Icon131.Size = new Size(14, 18);
      Icon131.TabIndex = 4;
      Icon131.TabStop = false;
      Icon131.Click += Icon_Click;
      // 
      // Icon132
      // 
      Icon132.BorderStyle = BorderStyle.FixedSingle;
      Icon132.Enabled = false;
      Icon132.Location = new Point(72, 299);
      Icon132.Name = "Icon132";
      Icon132.Size = new Size(14, 18);
      Icon132.TabIndex = 5;
      Icon132.TabStop = false;
      Icon132.Click += Icon_Click;
      // 
      // Icon133
      // 
      Icon133.BorderStyle = BorderStyle.FixedSingle;
      Icon133.Enabled = false;
      Icon133.Location = new Point(85, 299);
      Icon133.Name = "Icon133";
      Icon133.Size = new Size(14, 18);
      Icon133.TabIndex = 6;
      Icon133.TabStop = false;
      Icon133.Click += Icon_Click;
      // 
      // Icon134
      // 
      Icon134.BorderStyle = BorderStyle.FixedSingle;
      Icon134.Enabled = false;
      Icon134.Location = new Point(98, 299);
      Icon134.Name = "Icon134";
      Icon134.Size = new Size(14, 18);
      Icon134.TabIndex = 7;
      Icon134.TabStop = false;
      Icon134.Click += Icon_Click;
      // 
      // Icon135
      // 
      Icon135.BorderStyle = BorderStyle.FixedSingle;
      Icon135.Enabled = false;
      Icon135.Location = new Point(111, 299);
      Icon135.Name = "Icon135";
      Icon135.Size = new Size(14, 18);
      Icon135.TabIndex = 8;
      Icon135.TabStop = false;
      Icon135.Click += Icon_Click;
      // 
      // Icon136
      // 
      Icon136.BorderStyle = BorderStyle.FixedSingle;
      Icon136.Enabled = false;
      Icon136.Location = new Point(124, 299);
      Icon136.Name = "Icon136";
      Icon136.Size = new Size(14, 18);
      Icon136.TabIndex = 9;
      Icon136.TabStop = false;
      Icon136.Click += Icon_Click;
      // 
      // Icon137
      // 
      Icon137.BorderStyle = BorderStyle.FixedSingle;
      Icon137.Enabled = false;
      Icon137.Location = new Point(137, 299);
      Icon137.Name = "Icon137";
      Icon137.Size = new Size(14, 18);
      Icon137.TabIndex = 10;
      Icon137.TabStop = false;
      Icon137.Click += Icon_Click;
      // 
      // Icon138
      // 
      Icon138.BorderStyle = BorderStyle.FixedSingle;
      Icon138.Enabled = false;
      Icon138.Location = new Point(150, 299);
      Icon138.Name = "Icon138";
      Icon138.Size = new Size(14, 18);
      Icon138.TabIndex = 552;
      Icon138.TabStop = false;
      Icon138.Click += Icon_Click;
      // 
      // Icon139
      // 
      Icon139.BorderStyle = BorderStyle.FixedSingle;
      Icon139.Enabled = false;
      Icon139.Location = new Point(163, 299);
      Icon139.Name = "Icon139";
      Icon139.Size = new Size(14, 18);
      Icon139.TabIndex = 553;
      Icon139.TabStop = false;
      Icon139.Click += Icon_Click;
      // 
      // Icon140
      // 
      Icon140.BorderStyle = BorderStyle.FixedSingle;
      Icon140.Enabled = false;
      Icon140.Location = new Point(176, 299);
      Icon140.Name = "Icon140";
      Icon140.Size = new Size(14, 18);
      Icon140.TabIndex = 554;
      Icon140.TabStop = false;
      Icon140.Click += Icon_Click;
      // 
      // Icon141
      // 
      Icon141.BorderStyle = BorderStyle.FixedSingle;
      Icon141.Enabled = false;
      Icon141.Location = new Point(189, 299);
      Icon141.Name = "Icon141";
      Icon141.Size = new Size(14, 18);
      Icon141.TabIndex = 555;
      Icon141.TabStop = false;
      Icon141.Click += Icon_Click;
      // 
      // Icon142
      // 
      Icon142.BorderStyle = BorderStyle.FixedSingle;
      Icon142.Enabled = false;
      Icon142.Location = new Point(202, 299);
      Icon142.Name = "Icon142";
      Icon142.Size = new Size(14, 18);
      Icon142.TabIndex = 556;
      Icon142.TabStop = false;
      Icon142.Click += Icon_Click;
      // 
      // Icon143
      // 
      Icon143.BorderStyle = BorderStyle.FixedSingle;
      Icon143.Enabled = false;
      Icon143.Location = new Point(215, 299);
      Icon143.Name = "Icon143";
      Icon143.Size = new Size(14, 18);
      Icon143.TabIndex = 557;
      Icon143.TabStop = false;
      Icon143.Click += Icon_Click;
      // 
      // Icon144
      // 
      Icon144.BorderStyle = BorderStyle.FixedSingle;
      Icon144.Enabled = false;
      Icon144.Location = new Point(20, 316);
      Icon144.Name = "Icon144";
      Icon144.Size = new Size(14, 18);
      Icon144.TabIndex = 558;
      Icon144.TabStop = false;
      Icon144.Click += Icon_Click;
      // 
      // Icon145
      // 
      Icon145.BorderStyle = BorderStyle.FixedSingle;
      Icon145.Enabled = false;
      Icon145.Location = new Point(33, 316);
      Icon145.Name = "Icon145";
      Icon145.Size = new Size(14, 18);
      Icon145.TabIndex = 559;
      Icon145.TabStop = false;
      Icon145.Click += Icon_Click;
      // 
      // Icon146
      // 
      Icon146.BorderStyle = BorderStyle.FixedSingle;
      Icon146.Enabled = false;
      Icon146.Location = new Point(46, 316);
      Icon146.Name = "Icon146";
      Icon146.Size = new Size(14, 18);
      Icon146.TabIndex = 560;
      Icon146.TabStop = false;
      Icon146.Click += Icon_Click;
      // 
      // Icon147
      // 
      Icon147.BorderStyle = BorderStyle.FixedSingle;
      Icon147.Enabled = false;
      Icon147.Location = new Point(59, 316);
      Icon147.Name = "Icon147";
      Icon147.Size = new Size(14, 18);
      Icon147.TabIndex = 561;
      Icon147.TabStop = false;
      Icon147.Click += Icon_Click;
      // 
      // Icon148
      // 
      Icon148.BorderStyle = BorderStyle.FixedSingle;
      Icon148.Enabled = false;
      Icon148.Location = new Point(72, 316);
      Icon148.Name = "Icon148";
      Icon148.Size = new Size(14, 18);
      Icon148.TabIndex = 562;
      Icon148.TabStop = false;
      Icon148.Click += Icon_Click;
      // 
      // Icon149
      // 
      Icon149.BorderStyle = BorderStyle.FixedSingle;
      Icon149.Enabled = false;
      Icon149.Location = new Point(85, 316);
      Icon149.Name = "Icon149";
      Icon149.Size = new Size(14, 18);
      Icon149.TabIndex = 563;
      Icon149.TabStop = false;
      Icon149.Click += Icon_Click;
      // 
      // Icon150
      // 
      Icon150.BorderStyle = BorderStyle.FixedSingle;
      Icon150.Enabled = false;
      Icon150.Location = new Point(98, 316);
      Icon150.Name = "Icon150";
      Icon150.Size = new Size(14, 18);
      Icon150.TabIndex = 564;
      Icon150.TabStop = false;
      Icon150.Click += Icon_Click;
      // 
      // Icon151
      // 
      Icon151.BorderStyle = BorderStyle.FixedSingle;
      Icon151.Enabled = false;
      Icon151.Location = new Point(111, 316);
      Icon151.Name = "Icon151";
      Icon151.Size = new Size(14, 18);
      Icon151.TabIndex = 565;
      Icon151.TabStop = false;
      Icon151.Click += Icon_Click;
      // 
      // Icon152
      // 
      Icon152.BorderStyle = BorderStyle.FixedSingle;
      Icon152.Enabled = false;
      Icon152.Location = new Point(124, 316);
      Icon152.Name = "Icon152";
      Icon152.Size = new Size(14, 18);
      Icon152.TabIndex = 566;
      Icon152.TabStop = false;
      Icon152.Click += Icon_Click;
      // 
      // Icon153
      // 
      Icon153.BorderStyle = BorderStyle.FixedSingle;
      Icon153.Enabled = false;
      Icon153.Location = new Point(137, 316);
      Icon153.Name = "Icon153";
      Icon153.Size = new Size(14, 18);
      Icon153.TabIndex = 567;
      Icon153.TabStop = false;
      Icon153.Click += Icon_Click;
      // 
      // Icon154
      // 
      Icon154.BorderStyle = BorderStyle.FixedSingle;
      Icon154.Enabled = false;
      Icon154.Location = new Point(150, 316);
      Icon154.Name = "Icon154";
      Icon154.Size = new Size(14, 18);
      Icon154.TabIndex = 568;
      Icon154.TabStop = false;
      Icon154.Click += Icon_Click;
      // 
      // Icon155
      // 
      Icon155.BorderStyle = BorderStyle.FixedSingle;
      Icon155.Enabled = false;
      Icon155.Location = new Point(163, 316);
      Icon155.Name = "Icon155";
      Icon155.Size = new Size(14, 18);
      Icon155.TabIndex = 569;
      Icon155.TabStop = false;
      Icon155.Click += Icon_Click;
      // 
      // Icon156
      // 
      Icon156.BorderStyle = BorderStyle.FixedSingle;
      Icon156.Enabled = false;
      Icon156.Location = new Point(176, 316);
      Icon156.Name = "Icon156";
      Icon156.Size = new Size(14, 18);
      Icon156.TabIndex = 570;
      Icon156.TabStop = false;
      Icon156.Click += Icon_Click;
      // 
      // Icon157
      // 
      Icon157.BorderStyle = BorderStyle.FixedSingle;
      Icon157.Enabled = false;
      Icon157.Location = new Point(189, 316);
      Icon157.Name = "Icon157";
      Icon157.Size = new Size(14, 18);
      Icon157.TabIndex = 571;
      Icon157.TabStop = false;
      Icon157.Click += Icon_Click;
      // 
      // Icon158
      // 
      Icon158.BorderStyle = BorderStyle.FixedSingle;
      Icon158.Enabled = false;
      Icon158.Location = new Point(202, 316);
      Icon158.Name = "Icon158";
      Icon158.Size = new Size(14, 18);
      Icon158.TabIndex = 572;
      Icon158.TabStop = false;
      Icon158.Click += Icon_Click;
      // 
      // Icon159
      // 
      Icon159.BorderStyle = BorderStyle.FixedSingle;
      Icon159.Enabled = false;
      Icon159.Location = new Point(215, 316);
      Icon159.Name = "Icon159";
      Icon159.Size = new Size(14, 18);
      Icon159.TabIndex = 573;
      Icon159.TabStop = false;
      Icon159.Click += Icon_Click;
      // 
      // Icon160
      // 
      Icon160.BorderStyle = BorderStyle.FixedSingle;
      Icon160.Enabled = false;
      Icon160.Location = new Point(20, 333);
      Icon160.Name = "Icon160";
      Icon160.Size = new Size(14, 18);
      Icon160.TabIndex = 1;
      Icon160.TabStop = false;
      Icon160.Click += Icon_Click;
      // 
      // Icon161
      // 
      Icon161.BorderStyle = BorderStyle.FixedSingle;
      Icon161.Enabled = false;
      Icon161.Location = new Point(33, 333);
      Icon161.Name = "Icon161";
      Icon161.Size = new Size(14, 18);
      Icon161.TabIndex = 2;
      Icon161.TabStop = false;
      Icon161.Click += Icon_Click;
      // 
      // Icon162
      // 
      Icon162.BorderStyle = BorderStyle.FixedSingle;
      Icon162.Enabled = false;
      Icon162.Location = new Point(46, 333);
      Icon162.Name = "Icon162";
      Icon162.Size = new Size(14, 18);
      Icon162.TabIndex = 3;
      Icon162.TabStop = false;
      Icon162.Click += Icon_Click;
      // 
      // Icon163
      // 
      Icon163.BorderStyle = BorderStyle.FixedSingle;
      Icon163.Enabled = false;
      Icon163.Location = new Point(59, 333);
      Icon163.Name = "Icon163";
      Icon163.Size = new Size(14, 18);
      Icon163.TabIndex = 4;
      Icon163.TabStop = false;
      Icon163.Click += Icon_Click;
      // 
      // Icon164
      // 
      Icon164.BorderStyle = BorderStyle.FixedSingle;
      Icon164.Enabled = false;
      Icon164.Location = new Point(72, 333);
      Icon164.Name = "Icon164";
      Icon164.Size = new Size(14, 18);
      Icon164.TabIndex = 5;
      Icon164.TabStop = false;
      Icon164.Click += Icon_Click;
      // 
      // Icon165
      // 
      Icon165.BorderStyle = BorderStyle.FixedSingle;
      Icon165.Enabled = false;
      Icon165.Location = new Point(85, 333);
      Icon165.Name = "Icon165";
      Icon165.Size = new Size(14, 18);
      Icon165.TabIndex = 6;
      Icon165.TabStop = false;
      Icon165.Click += Icon_Click;
      // 
      // Icon166
      // 
      Icon166.BorderStyle = BorderStyle.FixedSingle;
      Icon166.Enabled = false;
      Icon166.Location = new Point(98, 333);
      Icon166.Name = "Icon166";
      Icon166.Size = new Size(14, 18);
      Icon166.TabIndex = 7;
      Icon166.TabStop = false;
      Icon166.Click += Icon_Click;
      // 
      // Icon167
      // 
      Icon167.BorderStyle = BorderStyle.FixedSingle;
      Icon167.Enabled = false;
      Icon167.Location = new Point(111, 333);
      Icon167.Name = "Icon167";
      Icon167.Size = new Size(14, 18);
      Icon167.TabIndex = 8;
      Icon167.TabStop = false;
      Icon167.Click += Icon_Click;
      // 
      // Icon168
      // 
      Icon168.BorderStyle = BorderStyle.FixedSingle;
      Icon168.Enabled = false;
      Icon168.Location = new Point(124, 333);
      Icon168.Name = "Icon168";
      Icon168.Size = new Size(14, 18);
      Icon168.TabIndex = 9;
      Icon168.TabStop = false;
      Icon168.Click += Icon_Click;
      // 
      // Icon169
      // 
      Icon169.BorderStyle = BorderStyle.FixedSingle;
      Icon169.Enabled = false;
      Icon169.Location = new Point(137, 333);
      Icon169.Name = "Icon169";
      Icon169.Size = new Size(14, 18);
      Icon169.TabIndex = 10;
      Icon169.TabStop = false;
      Icon169.Click += Icon_Click;
      // 
      // Icon170
      // 
      Icon170.BorderStyle = BorderStyle.FixedSingle;
      Icon170.Enabled = false;
      Icon170.Location = new Point(150, 333);
      Icon170.Name = "Icon170";
      Icon170.Size = new Size(14, 18);
      Icon170.TabIndex = 552;
      Icon170.TabStop = false;
      Icon170.Click += Icon_Click;
      // 
      // Icon171
      // 
      Icon171.BorderStyle = BorderStyle.FixedSingle;
      Icon171.Enabled = false;
      Icon171.Location = new Point(163, 333);
      Icon171.Name = "Icon171";
      Icon171.Size = new Size(14, 18);
      Icon171.TabIndex = 553;
      Icon171.TabStop = false;
      Icon171.Click += Icon_Click;
      // 
      // Icon172
      // 
      Icon172.BorderStyle = BorderStyle.FixedSingle;
      Icon172.Enabled = false;
      Icon172.Location = new Point(176, 333);
      Icon172.Name = "Icon172";
      Icon172.Size = new Size(14, 18);
      Icon172.TabIndex = 554;
      Icon172.TabStop = false;
      Icon172.Click += Icon_Click;
      // 
      // Icon173
      // 
      Icon173.BorderStyle = BorderStyle.FixedSingle;
      Icon173.Enabled = false;
      Icon173.Location = new Point(189, 333);
      Icon173.Name = "Icon173";
      Icon173.Size = new Size(14, 18);
      Icon173.TabIndex = 555;
      Icon173.TabStop = false;
      Icon173.Click += Icon_Click;
      // 
      // Icon174
      // 
      Icon174.BorderStyle = BorderStyle.FixedSingle;
      Icon174.Enabled = false;
      Icon174.Location = new Point(202, 333);
      Icon174.Name = "Icon174";
      Icon174.Size = new Size(14, 18);
      Icon174.TabIndex = 556;
      Icon174.TabStop = false;
      Icon174.Click += Icon_Click;
      // 
      // Icon175
      // 
      Icon175.BorderStyle = BorderStyle.FixedSingle;
      Icon175.Enabled = false;
      Icon175.Location = new Point(215, 333);
      Icon175.Name = "Icon175";
      Icon175.Size = new Size(14, 18);
      Icon175.TabIndex = 557;
      Icon175.TabStop = false;
      Icon175.Click += Icon_Click;
      // 
      // Icon176
      // 
      Icon176.BorderStyle = BorderStyle.FixedSingle;
      Icon176.Enabled = false;
      Icon176.Location = new Point(20, 350);
      Icon176.Name = "Icon176";
      Icon176.Size = new Size(14, 18);
      Icon176.TabIndex = 558;
      Icon176.TabStop = false;
      Icon176.Click += Icon_Click;
      // 
      // Icon177
      // 
      Icon177.BorderStyle = BorderStyle.FixedSingle;
      Icon177.Enabled = false;
      Icon177.Location = new Point(33, 350);
      Icon177.Name = "Icon177";
      Icon177.Size = new Size(14, 18);
      Icon177.TabIndex = 559;
      Icon177.TabStop = false;
      Icon177.Click += Icon_Click;
      // 
      // Icon178
      // 
      Icon178.BorderStyle = BorderStyle.FixedSingle;
      Icon178.Enabled = false;
      Icon178.Location = new Point(46, 350);
      Icon178.Name = "Icon178";
      Icon178.Size = new Size(14, 18);
      Icon178.TabIndex = 560;
      Icon178.TabStop = false;
      Icon178.Click += Icon_Click;
      // 
      // Icon179
      // 
      Icon179.BorderStyle = BorderStyle.FixedSingle;
      Icon179.Enabled = false;
      Icon179.Location = new Point(59, 350);
      Icon179.Name = "Icon179";
      Icon179.Size = new Size(14, 18);
      Icon179.TabIndex = 561;
      Icon179.TabStop = false;
      Icon179.Click += Icon_Click;
      // 
      // Icon180
      // 
      Icon180.BorderStyle = BorderStyle.FixedSingle;
      Icon180.Enabled = false;
      Icon180.Location = new Point(72, 350);
      Icon180.Name = "Icon180";
      Icon180.Size = new Size(14, 18);
      Icon180.TabIndex = 562;
      Icon180.TabStop = false;
      Icon180.Click += Icon_Click;
      // 
      // Icon181
      // 
      Icon181.BorderStyle = BorderStyle.FixedSingle;
      Icon181.Enabled = false;
      Icon181.Location = new Point(85, 350);
      Icon181.Name = "Icon181";
      Icon181.Size = new Size(14, 18);
      Icon181.TabIndex = 563;
      Icon181.TabStop = false;
      Icon181.Click += Icon_Click;
      // 
      // Icon182
      // 
      Icon182.BorderStyle = BorderStyle.FixedSingle;
      Icon182.Enabled = false;
      Icon182.Location = new Point(98, 350);
      Icon182.Name = "Icon182";
      Icon182.Size = new Size(14, 18);
      Icon182.TabIndex = 564;
      Icon182.TabStop = false;
      Icon182.Click += Icon_Click;
      // 
      // Icon183
      // 
      Icon183.BorderStyle = BorderStyle.FixedSingle;
      Icon183.Enabled = false;
      Icon183.Location = new Point(111, 350);
      Icon183.Name = "Icon183";
      Icon183.Size = new Size(14, 18);
      Icon183.TabIndex = 565;
      Icon183.TabStop = false;
      Icon183.Click += Icon_Click;
      // 
      // Icon184
      // 
      Icon184.BorderStyle = BorderStyle.FixedSingle;
      Icon184.Enabled = false;
      Icon184.Location = new Point(124, 350);
      Icon184.Name = "Icon184";
      Icon184.Size = new Size(14, 18);
      Icon184.TabIndex = 566;
      Icon184.TabStop = false;
      Icon184.Click += Icon_Click;
      // 
      // Icon185
      // 
      Icon185.BorderStyle = BorderStyle.FixedSingle;
      Icon185.Enabled = false;
      Icon185.Location = new Point(137, 350);
      Icon185.Name = "Icon185";
      Icon185.Size = new Size(14, 18);
      Icon185.TabIndex = 567;
      Icon185.TabStop = false;
      Icon185.Click += Icon_Click;
      // 
      // Icon186
      // 
      Icon186.BorderStyle = BorderStyle.FixedSingle;
      Icon186.Enabled = false;
      Icon186.Location = new Point(150, 350);
      Icon186.Name = "Icon186";
      Icon186.Size = new Size(14, 18);
      Icon186.TabIndex = 568;
      Icon186.TabStop = false;
      Icon186.Click += Icon_Click;
      // 
      // Icon187
      // 
      Icon187.BorderStyle = BorderStyle.FixedSingle;
      Icon187.Enabled = false;
      Icon187.Location = new Point(163, 350);
      Icon187.Name = "Icon187";
      Icon187.Size = new Size(14, 18);
      Icon187.TabIndex = 569;
      Icon187.TabStop = false;
      Icon187.Click += Icon_Click;
      // 
      // Icon188
      // 
      Icon188.BorderStyle = BorderStyle.FixedSingle;
      Icon188.Enabled = false;
      Icon188.Location = new Point(176, 350);
      Icon188.Name = "Icon188";
      Icon188.Size = new Size(14, 18);
      Icon188.TabIndex = 570;
      Icon188.TabStop = false;
      Icon188.Click += Icon_Click;
      // 
      // Icon189
      // 
      Icon189.BorderStyle = BorderStyle.FixedSingle;
      Icon189.Enabled = false;
      Icon189.Location = new Point(189, 350);
      Icon189.Name = "Icon189";
      Icon189.Size = new Size(14, 18);
      Icon189.TabIndex = 571;
      Icon189.TabStop = false;
      Icon189.Click += Icon_Click;
      // 
      // Icon190
      // 
      Icon190.BorderStyle = BorderStyle.FixedSingle;
      Icon190.Enabled = false;
      Icon190.Location = new Point(202, 350);
      Icon190.Name = "Icon190";
      Icon190.Size = new Size(14, 18);
      Icon190.TabIndex = 572;
      Icon190.TabStop = false;
      Icon190.Click += Icon_Click;
      // 
      // Icon191
      // 
      Icon191.BorderStyle = BorderStyle.FixedSingle;
      Icon191.Enabled = false;
      Icon191.Location = new Point(215, 350);
      Icon191.Name = "Icon191";
      Icon191.Size = new Size(14, 18);
      Icon191.TabIndex = 573;
      Icon191.TabStop = false;
      Icon191.Click += Icon_Click;
      // 
      // Icon192
      // 
      Icon192.BorderStyle = BorderStyle.FixedSingle;
      Icon192.Enabled = false;
      Icon192.Location = new Point(20, 367);
      Icon192.Name = "Icon192";
      Icon192.Size = new Size(14, 18);
      Icon192.TabIndex = 1;
      Icon192.TabStop = false;
      Icon192.Click += Icon_Click;
      // 
      // Icon193
      // 
      Icon193.BorderStyle = BorderStyle.FixedSingle;
      Icon193.Enabled = false;
      Icon193.Location = new Point(33, 367);
      Icon193.Name = "Icon193";
      Icon193.Size = new Size(14, 18);
      Icon193.TabIndex = 2;
      Icon193.TabStop = false;
      Icon193.Click += Icon_Click;
      // 
      // Icon194
      // 
      Icon194.BorderStyle = BorderStyle.FixedSingle;
      Icon194.Enabled = false;
      Icon194.Location = new Point(46, 367);
      Icon194.Name = "Icon194";
      Icon194.Size = new Size(14, 18);
      Icon194.TabIndex = 3;
      Icon194.TabStop = false;
      Icon194.Click += Icon_Click;
      // 
      // Icon195
      // 
      Icon195.BorderStyle = BorderStyle.FixedSingle;
      Icon195.Enabled = false;
      Icon195.Location = new Point(59, 367);
      Icon195.Name = "Icon195";
      Icon195.Size = new Size(14, 18);
      Icon195.TabIndex = 4;
      Icon195.TabStop = false;
      Icon195.Click += Icon_Click;
      // 
      // Icon196
      // 
      Icon196.BorderStyle = BorderStyle.FixedSingle;
      Icon196.Enabled = false;
      Icon196.Location = new Point(72, 367);
      Icon196.Name = "Icon196";
      Icon196.Size = new Size(14, 18);
      Icon196.TabIndex = 5;
      Icon196.TabStop = false;
      Icon196.Click += Icon_Click;
      // 
      // Icon197
      // 
      Icon197.BorderStyle = BorderStyle.FixedSingle;
      Icon197.Enabled = false;
      Icon197.Location = new Point(85, 367);
      Icon197.Name = "Icon197";
      Icon197.Size = new Size(14, 18);
      Icon197.TabIndex = 6;
      Icon197.TabStop = false;
      Icon197.Click += Icon_Click;
      // 
      // Icon198
      // 
      Icon198.BorderStyle = BorderStyle.FixedSingle;
      Icon198.Enabled = false;
      Icon198.Location = new Point(98, 367);
      Icon198.Name = "Icon198";
      Icon198.Size = new Size(14, 18);
      Icon198.TabIndex = 7;
      Icon198.TabStop = false;
      Icon198.Click += Icon_Click;
      // 
      // Icon199
      // 
      Icon199.BorderStyle = BorderStyle.FixedSingle;
      Icon199.Enabled = false;
      Icon199.Location = new Point(111, 367);
      Icon199.Name = "Icon199";
      Icon199.Size = new Size(14, 18);
      Icon199.TabIndex = 8;
      Icon199.TabStop = false;
      Icon199.Click += Icon_Click;
      // 
      // Icon200
      // 
      Icon200.BorderStyle = BorderStyle.FixedSingle;
      Icon200.Enabled = false;
      Icon200.Location = new Point(124, 367);
      Icon200.Name = "Icon200";
      Icon200.Size = new Size(14, 18);
      Icon200.TabIndex = 9;
      Icon200.TabStop = false;
      Icon200.Click += Icon_Click;
      // 
      // Icon201
      // 
      Icon201.BorderStyle = BorderStyle.FixedSingle;
      Icon201.Enabled = false;
      Icon201.Location = new Point(137, 367);
      Icon201.Name = "Icon201";
      Icon201.Size = new Size(14, 18);
      Icon201.TabIndex = 10;
      Icon201.TabStop = false;
      Icon201.Click += Icon_Click;
      // 
      // Icon202
      // 
      Icon202.BorderStyle = BorderStyle.FixedSingle;
      Icon202.Enabled = false;
      Icon202.Location = new Point(150, 367);
      Icon202.Name = "Icon202";
      Icon202.Size = new Size(14, 18);
      Icon202.TabIndex = 552;
      Icon202.TabStop = false;
      Icon202.Click += Icon_Click;
      // 
      // Icon203
      // 
      Icon203.BorderStyle = BorderStyle.FixedSingle;
      Icon203.Enabled = false;
      Icon203.Location = new Point(163, 367);
      Icon203.Name = "Icon203";
      Icon203.Size = new Size(14, 18);
      Icon203.TabIndex = 553;
      Icon203.TabStop = false;
      Icon203.Click += Icon_Click;
      // 
      // Icon204
      // 
      Icon204.BorderStyle = BorderStyle.FixedSingle;
      Icon204.Enabled = false;
      Icon204.Location = new Point(176, 367);
      Icon204.Name = "Icon204";
      Icon204.Size = new Size(14, 18);
      Icon204.TabIndex = 554;
      Icon204.TabStop = false;
      Icon204.Click += Icon_Click;
      // 
      // Icon205
      // 
      Icon205.BorderStyle = BorderStyle.FixedSingle;
      Icon205.Enabled = false;
      Icon205.Location = new Point(189, 367);
      Icon205.Name = "Icon205";
      Icon205.Size = new Size(14, 18);
      Icon205.TabIndex = 555;
      Icon205.TabStop = false;
      Icon205.Click += Icon_Click;
      // 
      // Icon206
      // 
      Icon206.BorderStyle = BorderStyle.FixedSingle;
      Icon206.Enabled = false;
      Icon206.Location = new Point(202, 367);
      Icon206.Name = "Icon206";
      Icon206.Size = new Size(14, 18);
      Icon206.TabIndex = 556;
      Icon206.TabStop = false;
      Icon206.Click += Icon_Click;
      // 
      // Icon207
      // 
      Icon207.BorderStyle = BorderStyle.FixedSingle;
      Icon207.Enabled = false;
      Icon207.Location = new Point(215, 367);
      Icon207.Name = "Icon207";
      Icon207.Size = new Size(14, 18);
      Icon207.TabIndex = 557;
      Icon207.TabStop = false;
      Icon207.Click += Icon_Click;
      // 
      // Icon208
      // 
      Icon208.BorderStyle = BorderStyle.FixedSingle;
      Icon208.Enabled = false;
      Icon208.Location = new Point(20, 384);
      Icon208.Name = "Icon208";
      Icon208.Size = new Size(14, 18);
      Icon208.TabIndex = 558;
      Icon208.TabStop = false;
      Icon208.Click += Icon_Click;
      // 
      // Icon209
      // 
      Icon209.BorderStyle = BorderStyle.FixedSingle;
      Icon209.Enabled = false;
      Icon209.Location = new Point(33, 384);
      Icon209.Name = "Icon209";
      Icon209.Size = new Size(14, 18);
      Icon209.TabIndex = 559;
      Icon209.TabStop = false;
      Icon209.Click += Icon_Click;
      // 
      // Icon210
      // 
      Icon210.BorderStyle = BorderStyle.FixedSingle;
      Icon210.Enabled = false;
      Icon210.Location = new Point(46, 384);
      Icon210.Name = "Icon210";
      Icon210.Size = new Size(14, 18);
      Icon210.TabIndex = 560;
      Icon210.TabStop = false;
      Icon210.Click += Icon_Click;
      // 
      // Icon211
      // 
      Icon211.BorderStyle = BorderStyle.FixedSingle;
      Icon211.Enabled = false;
      Icon211.Location = new Point(59, 384);
      Icon211.Name = "Icon211";
      Icon211.Size = new Size(14, 18);
      Icon211.TabIndex = 561;
      Icon211.TabStop = false;
      Icon211.Click += Icon_Click;
      // 
      // Icon212
      // 
      Icon212.BorderStyle = BorderStyle.FixedSingle;
      Icon212.Enabled = false;
      Icon212.Location = new Point(72, 384);
      Icon212.Name = "Icon212";
      Icon212.Size = new Size(14, 18);
      Icon212.TabIndex = 562;
      Icon212.TabStop = false;
      Icon212.Click += Icon_Click;
      // 
      // Icon213
      // 
      Icon213.BorderStyle = BorderStyle.FixedSingle;
      Icon213.Enabled = false;
      Icon213.Location = new Point(85, 384);
      Icon213.Name = "Icon213";
      Icon213.Size = new Size(14, 18);
      Icon213.TabIndex = 563;
      Icon213.TabStop = false;
      Icon213.Click += Icon_Click;
      // 
      // Icon214
      // 
      Icon214.BorderStyle = BorderStyle.FixedSingle;
      Icon214.Enabled = false;
      Icon214.Location = new Point(98, 384);
      Icon214.Name = "Icon214";
      Icon214.Size = new Size(14, 18);
      Icon214.TabIndex = 564;
      Icon214.TabStop = false;
      Icon214.Click += Icon_Click;
      // 
      // Icon215
      // 
      Icon215.BorderStyle = BorderStyle.FixedSingle;
      Icon215.Enabled = false;
      Icon215.Location = new Point(111, 384);
      Icon215.Name = "Icon215";
      Icon215.Size = new Size(14, 18);
      Icon215.TabIndex = 565;
      Icon215.TabStop = false;
      Icon215.Click += Icon_Click;
      // 
      // Icon216
      // 
      Icon216.BorderStyle = BorderStyle.FixedSingle;
      Icon216.Enabled = false;
      Icon216.Location = new Point(124, 384);
      Icon216.Name = "Icon216";
      Icon216.Size = new Size(14, 18);
      Icon216.TabIndex = 566;
      Icon216.TabStop = false;
      Icon216.Click += Icon_Click;
      // 
      // Icon217
      // 
      Icon217.BorderStyle = BorderStyle.FixedSingle;
      Icon217.Enabled = false;
      Icon217.Location = new Point(137, 384);
      Icon217.Name = "Icon217";
      Icon217.Size = new Size(14, 18);
      Icon217.TabIndex = 567;
      Icon217.TabStop = false;
      Icon217.Click += Icon_Click;
      // 
      // Icon218
      // 
      Icon218.BorderStyle = BorderStyle.FixedSingle;
      Icon218.Enabled = false;
      Icon218.Location = new Point(150, 384);
      Icon218.Name = "Icon218";
      Icon218.Size = new Size(14, 18);
      Icon218.TabIndex = 568;
      Icon218.TabStop = false;
      Icon218.Click += Icon_Click;
      // 
      // Icon219
      // 
      Icon219.BorderStyle = BorderStyle.FixedSingle;
      Icon219.Enabled = false;
      Icon219.Location = new Point(163, 384);
      Icon219.Name = "Icon219";
      Icon219.Size = new Size(14, 18);
      Icon219.TabIndex = 569;
      Icon219.TabStop = false;
      Icon219.Click += Icon_Click;
      // 
      // Icon220
      // 
      Icon220.BorderStyle = BorderStyle.FixedSingle;
      Icon220.Enabled = false;
      Icon220.Location = new Point(176, 384);
      Icon220.Name = "Icon220";
      Icon220.Size = new Size(14, 18);
      Icon220.TabIndex = 570;
      Icon220.TabStop = false;
      Icon220.Click += Icon_Click;
      // 
      // Icon221
      // 
      Icon221.BorderStyle = BorderStyle.FixedSingle;
      Icon221.Enabled = false;
      Icon221.Location = new Point(189, 384);
      Icon221.Name = "Icon221";
      Icon221.Size = new Size(14, 18);
      Icon221.TabIndex = 571;
      Icon221.TabStop = false;
      Icon221.Click += Icon_Click;
      // 
      // Icon222
      // 
      Icon222.BorderStyle = BorderStyle.FixedSingle;
      Icon222.Enabled = false;
      Icon222.Location = new Point(202, 384);
      Icon222.Name = "Icon222";
      Icon222.Size = new Size(14, 18);
      Icon222.TabIndex = 572;
      Icon222.TabStop = false;
      Icon222.Click += Icon_Click;
      // 
      // Icon223
      // 
      Icon223.BorderStyle = BorderStyle.FixedSingle;
      Icon223.Enabled = false;
      Icon223.Location = new Point(215, 384);
      Icon223.Name = "Icon223";
      Icon223.Size = new Size(14, 18);
      Icon223.TabIndex = 573;
      Icon223.TabStop = false;
      Icon223.Click += Icon_Click;
      // 
      // Icon224
      // 
      Icon224.BorderStyle = BorderStyle.FixedSingle;
      Icon224.Enabled = false;
      Icon224.Location = new Point(20, 401);
      Icon224.Name = "Icon224";
      Icon224.Size = new Size(14, 18);
      Icon224.TabIndex = 1;
      Icon224.TabStop = false;
      Icon224.Click += Icon_Click;
      // 
      // Icon225
      // 
      Icon225.BorderStyle = BorderStyle.FixedSingle;
      Icon225.Enabled = false;
      Icon225.Location = new Point(33, 401);
      Icon225.Name = "Icon225";
      Icon225.Size = new Size(14, 18);
      Icon225.TabIndex = 2;
      Icon225.TabStop = false;
      Icon225.Click += Icon_Click;
      // 
      // Icon226
      // 
      Icon226.BorderStyle = BorderStyle.FixedSingle;
      Icon226.Enabled = false;
      Icon226.Location = new Point(46, 401);
      Icon226.Name = "Icon226";
      Icon226.Size = new Size(14, 18);
      Icon226.TabIndex = 3;
      Icon226.TabStop = false;
      Icon226.Click += Icon_Click;
      // 
      // Icon227
      // 
      Icon227.BorderStyle = BorderStyle.FixedSingle;
      Icon227.Enabled = false;
      Icon227.Location = new Point(59, 401);
      Icon227.Name = "Icon227";
      Icon227.Size = new Size(14, 18);
      Icon227.TabIndex = 4;
      Icon227.TabStop = false;
      Icon227.Click += Icon_Click;
      // 
      // Icon228
      // 
      Icon228.BorderStyle = BorderStyle.FixedSingle;
      Icon228.Enabled = false;
      Icon228.Location = new Point(72, 401);
      Icon228.Name = "Icon228";
      Icon228.Size = new Size(14, 18);
      Icon228.TabIndex = 5;
      Icon228.TabStop = false;
      Icon228.Click += Icon_Click;
      // 
      // Icon229
      // 
      Icon229.BorderStyle = BorderStyle.FixedSingle;
      Icon229.Enabled = false;
      Icon229.Location = new Point(85, 401);
      Icon229.Name = "Icon229";
      Icon229.Size = new Size(14, 18);
      Icon229.TabIndex = 6;
      Icon229.TabStop = false;
      Icon229.Click += Icon_Click;
      // 
      // Icon230
      // 
      Icon230.BorderStyle = BorderStyle.FixedSingle;
      Icon230.Enabled = false;
      Icon230.Location = new Point(98, 401);
      Icon230.Name = "Icon230";
      Icon230.Size = new Size(14, 18);
      Icon230.TabIndex = 7;
      Icon230.TabStop = false;
      Icon230.Click += Icon_Click;
      // 
      // Icon231
      // 
      Icon231.BorderStyle = BorderStyle.FixedSingle;
      Icon231.Enabled = false;
      Icon231.Location = new Point(111, 401);
      Icon231.Name = "Icon231";
      Icon231.Size = new Size(14, 18);
      Icon231.TabIndex = 8;
      Icon231.TabStop = false;
      Icon231.Click += Icon_Click;
      // 
      // Icon232
      // 
      Icon232.BorderStyle = BorderStyle.FixedSingle;
      Icon232.Enabled = false;
      Icon232.Location = new Point(124, 401);
      Icon232.Name = "Icon232";
      Icon232.Size = new Size(14, 18);
      Icon232.TabIndex = 9;
      Icon232.TabStop = false;
      Icon232.Click += Icon_Click;
      // 
      // Icon233
      // 
      Icon233.BorderStyle = BorderStyle.FixedSingle;
      Icon233.Enabled = false;
      Icon233.Location = new Point(137, 401);
      Icon233.Name = "Icon233";
      Icon233.Size = new Size(14, 18);
      Icon233.TabIndex = 10;
      Icon233.TabStop = false;
      Icon233.Click += Icon_Click;
      // 
      // Icon234
      // 
      Icon234.BorderStyle = BorderStyle.FixedSingle;
      Icon234.Enabled = false;
      Icon234.Location = new Point(150, 401);
      Icon234.Name = "Icon234";
      Icon234.Size = new Size(14, 18);
      Icon234.TabIndex = 552;
      Icon234.TabStop = false;
      Icon234.Click += Icon_Click;
      // 
      // Icon235
      // 
      Icon235.BorderStyle = BorderStyle.FixedSingle;
      Icon235.Enabled = false;
      Icon235.Location = new Point(163, 401);
      Icon235.Name = "Icon235";
      Icon235.Size = new Size(14, 18);
      Icon235.TabIndex = 553;
      Icon235.TabStop = false;
      Icon235.Click += Icon_Click;
      // 
      // Icon236
      // 
      Icon236.BorderStyle = BorderStyle.FixedSingle;
      Icon236.Enabled = false;
      Icon236.Location = new Point(176, 401);
      Icon236.Name = "Icon236";
      Icon236.Size = new Size(14, 18);
      Icon236.TabIndex = 554;
      Icon236.TabStop = false;
      Icon236.Click += Icon_Click;
      // 
      // Icon237
      // 
      Icon237.BorderStyle = BorderStyle.FixedSingle;
      Icon237.Enabled = false;
      Icon237.Location = new Point(189, 401);
      Icon237.Name = "Icon237";
      Icon237.Size = new Size(14, 18);
      Icon237.TabIndex = 555;
      Icon237.TabStop = false;
      Icon237.Click += Icon_Click;
      // 
      // Icon238
      // 
      Icon238.BorderStyle = BorderStyle.FixedSingle;
      Icon238.Enabled = false;
      Icon238.Location = new Point(202, 401);
      Icon238.Name = "Icon238";
      Icon238.Size = new Size(14, 18);
      Icon238.TabIndex = 556;
      Icon238.TabStop = false;
      Icon238.Click += Icon_Click;
      // 
      // Icon239
      // 
      Icon239.BorderStyle = BorderStyle.FixedSingle;
      Icon239.Enabled = false;
      Icon239.Location = new Point(215, 401);
      Icon239.Name = "Icon239";
      Icon239.Size = new Size(14, 18);
      Icon239.TabIndex = 557;
      Icon239.TabStop = false;
      Icon239.Click += Icon_Click;
      // 
      // Icon240
      // 
      Icon240.BorderStyle = BorderStyle.FixedSingle;
      Icon240.Enabled = false;
      Icon240.Location = new Point(20, 418);
      Icon240.Name = "Icon240";
      Icon240.Size = new Size(14, 18);
      Icon240.TabIndex = 558;
      Icon240.TabStop = false;
      Icon240.Click += Icon_Click;
      // 
      // Icon241
      // 
      Icon241.BorderStyle = BorderStyle.FixedSingle;
      Icon241.Enabled = false;
      Icon241.Location = new Point(33, 418);
      Icon241.Name = "Icon241";
      Icon241.Size = new Size(14, 18);
      Icon241.TabIndex = 559;
      Icon241.TabStop = false;
      Icon241.Click += Icon_Click;
      // 
      // Icon242
      // 
      Icon242.BorderStyle = BorderStyle.FixedSingle;
      Icon242.Enabled = false;
      Icon242.Location = new Point(46, 418);
      Icon242.Name = "Icon242";
      Icon242.Size = new Size(14, 18);
      Icon242.TabIndex = 560;
      Icon242.TabStop = false;
      Icon242.Click += Icon_Click;
      // 
      // Icon243
      // 
      Icon243.BorderStyle = BorderStyle.FixedSingle;
      Icon243.Enabled = false;
      Icon243.Location = new Point(59, 418);
      Icon243.Name = "Icon243";
      Icon243.Size = new Size(14, 18);
      Icon243.TabIndex = 561;
      Icon243.TabStop = false;
      Icon243.Click += Icon_Click;
      // 
      // Icon244
      // 
      Icon244.BorderStyle = BorderStyle.FixedSingle;
      Icon244.Enabled = false;
      Icon244.Location = new Point(72, 418);
      Icon244.Name = "Icon244";
      Icon244.Size = new Size(14, 18);
      Icon244.TabIndex = 562;
      Icon244.TabStop = false;
      Icon244.Click += Icon_Click;
      // 
      // Icon245
      // 
      Icon245.BorderStyle = BorderStyle.FixedSingle;
      Icon245.Enabled = false;
      Icon245.Location = new Point(85, 418);
      Icon245.Name = "Icon245";
      Icon245.Size = new Size(14, 18);
      Icon245.TabIndex = 563;
      Icon245.TabStop = false;
      Icon245.Click += Icon_Click;
      // 
      // Icon246
      // 
      Icon246.BorderStyle = BorderStyle.FixedSingle;
      Icon246.Enabled = false;
      Icon246.Location = new Point(98, 418);
      Icon246.Name = "Icon246";
      Icon246.Size = new Size(14, 18);
      Icon246.TabIndex = 564;
      Icon246.TabStop = false;
      Icon246.Click += Icon_Click;
      // 
      // Icon247
      // 
      Icon247.BorderStyle = BorderStyle.FixedSingle;
      Icon247.Enabled = false;
      Icon247.Location = new Point(111, 418);
      Icon247.Name = "Icon247";
      Icon247.Size = new Size(14, 18);
      Icon247.TabIndex = 565;
      Icon247.TabStop = false;
      Icon247.Click += Icon_Click;
      // 
      // Icon248
      // 
      Icon248.BorderStyle = BorderStyle.FixedSingle;
      Icon248.Enabled = false;
      Icon248.Location = new Point(124, 418);
      Icon248.Name = "Icon248";
      Icon248.Size = new Size(14, 18);
      Icon248.TabIndex = 566;
      Icon248.TabStop = false;
      Icon248.Click += Icon_Click;
      // 
      // Icon249
      // 
      Icon249.BorderStyle = BorderStyle.FixedSingle;
      Icon249.Enabled = false;
      Icon249.Location = new Point(137, 418);
      Icon249.Name = "Icon249";
      Icon249.Size = new Size(14, 18);
      Icon249.TabIndex = 567;
      Icon249.TabStop = false;
      Icon249.Click += Icon_Click;
      // 
      // Icon250
      // 
      Icon250.BorderStyle = BorderStyle.FixedSingle;
      Icon250.Enabled = false;
      Icon250.Location = new Point(150, 418);
      Icon250.Name = "Icon250";
      Icon250.Size = new Size(14, 18);
      Icon250.TabIndex = 568;
      Icon250.TabStop = false;
      Icon250.Click += Icon_Click;
      // 
      // Icon251
      // 
      Icon251.BorderStyle = BorderStyle.FixedSingle;
      Icon251.Enabled = false;
      Icon251.Location = new Point(163, 418);
      Icon251.Name = "Icon251";
      Icon251.Size = new Size(14, 18);
      Icon251.TabIndex = 569;
      Icon251.TabStop = false;
      Icon251.Click += Icon_Click;
      // 
      // Icon252
      // 
      Icon252.BorderStyle = BorderStyle.FixedSingle;
      Icon252.Enabled = false;
      Icon252.Location = new Point(176, 418);
      Icon252.Name = "Icon252";
      Icon252.Size = new Size(14, 18);
      Icon252.TabIndex = 570;
      Icon252.TabStop = false;
      Icon252.Click += Icon_Click;
      // 
      // Icon253
      // 
      Icon253.BorderStyle = BorderStyle.FixedSingle;
      Icon253.Enabled = false;
      Icon253.Location = new Point(189, 418);
      Icon253.Name = "Icon253";
      Icon253.Size = new Size(14, 18);
      Icon253.TabIndex = 571;
      Icon253.TabStop = false;
      Icon253.Click += Icon_Click;
      // 
      // Icon254
      // 
      Icon254.BorderStyle = BorderStyle.FixedSingle;
      Icon254.Enabled = false;
      Icon254.Location = new Point(202, 418);
      Icon254.Name = "Icon254";
      Icon254.Size = new Size(14, 18);
      Icon254.TabIndex = 572;
      Icon254.TabStop = false;
      Icon254.Click += Icon_Click;
      // 
      // Icon255
      // 
      Icon255.BorderStyle = BorderStyle.FixedSingle;
      Icon255.Enabled = false;
      Icon255.Location = new Point(215, 418);
      Icon255.Name = "Icon255";
      Icon255.Size = new Size(14, 18);
      Icon255.TabIndex = 573;
      Icon255.TabStop = false;
      Icon255.Click += Icon_Click;
      // 
      // iMONLCDg_FontEdit
      // 
      AutoScaleDimensions = new SizeF(6F, 13F);
      ClientSize = new Size(392, 481);
      Controls.Add(cmdExit);
      Controls.Add(cmdSave);
      Controls.Add(cmdLoadCustom);
      Controls.Add(cmdLoadInternal);
      Controls.Add(Icon0);
      Controls.Add(Icon1);
      Controls.Add(Icon2);
      Controls.Add(Icon3);
      Controls.Add(Icon4);
      Controls.Add(Icon5);
      Controls.Add(Icon6);
      Controls.Add(Icon7);
      Controls.Add(Icon8);
      Controls.Add(Icon9);
      Controls.Add(Icon10);
      Controls.Add(Icon11);
      Controls.Add(Icon12);
      Controls.Add(Icon13);
      Controls.Add(Icon14);
      Controls.Add(Icon15);
      Controls.Add(Icon16);
      Controls.Add(Icon17);
      Controls.Add(Icon18);
      Controls.Add(Icon19);
      Controls.Add(Icon20);
      Controls.Add(Icon21);
      Controls.Add(Icon22);
      Controls.Add(Icon23);
      Controls.Add(Icon24);
      Controls.Add(Icon25);
      Controls.Add(Icon26);
      Controls.Add(Icon27);
      Controls.Add(Icon28);
      Controls.Add(Icon29);
      Controls.Add(Icon30);
      Controls.Add(Icon31);
      Controls.Add(Icon32);
      Controls.Add(Icon33);
      Controls.Add(Icon34);
      Controls.Add(Icon35);
      Controls.Add(Icon36);
      Controls.Add(Icon37);
      Controls.Add(Icon38);
      Controls.Add(Icon39);
      Controls.Add(Icon40);
      Controls.Add(Icon41);
      Controls.Add(Icon42);
      Controls.Add(Icon43);
      Controls.Add(Icon44);
      Controls.Add(Icon45);
      Controls.Add(Icon46);
      Controls.Add(Icon47);
      Controls.Add(Icon48);
      Controls.Add(Icon49);
      Controls.Add(Icon50);
      Controls.Add(Icon51);
      Controls.Add(Icon52);
      Controls.Add(Icon53);
      Controls.Add(Icon54);
      Controls.Add(Icon55);
      Controls.Add(Icon56);
      Controls.Add(Icon57);
      Controls.Add(Icon58);
      Controls.Add(Icon59);
      Controls.Add(Icon60);
      Controls.Add(Icon61);
      Controls.Add(Icon62);
      Controls.Add(Icon63);
      Controls.Add(Icon64);
      Controls.Add(Icon65);
      Controls.Add(Icon66);
      Controls.Add(Icon67);
      Controls.Add(Icon68);
      Controls.Add(Icon69);
      Controls.Add(Icon70);
      Controls.Add(Icon71);
      Controls.Add(Icon72);
      Controls.Add(Icon73);
      Controls.Add(Icon74);
      Controls.Add(Icon75);
      Controls.Add(Icon76);
      Controls.Add(Icon77);
      Controls.Add(Icon78);
      Controls.Add(Icon79);
      Controls.Add(Icon80);
      Controls.Add(Icon81);
      Controls.Add(Icon82);
      Controls.Add(Icon83);
      Controls.Add(Icon84);
      Controls.Add(Icon85);
      Controls.Add(Icon86);
      Controls.Add(Icon87);
      Controls.Add(Icon88);
      Controls.Add(Icon89);
      Controls.Add(Icon90);
      Controls.Add(Icon91);
      Controls.Add(Icon92);
      Controls.Add(Icon93);
      Controls.Add(Icon94);
      Controls.Add(Icon95);
      Controls.Add(Icon96);
      Controls.Add(Icon97);
      Controls.Add(Icon98);
      Controls.Add(Icon99);
      Controls.Add(Icon100);
      Controls.Add(Icon101);
      Controls.Add(Icon102);
      Controls.Add(Icon103);
      Controls.Add(Icon104);
      Controls.Add(Icon105);
      Controls.Add(Icon106);
      Controls.Add(Icon107);
      Controls.Add(Icon108);
      Controls.Add(Icon109);
      Controls.Add(Icon110);
      Controls.Add(Icon111);
      Controls.Add(Icon112);
      Controls.Add(Icon113);
      Controls.Add(Icon114);
      Controls.Add(Icon115);
      Controls.Add(Icon116);
      Controls.Add(Icon117);
      Controls.Add(Icon118);
      Controls.Add(Icon119);
      Controls.Add(Icon120);
      Controls.Add(Icon121);
      Controls.Add(Icon122);
      Controls.Add(Icon123);
      Controls.Add(Icon124);
      Controls.Add(Icon125);
      Controls.Add(Icon126);
      Controls.Add(Icon127);
      Controls.Add(Icon128);
      Controls.Add(Icon129);
      Controls.Add(Icon130);
      Controls.Add(Icon131);
      Controls.Add(Icon132);
      Controls.Add(Icon133);
      Controls.Add(Icon134);
      Controls.Add(Icon135);
      Controls.Add(Icon136);
      Controls.Add(Icon137);
      Controls.Add(Icon138);
      Controls.Add(Icon139);
      Controls.Add(Icon140);
      Controls.Add(Icon141);
      Controls.Add(Icon142);
      Controls.Add(Icon143);
      Controls.Add(Icon144);
      Controls.Add(Icon145);
      Controls.Add(Icon146);
      Controls.Add(Icon147);
      Controls.Add(Icon148);
      Controls.Add(Icon149);
      Controls.Add(Icon150);
      Controls.Add(Icon151);
      Controls.Add(Icon152);
      Controls.Add(Icon153);
      Controls.Add(Icon154);
      Controls.Add(Icon155);
      Controls.Add(Icon156);
      Controls.Add(Icon157);
      Controls.Add(Icon158);
      Controls.Add(Icon159);
      Controls.Add(Icon160);
      Controls.Add(Icon161);
      Controls.Add(Icon162);
      Controls.Add(Icon163);
      Controls.Add(Icon164);
      Controls.Add(Icon165);
      Controls.Add(Icon166);
      Controls.Add(Icon167);
      Controls.Add(Icon168);
      Controls.Add(Icon169);
      Controls.Add(Icon170);
      Controls.Add(Icon171);
      Controls.Add(Icon172);
      Controls.Add(Icon173);
      Controls.Add(Icon174);
      Controls.Add(Icon175);
      Controls.Add(Icon176);
      Controls.Add(Icon177);
      Controls.Add(Icon178);
      Controls.Add(Icon179);
      Controls.Add(Icon180);
      Controls.Add(Icon181);
      Controls.Add(Icon182);
      Controls.Add(Icon183);
      Controls.Add(Icon184);
      Controls.Add(Icon185);
      Controls.Add(Icon186);
      Controls.Add(Icon187);
      Controls.Add(Icon188);
      Controls.Add(Icon189);
      Controls.Add(Icon190);
      Controls.Add(Icon191);
      Controls.Add(Icon192);
      Controls.Add(Icon193);
      Controls.Add(Icon194);
      Controls.Add(Icon195);
      Controls.Add(Icon196);
      Controls.Add(Icon197);
      Controls.Add(Icon198);
      Controls.Add(Icon199);
      Controls.Add(Icon200);
      Controls.Add(Icon201);
      Controls.Add(Icon202);
      Controls.Add(Icon203);
      Controls.Add(Icon204);
      Controls.Add(Icon205);
      Controls.Add(Icon206);
      Controls.Add(Icon207);
      Controls.Add(Icon208);
      Controls.Add(Icon209);
      Controls.Add(Icon210);
      Controls.Add(Icon211);
      Controls.Add(Icon212);
      Controls.Add(Icon213);
      Controls.Add(Icon214);
      Controls.Add(Icon215);
      Controls.Add(Icon216);
      Controls.Add(Icon217);
      Controls.Add(Icon218);
      Controls.Add(Icon219);
      Controls.Add(Icon220);
      Controls.Add(Icon221);
      Controls.Add(Icon222);
      Controls.Add(Icon223);
      Controls.Add(Icon224);
      Controls.Add(Icon225);
      Controls.Add(Icon226);
      Controls.Add(Icon227);
      Controls.Add(Icon228);
      Controls.Add(Icon229);
      Controls.Add(Icon230);
      Controls.Add(Icon231);
      Controls.Add(Icon232);
      Controls.Add(Icon233);
      Controls.Add(Icon234);
      Controls.Add(Icon235);
      Controls.Add(Icon236);
      Controls.Add(Icon237);
      Controls.Add(Icon238);
      Controls.Add(Icon239);
      Controls.Add(Icon240);
      Controls.Add(Icon241);
      Controls.Add(Icon242);
      Controls.Add(Icon243);
      Controls.Add(Icon244);
      Controls.Add(Icon245);
      Controls.Add(Icon246);
      Controls.Add(Icon247);
      Controls.Add(Icon248);
      Controls.Add(Icon249);
      Controls.Add(Icon250);
      Controls.Add(Icon251);
      Controls.Add(Icon252);
      Controls.Add(Icon253);
      Controls.Add(Icon254);
      Controls.Add(Icon255);
      Controls.Add(panel1);
      Name = "iMONLCDg_FontEdit";
      StartPosition = FormStartPosition.CenterParent;
      Text = "iMONLCDg_FontEdit";
      panel1.ResumeLayout(false);
      panel1.PerformLayout();
      ((ISupportInitialize)(Icon0)).EndInit();
      ((ISupportInitialize)(Icon1)).EndInit();
      ((ISupportInitialize)(Icon2)).EndInit();
      ((ISupportInitialize)(Icon3)).EndInit();
      ((ISupportInitialize)(Icon4)).EndInit();
      ((ISupportInitialize)(Icon5)).EndInit();
      ((ISupportInitialize)(Icon6)).EndInit();
      ((ISupportInitialize)(Icon7)).EndInit();
      ((ISupportInitialize)(Icon8)).EndInit();
      ((ISupportInitialize)(Icon9)).EndInit();
      ((ISupportInitialize)(Icon10)).EndInit();
      ((ISupportInitialize)(Icon11)).EndInit();
      ((ISupportInitialize)(Icon12)).EndInit();
      ((ISupportInitialize)(Icon13)).EndInit();
      ((ISupportInitialize)(Icon14)).EndInit();
      ((ISupportInitialize)(Icon15)).EndInit();
      ((ISupportInitialize)(Icon16)).EndInit();
      ((ISupportInitialize)(Icon17)).EndInit();
      ((ISupportInitialize)(Icon18)).EndInit();
      ((ISupportInitialize)(Icon19)).EndInit();
      ((ISupportInitialize)(Icon20)).EndInit();
      ((ISupportInitialize)(Icon21)).EndInit();
      ((ISupportInitialize)(Icon22)).EndInit();
      ((ISupportInitialize)(Icon23)).EndInit();
      ((ISupportInitialize)(Icon24)).EndInit();
      ((ISupportInitialize)(Icon25)).EndInit();
      ((ISupportInitialize)(Icon26)).EndInit();
      ((ISupportInitialize)(Icon27)).EndInit();
      ((ISupportInitialize)(Icon28)).EndInit();
      ((ISupportInitialize)(Icon29)).EndInit();
      ((ISupportInitialize)(Icon30)).EndInit();
      ((ISupportInitialize)(Icon31)).EndInit();
      ((ISupportInitialize)(Icon32)).EndInit();
      ((ISupportInitialize)(Icon33)).EndInit();
      ((ISupportInitialize)(Icon34)).EndInit();
      ((ISupportInitialize)(Icon35)).EndInit();
      ((ISupportInitialize)(Icon36)).EndInit();
      ((ISupportInitialize)(Icon37)).EndInit();
      ((ISupportInitialize)(Icon38)).EndInit();
      ((ISupportInitialize)(Icon39)).EndInit();
      ((ISupportInitialize)(Icon40)).EndInit();
      ((ISupportInitialize)(Icon41)).EndInit();
      ((ISupportInitialize)(Icon42)).EndInit();
      ((ISupportInitialize)(Icon43)).EndInit();
      ((ISupportInitialize)(Icon44)).EndInit();
      ((ISupportInitialize)(Icon45)).EndInit();
      ((ISupportInitialize)(Icon46)).EndInit();
      ((ISupportInitialize)(Icon47)).EndInit();
      ((ISupportInitialize)(Icon48)).EndInit();
      ((ISupportInitialize)(Icon49)).EndInit();
      ((ISupportInitialize)(Icon50)).EndInit();
      ((ISupportInitialize)(Icon51)).EndInit();
      ((ISupportInitialize)(Icon52)).EndInit();
      ((ISupportInitialize)(Icon53)).EndInit();
      ((ISupportInitialize)(Icon54)).EndInit();
      ((ISupportInitialize)(Icon55)).EndInit();
      ((ISupportInitialize)(Icon56)).EndInit();
      ((ISupportInitialize)(Icon57)).EndInit();
      ((ISupportInitialize)(Icon58)).EndInit();
      ((ISupportInitialize)(Icon59)).EndInit();
      ((ISupportInitialize)(Icon60)).EndInit();
      ((ISupportInitialize)(Icon61)).EndInit();
      ((ISupportInitialize)(Icon62)).EndInit();
      ((ISupportInitialize)(Icon63)).EndInit();
      ((ISupportInitialize)(Icon64)).EndInit();
      ((ISupportInitialize)(Icon65)).EndInit();
      ((ISupportInitialize)(Icon66)).EndInit();
      ((ISupportInitialize)(Icon67)).EndInit();
      ((ISupportInitialize)(Icon68)).EndInit();
      ((ISupportInitialize)(Icon69)).EndInit();
      ((ISupportInitialize)(Icon70)).EndInit();
      ((ISupportInitialize)(Icon71)).EndInit();
      ((ISupportInitialize)(Icon72)).EndInit();
      ((ISupportInitialize)(Icon73)).EndInit();
      ((ISupportInitialize)(Icon74)).EndInit();
      ((ISupportInitialize)(Icon75)).EndInit();
      ((ISupportInitialize)(Icon76)).EndInit();
      ((ISupportInitialize)(Icon77)).EndInit();
      ((ISupportInitialize)(Icon78)).EndInit();
      ((ISupportInitialize)(Icon79)).EndInit();
      ((ISupportInitialize)(Icon80)).EndInit();
      ((ISupportInitialize)(Icon81)).EndInit();
      ((ISupportInitialize)(Icon82)).EndInit();
      ((ISupportInitialize)(Icon83)).EndInit();
      ((ISupportInitialize)(Icon84)).EndInit();
      ((ISupportInitialize)(Icon85)).EndInit();
      ((ISupportInitialize)(Icon86)).EndInit();
      ((ISupportInitialize)(Icon87)).EndInit();
      ((ISupportInitialize)(Icon88)).EndInit();
      ((ISupportInitialize)(Icon89)).EndInit();
      ((ISupportInitialize)(Icon90)).EndInit();
      ((ISupportInitialize)(Icon91)).EndInit();
      ((ISupportInitialize)(Icon92)).EndInit();
      ((ISupportInitialize)(Icon93)).EndInit();
      ((ISupportInitialize)(Icon94)).EndInit();
      ((ISupportInitialize)(Icon95)).EndInit();
      ((ISupportInitialize)(Icon96)).EndInit();
      ((ISupportInitialize)(Icon97)).EndInit();
      ((ISupportInitialize)(Icon98)).EndInit();
      ((ISupportInitialize)(Icon99)).EndInit();
      ((ISupportInitialize)(Icon100)).EndInit();
      ((ISupportInitialize)(Icon101)).EndInit();
      ((ISupportInitialize)(Icon102)).EndInit();
      ((ISupportInitialize)(Icon103)).EndInit();
      ((ISupportInitialize)(Icon104)).EndInit();
      ((ISupportInitialize)(Icon105)).EndInit();
      ((ISupportInitialize)(Icon106)).EndInit();
      ((ISupportInitialize)(Icon107)).EndInit();
      ((ISupportInitialize)(Icon108)).EndInit();
      ((ISupportInitialize)(Icon109)).EndInit();
      ((ISupportInitialize)(Icon110)).EndInit();
      ((ISupportInitialize)(Icon111)).EndInit();
      ((ISupportInitialize)(Icon112)).EndInit();
      ((ISupportInitialize)(Icon113)).EndInit();
      ((ISupportInitialize)(Icon114)).EndInit();
      ((ISupportInitialize)(Icon115)).EndInit();
      ((ISupportInitialize)(Icon116)).EndInit();
      ((ISupportInitialize)(Icon117)).EndInit();
      ((ISupportInitialize)(Icon118)).EndInit();
      ((ISupportInitialize)(Icon119)).EndInit();
      ((ISupportInitialize)(Icon120)).EndInit();
      ((ISupportInitialize)(Icon121)).EndInit();
      ((ISupportInitialize)(Icon122)).EndInit();
      ((ISupportInitialize)(Icon123)).EndInit();
      ((ISupportInitialize)(Icon124)).EndInit();
      ((ISupportInitialize)(Icon125)).EndInit();
      ((ISupportInitialize)(Icon126)).EndInit();
      ((ISupportInitialize)(Icon127)).EndInit();
      ((ISupportInitialize)(Icon128)).EndInit();
      ((ISupportInitialize)(Icon129)).EndInit();
      ((ISupportInitialize)(Icon130)).EndInit();
      ((ISupportInitialize)(Icon131)).EndInit();
      ((ISupportInitialize)(Icon132)).EndInit();
      ((ISupportInitialize)(Icon133)).EndInit();
      ((ISupportInitialize)(Icon134)).EndInit();
      ((ISupportInitialize)(Icon135)).EndInit();
      ((ISupportInitialize)(Icon136)).EndInit();
      ((ISupportInitialize)(Icon137)).EndInit();
      ((ISupportInitialize)(Icon138)).EndInit();
      ((ISupportInitialize)(Icon139)).EndInit();
      ((ISupportInitialize)(Icon140)).EndInit();
      ((ISupportInitialize)(Icon141)).EndInit();
      ((ISupportInitialize)(Icon142)).EndInit();
      ((ISupportInitialize)(Icon143)).EndInit();
      ((ISupportInitialize)(Icon144)).EndInit();
      ((ISupportInitialize)(Icon145)).EndInit();
      ((ISupportInitialize)(Icon146)).EndInit();
      ((ISupportInitialize)(Icon147)).EndInit();
      ((ISupportInitialize)(Icon148)).EndInit();
      ((ISupportInitialize)(Icon149)).EndInit();
      ((ISupportInitialize)(Icon150)).EndInit();
      ((ISupportInitialize)(Icon151)).EndInit();
      ((ISupportInitialize)(Icon152)).EndInit();
      ((ISupportInitialize)(Icon153)).EndInit();
      ((ISupportInitialize)(Icon154)).EndInit();
      ((ISupportInitialize)(Icon155)).EndInit();
      ((ISupportInitialize)(Icon156)).EndInit();
      ((ISupportInitialize)(Icon157)).EndInit();
      ((ISupportInitialize)(Icon158)).EndInit();
      ((ISupportInitialize)(Icon159)).EndInit();
      ((ISupportInitialize)(Icon160)).EndInit();
      ((ISupportInitialize)(Icon161)).EndInit();
      ((ISupportInitialize)(Icon162)).EndInit();
      ((ISupportInitialize)(Icon163)).EndInit();
      ((ISupportInitialize)(Icon164)).EndInit();
      ((ISupportInitialize)(Icon165)).EndInit();
      ((ISupportInitialize)(Icon166)).EndInit();
      ((ISupportInitialize)(Icon167)).EndInit();
      ((ISupportInitialize)(Icon168)).EndInit();
      ((ISupportInitialize)(Icon169)).EndInit();
      ((ISupportInitialize)(Icon170)).EndInit();
      ((ISupportInitialize)(Icon171)).EndInit();
      ((ISupportInitialize)(Icon172)).EndInit();
      ((ISupportInitialize)(Icon173)).EndInit();
      ((ISupportInitialize)(Icon174)).EndInit();
      ((ISupportInitialize)(Icon175)).EndInit();
      ((ISupportInitialize)(Icon176)).EndInit();
      ((ISupportInitialize)(Icon177)).EndInit();
      ((ISupportInitialize)(Icon178)).EndInit();
      ((ISupportInitialize)(Icon179)).EndInit();
      ((ISupportInitialize)(Icon180)).EndInit();
      ((ISupportInitialize)(Icon181)).EndInit();
      ((ISupportInitialize)(Icon182)).EndInit();
      ((ISupportInitialize)(Icon183)).EndInit();
      ((ISupportInitialize)(Icon184)).EndInit();
      ((ISupportInitialize)(Icon185)).EndInit();
      ((ISupportInitialize)(Icon186)).EndInit();
      ((ISupportInitialize)(Icon187)).EndInit();
      ((ISupportInitialize)(Icon188)).EndInit();
      ((ISupportInitialize)(Icon189)).EndInit();
      ((ISupportInitialize)(Icon190)).EndInit();
      ((ISupportInitialize)(Icon191)).EndInit();
      ((ISupportInitialize)(Icon192)).EndInit();
      ((ISupportInitialize)(Icon193)).EndInit();
      ((ISupportInitialize)(Icon194)).EndInit();
      ((ISupportInitialize)(Icon195)).EndInit();
      ((ISupportInitialize)(Icon196)).EndInit();
      ((ISupportInitialize)(Icon197)).EndInit();
      ((ISupportInitialize)(Icon198)).EndInit();
      ((ISupportInitialize)(Icon199)).EndInit();
      ((ISupportInitialize)(Icon200)).EndInit();
      ((ISupportInitialize)(Icon201)).EndInit();
      ((ISupportInitialize)(Icon202)).EndInit();
      ((ISupportInitialize)(Icon203)).EndInit();
      ((ISupportInitialize)(Icon204)).EndInit();
      ((ISupportInitialize)(Icon205)).EndInit();
      ((ISupportInitialize)(Icon206)).EndInit();
      ((ISupportInitialize)(Icon207)).EndInit();
      ((ISupportInitialize)(Icon208)).EndInit();
      ((ISupportInitialize)(Icon209)).EndInit();
      ((ISupportInitialize)(Icon210)).EndInit();
      ((ISupportInitialize)(Icon211)).EndInit();
      ((ISupportInitialize)(Icon212)).EndInit();
      ((ISupportInitialize)(Icon213)).EndInit();
      ((ISupportInitialize)(Icon214)).EndInit();
      ((ISupportInitialize)(Icon215)).EndInit();
      ((ISupportInitialize)(Icon216)).EndInit();
      ((ISupportInitialize)(Icon217)).EndInit();
      ((ISupportInitialize)(Icon218)).EndInit();
      ((ISupportInitialize)(Icon219)).EndInit();
      ((ISupportInitialize)(Icon220)).EndInit();
      ((ISupportInitialize)(Icon221)).EndInit();
      ((ISupportInitialize)(Icon222)).EndInit();
      ((ISupportInitialize)(Icon223)).EndInit();
      ((ISupportInitialize)(Icon224)).EndInit();
      ((ISupportInitialize)(Icon225)).EndInit();
      ((ISupportInitialize)(Icon226)).EndInit();
      ((ISupportInitialize)(Icon227)).EndInit();
      ((ISupportInitialize)(Icon228)).EndInit();
      ((ISupportInitialize)(Icon229)).EndInit();
      ((ISupportInitialize)(Icon230)).EndInit();
      ((ISupportInitialize)(Icon231)).EndInit();
      ((ISupportInitialize)(Icon232)).EndInit();
      ((ISupportInitialize)(Icon233)).EndInit();
      ((ISupportInitialize)(Icon234)).EndInit();
      ((ISupportInitialize)(Icon235)).EndInit();
      ((ISupportInitialize)(Icon236)).EndInit();
      ((ISupportInitialize)(Icon237)).EndInit();
      ((ISupportInitialize)(Icon238)).EndInit();
      ((ISupportInitialize)(Icon239)).EndInit();
      ((ISupportInitialize)(Icon240)).EndInit();
      ((ISupportInitialize)(Icon241)).EndInit();
      ((ISupportInitialize)(Icon242)).EndInit();
      ((ISupportInitialize)(Icon243)).EndInit();
      ((ISupportInitialize)(Icon244)).EndInit();
      ((ISupportInitialize)(Icon245)).EndInit();
      ((ISupportInitialize)(Icon246)).EndInit();
      ((ISupportInitialize)(Icon247)).EndInit();
      ((ISupportInitialize)(Icon248)).EndInit();
      ((ISupportInitialize)(Icon249)).EndInit();
      ((ISupportInitialize)(Icon250)).EndInit();
      ((ISupportInitialize)(Icon251)).EndInit();
      ((ISupportInitialize)(Icon252)).EndInit();
      ((ISupportInitialize)(Icon253)).EndInit();
      ((ISupportInitialize)(Icon254)).EndInit();
      ((ISupportInitialize)(Icon255)).EndInit();
      ResumeLayout(false);
    }
Exemplo n.º 47
0
 private void InitializeComponent()
 {
     lblR         = new Label();
     label1       = new Label();
     label2       = new Label();
     numB         = new NumericUpDown();
     numG         = new NumericUpDown();
     numR         = new NumericUpDown();
     numH         = new NumericUpDown();
     numS         = new NumericUpDown();
     numV         = new NumericUpDown();
     label3       = new Label();
     label4       = new Label();
     label5       = new Label();
     numA         = new NumericUpDown();
     lblA         = new Label();
     panel1       = new Panel();
     pnlColorBox  = new BufferedPanel();
     pnlColorBar  = new BufferedPanel();
     panel2       = new Panel();
     pnlAlpha     = new BufferedPanel();
     panel3       = new Panel();
     txtColorCode = new TextBox();
     ((System.ComponentModel.ISupportInitialize)numB).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numG).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numR).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numH).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numS).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numV).BeginInit();
     ((System.ComponentModel.ISupportInitialize)numA).BeginInit();
     panel1.SuspendLayout();
     panel2.SuspendLayout();
     panel3.SuspendLayout();
     SuspendLayout();
     //
     // lblR
     //
     lblR.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     lblR.Location  = new Drawing.Point(3, 77);
     lblR.Name      = "lblR";
     lblR.Size      = new Drawing.Size(19, 20);
     lblR.TabIndex  = 2;
     lblR.Text      = "R";
     lblR.TextAlign = ContentAlignment.MiddleRight;
     //
     // label1
     //
     label1.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     label1.Location  = new Drawing.Point(3, 115);
     label1.Name      = "label1";
     label1.Size      = new Drawing.Size(19, 20);
     label1.TabIndex  = 3;
     label1.Text      = "B";
     label1.TextAlign = ContentAlignment.MiddleRight;
     //
     // label2
     //
     label2.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     label2.Location  = new Drawing.Point(3, 96);
     label2.Name      = "label2";
     label2.Size      = new Drawing.Size(19, 20);
     label2.TabIndex  = 4;
     label2.Text      = "G";
     label2.TextAlign = ContentAlignment.MiddleRight;
     //
     // numB
     //
     numB.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numB.Location = new Drawing.Point(23, 116);
     numB.Maximum  = new decimal(new int[]
     {
         255,
         0,
         0,
         0
     });
     numB.Name     = "numB";
     numB.Size     = new Drawing.Size(47, 20);
     numB.TabIndex = 5;
     //
     // numG
     //
     numG.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numG.Location = new Drawing.Point(23, 97);
     numG.Maximum  = new decimal(new int[]
     {
         255,
         0,
         0,
         0
     });
     numG.Name     = "numG";
     numG.Size     = new Drawing.Size(47, 20);
     numG.TabIndex = 6;
     //
     // numR
     //
     numR.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numR.Location = new Drawing.Point(23, 78);
     numR.Maximum  = new decimal(new int[]
     {
         255,
         0,
         0,
         0
     });
     numR.Name     = "numR";
     numR.Size     = new Drawing.Size(47, 20);
     numR.TabIndex = 7;
     //
     // numH
     //
     numH.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numH.Location = new Drawing.Point(23, 6);
     numH.Maximum  = new decimal(new int[]
     {
         360,
         0,
         0,
         0
     });
     numH.Name     = "numH";
     numH.Size     = new Drawing.Size(47, 20);
     numH.TabIndex = 13;
     //
     // numS
     //
     numS.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numS.Location = new Drawing.Point(23, 25);
     numS.Name     = "numS";
     numS.Size     = new Drawing.Size(47, 20);
     numS.TabIndex = 12;
     //
     // numV
     //
     numV.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numV.Location = new Drawing.Point(23, 44);
     numV.Name     = "numV";
     numV.Size     = new Drawing.Size(47, 20);
     numV.TabIndex = 11;
     //
     // label3
     //
     label3.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     label3.Location  = new Drawing.Point(3, 24);
     label3.Name      = "label3";
     label3.Size      = new Drawing.Size(19, 20);
     label3.TabIndex  = 10;
     label3.Text      = "S";
     label3.TextAlign = ContentAlignment.MiddleRight;
     //
     // label4
     //
     label4.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     label4.Location  = new Drawing.Point(3, 43);
     label4.Name      = "label4";
     label4.Size      = new Drawing.Size(19, 20);
     label4.TabIndex  = 9;
     label4.Text      = "V";
     label4.TextAlign = ContentAlignment.MiddleRight;
     //
     // label5
     //
     label5.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     label5.Location  = new Drawing.Point(3, 5);
     label5.Name      = "label5";
     label5.Size      = new Drawing.Size(19, 20);
     label5.TabIndex  = 8;
     label5.Text      = "H";
     label5.TextAlign = ContentAlignment.MiddleRight;
     //
     // numA
     //
     numA.Anchor = AnchorStyles.Top | AnchorStyles.Left
                   | AnchorStyles.Right;
     numA.Location = new Drawing.Point(23, 135);
     numA.Maximum  = new decimal(new int[]
     {
         255,
         0,
         0,
         0
     });
     numA.Name     = "numA";
     numA.Size     = new Drawing.Size(47, 20);
     numA.TabIndex = 15;
     numA.Value    = new decimal(new int[]
     {
         255,
         0,
         0,
         0
     });
     //
     // lblA
     //
     lblA.Font      = new Font("Lucida Console", 9.75F, Drawing.FontStyle.Regular, GraphicsUnit.Point, 0);
     lblA.Location  = new Drawing.Point(3, 134);
     lblA.Name      = "lblA";
     lblA.Size      = new Drawing.Size(19, 20);
     lblA.TabIndex  = 14;
     lblA.Text      = "A";
     lblA.TextAlign = ContentAlignment.MiddleRight;
     //
     // panel1
     //
     panel1.Controls.Add(pnlColorBox);
     panel1.Controls.Add(pnlColorBar);
     panel1.Dock     = DockStyle.Left;
     panel1.Location = new Drawing.Point(0, 0);
     panel1.Name     = "panel1";
     panel1.Size     = new Drawing.Size(217, 187);
     panel1.TabIndex = 16;
     //
     // pnlColorBox
     //
     pnlColorBox.BackColor  = Color.Transparent;
     pnlColorBox.Location   = new Drawing.Point(3, 3);
     pnlColorBox.Name       = "pnlColorBox";
     pnlColorBox.Size       = new Drawing.Size(180, 180);
     pnlColorBox.TabIndex   = 0;
     pnlColorBox.Paint     += new PaintEventHandler(pnlColorBox_Paint);
     pnlColorBox.MouseDown += new MouseEventHandler(pnlColorBox_MouseDown);
     pnlColorBox.MouseMove += new MouseEventHandler(pnlColorBox_MouseMove);
     pnlColorBox.MouseUp   += new MouseEventHandler(pnlColorBox_MouseUp);
     //
     // pnlColorBar
     //
     pnlColorBar.BackColor  = Color.Transparent;
     pnlColorBar.Location   = new Drawing.Point(189, 3);
     pnlColorBar.Name       = "pnlColorBar";
     pnlColorBar.Size       = new Drawing.Size(25, 180);
     pnlColorBar.TabIndex   = 1;
     pnlColorBar.Paint     += new PaintEventHandler(pnlColorBar_Paint);
     pnlColorBar.MouseDown += new MouseEventHandler(pnlColorBar_MouseDown);
     pnlColorBar.MouseMove += new MouseEventHandler(pnlColorBar_MouseMove);
     pnlColorBar.MouseUp   += new MouseEventHandler(pnlColorBar_MouseUp);
     //
     // panel2
     //
     panel2.Controls.Add(pnlAlpha);
     panel2.Dock     = DockStyle.Left;
     panel2.Location = new Drawing.Point(217, 0);
     panel2.Name     = "panel2";
     panel2.Size     = new Drawing.Size(20, 187);
     panel2.TabIndex = 17;
     //
     // pnlAlpha
     //
     pnlAlpha.Anchor = AnchorStyles.Top | AnchorStyles.Left
                       | AnchorStyles.Right;
     pnlAlpha.BackColor  = Color.Transparent;
     pnlAlpha.Location   = new Drawing.Point(3, 3);
     pnlAlpha.Name       = "pnlAlpha";
     pnlAlpha.Size       = new Drawing.Size(14, 180);
     pnlAlpha.TabIndex   = 2;
     pnlAlpha.Paint     += new PaintEventHandler(pnlAlpha_Paint);
     pnlAlpha.MouseDown += new MouseEventHandler(pnlAlpha_MouseDown);
     pnlAlpha.MouseMove += new MouseEventHandler(pnlAlpha_MouseMove);
     pnlAlpha.MouseUp   += new MouseEventHandler(pnlAlpha_MouseUp);
     //
     // panel3
     //
     panel3.Controls.Add(txtColorCode);
     panel3.Controls.Add(numH);
     panel3.Controls.Add(lblR);
     panel3.Controls.Add(label1);
     panel3.Controls.Add(numA);
     panel3.Controls.Add(label2);
     panel3.Controls.Add(lblA);
     panel3.Controls.Add(numB);
     panel3.Controls.Add(numG);
     panel3.Controls.Add(numS);
     panel3.Controls.Add(numR);
     panel3.Controls.Add(numV);
     panel3.Controls.Add(label5);
     panel3.Controls.Add(label3);
     panel3.Controls.Add(label4);
     panel3.Dock     = DockStyle.Fill;
     panel3.Location = new Drawing.Point(237, 0);
     panel3.Name     = "panel3";
     panel3.Size     = new Drawing.Size(77, 187);
     panel3.TabIndex = 18;
     //
     // txtColorCode
     //
     txtColorCode.Location     = new Drawing.Point(6, 161);
     txtColorCode.Name         = "txtColorCode";
     txtColorCode.Size         = new Drawing.Size(64, 20);
     txtColorCode.TabIndex     = 16;
     txtColorCode.Text         = "000000FF";
     txtColorCode.TextAlign    = HorizontalAlignment.Center;
     txtColorCode.TextChanged += txtColorCode_TextChanged;
     txtColorCode.KeyPress    += new KeyPressEventHandler(txtColorCode_KeyPress);
     //
     // GoodColorControl
     //
     Controls.Add(panel3);
     Controls.Add(panel2);
     Controls.Add(panel1);
     MinimumSize = new Drawing.Size(310, 187);
     Name        = "GoodColorControl";
     Size        = new Drawing.Size(314, 187);
     ((System.ComponentModel.ISupportInitialize)numB).EndInit();
     ((System.ComponentModel.ISupportInitialize)numG).EndInit();
     ((System.ComponentModel.ISupportInitialize)numR).EndInit();
     ((System.ComponentModel.ISupportInitialize)numH).EndInit();
     ((System.ComponentModel.ISupportInitialize)numS).EndInit();
     ((System.ComponentModel.ISupportInitialize)numV).EndInit();
     ((System.ComponentModel.ISupportInitialize)numA).EndInit();
     panel1.ResumeLayout(false);
     panel2.ResumeLayout(false);
     panel3.ResumeLayout(false);
     panel3.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 48
0
        public void SaveBitmap(System.Windows.Forms.Panel CtrlToSave, string fileName)
        {
            Point oldPosition = new Point(this.HorizontalScroll.Value, this.VerticalScroll.Value);

            CtrlToSave.PerformLayout();

            ComposedImage ci = new ComposedImage(new Size(CtrlToSave.DisplayRectangle.Width, CtrlToSave.DisplayRectangle.Height));

            int visibleWidth        = CtrlToSave.Width - (CtrlToSave.VerticalScroll.Visible ? SystemInformation.VerticalScrollBarWidth : 0);
            int visibleHeightBuffer = CtrlToSave.Height - (CtrlToSave.HorizontalScroll.Visible ? SystemInformation.HorizontalScrollBarHeight : 0);

            //int Iteration = 0;

            for (int x = CtrlToSave.DisplayRectangle.Width - visibleWidth; x >= 0; x -= visibleWidth)
            {
                int visibleHeight = visibleHeightBuffer;

                for (int y = CtrlToSave.DisplayRectangle.Height - visibleHeight; y >= 0; y -= visibleHeight)
                {
                    CtrlToSave.HorizontalScroll.Value = x;
                    CtrlToSave.VerticalScroll.Value   = y;

                    CtrlToSave.PerformLayout();

                    Bitmap bmp = new Bitmap(visibleWidth, visibleHeight);

                    CtrlToSave.DrawToBitmap(bmp, new Rectangle(0, 0, visibleWidth, visibleHeight));
                    ci.images.Add(new ImagePart(new Point(x, y), bmp));

                    ///Show image parts
                    //using (Graphics grD = Graphics.FromImage(bmp))
                    //{
                    //    Iteration++;
                    //    grD.DrawRectangle(Pens.Blue,new Rectangle(0,0,bmp.Width-1,bmp.Height-1));
                    //grD.DrawString("x:"+x+",y:"+y+",W:"+visibleWidth+",H:"+visibleHeight + " I:" + Iteration,new Font("Segoe UI",9f),Brushes.Red,new Point(2,2));
                    //}

                    if (y - visibleHeight < (CtrlToSave.DisplayRectangle.Height % visibleHeight))
                    {
                        visibleHeight = CtrlToSave.DisplayRectangle.Height % visibleHeight;
                    }

                    if (visibleHeight == 0)
                    {
                        break;
                    }
                }

                if (x - visibleWidth < (CtrlToSave.DisplayRectangle.Width % visibleWidth))
                {
                    visibleWidth = CtrlToSave.DisplayRectangle.Width % visibleWidth;
                }
                if (visibleWidth == 0)
                {
                    break;
                }
            }

            Bitmap img = ci.composeImage();

            img.Save(fileName, System.Drawing.Imaging.ImageFormat.Bmp);

            CtrlToSave.HorizontalScroll.Value = oldPosition.X;
            CtrlToSave.VerticalScroll.Value   = oldPosition.Y;
        }
Exemplo n.º 49
0
        static void Main()
        {
            OrderDetails FirstOrder  = new OrderDetails(1, "JX1", "一点点", 1, 1.5);        //初始化订单
            OrderDetails SecondOrder = new OrderDetails(2, "JX2", "两点点", 2, 2.5);
            OrderDetails ThirdOrder  = new OrderDetails(3, "JX3", "三点点", 3, 3.5);
            OrderDetails FourthOrder = new OrderDetails(4, "JX4", "四点点", 4, 4.5);


            OrderService OList = new OrderService();

            OList.OrderList.Add(FirstOrder);                                                //添加订单
            OList.OrderList.Add(SecondOrder);
            OList.OrderList.Add(ThirdOrder);
            OList.OrderList.Add(FourthOrder);

            Form form1 = new Form();

            ///创建各种控件
            ///一共三个panel
            Panel   panel1   = new System.Windows.Forms.Panel();
            Label   label4   = new System.Windows.Forms.Label();
            Label   label3   = new System.Windows.Forms.Label();
            Label   label2   = new System.Windows.Forms.Label();
            Label   label1   = new System.Windows.Forms.Label();
            Button  button1  = new System.Windows.Forms.Button();
            TextBox textBox4 = new System.Windows.Forms.TextBox();
            TextBox textBox3 = new System.Windows.Forms.TextBox();
            TextBox textBox2 = new System.Windows.Forms.TextBox();
            TextBox textBox1 = new System.Windows.Forms.TextBox();
            Button  button2  = new System.Windows.Forms.Button();
            Button  button3  = new System.Windows.Forms.Button();
            TextBox textBox5 = new System.Windows.Forms.TextBox();
            Button  button4  = new System.Windows.Forms.Button();
            Button  button5  = new System.Windows.Forms.Button();
            Label   显示框      = new System.Windows.Forms.Label();
            Label   label5   = new System.Windows.Forms.Label();
            TextBox textBox6 = new System.Windows.Forms.TextBox();
            Label   label6   = new System.Windows.Forms.Label();
            Label   label7   = new System.Windows.Forms.Label();
            Button  button6  = new System.Windows.Forms.Button();
            TextBox textBox7 = new System.Windows.Forms.TextBox();
            TextBox textBox8 = new System.Windows.Forms.TextBox();
            Panel   panel3   = new System.Windows.Forms.Panel();
            Label   label8   = new System.Windows.Forms.Label();
            TextBox textBox9 = new System.Windows.Forms.TextBox();
            Button  button7  = new System.Windows.Forms.Button();
            Panel   panel2   = new System.Windows.Forms.Panel();

            panel2.SuspendLayout();
            panel3.SuspendLayout();
            panel1.SuspendLayout();
            form1.SuspendLayout();

            //
            // panel1
            //
            panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            panel1.Controls.Add(label4);
            panel1.Controls.Add(label3);
            panel1.Controls.Add(label2);
            panel1.Controls.Add(label1);
            panel1.Controls.Add(button1);
            panel1.Controls.Add(textBox4);
            panel1.Controls.Add(textBox3);
            panel1.Controls.Add(textBox2);
            panel1.Controls.Add(textBox1);
            panel1.Location = new System.Drawing.Point(117, 46);
            panel1.Name     = "panel1";
            panel1.Size     = new System.Drawing.Size(376, 218);
            panel1.TabIndex = 0;
            panel1.Visible  = false;
            panel1.Paint   += new System.Windows.Forms.PaintEventHandler(panel1_Paint);
            //
            // label4
            //
            label4.AutoSize = true;
            label4.Location = new System.Drawing.Point(6, 93);
            label4.Name     = "label4";
            label4.Size     = new System.Drawing.Size(82, 15);
            label4.TabIndex = 8;
            label4.Text     = "商品价格:";

            //
            // label3
            //
            label3.AutoSize = true;
            label3.Location = new System.Drawing.Point(6, 123);
            label3.Name     = "label3";
            label3.Size     = new System.Drawing.Size(67, 15);
            label3.TabIndex = 7;
            label3.Text     = "客户名:";
            //
            // label2
            //
            label2.AutoSize = true;
            label2.Location = new System.Drawing.Point(6, 60);
            label2.Name     = "label2";
            label2.Size     = new System.Drawing.Size(82, 15);
            label2.TabIndex = 6;
            label2.Text     = "商品数量:";
            //
            // label1
            //
            label1.AutoSize = true;
            label1.Location = new System.Drawing.Point(6, 22);
            label1.Name     = "label1";
            label1.Size     = new System.Drawing.Size(82, 15);
            label1.TabIndex = 5;
            label1.Text     = "商品名字:";
            //
            // button1
            //
            button1.Location = new System.Drawing.Point(33, 161);
            button1.Name     = "button1";
            button1.Size     = new System.Drawing.Size(115, 39);
            button1.TabIndex = 4;
            button1.Text     = "完成添加";
            button1.UseVisualStyleBackColor = true;
            button1.Click += new System.EventHandler(button1_Click);
            //
            // textBox4
            //
            textBox4.Location = new System.Drawing.Point(91, 120);
            textBox4.Name     = "textBox4";
            textBox4.Size     = new System.Drawing.Size(100, 25);
            textBox4.TabIndex = 3;
            //
            // textBox3
            //
            textBox3.Location = new System.Drawing.Point(91, 83);
            textBox3.Name     = "textBox3";
            textBox3.Size     = new System.Drawing.Size(100, 25);
            textBox3.TabIndex = 2;
            //
            // textBox2
            //
            textBox2.Location     = new System.Drawing.Point(91, 51);
            textBox2.Name         = "textBox2";
            textBox2.Size         = new System.Drawing.Size(100, 25);
            textBox2.TabIndex     = 1;
            textBox2.TextChanged += new System.EventHandler(textBox2_TextChanged);
            //
            // textBox1
            //
            textBox1.Location     = new System.Drawing.Point(91, 19);
            textBox1.Name         = "textBox1";
            textBox1.Size         = new System.Drawing.Size(100, 25);
            textBox1.TabIndex     = 0;
            textBox1.TextChanged += new System.EventHandler(textBox1_TextChanged);
            //
            // panel2
            //
            panel2.Controls.Add(label5);
            panel2.Controls.Add(textBox8);
            panel2.Controls.Add(textBox7);
            panel2.Controls.Add(button6);
            panel2.Controls.Add(label7);
            panel2.Controls.Add(label6);
            panel2.Controls.Add(textBox6);
            panel2.Location = new System.Drawing.Point(102, 496);
            panel2.Name     = "panel2";
            panel2.Size     = new System.Drawing.Size(391, 208);
            panel2.TabIndex = 1;
            panel2.Visible  = false;
            panel2.Paint   += new System.Windows.Forms.PaintEventHandler(panel2_Paint);
            //
            // button2
            //
            button2.Font      = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            button2.Location  = new System.Drawing.Point(117, 283);
            button2.Name      = "button2";
            button2.Size      = new System.Drawing.Size(183, 61);
            button2.TabIndex  = 2;
            button2.Text      = "添加订单";
            button2.FlatStyle = FlatStyle.Flat;                               //样式
            button2.FlatAppearance.BorderSize         = 0;                    //去边线
            button2.FlatAppearance.MouseOverBackColor = Color.Silver;         //鼠标经过
            button2.FlatAppearance.MouseDownBackColor = Color.LightSteelBlue; //鼠标按下
            button2.UseVisualStyleBackColor           = true;
            button2.Click += new System.EventHandler(button2_Click);
            //
            // button3
            //
            button3.Font      = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            button3.Location  = new System.Drawing.Point(335, 283);
            button3.Name      = "button3";
            button3.Size      = new System.Drawing.Size(193, 61);
            button3.TabIndex  = 3;
            button3.Text      = "显示订单信息";
            button3.FlatStyle = FlatStyle.Flat;                               //样式
            button3.FlatAppearance.BorderSize         = 0;                    //去边线
            button3.FlatAppearance.MouseOverBackColor = Color.Silver;         //鼠标经过
            button3.FlatAppearance.MouseDownBackColor = Color.LightSteelBlue; //鼠标按下

            button3.UseVisualStyleBackColor = true;
            button3.Click += new System.EventHandler(button3_Click);

            //
            // textBox5
            //
            textBox5.Font         = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            textBox5.Location     = new System.Drawing.Point(569, 242);
            textBox5.Name         = "textBox5";
            textBox5.Multiline    = true;
            textBox5.ScrollBars   = System.Windows.Forms.ScrollBars.Both;
            textBox5.Size         = new System.Drawing.Size(648, 354);
            textBox5.TabIndex     = 4;
            textBox5.TextAlign    = System.Windows.Forms.HorizontalAlignment.Left;
            textBox5.TextChanged += new System.EventHandler(textBox5_TextChanged);
            //
            // button4
            //
            button4.Font      = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            button4.Location  = new System.Drawing.Point(117, 415);
            button4.Name      = "button4";
            button4.Size      = new System.Drawing.Size(193, 61);
            button4.TabIndex  = 5;
            button4.FlatStyle = FlatStyle.Flat;                               //样式
            button4.FlatAppearance.BorderSize         = 0;                    //去边线
            button4.FlatAppearance.MouseOverBackColor = Color.Silver;         //鼠标经过
            button4.FlatAppearance.MouseDownBackColor = Color.LightSteelBlue; //鼠标按下
            button4.Text   = "删除订单";
            button4.Click += new System.EventHandler(button4_Click);
            button4.UseVisualStyleBackColor = true;
            //
            // button5
            //
            button5.Font      = new System.Drawing.Font("宋体", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            button5.Location  = new System.Drawing.Point(335, 415);
            button5.Name      = "button5";
            button5.Size      = new System.Drawing.Size(183, 61);
            button5.TabIndex  = 6;
            button5.FlatStyle = FlatStyle.Flat;                               //样式
            button5.FlatAppearance.BorderSize         = 0;                    //去边线
            button5.FlatAppearance.MouseOverBackColor = Color.Silver;         //鼠标经过
            button5.FlatAppearance.MouseDownBackColor = Color.LightSteelBlue; //鼠标按下
            button5.Text = "修改订单";
            button5.UseVisualStyleBackColor = true;
            button5.Click += new System.EventHandler(button5_Click);
            //
            // 显示框
            //
            显示框.Font      = new System.Drawing.Font("宋体", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            显示框.Location  = new System.Drawing.Point(564, 167);
            显示框.Name      = "显示框";
            显示框.Size      = new System.Drawing.Size(176, 61);
            显示框.TabIndex  = 7;
            显示框.Text      = "显示框:";
            显示框.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            显示框.Click    += new System.EventHandler(显示框_Click);
            //
            // label5
            //
            label5.Font        = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            label5.Location    = new System.Drawing.Point(-2, 20);
            label5.Name        = "label5";
            label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
            label5.Size        = new System.Drawing.Size(280, 50);
            label5.TabIndex    = 0;
            label5.Text        = "请输入想要修改的订单号:";
            label5.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // textBox6
            //
            textBox6.Location     = new System.Drawing.Point(276, 36);
            textBox6.Name         = "textBox6";
            textBox6.Size         = new System.Drawing.Size(100, 25);
            textBox6.TabIndex     = 1;
            textBox6.TextChanged += new System.EventHandler(textBox6_TextChanged);
            //
            // label6
            //
            label6.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            label6.Location  = new System.Drawing.Point(136, 70);
            label6.Name      = "label6";
            label6.Size      = new System.Drawing.Size(170, 35);
            label6.TabIndex  = 2;
            label6.Text      = "商品改为:";
            label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // label7
            //
            label7.Font      = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            label7.Location  = new System.Drawing.Point(105, 110);
            label7.Name      = "label7";
            label7.Size      = new System.Drawing.Size(190, 40);
            label7.TabIndex  = 3;
            label7.Text      = "商品数量改为:";
            label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
            //
            // button6
            //
            button6.Location = new System.Drawing.Point(266, 162);
            button6.Name     = "button6";
            button6.Size     = new System.Drawing.Size(110, 39);
            button6.TabIndex = 4;
            button6.Text     = "完成修改";
            button6.UseVisualStyleBackColor = true;
            button6.Click += new System.EventHandler(button6_Click);
            //
            // textBox7
            //
            textBox7.Location = new System.Drawing.Point(276, 74);
            textBox7.Name     = "textBox7";
            textBox7.Size     = new System.Drawing.Size(100, 25);
            textBox7.TabIndex = 5;
            //
            // textBox8
            //
            textBox8.Location = new System.Drawing.Point(276, 121);
            textBox8.Name     = "textBox8";
            textBox8.Size     = new System.Drawing.Size(100, 25);
            textBox8.TabIndex = 6;
            //
            // panel3
            //
            panel3.Controls.Add(button7);
            panel3.Controls.Add(textBox9);
            panel3.Controls.Add(label8);
            panel3.Location = new System.Drawing.Point(117, 496);
            panel3.Name     = "panel3";
            panel3.Size     = new System.Drawing.Size(391, 100);
            panel3.TabIndex = 8;
            panel3.Visible  = false;
            //
            // label8
            //
            label8.Font      = new System.Drawing.Font("宋体", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            label8.Location  = new System.Drawing.Point(-20, 12);
            label8.Name      = "label8";
            label8.Size      = new System.Drawing.Size(315, 43);
            label8.TabIndex  = 0;
            label8.Text      = "请输入你想要删除的订单号:";
            label8.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // textBox9
            //
            textBox9.Location = new System.Drawing.Point(263, 22);
            textBox9.Name     = "textBox9";
            textBox9.Size     = new System.Drawing.Size(100, 25);
            textBox9.TabIndex = 1;
            //
            // button7
            //
            button7.Font     = new System.Drawing.Font("宋体", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            button7.Location = new System.Drawing.Point(128, 62);
            button7.Name     = "button7";
            button7.Size     = new System.Drawing.Size(97, 38);
            button7.TabIndex = 2;
            button7.Text     = "确认删除";
            button7.UseVisualStyleBackColor = true;
            button7.Click += new System.EventHandler(button7_Click);
            //
            // Form1
            //
            form1.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            form1.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            form1.AutoScroll          = true;
            form1.ClientSize          = new System.Drawing.Size(1311, 758);
            form1.Controls.Add(panel3);
            form1.Controls.Add(显示框);
            form1.Controls.Add(button5);
            form1.Controls.Add(button4);
            form1.Controls.Add(textBox5);
            form1.Controls.Add(button3);
            form1.Controls.Add(button2);
            form1.Controls.Add(panel2);
            form1.Controls.Add(panel1);
            form1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));



            form1.Name  = "Form1";
            form1.Text  = "Form1";
            form1.Load += new System.EventHandler(Form1_Load);

            panel1.ResumeLayout(false);
            panel1.PerformLayout();
            panel2.ResumeLayout(false);
            panel2.PerformLayout();
            panel3.ResumeLayout(false);
            panel3.PerformLayout();

            form1.ResumeLayout(false);
            form1.PerformLayout();


            void ShowOlist(TextBox text1)                   //显示所有订单数据的函数
            {
                for (int i = 0; i < OList.OrderList.Count; i++)
                {
                    text1.Text += "订单号是: " + OList.OrderList[i].OrderNumber + " 商品名称是: " + OList.OrderList[i].GoodsName + " 商品数量是: " + OList.OrderList[i].GoodsNumber + " 商品价格是: " + OList.OrderList[i].GoodsPrice + "\r\n";
                }
                text1.Text += "\r\n";
            }

            void Form1_Load(object sender, EventArgs e)
            {
            }

            void panel1_Paint(object sender, PaintEventArgs e)
            {
            }

            void button1_Click(object sender, EventArgs e)       //如果按钮1被点击 即确定添加订单
            {
                //读取文本框中的各项数据 并且进行转换
                try
                {
                    string GoodsName    = textBox1.Text;
                    string s2           = textBox2.Text;
                    int    GoodsNumber  = int.Parse(s2);
                    string s3           = textBox3.Text;
                    double GoodsPrice   = double.Parse(s3);
                    string CustomerName = textBox4.Text;
                    int    b            = OList.OrderList.Count - 1;
                    int    a            = OList.OrderList[b].OrderNumber + 1;
                    //调用OrderService的函数
                    OrderDetails newOrder = new OrderDetails(a, CustomerName, GoodsName, GoodsNumber, GoodsPrice);
                    OList.OrderList.Add(newOrder);
                }
                catch
                {
                    textBox5.Text = "输入错误!!!请重新输入!!!";
                }

                //更改panel的可视化
                panel1.Visible = false;
            }

            void button2_Click(object sender, EventArgs e)      //如果按钮2被点击 即添加订单的功能 则此时显示出添加订单的页面
            {
                panel1.Visible = true;
            }

            void button3_Click(object sender, EventArgs e)       //如果显示订单按钮被点击 则会调用showOlist的函数 显示订单的详细数据
            {
                ShowOlist(textBox5);
            }

            void button4_Click(object sender, EventArgs e)      //如果删除订单按钮被点击 则会显示出删除订单的panel
            {
                panel3.Visible = true;
            }

            void button7_Click(object sender, EventArgs e)      //点击确认删除按钮 则会调用DeleteOrder函数
            {
                try
                {
                    string s1       = textBox9.Text;
                    int    OrderNum = int.Parse(s1);
                    OList.DeleteOrder(OrderNum);
                }
                catch
                {
                    textBox5.Text = "输入错误!!!请重新输入!!!";
                }
                panel3.Visible = false;
            }

            void button5_Click(object sender, EventArgs e)      //点击修改订单功能按钮 会弹出修改订单的panel
            {
                panel2.Visible = true;
            }

            void button6_Click(object sender, EventArgs e)      //点击确认修改按钮 则会调用ChangeOrder函数
            {
                try
                {
                    string s1        = textBox6.Text;
                    int    OrderNum  = int.Parse(s1);
                    string GoodsName = textBox7.Text;
                    string s2        = textBox8.Text;
                    int    NewNum    = int.Parse(s2);
                    OList.ChangeOrder(OrderNum, NewNum, GoodsName);
                }
                catch
                {
                    textBox5.Text = "输入错误!!!请重新输入!!!";
                }
                panel2.Visible = false;
            }

            void textBox5_TextChanged(object sender, EventArgs e)
            {
            }

            void 显示框_Click(object sender, EventArgs e)
            {
            }

            void textBox6_TextChanged(object sender, EventArgs e)
            {
            }

            void textBox1_TextChanged(object sender, EventArgs e)
            {
            }

            void textBox2_TextChanged(object sender, EventArgs e)
            {
            }

            void panel2_Paint(object sender, PaintEventArgs e)
            {
            }

            form1.ShowDialog();
        }
Exemplo n.º 50
0
 private void InitializeComponent()
 {
     components          = new Container();
     btnOkay             = new Button();
     btnCancel           = new Button();
     txtPath             = new TextBox();
     btnBrowse           = new Button();
     lblOffsetValue      = new Label();
     lblOffsetDesc       = new Label();
     lblNameValue        = new Label();
     lblSizeValue        = new Label();
     lblSizeDesc         = new Label();
     pnlInfo             = new Panel();
     groupBox1           = new GroupBox();
     lblIDValue          = new Label();
     lblIDDesc           = new Label();
     panel4              = new Panel();
     pnlEdit             = new Panel();
     groupBox2           = new GroupBox();
     itemSelection       = new ComboBox();
     lblItemDesc         = new Label();
     label3              = new Label();
     lblCurrentStage     = new Label();
     lblNewStageDesc     = new Label();
     stageSelection      = new ComboBox();
     lblCurrentStageDesc = new Label();
     panel3              = new Panel();
     dlgOpen             = new OpenFileDialog();
     tmrUpdate           = new Timer(components);
     pnlInfo.SuspendLayout();
     groupBox1.SuspendLayout();
     panel4.SuspendLayout();
     pnlEdit.SuspendLayout();
     groupBox2.SuspendLayout();
     panel3.SuspendLayout();
     SuspendLayout();
     //
     // btnOkay
     //
     btnOkay.Anchor   = AnchorStyles.Bottom | AnchorStyles.Right;
     btnOkay.Enabled  = false;
     btnOkay.Location = new Drawing.Point(3, 3);
     btnOkay.Name     = "btnOkay";
     btnOkay.Size     = new Drawing.Size(75, 23);
     btnOkay.TabIndex = 0;
     btnOkay.Text     = "Okay";
     btnOkay.UseVisualStyleBackColor = true;
     btnOkay.Click += btnOkay_Click;
     //
     // btnCancel
     //
     btnCancel.Anchor   = AnchorStyles.Bottom | AnchorStyles.Right;
     btnCancel.Location = new Drawing.Point(80, 3);
     btnCancel.Name     = "btnCancel";
     btnCancel.Size     = new Drawing.Size(75, 23);
     btnCancel.TabIndex = 1;
     btnCancel.Text     = "Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     btnCancel.Click += btnCancel_Click;
     //
     // txtPath
     //
     txtPath.Anchor = AnchorStyles.Top | AnchorStyles.Left
                      | AnchorStyles.Right;
     txtPath.Location = new Drawing.Point(0, 0);
     txtPath.Name     = "txtPath";
     txtPath.ReadOnly = true;
     txtPath.Size     = new Drawing.Size(222, 20);
     txtPath.TabIndex = 2;
     //
     // btnBrowse
     //
     btnBrowse.Anchor   = AnchorStyles.Top | AnchorStyles.Right;
     btnBrowse.Location = new Drawing.Point(227, 0);
     btnBrowse.Name     = "btnBrowse";
     btnBrowse.Size     = new Drawing.Size(25, 20);
     btnBrowse.TabIndex = 3;
     btnBrowse.Text     = "...";
     btnBrowse.UseVisualStyleBackColor = true;
     btnBrowse.Click += btnBrowse_Click;
     //
     // lblOffsetValue
     //
     lblOffsetValue.Location  = new Drawing.Point(56, 56);
     lblOffsetValue.Name      = "lblOffsetValue";
     lblOffsetValue.Size      = new Drawing.Size(96, 20);
     lblOffsetValue.TabIndex  = 5;
     lblOffsetValue.TextAlign = Drawing.ContentAlignment.MiddleLeft;
     //
     // lblOffsetDesc
     //
     lblOffsetDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                           Drawing.GraphicsUnit.Point, 0);
     lblOffsetDesc.Location  = new Drawing.Point(6, 56);
     lblOffsetDesc.Name      = "lblOffsetDesc";
     lblOffsetDesc.Size      = new Drawing.Size(48, 20);
     lblOffsetDesc.TabIndex  = 4;
     lblOffsetDesc.Text      = "Offset:";
     lblOffsetDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // lblNameValue
     //
     lblNameValue.Font = new Drawing.Font("Lucida Console", 8.25F, Drawing.FontStyle.Regular,
                                          Drawing.GraphicsUnit.Point, 0);
     lblNameValue.Location  = new Drawing.Point(7, 16);
     lblNameValue.Name      = "lblNameValue";
     lblNameValue.Size      = new Drawing.Size(145, 20);
     lblNameValue.TabIndex  = 3;
     lblNameValue.TextAlign = Drawing.ContentAlignment.MiddleLeft;
     //
     // lblSizeValue
     //
     lblSizeValue.Location  = new Drawing.Point(56, 36);
     lblSizeValue.Name      = "lblSizeValue";
     lblSizeValue.Size      = new Drawing.Size(96, 20);
     lblSizeValue.TabIndex  = 1;
     lblSizeValue.TextAlign = Drawing.ContentAlignment.MiddleLeft;
     //
     // lblSizeDesc
     //
     lblSizeDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                         Drawing.GraphicsUnit.Point, 0);
     lblSizeDesc.Location  = new Drawing.Point(6, 36);
     lblSizeDesc.Name      = "lblSizeDesc";
     lblSizeDesc.Size      = new Drawing.Size(48, 20);
     lblSizeDesc.TabIndex  = 0;
     lblSizeDesc.Text      = "Size:";
     lblSizeDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // pnlInfo
     //
     pnlInfo.Controls.Add(groupBox1);
     pnlInfo.Controls.Add(panel4);
     pnlInfo.Dock     = DockStyle.Right;
     pnlInfo.Location = new Drawing.Point(256, 0);
     pnlInfo.Name     = "pnlInfo";
     pnlInfo.Size     = new Drawing.Size(158, 132);
     pnlInfo.TabIndex = 9;
     //
     // groupBox1
     //
     groupBox1.Controls.Add(lblIDValue);
     groupBox1.Controls.Add(lblIDDesc);
     groupBox1.Controls.Add(lblOffsetValue);
     groupBox1.Controls.Add(lblOffsetDesc);
     groupBox1.Controls.Add(lblNameValue);
     groupBox1.Controls.Add(lblSizeValue);
     groupBox1.Controls.Add(lblSizeDesc);
     groupBox1.Dock     = DockStyle.Fill;
     groupBox1.Location = new Drawing.Point(0, 0);
     groupBox1.Name     = "groupBox1";
     groupBox1.Size     = new Drawing.Size(158, 103);
     groupBox1.TabIndex = 5;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "File Info";
     //
     // lblIDValue
     //
     lblIDValue.Location  = new Drawing.Point(56, 76);
     lblIDValue.Name      = "lblIDValue";
     lblIDValue.Size      = new Drawing.Size(96, 20);
     lblIDValue.TabIndex  = 7;
     lblIDValue.TextAlign = Drawing.ContentAlignment.MiddleLeft;
     //
     // lblIDDesc
     //
     lblIDDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                       Drawing.GraphicsUnit.Point, 0);
     lblIDDesc.Location  = new Drawing.Point(6, 76);
     lblIDDesc.Name      = "lblIDDesc";
     lblIDDesc.Size      = new Drawing.Size(48, 20);
     lblIDDesc.TabIndex  = 6;
     lblIDDesc.Text      = "ID:";
     lblIDDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // panel4
     //
     panel4.Controls.Add(btnOkay);
     panel4.Controls.Add(btnCancel);
     panel4.Dock     = DockStyle.Bottom;
     panel4.Location = new Drawing.Point(0, 103);
     panel4.Name     = "panel4";
     panel4.Size     = new Drawing.Size(158, 29);
     panel4.TabIndex = 6;
     //
     // pnlEdit
     //
     pnlEdit.Controls.Add(groupBox2);
     pnlEdit.Controls.Add(panel3);
     pnlEdit.Dock     = DockStyle.Fill;
     pnlEdit.Location = new Drawing.Point(0, 0);
     pnlEdit.Name     = "pnlEdit";
     pnlEdit.Size     = new Drawing.Size(256, 132);
     pnlEdit.TabIndex = 10;
     //
     // groupBox2
     //
     groupBox2.Controls.Add(itemSelection);
     groupBox2.Controls.Add(lblItemDesc);
     groupBox2.Controls.Add(label3);
     groupBox2.Controls.Add(lblCurrentStage);
     groupBox2.Controls.Add(lblNewStageDesc);
     groupBox2.Controls.Add(stageSelection);
     groupBox2.Controls.Add(lblCurrentStageDesc);
     groupBox2.Dock     = DockStyle.Fill;
     groupBox2.Location = new Drawing.Point(0, 20);
     groupBox2.Name     = "groupBox2";
     groupBox2.Size     = new Drawing.Size(256, 112);
     groupBox2.TabIndex = 13;
     groupBox2.TabStop  = false;
     groupBox2.Text     = "Options";
     //
     // itemSelection
     //
     itemSelection.DropDownStyle     = ComboBoxStyle.DropDownList;
     itemSelection.Enabled           = false;
     itemSelection.FormattingEnabled = true;
     itemSelection.Items.AddRange(new object[]
     {
         "Assist Trophy",
         "Franklin Badge",
         "Banana Peel",
         "Barrel",
         "Beam Sword",
         "Bill (coin mode)",
         "Bob-Omb",
         "Crate",
         "Bumper",
         "Capsule",
         "Rolling Crate",
         "CD",
         "Gooey Bomb",
         "Cracker Launcher",
         "Cracker Launcher Shot",
         "Coin",
         "Superspicy Curry",
         "Superspice Curry Shot",
         "Deku Nut",
         "Mr. Saturn",
         "Dragoon Part",
         "Dragoon Set",
         "Dragoon Sight",
         "Trophy",
         "Fire Flower",
         "Fire Flower Shot",
         "Freezie",
         "Golden Hammer",
         "Green Shell",
         "Hammer",
         "Hammer Head",
         "Fan",
         "Heart Container",
         "Homerun Bat",
         "Party Ball",
         "Manaphy Heart",
         "Maxim Tomato",
         "Poison Mushroom",
         "Super Mushroom",
         "Metal Box",
         "Hothead",
         "Pitfall",
         "Pokéball",
         "Blast Box",
         "Ray Gun",
         "Ray Gun Shot",
         "Lipstick",
         "Lipstick Flower",
         "Lipstick Shot",
         "Sandbag",
         "Screw Attack",
         "Sticker",
         "Motion-Sensor Bomb",
         "Timer",
         "Smart Bomb",
         "Smash Ball",
         "Smoke Screen",
         "Spring",
         "Star Rod",
         "Star Rod Shot",
         "Soccer Ball",
         "Super Scope",
         "Super Scope shot",
         "Star",
         "Food",
         "Team Healer",
         "Lightning",
         "Unira",
         "Bunny Hood",
         "Warpstar"
     });
     itemSelection.Location = new Drawing.Point(84, 62);
     itemSelection.Name     = "itemSelection";
     itemSelection.Size     = new Drawing.Size(166, 21);
     itemSelection.TabIndex = 6;
     //
     // lblItemDesc
     //
     lblItemDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                         Drawing.GraphicsUnit.Point, 0);
     lblItemDesc.Location  = new Drawing.Point(6, 62);
     lblItemDesc.Name      = "lblItemDesc";
     lblItemDesc.Size      = new Drawing.Size(72, 21);
     lblItemDesc.TabIndex  = 5;
     lblItemDesc.Text      = "Item:";
     lblItemDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // label3
     //
     label3.AutoSize  = true;
     label3.ForeColor = Drawing.SystemColors.ControlDark;
     label3.Location  = new Drawing.Point(4, 93);
     label3.Name      = "label3";
     label3.Size      = new Drawing.Size(209, 13);
     label3.TabIndex  = 4;
     label3.Text      = "Mouse over the labels for more information.";
     //
     // lblCurrentStage
     //
     lblCurrentStage.Location  = new Drawing.Point(84, 14);
     lblCurrentStage.Name      = "lblCurrentStage";
     lblCurrentStage.Size      = new Drawing.Size(166, 21);
     lblCurrentStage.TabIndex  = 3;
     lblCurrentStage.TextAlign = Drawing.ContentAlignment.MiddleLeft;
     //
     // lblNewStageDesc
     //
     lblNewStageDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                             Drawing.GraphicsUnit.Point, 0);
     lblNewStageDesc.Location  = new Drawing.Point(6, 38);
     lblNewStageDesc.Name      = "lblNewStageDesc";
     lblNewStageDesc.Size      = new Drawing.Size(72, 21);
     lblNewStageDesc.TabIndex  = 2;
     lblNewStageDesc.Text      = "New stage:";
     lblNewStageDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // stageSelection
     //
     stageSelection.DropDownStyle     = ComboBoxStyle.DropDownList;
     stageSelection.Enabled           = false;
     stageSelection.FormattingEnabled = true;
     stageSelection.Location          = new Drawing.Point(84, 38);
     stageSelection.Name     = "stageSelection";
     stageSelection.Size     = new Drawing.Size(166, 21);
     stageSelection.TabIndex = 1;
     //
     // lblCurrentStageDesc
     //
     lblCurrentStageDesc.Font = new Drawing.Font("Microsoft Sans Serif", 8.25F, Drawing.FontStyle.Bold,
                                                 Drawing.GraphicsUnit.Point, 0);
     lblCurrentStageDesc.Location  = new Drawing.Point(6, 14);
     lblCurrentStageDesc.Name      = "lblCurrentStageDesc";
     lblCurrentStageDesc.Size      = new Drawing.Size(72, 21);
     lblCurrentStageDesc.TabIndex  = 0;
     lblCurrentStageDesc.Text      = "Current:";
     lblCurrentStageDesc.TextAlign = Drawing.ContentAlignment.MiddleRight;
     //
     // panel3
     //
     panel3.Controls.Add(txtPath);
     panel3.Controls.Add(btnBrowse);
     panel3.Dock     = DockStyle.Top;
     panel3.Location = new Drawing.Point(0, 0);
     panel3.Name     = "panel3";
     panel3.Size     = new Drawing.Size(256, 20);
     panel3.TabIndex = 14;
     //
     // tmrUpdate
     //
     tmrUpdate.Interval = 10;
     //
     // StageRelSwitcherDialog
     //
     ClientSize = new Drawing.Size(414, 132);
     Controls.Add(pnlEdit);
     Controls.Add(pnlInfo);
     FormBorderStyle = FormBorderStyle.FixedToolWindow;
     Name            = "StageRelSwitcherDialog";
     Text            = "Stage REL Switcher";
     pnlInfo.ResumeLayout(false);
     groupBox1.ResumeLayout(false);
     panel4.ResumeLayout(false);
     pnlEdit.ResumeLayout(false);
     groupBox2.ResumeLayout(false);
     groupBox2.PerformLayout();
     panel3.ResumeLayout(false);
     panel3.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     ctrlReportsPath    = new System.Windows.Forms.TextBox();
     ctrlCancel         = new System.Windows.Forms.Button();
     ctrlExtract        = new System.Windows.Forms.Button();
     label8             = new System.Windows.Forms.Label();
     pictureBox3        = new System.Windows.Forms.PictureBox();
     pictureBox4        = new System.Windows.Forms.PictureBox();
     label6             = new System.Windows.Forms.Label();
     label1             = new System.Windows.Forms.Label();
     label2             = new System.Windows.Forms.Label();
     label3             = new System.Windows.Forms.Label();
     label4             = new System.Windows.Forms.Label();
     ctrlPrompts        = new System.Windows.Forms.CheckBox();
     label5             = new System.Windows.Forms.Label();
     pictureBox1        = new System.Windows.Forms.PictureBox();
     ctrlGetLastCreated = new System.Windows.Forms.RadioButton();
     ctrlGetLastSucceed = new System.Windows.Forms.RadioButton();
     pictureBox2        = new System.Windows.Forms.PictureBox();
     label7             = new System.Windows.Forms.Label();
     ctrlGetLastFailed  = new System.Windows.Forms.RadioButton();
     ctrlGetLastNone    = new System.Windows.Forms.RadioButton();
     panelConfig        = new System.Windows.Forms.Panel();
     ctrlWizard         = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox2)).BeginInit();
     panelConfig.SuspendLayout();
     SuspendLayout();
     //
     // ctrlReportsPath
     //
     ctrlReportsPath.AcceptsReturn = true;
     ctrlReportsPath.Location      = new System.Drawing.Point(5, 17);
     ctrlReportsPath.Multiline     = true;
     ctrlReportsPath.Name          = "ctrlReportsPath";
     ctrlReportsPath.Size          = new System.Drawing.Size(312, 35);
     ctrlReportsPath.TabIndex      = 28;
     //
     // ctrlCancel
     //
     ctrlCancel.AccessibleRole          = System.Windows.Forms.AccessibleRole.None;
     ctrlCancel.CausesValidation        = false;
     ctrlCancel.Location                = new System.Drawing.Point(169, 201);
     ctrlCancel.Name                    = "ctrlCancel";
     ctrlCancel.Size                    = new System.Drawing.Size(90, 24);
     ctrlCancel.TabIndex                = 27;
     ctrlCancel.Text                    = "Close";
     ctrlCancel.UseVisualStyleBackColor = true;
     ctrlCancel.Click                  += new System.EventHandler(btCancel_Click);
     //
     // ctrlExtract
     //
     ctrlExtract.FlatAppearance.BorderSize = 2;
     ctrlExtract.Location = new System.Drawing.Point(63, 201);
     ctrlExtract.Name     = "ctrlExtract";
     ctrlExtract.Size     = new System.Drawing.Size(90, 24);
     ctrlExtract.TabIndex = 26;
     ctrlExtract.Text     = "Get List";
     ctrlExtract.UseVisualStyleBackColor = true;
     ctrlExtract.Click += new System.EventHandler(btExtract_Click);
     //
     // label8
     //
     label8.AutoSize  = true;
     label8.ForeColor = System.Drawing.Color.Blue;
     label8.Location  = new System.Drawing.Point(-3, 0);
     label8.Name      = "label8";
     label8.Size      = new System.Drawing.Size(68, 13);
     label8.TabIndex  = 24;
     label8.Text      = "Reports path";
     //
     // pictureBox3
     //
     pictureBox3.BackColor = System.Drawing.Color.Silver;
     pictureBox3.Location  = new System.Drawing.Point(38, 8);
     pictureBox3.Name      = "pictureBox3";
     pictureBox3.Size      = new System.Drawing.Size(282, 1);
     pictureBox3.TabIndex  = 31;
     pictureBox3.TabStop   = false;
     //
     // pictureBox4
     //
     pictureBox4.BackColor = System.Drawing.Color.Silver;
     pictureBox4.Location  = new System.Drawing.Point(0, 195);
     pictureBox4.Name      = "pictureBox4";
     pictureBox4.Size      = new System.Drawing.Size(320, 1);
     pictureBox4.TabIndex  = 33;
     pictureBox4.TabStop   = false;
     //
     // label6
     //
     label6.AutoSize  = true;
     label6.BackColor = System.Drawing.Color.Transparent;
     label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label6.Location  = new System.Drawing.Point(5, 67);
     label6.Name      = "label6";
     label6.Size      = new System.Drawing.Size(250, 13);
     label6.TabIndex  = 53;
     label6.Text      = "A report in a folder : Folder A/Folder B/Report  Name";
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label1.Location = new System.Drawing.Point(5, 80);
     label1.Name     = "label1";
     label1.Size     = new System.Drawing.Size(162, 13);
     label1.TabIndex = 53;
     label1.Text     = "All reports in a folders  : FolderA/*";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label2.Location = new System.Drawing.Point(5, 106);
     label2.Name     = "label2";
     label2.Size     = new System.Drawing.Size(226, 13);
     label2.TabIndex = 53;
     label2.Text     = "A report in all first level folders  : */Report Name";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label3.Location = new System.Drawing.Point(5, 93);
     label3.Name     = "label3";
     label3.Size     = new System.Drawing.Size(138, 13);
     label3.TabIndex = 53;
     label3.Text     = "All reports in all folders  : **/*";
     //
     // label4
     //
     label4.AutoSize  = true;
     label4.BackColor = System.Drawing.Color.Transparent;
     label4.Font      = new System.Drawing.Font("Microsoft Sans Serif", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     label4.Location  = new System.Drawing.Point(5, 54);
     label4.Name      = "label4";
     label4.Size      = new System.Drawing.Size(173, 13);
     label4.TabIndex  = 54;
     label4.Text      = "Reports by id : 10020,10021,10023";
     //
     // ctrlPrompts
     //
     ctrlPrompts.AutoSize   = true;
     ctrlPrompts.Checked    = true;
     ctrlPrompts.CheckState = System.Windows.Forms.CheckState.Checked;
     ctrlPrompts.Location   = new System.Drawing.Point(7, 172);
     ctrlPrompts.Name       = "ctrlPrompts";
     ctrlPrompts.Size       = new System.Drawing.Size(101, 17);
     ctrlPrompts.TabIndex   = 74;
     ctrlPrompts.Text       = "Include prompts";
     ctrlPrompts.UseVisualStyleBackColor = true;
     //
     // label5
     //
     label5.AutoSize  = true;
     label5.ForeColor = System.Drawing.Color.Blue;
     label5.Location  = new System.Drawing.Point(-3, 155);
     label5.Name      = "label5";
     label5.Size      = new System.Drawing.Size(43, 13);
     label5.TabIndex  = 72;
     label5.Text      = "Options";
     //
     // pictureBox1
     //
     pictureBox1.BackColor = System.Drawing.Color.Silver;
     pictureBox1.Location  = new System.Drawing.Point(37, 163);
     pictureBox1.Name      = "pictureBox1";
     pictureBox1.Size      = new System.Drawing.Size(282, 1);
     pictureBox1.TabIndex  = 73;
     pictureBox1.TabStop   = false;
     //
     // ctrlGetLastCreated
     //
     ctrlGetLastCreated.AutoSize = true;
     ctrlGetLastCreated.Location = new System.Drawing.Point(61, 136);
     ctrlGetLastCreated.Name     = "ctrlGetLastCreated";
     ctrlGetLastCreated.Size     = new System.Drawing.Size(84, 17);
     ctrlGetLastCreated.TabIndex = 75;
     ctrlGetLastCreated.Text     = "Last created";
     ctrlGetLastCreated.UseVisualStyleBackColor = true;
     //
     // ctrlGetLastSucceed
     //
     ctrlGetLastSucceed.AutoSize = true;
     ctrlGetLastSucceed.Location = new System.Drawing.Point(149, 136);
     ctrlGetLastSucceed.Name     = "ctrlGetLastSucceed";
     ctrlGetLastSucceed.Size     = new System.Drawing.Size(89, 17);
     ctrlGetLastSucceed.TabIndex = 75;
     ctrlGetLastSucceed.Text     = "Last succeed";
     ctrlGetLastSucceed.UseVisualStyleBackColor = true;
     //
     // pictureBox2
     //
     pictureBox2.BackColor = System.Drawing.Color.Silver;
     pictureBox2.Location  = new System.Drawing.Point(37, 129);
     pictureBox2.Name      = "pictureBox2";
     pictureBox2.Size      = new System.Drawing.Size(282, 1);
     pictureBox2.TabIndex  = 73;
     pictureBox2.TabStop   = false;
     //
     // label7
     //
     label7.AutoSize  = true;
     label7.ForeColor = System.Drawing.Color.Blue;
     label7.Location  = new System.Drawing.Point(-3, 121);
     label7.Name      = "label7";
     label7.Size      = new System.Drawing.Size(104, 13);
     label7.TabIndex  = 72;
     label7.Text      = "Instance association";
     //
     // ctrlGetLastFailed
     //
     ctrlGetLastFailed.AutoSize = true;
     ctrlGetLastFailed.Location = new System.Drawing.Point(242, 136);
     ctrlGetLastFailed.Name     = "ctrlGetLastFailed";
     ctrlGetLastFailed.Size     = new System.Drawing.Size(73, 17);
     ctrlGetLastFailed.TabIndex = 75;
     ctrlGetLastFailed.Text     = "Last failed";
     ctrlGetLastFailed.UseVisualStyleBackColor = true;
     //
     // ctrlGetLastNone
     //
     ctrlGetLastNone.AutoSize = true;
     ctrlGetLastNone.Checked  = true;
     ctrlGetLastNone.Location = new System.Drawing.Point(7, 136);
     ctrlGetLastNone.Name     = "ctrlGetLastNone";
     ctrlGetLastNone.Size     = new System.Drawing.Size(51, 17);
     ctrlGetLastNone.TabIndex = 76;
     ctrlGetLastNone.TabStop  = true;
     ctrlGetLastNone.Text     = "None";
     ctrlGetLastNone.UseVisualStyleBackColor = true;
     //
     // panelConfig
     //
     panelConfig.Controls.Add(ctrlWizard);
     panelConfig.Controls.Add(label8);
     panelConfig.Controls.Add(ctrlGetLastNone);
     panelConfig.Controls.Add(pictureBox3);
     panelConfig.Controls.Add(ctrlGetLastFailed);
     panelConfig.Controls.Add(ctrlReportsPath);
     panelConfig.Controls.Add(ctrlGetLastSucceed);
     panelConfig.Controls.Add(label6);
     panelConfig.Controls.Add(ctrlGetLastCreated);
     panelConfig.Controls.Add(label1);
     panelConfig.Controls.Add(ctrlPrompts);
     panelConfig.Controls.Add(label3);
     panelConfig.Controls.Add(label7);
     panelConfig.Controls.Add(label2);
     panelConfig.Controls.Add(pictureBox2);
     panelConfig.Controls.Add(label4);
     panelConfig.Controls.Add(label5);
     panelConfig.Controls.Add(pictureBox1);
     panelConfig.Location = new System.Drawing.Point(2, 2);
     panelConfig.Name     = "panelConfig";
     panelConfig.Size     = new System.Drawing.Size(324, 193);
     panelConfig.TabIndex = 77;
     //
     // ctrlWizard
     //
     ctrlWizard.Location = new System.Drawing.Point(261, 67);
     ctrlWizard.Name     = "ctrlWizard";
     ctrlWizard.Size     = new System.Drawing.Size(55, 39);
     ctrlWizard.TabIndex = 77;
     ctrlWizard.Text     = "Wizard";
     ctrlWizard.UseVisualStyleBackColor = true;
     ctrlWizard.Click += new System.EventHandler(ctrlWizard_Click);
     //
     // FrmGetList
     //
     AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     ClientSize          = new System.Drawing.Size(326, 230);
     Controls.Add(panelConfig);
     Controls.Add(pictureBox4);
     Controls.Add(ctrlCancel);
     Controls.Add(ctrlExtract);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "FrmGetList";
     ShowIcon        = false;
     ShowInTaskbar   = false;
     SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     Text            = "Get Reports List";
     ((System.ComponentModel.ISupportInitialize)(pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(pictureBox2)).EndInit();
     panelConfig.ResumeLayout(false);
     panelConfig.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 52
0
        private void initComponent()
        {
            //new LogWriter("d", "FrmDoctorView initComponent 00 ");
            int  gapLine = 20, gapX = 20;
            Size size = new Size();
            int  scrW = Screen.PrimaryScreen.Bounds.Width;

            theme1   = new C1.Win.C1Themes.C1ThemeController();
            this.sb1 = new C1.Win.C1Ribbon.C1StatusBar();
            panel1   = new System.Windows.Forms.Panel();
            pnHead   = new System.Windows.Forms.Panel();
            pnBotton = new System.Windows.Forms.Panel();
            pnQue    = new System.Windows.Forms.Panel();
            pnApm    = new System.Windows.Forms.Panel();
            pnFinish = new System.Windows.Forms.Panel();
            pnIPD    = new System.Windows.Forms.Panel();

            //theme1 = new C1.Win.C1Themes.C1ThemeController();
            tC1       = new C1.Win.C1Command.C1DockingTab();
            tabQue    = new C1.Win.C1Command.C1DockingTabPage();
            tabApm    = new C1.Win.C1Command.C1DockingTabPage();
            tabFinish = new C1.Win.C1Command.C1DockingTabPage();
            tabIPD    = new C1.Win.C1Command.C1DockingTabPage();

            panel1.SuspendLayout();
            pnHead.SuspendLayout();
            pnBotton.SuspendLayout();
            pnQue.SuspendLayout();
            pnApm.SuspendLayout();
            pnFinish.SuspendLayout();
            pnIPD.SuspendLayout();
            tC1.SuspendLayout();
            tabQue.SuspendLayout();
            tabApm.SuspendLayout();
            tabFinish.SuspendLayout();
            tabIPD.SuspendLayout();

            this.SuspendLayout();

            this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name     = "panel1";
            this.panel1.TabIndex = 0;
            //panel1.BackColor = Color.Brown;
            this.sb1.AutoSizeElement = C1.Framework.AutoSizeElement.Width;
            this.sb1.Location        = new System.Drawing.Point(0, 620);
            this.sb1.Name            = "sb1";
            this.sb1.Size            = new System.Drawing.Size(956, 22);
            this.sb1.VisualStyle     = C1.Win.C1Ribbon.VisualStyle.Office2007Blue;
            pnHead.Size        = new System.Drawing.Size(scrW, 50);
            pnHead.BorderStyle = BorderStyle.Fixed3D;

            tabQue.Name     = "tabQue";
            tabQue.TabIndex = 0;
            tabQue.Text     = "Queue";
            tabQue.Font     = fEditB;
            //tabQue.TabIndex = tC1.TabCount + 1;

            tabApm.Name     = "tabApm";
            tabApm.TabIndex = 1;
            tabApm.Text     = "Appointment";
            tabApm.Font     = fEditB;

            tabFinish.Name     = "tabFinish";
            tabFinish.TabIndex = 2;
            tabFinish.Text     = "Finish";
            tabFinish.Font     = fEditB;

            tabIPD.Name     = "tabIPD";
            tabIPD.TabIndex = 3;
            tabIPD.Text     = "IPD";
            tabIPD.Font     = fEditB;

            tC1.Dock              = System.Windows.Forms.DockStyle.Fill;
            tC1.HotTrack          = true;
            tC1.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
            tC1.TabSizeMode       = C1.Win.C1Command.TabSizeModeEnum.Fit;
            tC1.TabsShowFocusCues = true;
            tC1.Alignment         = TabAlignment.Top;
            tC1.SelectedTabBold   = true;
            tC1.Name              = "tC1";
            tC1.Font              = fEditB;
            tC1.CanCloseTabs      = true;
            tC1.CanAutoHide       = false;
            tC1.SelectedTabBold   = true;
            //tC1.Location = new System.Drawing.Point(0, 0);
            //tC1.BackColor = Color.White;

            pnHead.Dock          = DockStyle.Top;
            pnBotton.Dock        = DockStyle.Fill;
            pnBotton.BorderStyle = BorderStyle.FixedSingle;
            pnQue.Dock           = DockStyle.Fill;
            pnApm.Dock           = DockStyle.Fill;
            pnFinish.Dock        = DockStyle.Fill;
            pnIPD.Dock           = DockStyle.Fill;
            //new LogWriter("d", "FrmDoctorView initComponent 01 ");
            setControlComponent();

            this.Controls.Add(panel1);
            this.Controls.Add(this.sb1);

            panel1.Controls.Add(pnBotton);
            panel1.Controls.Add(pnHead);
            pnBotton.Controls.Add(tC1);
            tC1.Controls.Add(tabQue);
            tC1.Controls.Add(tabApm);
            tC1.Controls.Add(tabFinish);
            tC1.Controls.Add(tabIPD);
            tabQue.Controls.Add(pnQue);
            tabApm.Controls.Add(pnApm);
            tabFinish.Controls.Add(pnFinish);
            tabIPD.Controls.Add(pnIPD);

            pnHead.Controls.Add(lbDtrName);
            pnHead.Controls.Add(txtPttHn);
            pnHead.Controls.Add(btnHnSearch);
            pnHead.Controls.Add(txtDate);
            pnHead.Controls.Add(lbTxtDate);
            pnHead.Controls.Add(lbTxtPttHn);
            //pnHead.Controls.Add(lbPttName);

            this.WindowState = FormWindowState.Maximized;

            //lbDtrName.ResumeLayout(false);
            //lbTxtPttHn.ResumeLayout(false);
            panel1.ResumeLayout(false);
            pnHead.ResumeLayout(false);
            pnBotton.ResumeLayout(false);
            pnQue.ResumeLayout(false);
            pnApm.ResumeLayout(false);
            pnFinish.ResumeLayout(false);
            pnIPD.ResumeLayout(false);
            tC1.ResumeLayout(false);
            tabQue.ResumeLayout(false);
            tabApm.ResumeLayout(false);
            tabFinish.ResumeLayout(false);
            tabIPD.ResumeLayout(false);
            this.ResumeLayout(false);

            pnQue.PerformLayout();
            pnApm.PerformLayout();

            tC1.PerformLayout();
            tabQue.PerformLayout();
            tabApm.PerformLayout();
            this.PerformLayout();
        }
Exemplo n.º 53
0
 private void InitializeComponent()
 {
     components = new Container();
     var resources = new ComponentResourceManager(typeof (UnknownREEncrypter));
     _statusBox = new TextBox();
     _panel1 = new Panel();
     _label1 = new Label();
     _toolTipNormal = new ToolTip(components);
     _radioButtonNormal = new RadioButton();
     _toolTipPortable = new ToolTip(components);
     _radioButtonPortable = new RadioButton();
     _groupBox3 = new GroupBox();
     _groupBox2 = new GroupBox();
     _textBox1 = new TextBox();
     _textBox2 = new TextBox();
     _button3 = new Button();
     _groupBox1 = new GroupBox();
     _pictureBox1 = new PictureBox();
     _button2 = new Button();
     _saveFile = new SaveFileDialog();
     _button1 = new Button();
     _openFile = new OpenFileDialog();
     _menuBarTitleLabel = new Label();
     _exitLabel = new Label();
     _menuBar = new PictureBox();
     _panel1.SuspendLayout();
     _groupBox3.SuspendLayout();
     _groupBox2.SuspendLayout();
     _groupBox1.SuspendLayout();
     ((ISupportInitialize) (_pictureBox1)).BeginInit();
     ((ISupportInitialize) (_menuBar)).BeginInit();
     SuspendLayout();
     //
     // _statusBox
     //
     _statusBox.BorderStyle = BorderStyle.FixedSingle;
     _statusBox.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _statusBox.HideSelection = false;
     _statusBox.Location = new Point(6, 0);
     _statusBox.Name = "_statusBox";
     _statusBox.ReadOnly = true;
     _statusBox.Size = new Size(537, 27);
     _statusBox.TabIndex = 1;
     //
     // _panel1
     //
     _panel1.BackColor = Color.WhiteSmoke;
     _panel1.Controls.Add(_statusBox);
     _panel1.Location = new Point(6, 279);
     _panel1.Name = "_panel1";
     _panel1.Size = new Size(543, 30);
     _panel1.TabIndex = 5;
     //
     // _label1
     //
     _label1.AutoSize = true;
     _label1.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _label1.ForeColor = SystemColors.ControlDark;
     _label1.Location = new Point(367, 101);
     _label1.Name = "_label1";
     _label1.Size = new Size(177, 21);
     _label1.TabIndex = 2;
     _label1.Text = "Created by UnknownRE";
     //
     // _toolTipNormal
     //
     _toolTipNormal.ToolTipTitle = "Output: Same filetype as the original file";
     //
     // _radioButtonNormal
     //
     _radioButtonNormal.AutoSize = true;
     _radioButtonNormal.Checked = true;
     _radioButtonNormal.Location = new Point(9, 23);
     _radioButtonNormal.Name = "_radioButtonNormal";
     _radioButtonNormal.Size = new Size(83, 25);
     _radioButtonNormal.TabIndex = 0;
     _radioButtonNormal.TabStop = true;
     _radioButtonNormal.Text = "Normal";
     _toolTipNormal.SetToolTip(_radioButtonNormal, "Must use PhoenixCrypt to decrypt.");
     _radioButtonNormal.UseVisualStyleBackColor = true;
     //
     // _toolTipPortable
     //
     _toolTipPortable.ToolTipTitle = "Create an executable file";
     //
     // _radioButtonPortable
     //
     _radioButtonPortable.AutoSize = true;
     _radioButtonPortable.Location = new Point(98, 23);
     _radioButtonPortable.Name = "_radioButtonPortable";
     _radioButtonPortable.Size = new Size(91, 25);
     _radioButtonPortable.TabIndex = 1;
     _radioButtonPortable.Text = "Portable";
     _toolTipPortable.SetToolTip(_radioButtonPortable,
         "Enter password to decrypt and save your file with specified name.");
     _radioButtonPortable.UseVisualStyleBackColor = true;
     //
     // _groupBox3
     //
     _groupBox3.Controls.Add(_radioButtonNormal);
     _groupBox3.Controls.Add(_radioButtonPortable);
     _groupBox3.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _groupBox3.Location = new Point(355, 43);
     _groupBox3.Name = "_groupBox3";
     _groupBox3.Size = new Size(194, 55);
     _groupBox3.TabIndex = 2;
     _groupBox3.TabStop = false;
     _groupBox3.Text = " Output Method ";
     //
     // _groupBox2
     //
     _groupBox2.Controls.Add(_textBox1);
     _groupBox2.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _groupBox2.Location = new Point(6, 180);
     _groupBox2.Name = "_groupBox2";
     _groupBox2.Size = new Size(543, 55);
     _groupBox2.TabIndex = 1;
     _groupBox2.TabStop = false;
     _groupBox2.Text = "Password";
     //
     // _textBox1
     //
     _textBox1.BorderStyle = BorderStyle.FixedSingle;
     _textBox1.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _textBox1.Location = new Point(6, 22);
     _textBox1.Name = "_textBox1";
     _textBox1.PasswordChar = '*';
     _textBox1.Size = new Size(532, 27);
     _textBox1.TabIndex = 1;
     _textBox1.UseSystemPasswordChar = true;
     //
     // _textBox2
     //
     _textBox2.AllowDrop = true;
     _textBox2.BorderStyle = BorderStyle.FixedSingle;
     _textBox2.Location = new Point(7, 22);
     _textBox2.Name = "_textBox2";
     _textBox2.Size = new Size(435, 27);
     _textBox2.TabIndex = 0;
     //
     // _button3
     //
     _button3.Location = new Point(445, 18);
     _button3.Name = "_button3";
     _button3.Size = new Size(93, 31);
     _button3.TabIndex = 1;
     _button3.Text = "Browse";
     _button3.UseVisualStyleBackColor = true;
     _button3.Click += selectFileButton_Click;
     //
     // _groupBox1
     //
     _groupBox1.Controls.Add(_button3);
     _groupBox1.Controls.Add(_textBox2);
     _groupBox1.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _groupBox1.Location = new Point(5, 121);
     _groupBox1.Name = "_groupBox1";
     _groupBox1.Size = new Size(544, 57);
     _groupBox1.TabIndex = 0;
     _groupBox1.TabStop = false;
     _groupBox1.Text = " Input File ";
     //
     // _pictureBox1
     //
     _pictureBox1.BackgroundImageLayout = ImageLayout.Center;
     _pictureBox1.Image = ((Image) (resources.GetObject("_pictureBox1.Image")));
     _pictureBox1.Location = new Point(24, 42);
     _pictureBox1.Name = "_pictureBox1";
     _pictureBox1.Size = new Size(76, 76);
     _pictureBox1.SizeMode = PictureBoxSizeMode.AutoSize;
     _pictureBox1.TabIndex = 8;
     _pictureBox1.TabStop = false;
     //
     // _button2
     //
     _button2.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _button2.Location = new Point(312, 235);
     _button2.Name = "_button2";
     _button2.Size = new Size(237, 38);
     _button2.TabIndex = 4;
     _button2.Text = "Decrypt";
     _button2.UseVisualStyleBackColor = true;
     _button2.Click += decryptButton_Click;
     //
     // _button1
     //
     _button1.Font = new Font("Calibri", 9.75F, FontStyle.Bold);
     _button1.Location = new Point(12, 235);
     _button1.Name = "_button1";
     _button1.Size = new Size(294, 38);
     _button1.TabIndex = 3;
     _button1.Text = "Encrypt";
     _button1.UseVisualStyleBackColor = true;
     _button1.Click += encryptButton_Click;
     //
     // _menuBarTitleLabel
     //
     _menuBarTitleLabel.AutoSize = true;
     _menuBarTitleLabel.BackColor = Color.FromArgb(255, 128, 0);
     _menuBarTitleLabel.Font = new Font("Calibri", 18F, FontStyle.Bold, GraphicsUnit.Point, 0);
     _menuBarTitleLabel.ForeColor = Color.White;
     _menuBarTitleLabel.Location = new Point(133, -2);
     _menuBarTitleLabel.Name = "_menuBarTitleLabel";
     _menuBarTitleLabel.Size = new Size(297, 37);
     _menuBarTitleLabel.TabIndex = 11;
     _menuBarTitleLabel.Text = "UnknownRE Encrypter";
     _menuBarTitleLabel.MouseDown += menuBar_MouseDown;
     _menuBarTitleLabel.MouseEnter += menuBarTitleLabel_MouseEnter;
     _menuBarTitleLabel.MouseLeave += menuBarTitleLabel_MouseLeave;
     _menuBarTitleLabel.MouseMove += menuBar_MouseMove;
     _menuBarTitleLabel.MouseUp += menuBar_MouseUp;
     //
     // _exitLabel
     //
     _exitLabel.AutoSize = true;
     _exitLabel.BackColor = Color.FromArgb(255, 128, 0);
     _exitLabel.Cursor = Cursors.Hand;
     _exitLabel.Font = new Font("Microsoft Sans Serif", 18F, FontStyle.Bold, GraphicsUnit.Point, 0);
     _exitLabel.ForeColor = Color.White;
     _exitLabel.Location = new Point(521, 0);
     _exitLabel.Name = "_exitLabel";
     _exitLabel.Size = new Size(37, 36);
     _exitLabel.TabIndex = 10;
     _exitLabel.Text = "X";
     _exitLabel.Click += exitLabel_Click;
     _exitLabel.MouseEnter += exitLabel_MouseEnter;
     _exitLabel.MouseLeave += exitLabel_MouseLeave;
     //
     // _menuBar
     //
     _menuBar.BackColor = Color.FromArgb(255, 128, 0);
     _menuBar.Location = new Point(-1, -2);
     _menuBar.Name = "_menuBar";
     _menuBar.Size = new Size(559, 39);
     _menuBar.TabIndex = 9;
     _menuBar.TabStop = false;
     _menuBar.MouseDown += menuBar_MouseDown;
     _menuBar.MouseMove += menuBar_MouseMove;
     _menuBar.MouseUp += menuBar_MouseUp;
     //
     // UnknownREEncrypter
     //
     BackColor = Color.White;
     ClientSize = new Size(557, 314);
     Controls.Add(_menuBarTitleLabel);
     Controls.Add(_exitLabel);
     Controls.Add(_menuBar);
     Controls.Add(_label1);
     Controls.Add(_panel1);
     Controls.Add(_groupBox3);
     Controls.Add(_groupBox2);
     Controls.Add(_groupBox1);
     Controls.Add(_pictureBox1);
     Controls.Add(_button2);
     Controls.Add(_button1);
     FormBorderStyle = FormBorderStyle.None;
     Icon = ((Icon) (resources.GetObject("$this.Icon")));
     MaximizeBox = false;
     Name = "UnknownREEncrypter";
     StartPosition = FormStartPosition.CenterScreen;
     Text = "UnknownRE Encrypter";
     _panel1.ResumeLayout(false);
     _panel1.PerformLayout();
     _groupBox3.ResumeLayout(false);
     _groupBox3.PerformLayout();
     _groupBox2.ResumeLayout(false);
     _groupBox2.PerformLayout();
     _groupBox1.ResumeLayout(false);
     _groupBox1.PerformLayout();
     ((ISupportInitialize) (_pictureBox1)).EndInit();
     ((ISupportInitialize) (_menuBar)).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Exemplo n.º 54
0
 private void InitializeComponent()
 {
     components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AppWin_SPITool_PRO));
     grbRegisterFilter = new System.Windows.Forms.GroupBox();
     btnCheckUncheck = new System.Windows.Forms.Button();
     chbStatus = new System.Windows.Forms.CheckBox();
     chbTest = new System.Windows.Forms.CheckBox();
     chbMisc = new System.Windows.Forms.CheckBox();
     chbDigital = new System.Windows.Forms.CheckBox();
     chbRF = new System.Windows.Forms.CheckBox();
     dgvRegisterList = new System.Windows.Forms.DataGridView();
     Mark = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     Addr = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Hex = new System.Windows.Forms.DataGridViewTextBoxColumn();
     RName = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     bit0 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     Read = new System.Windows.Forms.DataGridViewButtonColumn();
     Write = new System.Windows.Forms.DataGridViewButtonColumn();
     B1 = new System.Windows.Forms.DataGridViewButtonColumn();
     B2 = new System.Windows.Forms.DataGridViewButtonColumn();
     B3 = new System.Windows.Forms.DataGridViewButtonColumn();
     B4 = new System.Windows.Forms.DataGridViewButtonColumn();
     regListId = new System.Windows.Forms.DataGridViewTextBoxColumn();
     groupBox1 = new System.Windows.Forms.GroupBox();
     chbMarked = new System.Windows.Forms.CheckBox();
     chbCUAll = new System.Windows.Forms.CheckBox();
     spcMainContainer = new System.Windows.Forms.SplitContainer();
     grbLog = new System.Windows.Forms.GroupBox();
     btnClearLog2 = new System.Windows.Forms.Button();
     chbDisableLogging2 = new System.Windows.Forms.CheckBox();
     rtbLogWindow2 = new System.Windows.Forms.RichTextBox();
     btnLoadDefaultRegister = new System.Windows.Forms.Button();
     btnWriteAllRegister = new System.Windows.Forms.Button();
     btnReadAllRegister = new System.Windows.Forms.Button();
     tbcMain = new System.Windows.Forms.TabControl();
     tabPage4 = new System.Windows.Forms.TabPage();
     grbBatch = new System.Windows.Forms.GroupBox();
     pnlBatchMain = new System.Windows.Forms.Panel();
     pnlBatch4 = new System.Windows.Forms.Panel();
     txbBatch4 = new System.Windows.Forms.TextBox();
     btnRunB4 = new System.Windows.Forms.Button();
     chbLoopB4 = new System.Windows.Forms.CheckBox();
     rtbBatchList4 = new System.Windows.Forms.TextBox();
     pnlBatch3 = new System.Windows.Forms.Panel();
     txbBatch3 = new System.Windows.Forms.TextBox();
     chbLoopB3 = new System.Windows.Forms.CheckBox();
     btnRunB3 = new System.Windows.Forms.Button();
     rtbBatchList3 = new System.Windows.Forms.TextBox();
     pnlBatch2 = new System.Windows.Forms.Panel();
     txbBatch2 = new System.Windows.Forms.TextBox();
     chbLoopB2 = new System.Windows.Forms.CheckBox();
     btnRunB2 = new System.Windows.Forms.Button();
     rtbBatchList2 = new System.Windows.Forms.TextBox();
     pnlBatch1 = new System.Windows.Forms.Panel();
     txbBatch1 = new System.Windows.Forms.TextBox();
     rtbBatchList1 = new System.Windows.Forms.TextBox();
     btnRunB1 = new System.Windows.Forms.Button();
     chbLoopB1 = new System.Windows.Forms.CheckBox();
     vrbViewBatch = new System.Windows.Forms.GroupBox();
     label5 = new System.Windows.Forms.Label();
     label3 = new System.Windows.Forms.Label();
     label2 = new System.Windows.Forms.Label();
     label1 = new System.Windows.Forms.Label();
     chbViewB4 = new System.Windows.Forms.CheckBox();
     chbViewB3 = new System.Windows.Forms.CheckBox();
     chbViewB2 = new System.Windows.Forms.CheckBox();
     chbViewB1 = new System.Windows.Forms.CheckBox();
     grbSaveLoad = new System.Windows.Forms.GroupBox();
     btnSaveBatch = new System.Windows.Forms.Button();
     rdbSaveOpenB4 = new System.Windows.Forms.RadioButton();
     btnOpenBatch = new System.Windows.Forms.Button();
     rdbSaveOpenB3 = new System.Windows.Forms.RadioButton();
     rdbSaveOpenB2 = new System.Windows.Forms.RadioButton();
     rdbSaveOpenB1 = new System.Windows.Forms.RadioButton();
     grbLoopControl = new System.Windows.Forms.GroupBox();
     nudLoopLimit = new System.Windows.Forms.NumericUpDown();
     btnResetLoop = new System.Windows.Forms.Button();
     txbLoopCount = new System.Windows.Forms.TextBox();
     label4 = new System.Windows.Forms.Label();
     chbLoopLimit = new System.Windows.Forms.CheckBox();
     tbpFIFO = new System.Windows.Forms.TabPage();
     pnlBerPer = new System.Windows.Forms.Panel();
     btnResetFifo = new System.Windows.Forms.Button();
     lblBER = new System.Windows.Forms.Label();
     lblBitError = new System.Windows.Forms.Label();
     lblDatabits = new System.Windows.Forms.Label();
     txbBitErrors = new System.Windows.Forms.TextBox();
     txbBER = new System.Windows.Forms.TextBox();
     txbDatabits = new System.Windows.Forms.TextBox();
     lblPER = new System.Windows.Forms.Label();
     lblLost = new System.Windows.Forms.Label();
     lblPackets = new System.Windows.Forms.Label();
     txbLost = new System.Windows.Forms.TextBox();
     txbPER = new System.Windows.Forms.TextBox();
     txbPackets = new System.Windows.Forms.TextBox();
     pnlRXFIFO = new System.Windows.Forms.Panel();
     dgvRX = new System.Windows.Forms.DataGridView();
     dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     xpdC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     errC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     btnSaveRead = new System.Windows.Forms.Button();
     btnOpenRead = new System.Windows.Forms.Button();
     btnRead = new System.Windows.Forms.Button();
     pnlTXFIFO = new System.Windows.Forms.Panel();
     dgvTX = new System.Windows.Forms.DataGridView();
     numC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     dataC = new System.Windows.Forms.DataGridViewTextBoxColumn();
     btnSaveWrite = new System.Windows.Forms.Button();
     btnOpenWrite = new System.Windows.Forms.Button();
     btnWrite = new System.Windows.Forms.Button();
     tbpDescription = new System.Windows.Forms.TabPage();
     txbDescription = new System.Windows.Forms.RichTextBox();
     chbDisableLogging = new System.Windows.Forms.CheckBox();
     lblTermWin = new System.Windows.Forms.Label();
     btnClearLog = new System.Windows.Forms.Button();
     rtbLogWindow = new System.Windows.Forms.RichTextBox();
     spiStatusBar = new System.Windows.Forms.StatusBar();
     statusBarPanel1 = new System.Windows.Forms.StatusBarPanel();
     sbChipRevPane = new System.Windows.Forms.StatusBarPanel();
     sbDeviceStatePane = new System.Windows.Forms.StatusBarPanel();
     statusBarPanel4 = new StatusBarTest.StatusBarProgressPanel();
     tmrCommon = new System.Windows.Forms.Timer(components);
     ttpMainToolTip = new System.Windows.Forms.ToolTip(components);
     tsrMainToolStrip = new NewWDS.Applications.App_Common.AppToolStrip.ApplicationToolStrip();
     grbRegisterFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dgvRegisterList)).BeginInit();
     groupBox1.SuspendLayout();
     spcMainContainer.Panel1.SuspendLayout();
     spcMainContainer.Panel2.SuspendLayout();
     spcMainContainer.SuspendLayout();
     grbLog.SuspendLayout();
     tbcMain.SuspendLayout();
     tabPage4.SuspendLayout();
     grbBatch.SuspendLayout();
     pnlBatchMain.SuspendLayout();
     pnlBatch4.SuspendLayout();
     pnlBatch3.SuspendLayout();
     pnlBatch2.SuspendLayout();
     pnlBatch1.SuspendLayout();
     vrbViewBatch.SuspendLayout();
     grbSaveLoad.SuspendLayout();
     grbLoopControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(nudLoopLimit)).BeginInit();
     tbpFIFO.SuspendLayout();
     pnlBerPer.SuspendLayout();
     pnlRXFIFO.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dgvRX)).BeginInit();
     pnlTXFIFO.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(dgvTX)).BeginInit();
     tbpDescription.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(statusBarPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sbChipRevPane)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(sbDeviceStatePane)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(statusBarPanel4)).BeginInit();
     SuspendLayout();
     //
     // grbRegisterFilter
     //
     grbRegisterFilter.Controls.Add(btnCheckUncheck);
     grbRegisterFilter.Controls.Add(chbStatus);
     grbRegisterFilter.Controls.Add(chbTest);
     grbRegisterFilter.Controls.Add(chbMisc);
     grbRegisterFilter.Controls.Add(chbDigital);
     grbRegisterFilter.Controls.Add(chbRF);
     grbRegisterFilter.Location = new System.Drawing.Point(900, 7);
     grbRegisterFilter.Name = "grbRegisterFilter";
     grbRegisterFilter.Size = new System.Drawing.Size(81, 166);
     grbRegisterFilter.TabIndex = 9;
     grbRegisterFilter.TabStop = false;
     grbRegisterFilter.Text = "Filter";
     //
     // btnCheckUncheck
     //
     btnCheckUncheck.Location = new System.Drawing.Point(2, 134);
     btnCheckUncheck.Name = "btnCheckUncheck";
     btnCheckUncheck.Size = new System.Drawing.Size(75, 23);
     btnCheckUncheck.TabIndex = 3;
     btnCheckUncheck.Text = "UnCheck";
     btnCheckUncheck.UseVisualStyleBackColor = true;
     btnCheckUncheck.Click += new System.EventHandler(btnCheckUncheck_Click);
     //
     // chbStatus
     //
     chbStatus.AutoSize = true;
     chbStatus.Checked = true;
     chbStatus.CheckState = System.Windows.Forms.CheckState.Checked;
     chbStatus.Location = new System.Drawing.Point(3, 111);
     chbStatus.Name = "chbStatus";
     chbStatus.Size = new System.Drawing.Size(70, 21);
     chbStatus.TabIndex = 5;
     chbStatus.Text = "Status";
     chbStatus.UseVisualStyleBackColor = true;
     chbStatus.CheckedChanged += new System.EventHandler(chbFilter_CheckedChanged);
     //
     // chbTest
     //
     chbTest.AutoSize = true;
     chbTest.Checked = true;
     chbTest.CheckState = System.Windows.Forms.CheckState.Checked;
     chbTest.Location = new System.Drawing.Point(3, 88);
     chbTest.Name = "chbTest";
     chbTest.Size = new System.Drawing.Size(58, 21);
     chbTest.TabIndex = 4;
     chbTest.Text = "Test";
     chbTest.UseVisualStyleBackColor = true;
     chbTest.CheckedChanged += new System.EventHandler(chbFilter_CheckedChanged);
     //
     // chbMisc
     //
     chbMisc.AutoSize = true;
     chbMisc.Checked = true;
     chbMisc.CheckState = System.Windows.Forms.CheckState.Checked;
     chbMisc.Location = new System.Drawing.Point(3, 65);
     chbMisc.Name = "chbMisc";
     chbMisc.Size = new System.Drawing.Size(62, 21);
     chbMisc.TabIndex = 3;
     chbMisc.Text = "Misc.";
     chbMisc.UseVisualStyleBackColor = true;
     chbMisc.CheckedChanged += new System.EventHandler(chbFilter_CheckedChanged);
     //
     // chbDigital
     //
     chbDigital.AutoSize = true;
     chbDigital.Checked = true;
     chbDigital.CheckState = System.Windows.Forms.CheckState.Checked;
     chbDigital.Location = new System.Drawing.Point(3, 42);
     chbDigital.Name = "chbDigital";
     chbDigital.Size = new System.Drawing.Size(69, 21);
     chbDigital.TabIndex = 2;
     chbDigital.Text = "Digital";
     chbDigital.UseVisualStyleBackColor = true;
     chbDigital.CheckedChanged += new System.EventHandler(chbFilter_CheckedChanged);
     //
     // chbRF
     //
     chbRF.AutoSize = true;
     chbRF.Checked = true;
     chbRF.CheckState = System.Windows.Forms.CheckState.Checked;
     chbRF.Location = new System.Drawing.Point(3, 19);
     chbRF.Name = "chbRF";
     chbRF.Size = new System.Drawing.Size(48, 21);
     chbRF.TabIndex = 1;
     chbRF.Text = "RF";
     chbRF.UseVisualStyleBackColor = true;
     chbRF.CheckedChanged += new System.EventHandler(chbFilter_CheckedChanged);
     //
     // dgvRegisterList
     //
     dgvRegisterList.AllowUserToAddRows = false;
     dgvRegisterList.AllowUserToDeleteRows = false;
     dgvRegisterList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dgvRegisterList.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     Mark,
     Addr,
     Hex,
     RName,
     bit7,
     bit6,
     bit5,
     bit4,
     bit3,
     bit2,
     bit1,
     bit0,
     Read,
     Write,
     B1,
     B2,
     B3,
     B4,
     regListId});
     dgvRegisterList.Location = new System.Drawing.Point(3, 8);
     dgvRegisterList.MultiSelect = false;
     dgvRegisterList.Name = "dgvRegisterList";
     dgvRegisterList.RowHeadersWidth = 25;
     dgvRegisterList.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(240)))), ((int)(((byte)(240)))));
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dgvRegisterList.RowsDefaultCellStyle = dataGridViewCellStyle1;
     dgvRegisterList.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     dgvRegisterList.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     dgvRegisterList.Size = new System.Drawing.Size(893, 220);
     dgvRegisterList.TabIndex = 10;
     dgvRegisterList.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(dgvRegisterList_CellBeginEdit);
     dgvRegisterList.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(dgvRegisterList_CellClick);
     dgvRegisterList.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(dgvRegisterList_CellDoubleClick);
     dgvRegisterList.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(dgvRegisterList_CellEndEdit);
     dgvRegisterList.SelectionChanged += new System.EventHandler(dgvRegisterList_SelectionChanged);
     dgvRegisterList.Sorted += new System.EventHandler(dgvRegisterList_Sorted);
     //
     // Mark
     //
     Mark.HeaderText = "M";
     Mark.Name = "Mark";
     Mark.Width = 20;
     //
     // Addr
     //
     Addr.HeaderText = "Addr.";
     Addr.Name = "Addr";
     Addr.ReadOnly = true;
     Addr.Width = 38;
     //
     // Hex
     //
     Hex.HeaderText = "Hex";
     Hex.Name = "Hex";
     Hex.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     Hex.Width = 38;
     //
     // RName
     //
     RName.HeaderText = "Name";
     RName.Name = "RName";
     RName.ReadOnly = true;
     RName.Width = 200;
     //
     // bit7
     //
     bit7.HeaderText = "bit7";
     bit7.Name = "bit7";
     bit7.ReadOnly = true;
     bit7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit7.Width = 50;
     //
     // bit6
     //
     bit6.HeaderText = "bit6";
     bit6.Name = "bit6";
     bit6.ReadOnly = true;
     bit6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit6.Width = 50;
     //
     // bit5
     //
     bit5.HeaderText = "bit5";
     bit5.Name = "bit5";
     bit5.ReadOnly = true;
     bit5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit5.Width = 50;
     //
     // bit4
     //
     bit4.HeaderText = "bit4";
     bit4.Name = "bit4";
     bit4.ReadOnly = true;
     bit4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit4.Width = 50;
     //
     // bit3
     //
     bit3.HeaderText = "bit3";
     bit3.Name = "bit3";
     bit3.ReadOnly = true;
     bit3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit3.Width = 50;
     //
     // bit2
     //
     bit2.HeaderText = "bit2";
     bit2.Name = "bit2";
     bit2.ReadOnly = true;
     bit2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit2.Width = 50;
     //
     // bit1
     //
     bit1.HeaderText = "bit1";
     bit1.Name = "bit1";
     bit1.ReadOnly = true;
     bit1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit1.Width = 50;
     //
     // bit0
     //
     bit0.HeaderText = "bit0";
     bit0.Name = "bit0";
     bit0.ReadOnly = true;
     bit0.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     bit0.Width = 50;
     //
     // Read
     //
     Read.HeaderText = "R";
     Read.Name = "Read";
     Read.Width = 29;
     //
     // Write
     //
     Write.HeaderText = "W";
     Write.Name = "Write";
     Write.Width = 29;
     //
     // B1
     //
     B1.HeaderText = "1";
     B1.Name = "B1";
     B1.Width = 24;
     //
     // B2
     //
     B2.HeaderText = "2";
     B2.Name = "B2";
     B2.Width = 24;
     //
     // B3
     //
     B3.HeaderText = "3";
     B3.Name = "B3";
     B3.Width = 24;
     //
     // B4
     //
     B4.HeaderText = "4";
     B4.Name = "B4";
     B4.Width = 24;
     //
     // regListId
     //
     regListId.HeaderText = "LId";
     regListId.Name = "regListId";
     regListId.ReadOnly = true;
     regListId.Visible = false;
     //
     // groupBox1
     //
     groupBox1.Controls.Add(chbMarked);
     groupBox1.Controls.Add(chbCUAll);
     groupBox1.Location = new System.Drawing.Point(3, 234);
     groupBox1.Name = "groupBox1";
     groupBox1.Size = new System.Drawing.Size(382, 46);
     groupBox1.TabIndex = 23;
     groupBox1.TabStop = false;
     groupBox1.Text = "Grid View Control";
     //
     // chbMarked
     //
     chbMarked.AutoSize = true;
     chbMarked.Location = new System.Drawing.Point(194, 19);
     chbMarked.Name = "chbMarked";
     chbMarked.Size = new System.Drawing.Size(170, 21);
     chbMarked.TabIndex = 23;
     chbMarked.Text = "View Marked / View All";
     chbMarked.UseVisualStyleBackColor = true;
     chbMarked.CheckedChanged += new System.EventHandler(chbMarked_CheckedChanged);
     //
     // chbCUAll
     //
     chbCUAll.AutoSize = true;
     chbCUAll.Location = new System.Drawing.Point(29, 19);
     chbCUAll.Name = "chbCUAll";
     chbCUAll.Size = new System.Drawing.Size(141, 21);
     chbCUAll.TabIndex = 6;
     chbCUAll.Text = "Mark / Unmark All";
     chbCUAll.UseVisualStyleBackColor = true;
     chbCUAll.CheckedChanged += new System.EventHandler(chbCUAll_CheckedChanged);
     //
     // spcMainContainer
     //
     spcMainContainer.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(140)))), ((int)(((byte)(38)))), ((int)(((byte)(51)))));
     spcMainContainer.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     spcMainContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
     spcMainContainer.Location = new System.Drawing.Point(0, 31);
     spcMainContainer.Name = "spcMainContainer";
     //
     // spcMainContainer.Panel1
     //
     spcMainContainer.Panel1.BackColor = System.Drawing.SystemColors.Control;
     spcMainContainer.Panel1.Controls.Add(grbLog);
     spcMainContainer.Panel1.Controls.Add(dgvRegisterList);
     spcMainContainer.Panel1.Controls.Add(btnLoadDefaultRegister);
     spcMainContainer.Panel1.Controls.Add(btnWriteAllRegister);
     spcMainContainer.Panel1.Controls.Add(grbRegisterFilter);
     spcMainContainer.Panel1.Controls.Add(groupBox1);
     spcMainContainer.Panel1.Controls.Add(btnReadAllRegister);
     spcMainContainer.Panel1.Controls.Add(tbcMain);
     //
     // spcMainContainer.Panel2
     //
     spcMainContainer.Panel2.BackColor = System.Drawing.SystemColors.Control;
     spcMainContainer.Panel2.Controls.Add(chbDisableLogging);
     spcMainContainer.Panel2.Controls.Add(lblTermWin);
     spcMainContainer.Panel2.Controls.Add(btnClearLog);
     spcMainContainer.Panel2.Controls.Add(rtbLogWindow);
     spcMainContainer.Panel2MinSize = 2;
     spcMainContainer.Size = new System.Drawing.Size(1000, 628);
     spcMainContainer.SplitterDistance = 988;
     spcMainContainer.SplitterWidth = 6;
     spcMainContainer.TabIndex = 25;
     spcMainContainer.TabStop = false;
     //
     // grbLog
     //
     grbLog.Controls.Add(btnClearLog2);
     grbLog.Controls.Add(chbDisableLogging2);
     grbLog.Controls.Add(rtbLogWindow2);
     grbLog.Location = new System.Drawing.Point(638, 312);
     grbLog.Name = "grbLog";
     grbLog.Size = new System.Drawing.Size(333, 288);
     grbLog.TabIndex = 25;
     grbLog.TabStop = false;
     grbLog.Text = "Log window";
     //
     // btnClearLog2
     //
     btnClearLog2.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     btnClearLog2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnClearLog2.Location = new System.Drawing.Point(227, 250);
     btnClearLog2.Name = "btnClearLog2";
     btnClearLog2.Size = new System.Drawing.Size(90, 25);
     btnClearLog2.TabIndex = 6;
     btnClearLog2.Text = "Clear Log";
     btnClearLog2.UseVisualStyleBackColor = true;
     btnClearLog2.Click += new System.EventHandler(btnClearLog2_Click);
     //
     // chbDisableLogging2
     //
     chbDisableLogging2.Appearance = System.Windows.Forms.Appearance.Button;
     chbDisableLogging2.AutoSize = true;
     chbDisableLogging2.BackColor = System.Drawing.Color.Red;
     chbDisableLogging2.Checked = true;
     chbDisableLogging2.CheckState = System.Windows.Forms.CheckState.Checked;
     chbDisableLogging2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chbDisableLogging2.Location = new System.Drawing.Point(15, 251);
     chbDisableLogging2.Name = "chbDisableLogging2";
     chbDisableLogging2.Size = new System.Drawing.Size(117, 27);
     chbDisableLogging2.TabIndex = 7;
     chbDisableLogging2.Text = "Enable Logging";
     chbDisableLogging2.UseVisualStyleBackColor = false;
     chbDisableLogging2.CheckedChanged += new System.EventHandler(chbDisableLogging2_CheckedChanged);
     //
     // rtbLogWindow2
     //
     rtbLogWindow2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbLogWindow2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(238)));
     rtbLogWindow2.Location = new System.Drawing.Point(15, 19);
     rtbLogWindow2.Name = "rtbLogWindow2";
     rtbLogWindow2.ReadOnly = true;
     rtbLogWindow2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
     rtbLogWindow2.Size = new System.Drawing.Size(302, 225);
     rtbLogWindow2.TabIndex = 3;
     rtbLogWindow2.Text = "";
     //
     // btnLoadDefaultRegister
     //
     btnLoadDefaultRegister.Image = ((System.Drawing.Image)(resources.GetObject("btnLoadDefaultRegister.Image")));
     btnLoadDefaultRegister.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     btnLoadDefaultRegister.Location = new System.Drawing.Point(596, 234);
     btnLoadDefaultRegister.Name = "btnLoadDefaultRegister";
     btnLoadDefaultRegister.Size = new System.Drawing.Size(100, 46);
     btnLoadDefaultRegister.TabIndex = 24;
     btnLoadDefaultRegister.Text = "Load Defaults";
     btnLoadDefaultRegister.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     btnLoadDefaultRegister.UseVisualStyleBackColor = true;
     btnLoadDefaultRegister.Click += new System.EventHandler(btnLoadDefaultRegister_Click);
     //
     // btnWriteAllRegister
     //
     btnWriteAllRegister.Image = ((System.Drawing.Image)(resources.GetObject("btnWriteAllRegister.Image")));
     btnWriteAllRegister.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     btnWriteAllRegister.Location = new System.Drawing.Point(800, 234);
     btnWriteAllRegister.Name = "btnWriteAllRegister";
     btnWriteAllRegister.Size = new System.Drawing.Size(100, 46);
     btnWriteAllRegister.TabIndex = 22;
     btnWriteAllRegister.Text = "Write All Visible";
     btnWriteAllRegister.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     btnWriteAllRegister.UseVisualStyleBackColor = true;
     btnWriteAllRegister.Click += new System.EventHandler(btnWriteAllRegister_Click);
     //
     // btnReadAllRegister
     //
     btnReadAllRegister.Image = ((System.Drawing.Image)(resources.GetObject("btnReadAllRegister.Image")));
     btnReadAllRegister.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     btnReadAllRegister.Location = new System.Drawing.Point(698, 234);
     btnReadAllRegister.Name = "btnReadAllRegister";
     btnReadAllRegister.Size = new System.Drawing.Size(100, 46);
     btnReadAllRegister.TabIndex = 21;
     btnReadAllRegister.Text = "Read All Visible";
     btnReadAllRegister.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     btnReadAllRegister.UseVisualStyleBackColor = true;
     btnReadAllRegister.Click += new System.EventHandler(btnReadAllRegister_Click);
     //
     // tbcMain
     //
     tbcMain.Controls.Add(tabPage4);
     tbcMain.Controls.Add(tbpFIFO);
     tbcMain.Controls.Add(tbpDescription);
     tbcMain.Location = new System.Drawing.Point(3, 286);
     tbcMain.Name = "tbcMain";
     tbcMain.SelectedIndex = 0;
     tbcMain.Size = new System.Drawing.Size(629, 335);
     tbcMain.TabIndex = 5;
     //
     // tabPage4
     //
     tabPage4.Controls.Add(grbBatch);
     tabPage4.Location = new System.Drawing.Point(4, 26);
     tabPage4.Name = "tabPage4";
     tabPage4.Size = new System.Drawing.Size(621, 305);
     tabPage4.TabIndex = 3;
     tabPage4.Text = "Batch Editor";
     //
     // grbBatch
     //
     grbBatch.Controls.Add(pnlBatchMain);
     grbBatch.Controls.Add(vrbViewBatch);
     grbBatch.Controls.Add(grbSaveLoad);
     grbBatch.Controls.Add(grbLoopControl);
     grbBatch.Location = new System.Drawing.Point(3, 8);
     grbBatch.Name = "grbBatch";
     grbBatch.Size = new System.Drawing.Size(612, 298);
     grbBatch.TabIndex = 2;
     grbBatch.TabStop = false;
     grbBatch.Text = "Batch Command Execution";
     //
     // pnlBatchMain
     //
     pnlBatchMain.Controls.Add(pnlBatch4);
     pnlBatchMain.Controls.Add(pnlBatch3);
     pnlBatchMain.Controls.Add(pnlBatch2);
     pnlBatchMain.Controls.Add(pnlBatch1);
     pnlBatchMain.Location = new System.Drawing.Point(6, 19);
     pnlBatchMain.Name = "pnlBatchMain";
     pnlBatchMain.Size = new System.Drawing.Size(492, 265);
     pnlBatchMain.TabIndex = 31;
     //
     // pnlBatch4
     //
     pnlBatch4.Controls.Add(txbBatch4);
     pnlBatch4.Controls.Add(btnRunB4);
     pnlBatch4.Controls.Add(chbLoopB4);
     pnlBatch4.Controls.Add(rtbBatchList4);
     pnlBatch4.Dock = System.Windows.Forms.DockStyle.Left;
     pnlBatch4.Location = new System.Drawing.Point(369, 0);
     pnlBatch4.Name = "pnlBatch4";
     pnlBatch4.Size = new System.Drawing.Size(123, 265);
     pnlBatch4.TabIndex = 33;
     //
     // txbBatch4
     //
     txbBatch4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     txbBatch4.BackColor = System.Drawing.SystemColors.Window;
     txbBatch4.Location = new System.Drawing.Point(3, 3);
     txbBatch4.Name = "txbBatch4";
     txbBatch4.Size = new System.Drawing.Size(116, 23);
     txbBatch4.TabIndex = 12;
     txbBatch4.Text = "Batch 4";
     txbBatch4.Click += new System.EventHandler(BatchList_Click);
     txbBatch4.Leave += new System.EventHandler(txbBatch_Leave);
     txbBatch4.MouseHover += new System.EventHandler(txbBatch_MouseHover);
     //
     // btnRunB4
     //
     btnRunB4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnRunB4.Location = new System.Drawing.Point(4, 238);
     btnRunB4.Name = "btnRunB4";
     btnRunB4.Size = new System.Drawing.Size(50, 25);
     btnRunB4.TabIndex = 14;
     btnRunB4.Text = "Run";
     btnRunB4.UseVisualStyleBackColor = true;
     btnRunB4.Click += new System.EventHandler(RunPauseBatch);
     //
     // chbLoopB4
     //
     chbLoopB4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     chbLoopB4.AutoSize = true;
     chbLoopB4.Location = new System.Drawing.Point(58, 240);
     chbLoopB4.Name = "chbLoopB4";
     chbLoopB4.Size = new System.Drawing.Size(62, 21);
     chbLoopB4.TabIndex = 15;
     chbLoopB4.Text = "Loop";
     chbLoopB4.UseVisualStyleBackColor = true;
     chbLoopB4.Visible = false;
     //
     // rtbBatchList4
     //
     rtbBatchList4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbBatchList4.Location = new System.Drawing.Point(3, 26);
     rtbBatchList4.MaxLength = 5000;
     rtbBatchList4.Multiline = true;
     rtbBatchList4.Name = "rtbBatchList4";
     rtbBatchList4.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     rtbBatchList4.Size = new System.Drawing.Size(116, 207);
     rtbBatchList4.TabIndex = 29;
     rtbBatchList4.WordWrap = false;
     rtbBatchList4.Click += new System.EventHandler(BatchList_Click);
     //
     // pnlBatch3
     //
     pnlBatch3.Controls.Add(txbBatch3);
     pnlBatch3.Controls.Add(chbLoopB3);
     pnlBatch3.Controls.Add(btnRunB3);
     pnlBatch3.Controls.Add(rtbBatchList3);
     pnlBatch3.Dock = System.Windows.Forms.DockStyle.Left;
     pnlBatch3.Location = new System.Drawing.Point(246, 0);
     pnlBatch3.Name = "pnlBatch3";
     pnlBatch3.Size = new System.Drawing.Size(123, 265);
     pnlBatch3.TabIndex = 32;
     //
     // txbBatch3
     //
     txbBatch3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     txbBatch3.BackColor = System.Drawing.SystemColors.Window;
     txbBatch3.Location = new System.Drawing.Point(3, 3);
     txbBatch3.Name = "txbBatch3";
     txbBatch3.Size = new System.Drawing.Size(116, 23);
     txbBatch3.TabIndex = 8;
     txbBatch3.Text = "Batch 3";
     txbBatch3.Click += new System.EventHandler(BatchList_Click);
     txbBatch3.Leave += new System.EventHandler(txbBatch_Leave);
     txbBatch3.MouseHover += new System.EventHandler(txbBatch_MouseHover);
     //
     // chbLoopB3
     //
     chbLoopB3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     chbLoopB3.AutoSize = true;
     chbLoopB3.Location = new System.Drawing.Point(58, 240);
     chbLoopB3.Name = "chbLoopB3";
     chbLoopB3.Size = new System.Drawing.Size(62, 21);
     chbLoopB3.TabIndex = 11;
     chbLoopB3.Text = "Loop";
     chbLoopB3.UseVisualStyleBackColor = true;
     chbLoopB3.Visible = false;
     //
     // btnRunB3
     //
     btnRunB3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnRunB3.Location = new System.Drawing.Point(4, 238);
     btnRunB3.Name = "btnRunB3";
     btnRunB3.Size = new System.Drawing.Size(50, 25);
     btnRunB3.TabIndex = 10;
     btnRunB3.Text = "Run";
     btnRunB3.UseVisualStyleBackColor = true;
     btnRunB3.Click += new System.EventHandler(RunPauseBatch);
     //
     // rtbBatchList3
     //
     rtbBatchList3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbBatchList3.Location = new System.Drawing.Point(3, 26);
     rtbBatchList3.MaxLength = 5000;
     rtbBatchList3.Multiline = true;
     rtbBatchList3.Name = "rtbBatchList3";
     rtbBatchList3.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     rtbBatchList3.Size = new System.Drawing.Size(116, 207);
     rtbBatchList3.TabIndex = 28;
     rtbBatchList3.WordWrap = false;
     rtbBatchList3.Click += new System.EventHandler(BatchList_Click);
     //
     // pnlBatch2
     //
     pnlBatch2.Controls.Add(txbBatch2);
     pnlBatch2.Controls.Add(chbLoopB2);
     pnlBatch2.Controls.Add(btnRunB2);
     pnlBatch2.Controls.Add(rtbBatchList2);
     pnlBatch2.Dock = System.Windows.Forms.DockStyle.Left;
     pnlBatch2.Location = new System.Drawing.Point(123, 0);
     pnlBatch2.Name = "pnlBatch2";
     pnlBatch2.Size = new System.Drawing.Size(123, 265);
     pnlBatch2.TabIndex = 31;
     //
     // txbBatch2
     //
     txbBatch2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     txbBatch2.BackColor = System.Drawing.SystemColors.Window;
     txbBatch2.Location = new System.Drawing.Point(3, 3);
     txbBatch2.Name = "txbBatch2";
     txbBatch2.Size = new System.Drawing.Size(116, 23);
     txbBatch2.TabIndex = 4;
     txbBatch2.Text = "Batch 2";
     txbBatch2.Click += new System.EventHandler(BatchList_Click);
     txbBatch2.Leave += new System.EventHandler(txbBatch_Leave);
     txbBatch2.MouseHover += new System.EventHandler(txbBatch_MouseHover);
     //
     // chbLoopB2
     //
     chbLoopB2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     chbLoopB2.AutoSize = true;
     chbLoopB2.Location = new System.Drawing.Point(58, 240);
     chbLoopB2.Name = "chbLoopB2";
     chbLoopB2.Size = new System.Drawing.Size(62, 21);
     chbLoopB2.TabIndex = 7;
     chbLoopB2.Text = "Loop";
     chbLoopB2.UseVisualStyleBackColor = true;
     chbLoopB2.Visible = false;
     //
     // btnRunB2
     //
     btnRunB2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnRunB2.Location = new System.Drawing.Point(4, 238);
     btnRunB2.Name = "btnRunB2";
     btnRunB2.Size = new System.Drawing.Size(50, 25);
     btnRunB2.TabIndex = 6;
     btnRunB2.Text = "Run";
     btnRunB2.UseVisualStyleBackColor = true;
     btnRunB2.Click += new System.EventHandler(RunPauseBatch);
     //
     // rtbBatchList2
     //
     rtbBatchList2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbBatchList2.Location = new System.Drawing.Point(3, 26);
     rtbBatchList2.MaxLength = 5000;
     rtbBatchList2.Multiline = true;
     rtbBatchList2.Name = "rtbBatchList2";
     rtbBatchList2.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     rtbBatchList2.Size = new System.Drawing.Size(116, 207);
     rtbBatchList2.TabIndex = 27;
     rtbBatchList2.WordWrap = false;
     rtbBatchList2.Click += new System.EventHandler(BatchList_Click);
     //
     // pnlBatch1
     //
     pnlBatch1.Controls.Add(txbBatch1);
     pnlBatch1.Controls.Add(rtbBatchList1);
     pnlBatch1.Controls.Add(btnRunB1);
     pnlBatch1.Controls.Add(chbLoopB1);
     pnlBatch1.Dock = System.Windows.Forms.DockStyle.Left;
     pnlBatch1.Location = new System.Drawing.Point(0, 0);
     pnlBatch1.Name = "pnlBatch1";
     pnlBatch1.Size = new System.Drawing.Size(123, 265);
     pnlBatch1.TabIndex = 30;
     //
     // txbBatch1
     //
     txbBatch1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     txbBatch1.BackColor = System.Drawing.SystemColors.Window;
     txbBatch1.Location = new System.Drawing.Point(3, 3);
     txbBatch1.Name = "txbBatch1";
     txbBatch1.Size = new System.Drawing.Size(116, 23);
     txbBatch1.TabIndex = 0;
     txbBatch1.Text = "Batch 1";
     ttpMainToolTip.SetToolTip(txbBatch1, "r");
     txbBatch1.Click += new System.EventHandler(BatchList_Click);
     txbBatch1.Leave += new System.EventHandler(txbBatch_Leave);
     txbBatch1.MouseHover += new System.EventHandler(txbBatch_MouseHover);
     //
     // rtbBatchList1
     //
     rtbBatchList1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbBatchList1.Location = new System.Drawing.Point(3, 26);
     rtbBatchList1.MaxLength = 5000;
     rtbBatchList1.Multiline = true;
     rtbBatchList1.Name = "rtbBatchList1";
     rtbBatchList1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     rtbBatchList1.Size = new System.Drawing.Size(116, 207);
     rtbBatchList1.TabIndex = 26;
     rtbBatchList1.WordWrap = false;
     rtbBatchList1.Click += new System.EventHandler(BatchList_Click);
     //
     // btnRunB1
     //
     btnRunB1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     btnRunB1.Location = new System.Drawing.Point(5, 238);
     btnRunB1.Name = "btnRunB1";
     btnRunB1.Size = new System.Drawing.Size(50, 25);
     btnRunB1.TabIndex = 2;
     btnRunB1.Text = "Run";
     btnRunB1.UseVisualStyleBackColor = true;
     btnRunB1.Click += new System.EventHandler(RunPauseBatch);
     //
     // chbLoopB1
     //
     chbLoopB1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     chbLoopB1.AutoSize = true;
     chbLoopB1.Location = new System.Drawing.Point(58, 241);
     chbLoopB1.Name = "chbLoopB1";
     chbLoopB1.Size = new System.Drawing.Size(62, 21);
     chbLoopB1.TabIndex = 3;
     chbLoopB1.Text = "Loop";
     chbLoopB1.UseVisualStyleBackColor = true;
     chbLoopB1.Visible = false;
     //
     // vrbViewBatch
     //
     vrbViewBatch.Controls.Add(label5);
     vrbViewBatch.Controls.Add(label3);
     vrbViewBatch.Controls.Add(label2);
     vrbViewBatch.Controls.Add(label1);
     vrbViewBatch.Controls.Add(chbViewB4);
     vrbViewBatch.Controls.Add(chbViewB3);
     vrbViewBatch.Controls.Add(chbViewB2);
     vrbViewBatch.Controls.Add(chbViewB1);
     vrbViewBatch.Location = new System.Drawing.Point(506, 12);
     vrbViewBatch.Name = "vrbViewBatch";
     vrbViewBatch.Size = new System.Drawing.Size(102, 59);
     vrbViewBatch.TabIndex = 30;
     vrbViewBatch.TabStop = false;
     vrbViewBatch.Text = "View Batch";
     //
     // label5
     //
     label5.AutoSize = true;
     label5.Location = new System.Drawing.Point(73, 36);
     label5.Name = "label5";
     label5.Size = new System.Drawing.Size(16, 17);
     label5.TabIndex = 7;
     label5.Text = "4";
     //
     // label3
     //
     label3.AutoSize = true;
     label3.Location = new System.Drawing.Point(54, 36);
     label3.Name = "label3";
     label3.Size = new System.Drawing.Size(16, 17);
     label3.TabIndex = 6;
     label3.Text = "3";
     //
     // label2
     //
     label2.AutoSize = true;
     label2.Location = new System.Drawing.Point(32, 36);
     label2.Name = "label2";
     label2.Size = new System.Drawing.Size(16, 17);
     label2.TabIndex = 5;
     label2.Text = "2";
     //
     // label1
     //
     label1.AutoSize = true;
     label1.Location = new System.Drawing.Point(12, 36);
     label1.Name = "label1";
     label1.Size = new System.Drawing.Size(16, 17);
     label1.TabIndex = 4;
     label1.Text = "1";
     //
     // chbViewB4
     //
     chbViewB4.AutoSize = true;
     chbViewB4.Checked = true;
     chbViewB4.CheckState = System.Windows.Forms.CheckState.Checked;
     chbViewB4.Location = new System.Drawing.Point(72, 19);
     chbViewB4.Name = "chbViewB4";
     chbViewB4.Size = new System.Drawing.Size(18, 17);
     chbViewB4.TabIndex = 3;
     chbViewB4.UseVisualStyleBackColor = true;
     chbViewB4.CheckedChanged += new System.EventHandler(chbView_CheckedChanged);
     //
     // chbViewB3
     //
     chbViewB3.AutoSize = true;
     chbViewB3.Checked = true;
     chbViewB3.CheckState = System.Windows.Forms.CheckState.Checked;
     chbViewB3.Location = new System.Drawing.Point(52, 19);
     chbViewB3.Name = "chbViewB3";
     chbViewB3.Size = new System.Drawing.Size(18, 17);
     chbViewB3.TabIndex = 2;
     chbViewB3.UseVisualStyleBackColor = true;
     chbViewB3.CheckedChanged += new System.EventHandler(chbView_CheckedChanged);
     //
     // chbViewB2
     //
     chbViewB2.AutoSize = true;
     chbViewB2.Checked = true;
     chbViewB2.CheckState = System.Windows.Forms.CheckState.Checked;
     chbViewB2.Location = new System.Drawing.Point(32, 19);
     chbViewB2.Name = "chbViewB2";
     chbViewB2.Size = new System.Drawing.Size(18, 17);
     chbViewB2.TabIndex = 1;
     chbViewB2.UseVisualStyleBackColor = true;
     chbViewB2.CheckedChanged += new System.EventHandler(chbView_CheckedChanged);
     //
     // chbViewB1
     //
     chbViewB1.AutoSize = true;
     chbViewB1.Checked = true;
     chbViewB1.CheckState = System.Windows.Forms.CheckState.Checked;
     chbViewB1.Location = new System.Drawing.Point(12, 19);
     chbViewB1.Name = "chbViewB1";
     chbViewB1.Size = new System.Drawing.Size(18, 17);
     chbViewB1.TabIndex = 0;
     chbViewB1.UseVisualStyleBackColor = true;
     chbViewB1.CheckedChanged += new System.EventHandler(chbView_CheckedChanged);
     //
     // grbSaveLoad
     //
     grbSaveLoad.Controls.Add(btnSaveBatch);
     grbSaveLoad.Controls.Add(rdbSaveOpenB4);
     grbSaveLoad.Controls.Add(btnOpenBatch);
     grbSaveLoad.Controls.Add(rdbSaveOpenB3);
     grbSaveLoad.Controls.Add(rdbSaveOpenB2);
     grbSaveLoad.Controls.Add(rdbSaveOpenB1);
     grbSaveLoad.Location = new System.Drawing.Point(506, 75);
     grbSaveLoad.Name = "grbSaveLoad";
     grbSaveLoad.Size = new System.Drawing.Size(102, 78);
     grbSaveLoad.TabIndex = 17;
     grbSaveLoad.TabStop = false;
     grbSaveLoad.Text = "Save/Load Batch";
     //
     // btnSaveBatch
     //
     btnSaveBatch.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveBatch.Image")));
     btnSaveBatch.Location = new System.Drawing.Point(51, 46);
     btnSaveBatch.Name = "btnSaveBatch";
     btnSaveBatch.Size = new System.Drawing.Size(26, 26);
     btnSaveBatch.TabIndex = 22;
     btnSaveBatch.UseVisualStyleBackColor = true;
     btnSaveBatch.Click += new System.EventHandler(btnSaveBatch_Click);
     //
     // rdbSaveOpenB4
     //
     rdbSaveOpenB4.AutoSize = true;
     rdbSaveOpenB4.Location = new System.Drawing.Point(71, 27);
     rdbSaveOpenB4.Name = "rdbSaveOpenB4";
     rdbSaveOpenB4.Size = new System.Drawing.Size(17, 16);
     rdbSaveOpenB4.TabIndex = 3;
     rdbSaveOpenB4.TabStop = true;
     rdbSaveOpenB4.UseVisualStyleBackColor = true;
     rdbSaveOpenB4.CheckedChanged += new System.EventHandler(rdbSaveOpen_CheckedChanged);
     //
     // btnOpenBatch
     //
     btnOpenBatch.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenBatch.Image")));
     btnOpenBatch.Location = new System.Drawing.Point(19, 46);
     btnOpenBatch.Name = "btnOpenBatch";
     btnOpenBatch.Size = new System.Drawing.Size(26, 26);
     btnOpenBatch.TabIndex = 21;
     btnOpenBatch.UseVisualStyleBackColor = true;
     btnOpenBatch.Click += new System.EventHandler(btnOpenBatch_Click);
     //
     // rdbSaveOpenB3
     //
     rdbSaveOpenB3.AutoSize = true;
     rdbSaveOpenB3.Location = new System.Drawing.Point(51, 27);
     rdbSaveOpenB3.Name = "rdbSaveOpenB3";
     rdbSaveOpenB3.Size = new System.Drawing.Size(17, 16);
     rdbSaveOpenB3.TabIndex = 2;
     rdbSaveOpenB3.TabStop = true;
     rdbSaveOpenB3.UseVisualStyleBackColor = true;
     rdbSaveOpenB3.CheckedChanged += new System.EventHandler(rdbSaveOpen_CheckedChanged);
     //
     // rdbSaveOpenB2
     //
     rdbSaveOpenB2.AutoSize = true;
     rdbSaveOpenB2.Location = new System.Drawing.Point(31, 27);
     rdbSaveOpenB2.Name = "rdbSaveOpenB2";
     rdbSaveOpenB2.Size = new System.Drawing.Size(17, 16);
     rdbSaveOpenB2.TabIndex = 1;
     rdbSaveOpenB2.TabStop = true;
     rdbSaveOpenB2.UseVisualStyleBackColor = true;
     rdbSaveOpenB2.CheckedChanged += new System.EventHandler(rdbSaveOpen_CheckedChanged);
     //
     // rdbSaveOpenB1
     //
     rdbSaveOpenB1.AutoSize = true;
     rdbSaveOpenB1.Checked = true;
     rdbSaveOpenB1.Location = new System.Drawing.Point(11, 27);
     rdbSaveOpenB1.Name = "rdbSaveOpenB1";
     rdbSaveOpenB1.Size = new System.Drawing.Size(17, 16);
     rdbSaveOpenB1.TabIndex = 0;
     rdbSaveOpenB1.TabStop = true;
     rdbSaveOpenB1.UseVisualStyleBackColor = true;
     rdbSaveOpenB1.CheckedChanged += new System.EventHandler(rdbSaveOpen_CheckedChanged);
     //
     // grbLoopControl
     //
     grbLoopControl.Controls.Add(chbLoopLimit);
     grbLoopControl.Controls.Add(btnResetLoop);
     grbLoopControl.Controls.Add(txbLoopCount);
     grbLoopControl.Controls.Add(label4);
     grbLoopControl.Controls.Add(nudLoopLimit);
     grbLoopControl.Location = new System.Drawing.Point(506, 154);
     grbLoopControl.Name = "grbLoopControl";
     grbLoopControl.Size = new System.Drawing.Size(102, 130);
     grbLoopControl.TabIndex = 16;
     grbLoopControl.TabStop = false;
     grbLoopControl.Text = "Loop control";
     grbLoopControl.Visible = false;
     //
     // nudLoopLimit
     //
     nudLoopLimit.Location = new System.Drawing.Point(33, 39);
     nudLoopLimit.Maximum = new decimal(new int[] {
     9999,
     0,
     0,
     0});
     nudLoopLimit.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     nudLoopLimit.Name = "nudLoopLimit";
     nudLoopLimit.ReadOnly = true;
     nudLoopLimit.Size = new System.Drawing.Size(47, 23);
     nudLoopLimit.TabIndex = 5;
     nudLoopLimit.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     nudLoopLimit.ValueChanged += new System.EventHandler(nudLoopLimit_ValueChanged);
     //
     // btnResetLoop
     //
     btnResetLoop.Location = new System.Drawing.Point(12, 103);
     btnResetLoop.Margin = new System.Windows.Forms.Padding(0);
     btnResetLoop.Name = "btnResetLoop";
     btnResetLoop.Size = new System.Drawing.Size(74, 24);
     btnResetLoop.TabIndex = 4;
     btnResetLoop.Text = "Stop/Reset";
     btnResetLoop.UseVisualStyleBackColor = true;
     btnResetLoop.Click += new System.EventHandler(btnResetLoop_Click);
     //
     // txbLoopCount
     //
     txbLoopCount.Enabled = false;
     txbLoopCount.Location = new System.Drawing.Point(33, 75);
     txbLoopCount.Margin = new System.Windows.Forms.Padding(1);
     txbLoopCount.Name = "txbLoopCount";
     txbLoopCount.ReadOnly = true;
     txbLoopCount.Size = new System.Drawing.Size(47, 23);
     txbLoopCount.TabIndex = 3;
     txbLoopCount.Text = "0";
     txbLoopCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     label4.AutoSize = true;
     label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F);
     label4.Location = new System.Drawing.Point(9, 60);
     label4.Margin = new System.Windows.Forms.Padding(1, 0, 1, 0);
     label4.Name = "label4";
     label4.Size = new System.Drawing.Size(71, 15);
     label4.TabIndex = 2;
     label4.Text = "Loop count:";
     //
     // chbLoopLimit
     //
     chbLoopLimit.Font = new System.Drawing.Font("Microsoft Sans Serif", 7F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chbLoopLimit.Location = new System.Drawing.Point(33, 18);
     chbLoopLimit.Margin = new System.Windows.Forms.Padding(1);
     chbLoopLimit.MaximumSize = new System.Drawing.Size(0, 17);
     chbLoopLimit.Name = "chbLoopLimit";
     chbLoopLimit.Size = new System.Drawing.Size(64, 17);
     chbLoopLimit.TabIndex = 0;
     chbLoopLimit.Text = "Limit";
     chbLoopLimit.UseVisualStyleBackColor = true;
     chbLoopLimit.CheckedChanged += new System.EventHandler(chbLoopLimit_CheckedChanged);
     //
     // tbpFIFO
     //
     tbpFIFO.BackColor = System.Drawing.SystemColors.Control;
     tbpFIFO.Controls.Add(pnlBerPer);
     tbpFIFO.Controls.Add(pnlRXFIFO);
     tbpFIFO.Controls.Add(pnlTXFIFO);
     tbpFIFO.Location = new System.Drawing.Point(4, 25);
     tbpFIFO.Name = "tbpFIFO";
     tbpFIFO.Padding = new System.Windows.Forms.Padding(3);
     tbpFIFO.Size = new System.Drawing.Size(621, 306);
     tbpFIFO.TabIndex = 0;
     tbpFIFO.Text = "FIFO";
     //
     // pnlBerPer
     //
     pnlBerPer.Controls.Add(btnResetFifo);
     pnlBerPer.Controls.Add(lblBER);
     pnlBerPer.Controls.Add(lblBitError);
     pnlBerPer.Controls.Add(lblDatabits);
     pnlBerPer.Controls.Add(txbBitErrors);
     pnlBerPer.Controls.Add(txbBER);
     pnlBerPer.Controls.Add(txbDatabits);
     pnlBerPer.Controls.Add(lblPER);
     pnlBerPer.Controls.Add(lblLost);
     pnlBerPer.Controls.Add(lblPackets);
     pnlBerPer.Controls.Add(txbLost);
     pnlBerPer.Controls.Add(txbPER);
     pnlBerPer.Controls.Add(txbPackets);
     pnlBerPer.Location = new System.Drawing.Point(367, 19);
     pnlBerPer.Name = "pnlBerPer";
     pnlBerPer.Size = new System.Drawing.Size(124, 263);
     pnlBerPer.TabIndex = 28;
     //
     // btnResetFifo
     //
     btnResetFifo.Location = new System.Drawing.Point(58, 199);
     btnResetFifo.Name = "btnResetFifo";
     btnResetFifo.Size = new System.Drawing.Size(45, 26);
     btnResetFifo.TabIndex = 27;
     btnResetFifo.Text = "Reset";
     btnResetFifo.UseVisualStyleBackColor = true;
     btnResetFifo.Click += new System.EventHandler(btnResetFifo_Click);
     //
     // lblBER
     //
     lblBER.AutoSize = true;
     lblBER.Location = new System.Drawing.Point(7, 176);
     lblBER.Name = "lblBER";
     lblBER.Size = new System.Drawing.Size(40, 17);
     lblBER.TabIndex = 26;
     lblBER.Text = "BER:";
     //
     // lblBitError
     //
     lblBitError.AutoSize = true;
     lblBitError.Location = new System.Drawing.Point(7, 150);
     lblBitError.Name = "lblBitError";
     lblBitError.Size = new System.Drawing.Size(70, 17);
     lblBitError.TabIndex = 25;
     lblBitError.Text = "Bit errors:";
     //
     // lblDatabits
     //
     lblDatabits.AutoSize = true;
     lblDatabits.Location = new System.Drawing.Point(7, 122);
     lblDatabits.Name = "lblDatabits";
     lblDatabits.Size = new System.Drawing.Size(64, 17);
     lblDatabits.TabIndex = 24;
     lblDatabits.Text = "Databits:";
     //
     // txbBitErrors
     //
     txbBitErrors.BackColor = System.Drawing.SystemColors.Control;
     txbBitErrors.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbBitErrors.Location = new System.Drawing.Point(58, 145);
     txbBitErrors.Name = "txbBitErrors";
     txbBitErrors.ReadOnly = true;
     txbBitErrors.Size = new System.Drawing.Size(60, 23);
     txbBitErrors.TabIndex = 23;
     txbBitErrors.Text = "0";
     txbBitErrors.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txbBER
     //
     txbBER.BackColor = System.Drawing.SystemColors.Control;
     txbBER.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbBER.ForeColor = System.Drawing.Color.Red;
     txbBER.Location = new System.Drawing.Point(58, 173);
     txbBER.Name = "txbBER";
     txbBER.ReadOnly = true;
     txbBER.Size = new System.Drawing.Size(60, 23);
     txbBER.TabIndex = 22;
     txbBER.Text = "0";
     txbBER.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txbDatabits
     //
     txbDatabits.BackColor = System.Drawing.SystemColors.Control;
     txbDatabits.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbDatabits.Location = new System.Drawing.Point(58, 119);
     txbDatabits.Name = "txbDatabits";
     txbDatabits.ReadOnly = true;
     txbDatabits.Size = new System.Drawing.Size(60, 23);
     txbDatabits.TabIndex = 21;
     txbDatabits.Text = "0";
     txbDatabits.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblPER
     //
     lblPER.AutoSize = true;
     lblPER.Location = new System.Drawing.Point(7, 94);
     lblPER.Name = "lblPER";
     lblPER.Size = new System.Drawing.Size(40, 17);
     lblPER.TabIndex = 20;
     lblPER.Text = "PER:";
     //
     // lblLost
     //
     lblLost.AutoSize = true;
     lblLost.Location = new System.Drawing.Point(7, 68);
     lblLost.Name = "lblLost";
     lblLost.Size = new System.Drawing.Size(39, 17);
     lblLost.TabIndex = 19;
     lblLost.Text = "Lost:";
     //
     // lblPackets
     //
     lblPackets.AutoSize = true;
     lblPackets.Location = new System.Drawing.Point(7, 40);
     lblPackets.Name = "lblPackets";
     lblPackets.Size = new System.Drawing.Size(62, 17);
     lblPackets.TabIndex = 18;
     lblPackets.Text = "Packets:";
     //
     // txbLost
     //
     txbLost.BackColor = System.Drawing.SystemColors.Control;
     txbLost.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbLost.Location = new System.Drawing.Point(58, 65);
     txbLost.Name = "txbLost";
     txbLost.ReadOnly = true;
     txbLost.Size = new System.Drawing.Size(60, 23);
     txbLost.TabIndex = 17;
     txbLost.Text = "0";
     txbLost.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txbPER
     //
     txbPER.BackColor = System.Drawing.SystemColors.Control;
     txbPER.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbPER.ForeColor = System.Drawing.Color.Red;
     txbPER.Location = new System.Drawing.Point(58, 91);
     txbPER.Name = "txbPER";
     txbPER.ReadOnly = true;
     txbPER.Size = new System.Drawing.Size(60, 23);
     txbPER.TabIndex = 16;
     txbPER.Text = "0";
     txbPER.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txbPackets
     //
     txbPackets.BackColor = System.Drawing.SystemColors.Control;
     txbPackets.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     txbPackets.Location = new System.Drawing.Point(58, 37);
     txbPackets.Name = "txbPackets";
     txbPackets.ReadOnly = true;
     txbPackets.Size = new System.Drawing.Size(60, 23);
     txbPackets.TabIndex = 15;
     txbPackets.Text = "0";
     txbPackets.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // pnlRXFIFO
     //
     pnlRXFIFO.Controls.Add(dgvRX);
     pnlRXFIFO.Controls.Add(btnSaveRead);
     pnlRXFIFO.Controls.Add(btnOpenRead);
     pnlRXFIFO.Controls.Add(btnRead);
     pnlRXFIFO.Location = new System.Drawing.Point(147, 19);
     pnlRXFIFO.Name = "pnlRXFIFO";
     pnlRXFIFO.Size = new System.Drawing.Size(177, 263);
     pnlRXFIFO.TabIndex = 27;
     //
     // dgvRX
     //
     dgvRX.AllowUserToAddRows = false;
     dgvRX.AllowUserToDeleteRows = false;
     dgvRX.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dgvRX.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     dataGridViewTextBoxColumn1,
     dataGridViewTextBoxColumn2,
     xpdC,
     errC});
     dgvRX.Location = new System.Drawing.Point(3, 3);
     dgvRX.MultiSelect = false;
     dgvRX.Name = "dgvRX";
     dgvRX.RowHeadersWidth = 25;
     dgvRX.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     dgvRX.Size = new System.Drawing.Size(168, 224);
     dgvRX.TabIndex = 26;
     dgvRX.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(dgvRX_CellEndEdit);
     dgvRX.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(dgvRX_ColumnHeaderMouseClick);
     //
     // dataGridViewTextBoxColumn1
     //
     dataGridViewTextBoxColumn1.HeaderText = "#";
     dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     dataGridViewTextBoxColumn1.ReadOnly = true;
     dataGridViewTextBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     dataGridViewTextBoxColumn1.Width = 32;
     //
     // dataGridViewTextBoxColumn2
     //
     dataGridViewTextBoxColumn2.HeaderText = "Hex";
     dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     dataGridViewTextBoxColumn2.ReadOnly = true;
     dataGridViewTextBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     dataGridViewTextBoxColumn2.Width = 30;
     //
     // xpdC
     //
     xpdC.HeaderText = "Xpd";
     xpdC.Name = "xpdC";
     xpdC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     xpdC.Width = 30;
     //
     // errC
     //
     errC.HeaderText = "Err";
     errC.Name = "errC";
     errC.ReadOnly = true;
     errC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     errC.Width = 30;
     //
     // btnSaveRead
     //
     btnSaveRead.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveRead.Image")));
     btnSaveRead.Location = new System.Drawing.Point(103, 234);
     btnSaveRead.Name = "btnSaveRead";
     btnSaveRead.Size = new System.Drawing.Size(26, 26);
     btnSaveRead.TabIndex = 25;
     btnSaveRead.UseVisualStyleBackColor = true;
     btnSaveRead.Click += new System.EventHandler(btnSaveRead_Click);
     //
     // btnOpenRead
     //
     btnOpenRead.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenRead.Image")));
     btnOpenRead.Location = new System.Drawing.Point(78, 234);
     btnOpenRead.Name = "btnOpenRead";
     btnOpenRead.Size = new System.Drawing.Size(26, 26);
     btnOpenRead.TabIndex = 24;
     btnOpenRead.UseVisualStyleBackColor = true;
     btnOpenRead.Click += new System.EventHandler(btnOpenRead_Click);
     //
     // btnRead
     //
     btnRead.Location = new System.Drawing.Point(32, 234);
     btnRead.Name = "btnRead";
     btnRead.Size = new System.Drawing.Size(45, 26);
     btnRead.TabIndex = 23;
     btnRead.Text = "Read";
     btnRead.UseVisualStyleBackColor = true;
     btnRead.Click += new System.EventHandler(btnRead_Click);
     //
     // pnlTXFIFO
     //
     pnlTXFIFO.Controls.Add(dgvTX);
     pnlTXFIFO.Controls.Add(btnSaveWrite);
     pnlTXFIFO.Controls.Add(btnOpenWrite);
     pnlTXFIFO.Controls.Add(btnWrite);
     pnlTXFIFO.Location = new System.Drawing.Point(25, 19);
     pnlTXFIFO.Name = "pnlTXFIFO";
     pnlTXFIFO.Size = new System.Drawing.Size(116, 263);
     pnlTXFIFO.TabIndex = 26;
     //
     // dgvTX
     //
     dgvTX.AllowUserToAddRows = false;
     dgvTX.AllowUserToDeleteRows = false;
     dgvTX.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dgvTX.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     numC,
     dataC});
     dgvTX.Location = new System.Drawing.Point(5, 3);
     dgvTX.MultiSelect = false;
     dgvTX.Name = "dgvTX";
     dgvTX.RowHeadersWidth = 25;
     dgvTX.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     dgvTX.Size = new System.Drawing.Size(106, 224);
     dgvTX.TabIndex = 25;
     dgvTX.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(dgvTX_CellEndEdit);
     dgvTX.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(dgvTX_ColumnHeaderMouseClick);
     //
     // numC
     //
     numC.HeaderText = "#";
     numC.Name = "numC";
     numC.ReadOnly = true;
     numC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     numC.Width = 30;
     //
     // dataC
     //
     dataC.HeaderText = "Hex";
     dataC.Name = "dataC";
     dataC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     dataC.Width = 32;
     //
     // btnSaveWrite
     //
     btnSaveWrite.Image = ((System.Drawing.Image)(resources.GetObject("btnSaveWrite.Image")));
     btnSaveWrite.Location = new System.Drawing.Point(79, 234);
     btnSaveWrite.Name = "btnSaveWrite";
     btnSaveWrite.Size = new System.Drawing.Size(26, 26);
     btnSaveWrite.TabIndex = 24;
     btnSaveWrite.UseVisualStyleBackColor = true;
     btnSaveWrite.Click += new System.EventHandler(btnSaveWrite_Click);
     //
     // btnOpenWrite
     //
     btnOpenWrite.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenWrite.Image")));
     btnOpenWrite.Location = new System.Drawing.Point(54, 234);
     btnOpenWrite.Name = "btnOpenWrite";
     btnOpenWrite.Size = new System.Drawing.Size(26, 26);
     btnOpenWrite.TabIndex = 23;
     btnOpenWrite.UseVisualStyleBackColor = true;
     btnOpenWrite.Click += new System.EventHandler(btnOpenWrite_Click);
     //
     // btnWrite
     //
     btnWrite.Location = new System.Drawing.Point(8, 234);
     btnWrite.Name = "btnWrite";
     btnWrite.Size = new System.Drawing.Size(45, 26);
     btnWrite.TabIndex = 22;
     btnWrite.Text = "Write";
     btnWrite.UseVisualStyleBackColor = true;
     btnWrite.Click += new System.EventHandler(btnWrite_Click);
     //
     // tbpDescription
     //
     tbpDescription.BackColor = System.Drawing.SystemColors.Control;
     tbpDescription.Controls.Add(txbDescription);
     tbpDescription.Location = new System.Drawing.Point(4, 25);
     tbpDescription.Name = "tbpDescription";
     tbpDescription.Padding = new System.Windows.Forms.Padding(3);
     tbpDescription.Size = new System.Drawing.Size(621, 306);
     tbpDescription.TabIndex = 1;
     tbpDescription.Text = "Register Description";
     //
     // txbDescription
     //
     txbDescription.BackColor = System.Drawing.SystemColors.Window;
     txbDescription.Location = new System.Drawing.Point(6, 6);
     txbDescription.Name = "txbDescription";
     txbDescription.ReadOnly = true;
     txbDescription.Size = new System.Drawing.Size(609, 290);
     txbDescription.TabIndex = 1;
     txbDescription.Text = "test";
     txbDescription.WordWrap = false;
     //
     // chbDisableLogging
     //
     chbDisableLogging.Appearance = System.Windows.Forms.Appearance.Button;
     chbDisableLogging.AutoSize = true;
     chbDisableLogging.BackColor = System.Drawing.Color.Red;
     chbDisableLogging.Checked = true;
     chbDisableLogging.CheckState = System.Windows.Forms.CheckState.Checked;
     chbDisableLogging.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     chbDisableLogging.Location = new System.Drawing.Point(16, 525);
     chbDisableLogging.Name = "chbDisableLogging";
     chbDisableLogging.Size = new System.Drawing.Size(117, 27);
     chbDisableLogging.TabIndex = 5;
     chbDisableLogging.Text = "Enable Logging";
     chbDisableLogging.UseVisualStyleBackColor = false;
     chbDisableLogging.CheckedChanged += new System.EventHandler(chbDisableLogging_CheckedChanged);
     //
     // lblTermWin
     //
     lblTermWin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     lblTermWin.AutoSize = true;
     lblTermWin.Location = new System.Drawing.Point(38, 7);
     lblTermWin.Margin = new System.Windows.Forms.Padding(3);
     lblTermWin.Name = "lblTermWin";
     lblTermWin.Size = new System.Drawing.Size(85, 17);
     lblTermWin.TabIndex = 2;
     lblTermWin.Text = "Log window:";
     lblTermWin.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnClearLog
     //
     btnClearLog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     btnClearLog.Location = new System.Drawing.Point(-315, 525);
     btnClearLog.Name = "btnClearLog";
     btnClearLog.Size = new System.Drawing.Size(75, 23);
     btnClearLog.TabIndex = 1;
     btnClearLog.Text = "Clear Log";
     btnClearLog.UseVisualStyleBackColor = true;
     btnClearLog.Click += new System.EventHandler(btnClearLog_Click);
     //
     // rtbLogWindow
     //
     rtbLogWindow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     rtbLogWindow.Location = new System.Drawing.Point(16, 25);
     rtbLogWindow.Name = "rtbLogWindow";
     rtbLogWindow.ReadOnly = true;
     rtbLogWindow.Size = new System.Drawing.Size(0, 494);
     rtbLogWindow.TabIndex = 0;
     rtbLogWindow.Text = "";
     //
     // spiStatusBar
     //
     spiStatusBar.Location = new System.Drawing.Point(0, 660);
     spiStatusBar.Name = "spiStatusBar";
     spiStatusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
     statusBarPanel1,
     sbChipRevPane,
     sbDeviceStatePane,
     statusBarPanel4});
     spiStatusBar.ShowPanels = true;
     spiStatusBar.Size = new System.Drawing.Size(996, 22);
     spiStatusBar.TabIndex = 28;
     //
     // statusBarPanel1
     //
     statusBarPanel1.Name = "statusBarPanel1";
     statusBarPanel1.Text = " Device: Type=SIMULATION";
     statusBarPanel1.Width = 170;
     //
     // sbChipRevPane
     //
     sbChipRevPane.Name = "sbChipRevPane";
     sbChipRevPane.Text = "Chip Revision: A";
     //
     // sbDeviceStatePane
     //
     sbDeviceStatePane.Name = "sbDeviceStatePane";
     sbDeviceStatePane.Text = "Status: Ready";
     sbDeviceStatePane.Width = 630;
     //
     // statusBarPanel4
     //
     statusBarPanel4.Alignment = System.Windows.Forms.HorizontalAlignment.Right;
     statusBarPanel4.AnimationStyle = StatusBarTest.ProgressDisplayStyle.LeftToRight;
     statusBarPanel4.AnimationTick = System.TimeSpan.Parse("00:00:00.5000000");
     statusBarPanel4.EndPoint = ((long)(100));
     statusBarPanel4.Name = "statusBarPanel4";
     statusBarPanel4.ProgressPosition = ((long)(0));
     statusBarPanel4.ShowText = true;
     statusBarPanel4.StartPoint = ((long)(0));
     statusBarPanel4.StepSize = ((long)(10));
     statusBarPanel4.Style = System.Windows.Forms.StatusBarPanelStyle.OwnerDraw;
     statusBarPanel4.TextFont = new System.Drawing.Font("Arial", 8F);
     //
     // tmrCommon
     //
     tmrCommon.Interval = 2000;
     tmrCommon.Tick += new System.EventHandler(tsrMainToolStrip_IdentifyRequested);
     //
     // ttpMainToolTip
     //
     ttpMainToolTip.AutoPopDelay = 5000;
     ttpMainToolTip.InitialDelay = 0;
     ttpMainToolTip.ReshowDelay = 0;
     //
     // tsrMainToolStrip
     //
     tsrMainToolStrip.AmmeteringEnabled = true;
     tsrMainToolStrip.AmmeteringVisible = true;
     tsrMainToolStrip.AutoSize = false;
     tsrMainToolStrip.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     tsrMainToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     tsrMainToolStrip.IdentifyEnabled = true;
     tsrMainToolStrip.IdentifyVisible = true;
     tsrMainToolStrip.Location = new System.Drawing.Point(0, 0);
     tsrMainToolStrip.Name = "tsrMainToolStrip";
     tsrMainToolStrip.Nickname = "Nickname";
     tsrMainToolStrip.OpenEnabled = true;
     tsrMainToolStrip.OpenVisible = true;
     tsrMainToolStrip.ResetEnabled = true;
     tsrMainToolStrip.ResetVisible = true;
     tsrMainToolStrip.SaveEnabled = true;
     tsrMainToolStrip.SaveVisible = true;
     tsrMainToolStrip.Size = new System.Drawing.Size(996, 31);
     tsrMainToolStrip.SwitchEnabled = true;
     tsrMainToolStrip.SwitchVisible = true;
     tsrMainToolStrip.TabIndex = 30;
     tsrMainToolStrip.Text = "applicationToolStrip1";
     tsrMainToolStrip.VoltageEnabled = true;
     tsrMainToolStrip.VoltageVisible = true;
     tsrMainToolStrip.AmmeteringRequested += new System.EventHandler(tsrMainToolStrip_AmmeteringRequested);
     tsrMainToolStrip.IdentifyRequested += new System.EventHandler(tsrMainToolStrip_IdentifyRequested);
     tsrMainToolStrip.OpenRequested += new System.EventHandler(tsrMainToolStrip_OpenRequested);
     tsrMainToolStrip.ResetRequested += new System.EventHandler(tsrMainToolStrip_ResetRequested);
     tsrMainToolStrip.SaveRequested += new System.EventHandler(tsrMainToolStrip_SaveRequested);
     tsrMainToolStrip.SetVoltageRequested += new NewWDS.Applications.App_Common.AppToolStrip.ApplicationToolStrip.SetVoltageEventHandler(tsrMainToolStrip_SetVoltageRequested);
     tsrMainToolStrip.SwitchMouseEnterRequested += new System.EventHandler(tsrMainToolStrip_SwitchMouseEnterRequested);
     tsrMainToolStrip.SwitchRequested += new System.EventHandler(tsrMainToolStrip_SwitchRequested);
     //
     // AppWin_SPITool_PRO
     //
     AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     ClientSize = new System.Drawing.Size(996, 682);
     Controls.Add(tsrMainToolStrip);
     Controls.Add(spiStatusBar);
     Controls.Add(spcMainContainer);
     Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     MaximizeBox = false;
     Name = "AppWin_SPITool_PRO";
     ShowIcon = false;
     Text = "Si4XXX Register Setting Panel";
     FormClosing += new System.Windows.Forms.FormClosingEventHandler(formClosingEventHandler);
     Load += new System.EventHandler(SPI_Form_Load);
     grbRegisterFilter.ResumeLayout(false);
     grbRegisterFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(dgvRegisterList)).EndInit();
     groupBox1.ResumeLayout(false);
     groupBox1.PerformLayout();
     spcMainContainer.Panel1.ResumeLayout(false);
     spcMainContainer.Panel2.ResumeLayout(false);
     spcMainContainer.Panel2.PerformLayout();
     spcMainContainer.ResumeLayout(false);
     grbLog.ResumeLayout(false);
     grbLog.PerformLayout();
     tbcMain.ResumeLayout(false);
     tabPage4.ResumeLayout(false);
     grbBatch.ResumeLayout(false);
     pnlBatchMain.ResumeLayout(false);
     pnlBatch4.ResumeLayout(false);
     pnlBatch4.PerformLayout();
     pnlBatch3.ResumeLayout(false);
     pnlBatch3.PerformLayout();
     pnlBatch2.ResumeLayout(false);
     pnlBatch2.PerformLayout();
     pnlBatch1.ResumeLayout(false);
     pnlBatch1.PerformLayout();
     vrbViewBatch.ResumeLayout(false);
     vrbViewBatch.PerformLayout();
     grbSaveLoad.ResumeLayout(false);
     grbSaveLoad.PerformLayout();
     grbLoopControl.ResumeLayout(false);
     grbLoopControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(nudLoopLimit)).EndInit();
     tbpFIFO.ResumeLayout(false);
     pnlBerPer.ResumeLayout(false);
     pnlBerPer.PerformLayout();
     pnlRXFIFO.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(dgvRX)).EndInit();
     pnlTXFIFO.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(dgvTX)).EndInit();
     tbpDescription.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(statusBarPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sbChipRevPane)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(sbDeviceStatePane)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(statusBarPanel4)).EndInit();
     ResumeLayout(false);
 }
Exemplo n.º 55
0
        /// <summary>
        /// 显示闸机监控
        /// </summary>
        private void addGateMonitors()
        {
            int x = 10;
            int y = 10;
            int panelWidth = 200;
            int panelHeight = 235;
            int interval = 10;//间隔
            for (int i = 0; i < gateTotal; i++)
            {

                System.Windows.Forms.PictureBox pictureBox10 = new System.Windows.Forms.PictureBox();
                System.Windows.Forms.PictureBox pictureBox11 = new System.Windows.Forms.PictureBox();
                System.Windows.Forms.Label label10 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label11 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label12 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label13 = new System.Windows.Forms.Label();
                System.Windows.Forms.Label label14 = new System.Windows.Forms.Label();
                System.Windows.Forms.Panel panel1 = new System.Windows.Forms.Panel();
                System.Windows.Forms.PictureBox pictureBox12 = new System.Windows.Forms.PictureBox();

                zhajipanel.Controls.Add(panel1);
                panel1.SuspendLayout();
                ((System.ComponentModel.ISupportInitialize)(pictureBox10)).BeginInit();
                ((System.ComponentModel.ISupportInitialize)(pictureBox11)).BeginInit();
                ((System.ComponentModel.ISupportInitialize)(pictureBox12)).BeginInit();

                //
                // panel1
                //
                panel1.BackgroundImage = global::zhuhai.Properties.Resources.gate_normal;
                panel1.Controls.Add(pictureBox12);
                panel1.Controls.Add(label14);
                panel1.Controls.Add(label13);
                panel1.Controls.Add(label12);
                panel1.Controls.Add(label11);
                panel1.Controls.Add(label10);
                panel1.Controls.Add(pictureBox11);
                panel1.Controls.Add(pictureBox10);
                panel1.Location = new System.Drawing.Point(44, 12);
                panel1.Name = "panel" + (i + 1).ToString();
                panel1.Size = new System.Drawing.Size(panelWidth, panelHeight);
                panel1.TabIndex = 200 + i;
                panel1.Click += new System.EventHandler(this.monitorPanel_click);
                panel1.Cursor = Cursors.Hand;
                panel1.ContextMenuStrip = this.contextMenuStrip;

                Size size = this.zhajipanel.Size;
                if (x > size.Width - panelWidth)
                {
                    y += panelHeight;
                    //间隔
                    y += interval;
                    //x轴的起点
                    x = 10;
                }
                panel1.Location = new System.Drawing.Point(x, y);
                x += panelWidth + interval;

                //
                // pictureBox10
                //
                pictureBox10.BackColor = System.Drawing.Color.Transparent;
                pictureBox10.Image = global::zhuhai.Properties.Resources.kuaisutongguan;
                pictureBox10.Location = new System.Drawing.Point(2, 202);
                pictureBox10.Name = "pictureBox" + (i + 1).ToString()  + "0";
                pictureBox10.Size = new System.Drawing.Size(32, 32);
                pictureBox10.TabIndex = 300 + i;
                pictureBox10.TabStop = false;
                //
                // pictureBox11
                //
                pictureBox11.BackColor = System.Drawing.Color.Transparent;
                pictureBox11.Image = global::zhuhai.Properties.Resources.wuchatiaojie;
                pictureBox11.Location = new System.Drawing.Point(35, 202);
                pictureBox11.Name = "pictureBox" + (i + 1).ToString() + "1";
                pictureBox11.Size = new System.Drawing.Size(32, 32);
                pictureBox11.TabIndex = 400 + i;
                pictureBox11.TabStop = false;
                //
                // label10
                //
                label10.AutoSize = true;
                label10.BackColor = System.Drawing.Color.Transparent;
                label10.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                label10.ForeColor = System.Drawing.Color.White;
                label10.Location = new System.Drawing.Point(69, 213);
                label10.Name = "label" + (i + 1).ToString() + "0";
                label10.Size = new System.Drawing.Size(22, 14);
                label10.TabIndex = 500 + i;
                label10.Text = "核";
                //
                // label11
                //
                label11.AutoSize = true;
                label11.BackColor = System.Drawing.Color.Transparent;
                label11.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                label11.ForeColor = System.Drawing.Color.White;
                label11.Location = new System.Drawing.Point(142, 213);
                label11.Name = "label" + (i + 1).ToString() + "1";
                label11.Size = new System.Drawing.Size(22, 14);
                label11.TabIndex = 600 + i;
                label11.Text = "温";
                //
                // label12
                //
                label12.BackColor = System.Drawing.Color.Transparent;
                label12.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                label12.ForeColor = System.Drawing.Color.White;
                label12.Location = new System.Drawing.Point(90, 212);
                label12.Margin = new System.Windows.Forms.Padding(0);
                label12.Name = "label" + (i + 1).ToString() + "2";
                label12.Size = new System.Drawing.Size(52, 16);
                label12.TabIndex = 700 + i;
                label12.Text = "250.0";
                label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
                //
                // label13
                //
                label13.BackColor = System.Drawing.Color.Transparent;
                label13.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                label13.ForeColor = System.Drawing.Color.White;
                label13.Location = new System.Drawing.Point(165, 212);
                label13.Margin = new System.Windows.Forms.Padding(0);
                label13.Name = "label" + (i + 1).ToString() + "3";
                label13.Size = new System.Drawing.Size(48, 16);
                label13.TabIndex = 800 + i;
                label13.Text = "38.0";
                label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
                //
                // label14
                //
                label14.BackColor = System.Drawing.Color.Transparent;
                label14.Font = new System.Drawing.Font("宋体", 60F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
                label14.ForeColor = System.Drawing.Color.Blue;
                label14.Location = new System.Drawing.Point(3, 20);
                label14.Name = "label" + (i + 1).ToString() + "4";
                label14.Size = new System.Drawing.Size(194, 105);
                label14.TabIndex = 900 + i;
                label14.Text = (i + 1).ToString(); ;
                label14.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
                label14.Click += new System.EventHandler(this.label14_click);

                //
                // pictureBox12
                //
                pictureBox12.BackColor = System.Drawing.Color.Transparent;
                pictureBox12.Image = global::zhuhai.Properties.Resources.baojingdeng;
                pictureBox12.Location = new System.Drawing.Point(125, 130);
                pictureBox12.Name = "pictureBox" + (i + 1).ToString() + "2";
                pictureBox12.Visible = false;
                pictureBox12.Size = new System.Drawing.Size(72, 66);
                pictureBox12.TabIndex = 1000 + i;
                pictureBox12.TabStop = false;

                panel1.ResumeLayout(false);
                panel1.PerformLayout();
                ((System.ComponentModel.ISupportInitialize)(pictureBox12)).EndInit();
                ((System.ComponentModel.ISupportInitialize)(pictureBox11)).EndInit();
                ((System.ComponentModel.ISupportInitialize)(pictureBox10)).EndInit();

                monitorPanels.Add(panel1);
            }
        }
Exemplo n.º 56
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     okBtn_                   = new System.Windows.Forms.Button();
     cancelBtn_               = new System.Windows.Forms.Button();
     buttonsPn_               = new System.Windows.Forms.Panel();
     applyBtn_                = new System.Windows.Forms.Button();
     propertyFiltersCtrl_     = new PropertyFiltersCtrl();
     maxElementsReturnedCtrl_ = new System.Windows.Forms.NumericUpDown();
     elementNameFilterTb_     = new System.Windows.Forms.TextBox();
     returnPropertiesLb_      = new System.Windows.Forms.Label();
     elementNameFilterLb_     = new System.Windows.Forms.Label();
     returnPropertiesCb_      = new System.Windows.Forms.CheckBox();
     vendorFilterLb_          = new System.Windows.Forms.Label();
     vendorFilterTb_          = new System.Windows.Forms.TextBox();
     browseFilterLb_          = new System.Windows.Forms.Label();
     browseFilterCtrl_        = new EnumCtrl();
     maxElementsReturnedLb_   = new System.Windows.Forms.Label();
     topPn_                   = new System.Windows.Forms.Panel();
     buttonsPn_.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(maxElementsReturnedCtrl_)).BeginInit();
     topPn_.SuspendLayout();
     SuspendLayout();
     //
     // OkBTN
     //
     okBtn_.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     okBtn_.Location = new System.Drawing.Point(118, 6);
     okBtn_.Name     = "okBtn_";
     okBtn_.Size     = new System.Drawing.Size(75, 23);
     okBtn_.TabIndex = 1;
     okBtn_.Text     = "OK";
     okBtn_.Click   += new System.EventHandler(OkBTN_Click);
     //
     // CancelBTN
     //
     cancelBtn_.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     cancelBtn_.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     cancelBtn_.Location     = new System.Drawing.Point(280, 6);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.Size         = new System.Drawing.Size(75, 23);
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Cancel";
     cancelBtn_.Click       += new System.EventHandler(CancelBTN_Click);
     //
     // ButtonsPN
     //
     buttonsPn_.Controls.Add(applyBtn_);
     buttonsPn_.Controls.Add(cancelBtn_);
     buttonsPn_.Controls.Add(okBtn_);
     buttonsPn_.Dock     = System.Windows.Forms.DockStyle.Bottom;
     buttonsPn_.Location = new System.Drawing.Point(4, 274);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(360, 36);
     buttonsPn_.TabIndex = 0;
     //
     // ApplyBTN
     //
     applyBtn_.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     applyBtn_.Location = new System.Drawing.Point(199, 6);
     applyBtn_.Name     = "applyBtn_";
     applyBtn_.Size     = new System.Drawing.Size(75, 23);
     applyBtn_.TabIndex = 2;
     applyBtn_.Text     = "Apply";
     applyBtn_.Click   += new System.EventHandler(ApplyBTN_Click);
     //
     // PropertyFiltersCTRL
     //
     propertyFiltersCtrl_.Dock                 = System.Windows.Forms.DockStyle.Fill;
     propertyFiltersCtrl_.Location             = new System.Drawing.Point(4, 124);
     propertyFiltersCtrl_.Name                 = "propertyFiltersCtrl_";
     propertyFiltersCtrl_.PropertyIDs          = new TsDaPropertyID[0];
     propertyFiltersCtrl_.ReturnAllProperties  = true;
     propertyFiltersCtrl_.ReturnPropertyValues = true;
     propertyFiltersCtrl_.Size                 = new System.Drawing.Size(360, 150);
     propertyFiltersCtrl_.TabIndex             = 0;
     //
     // MaxElementsReturnedCTRL
     //
     maxElementsReturnedCtrl_.Location = new System.Drawing.Point(112, 24);
     maxElementsReturnedCtrl_.Maximum  = new System.Decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     maxElementsReturnedCtrl_.Name     = "maxElementsReturnedCtrl_";
     maxElementsReturnedCtrl_.Size     = new System.Drawing.Size(72, 20);
     maxElementsReturnedCtrl_.TabIndex = 3;
     //
     // ElementNameFilterTB
     //
     elementNameFilterTb_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     elementNameFilterTb_.Location = new System.Drawing.Point(112, 48);
     elementNameFilterTb_.Name     = "elementNameFilterTb_";
     elementNameFilterTb_.Size     = new System.Drawing.Size(240, 20);
     elementNameFilterTb_.TabIndex = 5;
     //
     // ReturnPropertiesLB
     //
     returnPropertiesLb_.Location  = new System.Drawing.Point(0, 96);
     returnPropertiesLb_.Name      = "returnPropertiesLb_";
     returnPropertiesLb_.Size      = new System.Drawing.Size(112, 23);
     returnPropertiesLb_.TabIndex  = 8;
     returnPropertiesLb_.Text      = "Return Properties";
     returnPropertiesLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ElementNameFilterLB
     //
     elementNameFilterLb_.Location  = new System.Drawing.Point(0, 48);
     elementNameFilterLb_.Name      = "elementNameFilterLb_";
     elementNameFilterLb_.Size      = new System.Drawing.Size(112, 23);
     elementNameFilterLb_.TabIndex  = 4;
     elementNameFilterLb_.Text      = "Element Name Filter";
     elementNameFilterLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // ReturnPropertiesCB
     //
     returnPropertiesCb_.Checked         = true;
     returnPropertiesCb_.CheckState      = System.Windows.Forms.CheckState.Checked;
     returnPropertiesCb_.Location        = new System.Drawing.Point(112, 96);
     returnPropertiesCb_.Name            = "returnPropertiesCb_";
     returnPropertiesCb_.Size            = new System.Drawing.Size(16, 24);
     returnPropertiesCb_.TabIndex        = 9;
     returnPropertiesCb_.CheckedChanged += new System.EventHandler(ReturnPropertiesCB_CheckedChanged);
     //
     // VendorFilterLB
     //
     vendorFilterLb_.Location  = new System.Drawing.Point(0, 72);
     vendorFilterLb_.Name      = "vendorFilterLb_";
     vendorFilterLb_.Size      = new System.Drawing.Size(112, 23);
     vendorFilterLb_.TabIndex  = 6;
     vendorFilterLb_.Text      = "Vendor Filter";
     vendorFilterLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // VendorFilterTB
     //
     vendorFilterTb_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     vendorFilterTb_.Location = new System.Drawing.Point(112, 72);
     vendorFilterTb_.Name     = "vendorFilterTb_";
     vendorFilterTb_.Size     = new System.Drawing.Size(240, 20);
     vendorFilterTb_.TabIndex = 7;
     //
     // BrowseFilterLB
     //
     browseFilterLb_.Location  = new System.Drawing.Point(0, 0);
     browseFilterLb_.Name      = "browseFilterLb_";
     browseFilterLb_.Size      = new System.Drawing.Size(112, 23);
     browseFilterLb_.TabIndex  = 0;
     browseFilterLb_.Text      = "Browse Filter";
     browseFilterLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // BrowseFilterCTRL
     //
     browseFilterCtrl_.Location = new System.Drawing.Point(112, 0);
     browseFilterCtrl_.Name     = "browseFilterCtrl_";
     browseFilterCtrl_.Size     = new System.Drawing.Size(152, 24);
     browseFilterCtrl_.TabIndex = 1;
     browseFilterCtrl_.Value    = null;
     //
     // MaxElementsReturnedLB
     //
     maxElementsReturnedLb_.Location  = new System.Drawing.Point(0, 24);
     maxElementsReturnedLb_.Name      = "maxElementsReturnedLb_";
     maxElementsReturnedLb_.Size      = new System.Drawing.Size(112, 23);
     maxElementsReturnedLb_.TabIndex  = 2;
     maxElementsReturnedLb_.Text      = "Maximum Returned";
     maxElementsReturnedLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TopPN
     //
     topPn_.Controls.Add(elementNameFilterTb_);
     topPn_.Controls.Add(maxElementsReturnedCtrl_);
     topPn_.Controls.Add(browseFilterCtrl_);
     topPn_.Controls.Add(browseFilterLb_);
     topPn_.Controls.Add(returnPropertiesLb_);
     topPn_.Controls.Add(vendorFilterLb_);
     topPn_.Controls.Add(maxElementsReturnedLb_);
     topPn_.Controls.Add(returnPropertiesCb_);
     topPn_.Controls.Add(elementNameFilterLb_);
     topPn_.Controls.Add(vendorFilterTb_);
     topPn_.Dock     = System.Windows.Forms.DockStyle.Top;
     topPn_.Location = new System.Drawing.Point(4, 4);
     topPn_.Name     = "topPn_";
     topPn_.Size     = new System.Drawing.Size(360, 120);
     topPn_.TabIndex = 32;
     //
     // BrowseFiltersDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     ClientSize        = new System.Drawing.Size(368, 310);
     Controls.Add(propertyFiltersCtrl_);
     Controls.Add(buttonsPn_);
     Controls.Add(topPn_);
     Name          = "BrowseFiltersDlg";
     Padding       = new System.Windows.Forms.Padding(4, 4, 4, 0);
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Browse Filters";
     buttonsPn_.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(maxElementsReturnedCtrl_)).EndInit();
     topPn_.ResumeLayout(false);
     topPn_.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 57
0
        private Panel CreatePanel(string columnName, DataType dataType)
        {
            Panel row = new Panel();
            row.SuspendLayout();

            Label name = new Label();
            name.AutoEllipsis = true;
            name.Location = new Point(11, 9);
            name.Name = "row-" + columnName + ".name";
            name.Size = new Size(122, 17);
            name.Text = columnName;

            ComboBox type = new ComboBox();
            type.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            type.Items.AddRange(new object[] { Language.GetString("dataType.numeric"), Language.GetString("dataType.real"), Language.GetString("dataType.text") });
            switch (dataType)
            {
                case DataType.Numeric: type.SelectedIndex = 0; break;
                case DataType.Real: type.SelectedIndex = 1; break;
                case DataType.Text: type.SelectedIndex = 2; break;
            }
            type.Location = new Point(154, 6);
            type.Name = "row-" + columnName + ".type";
            type.Size = new Size(76, 21);
            type.SelectedIndexChanged += new System.EventHandler(this.type_SelectedIndexChanged);

            row.Controls.Add(name);
            row.Controls.Add(type);

            foreach (Control control in CreateSettings("row-" + columnName, dataType))
            {
                row.Controls.Add(control);
            }

            row.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            row.Name = "row-" + columnName;

            row.ResumeLayout(false);
            row.PerformLayout();

            return row;
        }
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      System.Windows.Forms.Panel _fileAssociations;
      System.Windows.Forms.Panel _container;
      this.myRules = new System.Windows.Forms.Panel();
      this._buttons = new System.Windows.Forms.ToolStrip();
      this.myReset = new System.Windows.Forms.Button();
      _fileAssociations = new System.Windows.Forms.Panel();
      _container = new System.Windows.Forms.Panel();
      _fileAssociations.SuspendLayout();
      _container.SuspendLayout();
      this.SuspendLayout();
      // 
      // _fileAssociations
      // 
      _fileAssociations.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)));
      _fileAssociations.Controls.Add(this.myRules);
      _fileAssociations.Controls.Add(this._buttons);
      _fileAssociations.Location = new System.Drawing.Point(3, 3);
      _fileAssociations.Name = "_fileAssociations";
      _fileAssociations.Size = new System.Drawing.Size(767, 696);
      _fileAssociations.TabIndex = 12;
      // 
      // _rules
      // 
      this.myRules.Dock = System.Windows.Forms.DockStyle.Fill;
      this.myRules.Location = new System.Drawing.Point(0, 25);
      this.myRules.Name = "_rules";
      this.myRules.Size = new System.Drawing.Size(767, 671);
      this.myRules.TabIndex = 1;
      // 
      // _buttons
      // 
      this._buttons.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
      this._buttons.Location = new System.Drawing.Point(0, 0);
      this._buttons.Name = "_buttons";
      this._buttons.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
      this._buttons.Size = new System.Drawing.Size(767, 25);
      this._buttons.TabIndex = 0;
      this._buttons.Text = "_buttons";
      // 
      // _reset
      // 
      this.myReset.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.myReset.Location = new System.Drawing.Point(3, 705);
      this.myReset.Name = "_reset";
      this.myReset.Size = new System.Drawing.Size(94, 23);
      this.myReset.TabIndex = 0;
      this.myReset.Text = "Reset defaults";
      this.myReset.UseVisualStyleBackColor = true;
      this.myReset.Click += new System.EventHandler(this.ResetClick);
      // 
      // _container
      // 
      _container.Controls.Add(this.myReset);
      _container.Controls.Add(_fileAssociations);
      _container.Dock = System.Windows.Forms.DockStyle.Fill;
      _container.Location = new System.Drawing.Point(0, 0);
      _container.Name = "_container";
      _container.Size = new System.Drawing.Size(773, 731);
      _container.TabIndex = 0;
      // 
      // ZenCodingOptionsPage
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
      this.Controls.Add(_container);
      this.Name = "ZenCodingOptionsPage";
      this.Size = new System.Drawing.Size(773, 731);
      _fileAssociations.ResumeLayout(false);
      _fileAssociations.PerformLayout();
      _container.ResumeLayout(false);
      this.ResumeLayout(false);

    }
Exemplo n.º 59
0
		/// <summary>s
		/// 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.Label OpacityLabel;
			System.Windows.Forms.ToolStripMenuItem RestoreWindowMenuItem;
			System.Windows.Forms.ToolStripMenuItem ExitMenuItem;
			System.Windows.Forms.FlowLayoutPanel ContentFlowLayoutPanel;
			System.Windows.Forms.Panel OpacityPanel;
			System.Windows.Forms.Panel ResizeOptionsPanel;
			System.Windows.Forms.Panel ZoomOptionsPanel;
			System.Windows.Forms.Label ZoomFactorLabel;
			System.Windows.Forms.Label ZoomAnchorLabel;
			System.Windows.Forms.Panel ThumbnailsListPanel;
			System.Windows.Forms.Label ThumbnailsListLabel;
			System.Windows.Forms.ToolStripMenuItem TitleMenuItem;
			System.Windows.Forms.ToolStripSeparator SeparatorMenuItem;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
			this.MinimizeToTrayCheckBox = new System.Windows.Forms.CheckBox();
			this.ThumbnailsOpacityScrollBar = new System.Windows.Forms.HScrollBar();
			this.EnableClientLayoutTrackingCheckBox = new System.Windows.Forms.CheckBox();
			this.HideActiveClientThumbnailCheckBox = new System.Windows.Forms.CheckBox();
			this.ShowThumbnailsAlwaysOnTopCheckBox = new System.Windows.Forms.CheckBox();
			this.HideThumbnailsOnLostFocusCheckBox = new System.Windows.Forms.CheckBox();
			this.EnablePerClientThumbnailsLayoutsCheckBox = new System.Windows.Forms.CheckBox();
			this.SyncThumbnailsSizeCheckBox = new System.Windows.Forms.CheckBox();
			this.ThumbnailsWidthNumericEdit = new System.Windows.Forms.NumericUpDown();
			this.ThumbnailsHeightNumericEdit = new System.Windows.Forms.NumericUpDown();
			this.ZoomAnchorPanel = new System.Windows.Forms.Panel();
			this.ZoomAanchorNWRadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorNRadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorNERadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorWRadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorSERadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorCRadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorSRadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorERadioButton = new System.Windows.Forms.RadioButton();
			this.ZoomAanchorSWRadioButton = new System.Windows.Forms.RadioButton();
			this.EnableThumbnailZoomCheckBox = new System.Windows.Forms.CheckBox();
			this.ThumbnailZoomFactorNumericEdit = new System.Windows.Forms.NumericUpDown();
			this.ShowThumbnailOverlaysCheckBox = new System.Windows.Forms.CheckBox();
			this.ShowThumbnailFramesCheckBox = new System.Windows.Forms.CheckBox();
			this.ThumbnailsList = new System.Windows.Forms.CheckedListBox();
			this.ForumLinkLabel = new System.Windows.Forms.LinkLabel();
			this.NotifyIcon = new System.Windows.Forms.NotifyIcon(this.components);
			this.TrayMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
			OpacityLabel = new System.Windows.Forms.Label();
			RestoreWindowMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			ExitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			ContentFlowLayoutPanel = new System.Windows.Forms.FlowLayoutPanel();
			OpacityPanel = new System.Windows.Forms.Panel();
			ResizeOptionsPanel = new System.Windows.Forms.Panel();
			ZoomOptionsPanel = new System.Windows.Forms.Panel();
			ZoomFactorLabel = new System.Windows.Forms.Label();
			ZoomAnchorLabel = new System.Windows.Forms.Label();
			ThumbnailsListPanel = new System.Windows.Forms.Panel();
			ThumbnailsListLabel = new System.Windows.Forms.Label();
			TitleMenuItem = new System.Windows.Forms.ToolStripMenuItem();
			SeparatorMenuItem = new System.Windows.Forms.ToolStripSeparator();
			ContentFlowLayoutPanel.SuspendLayout();
			OpacityPanel.SuspendLayout();
			ResizeOptionsPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailsWidthNumericEdit)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailsHeightNumericEdit)).BeginInit();
			ZoomOptionsPanel.SuspendLayout();
			this.ZoomAnchorPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailZoomFactorNumericEdit)).BeginInit();
			ThumbnailsListPanel.SuspendLayout();
			this.TrayMenu.SuspendLayout();
			this.SuspendLayout();
			// 
			// OpacityLabel
			// 
			OpacityLabel.AutoSize = true;
			OpacityLabel.Location = new System.Drawing.Point(2, 5);
			OpacityLabel.Name = "OpacityLabel";
			OpacityLabel.Size = new System.Drawing.Size(43, 13);
			OpacityLabel.TabIndex = 0;
			OpacityLabel.Text = "Opacity";
			// 
			// RestoreWindowMenuItem
			// 
			RestoreWindowMenuItem.Name = "RestoreWindowMenuItem";
			RestoreWindowMenuItem.Size = new System.Drawing.Size(151, 22);
			RestoreWindowMenuItem.Text = "Restore";
			RestoreWindowMenuItem.Click += new System.EventHandler(this.RestoreMainForm_Handler);
			// 
			// ExitMenuItem
			// 
			ExitMenuItem.Name = "ExitMenuItem";
			ExitMenuItem.Size = new System.Drawing.Size(151, 22);
			ExitMenuItem.Text = "Exit";
			ExitMenuItem.Click += new System.EventHandler(this.ExitMenuItemClick_Handler);
			// 
			// ContentFlowLayoutPanel
			// 
			ContentFlowLayoutPanel.BackColor = System.Drawing.SystemColors.Control;
			ContentFlowLayoutPanel.Controls.Add(this.MinimizeToTrayCheckBox);
			ContentFlowLayoutPanel.Controls.Add(OpacityPanel);
			ContentFlowLayoutPanel.Controls.Add(this.EnableClientLayoutTrackingCheckBox);
			ContentFlowLayoutPanel.Controls.Add(this.HideActiveClientThumbnailCheckBox);
			ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailsAlwaysOnTopCheckBox);
			ContentFlowLayoutPanel.Controls.Add(this.HideThumbnailsOnLostFocusCheckBox);
			ContentFlowLayoutPanel.Controls.Add(this.EnablePerClientThumbnailsLayoutsCheckBox);
			ContentFlowLayoutPanel.Controls.Add(ResizeOptionsPanel);
			ContentFlowLayoutPanel.Controls.Add(ZoomOptionsPanel);
			ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailOverlaysCheckBox);
			ContentFlowLayoutPanel.Controls.Add(this.ShowThumbnailFramesCheckBox);
			ContentFlowLayoutPanel.Controls.Add(ThumbnailsListPanel);
			ContentFlowLayoutPanel.Controls.Add(this.ForumLinkLabel);
			ContentFlowLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
			ContentFlowLayoutPanel.Location = new System.Drawing.Point(0, 0);
			ContentFlowLayoutPanel.Name = "ContentFlowLayoutPanel";
			ContentFlowLayoutPanel.Size = new System.Drawing.Size(252, 487);
			ContentFlowLayoutPanel.TabIndex = 25;
			// 
			// MinimizeToTrayCheckBox
			// 
			this.MinimizeToTrayCheckBox.AutoSize = true;
			this.MinimizeToTrayCheckBox.Location = new System.Drawing.Point(3, 3);
			this.MinimizeToTrayCheckBox.Name = "MinimizeToTrayCheckBox";
			this.MinimizeToTrayCheckBox.Size = new System.Drawing.Size(139, 17);
			this.MinimizeToTrayCheckBox.TabIndex = 34;
			this.MinimizeToTrayCheckBox.Text = "Minimize to System Tray";
			this.MinimizeToTrayCheckBox.UseVisualStyleBackColor = true;
			this.MinimizeToTrayCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// OpacityPanel
			// 
			OpacityPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			OpacityPanel.Controls.Add(this.ThumbnailsOpacityScrollBar);
			OpacityPanel.Controls.Add(OpacityLabel);
			OpacityPanel.Location = new System.Drawing.Point(3, 26);
			OpacityPanel.Name = "OpacityPanel";
			OpacityPanel.Size = new System.Drawing.Size(246, 26);
			OpacityPanel.TabIndex = 33;
			// 
			// ThumbnailsOpacityScrollBar
			// 
			this.ThumbnailsOpacityScrollBar.Location = new System.Drawing.Point(48, 1);
			this.ThumbnailsOpacityScrollBar.Maximum = 120;
			this.ThumbnailsOpacityScrollBar.Name = "ThumbnailsOpacityScrollBar";
			this.ThumbnailsOpacityScrollBar.Size = new System.Drawing.Size(195, 23);
			this.ThumbnailsOpacityScrollBar.TabIndex = 1;
			this.ThumbnailsOpacityScrollBar.Scroll += new System.Windows.Forms.ScrollEventHandler(this.OptionChanged_Handler);
			// 
			// EnableClientLayoutTrackingCheckBox
			// 
			this.EnableClientLayoutTrackingCheckBox.AutoSize = true;
			this.EnableClientLayoutTrackingCheckBox.Location = new System.Drawing.Point(3, 58);
			this.EnableClientLayoutTrackingCheckBox.Name = "EnableClientLayoutTrackingCheckBox";
			this.EnableClientLayoutTrackingCheckBox.Size = new System.Drawing.Size(127, 17);
			this.EnableClientLayoutTrackingCheckBox.TabIndex = 32;
			this.EnableClientLayoutTrackingCheckBox.Text = "Track client locations";
			this.EnableClientLayoutTrackingCheckBox.UseVisualStyleBackColor = true;
			this.EnableClientLayoutTrackingCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// HideActiveClientThumbnailCheckBox
			// 
			this.HideActiveClientThumbnailCheckBox.AutoSize = true;
			this.HideActiveClientThumbnailCheckBox.Checked = true;
			this.HideActiveClientThumbnailCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.HideActiveClientThumbnailCheckBox.Location = new System.Drawing.Point(3, 81);
			this.HideActiveClientThumbnailCheckBox.Name = "HideActiveClientThumbnailCheckBox";
			this.HideActiveClientThumbnailCheckBox.Size = new System.Drawing.Size(184, 17);
			this.HideActiveClientThumbnailCheckBox.TabIndex = 1;
			this.HideActiveClientThumbnailCheckBox.Text = "Hide preview of active EVE client";
			this.HideActiveClientThumbnailCheckBox.UseVisualStyleBackColor = true;
			this.HideActiveClientThumbnailCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ShowThumbnailsAlwaysOnTopCheckBox
			// 
			this.ShowThumbnailsAlwaysOnTopCheckBox.AutoSize = true;
			this.ShowThumbnailsAlwaysOnTopCheckBox.Checked = true;
			this.ShowThumbnailsAlwaysOnTopCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ShowThumbnailsAlwaysOnTopCheckBox.Location = new System.Drawing.Point(3, 104);
			this.ShowThumbnailsAlwaysOnTopCheckBox.Name = "ShowThumbnailsAlwaysOnTopCheckBox";
			this.ShowThumbnailsAlwaysOnTopCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowThumbnailsAlwaysOnTopCheckBox.Size = new System.Drawing.Size(137, 17);
			this.ShowThumbnailsAlwaysOnTopCheckBox.TabIndex = 8;
			this.ShowThumbnailsAlwaysOnTopCheckBox.Text = "Previews always on top";
			this.ShowThumbnailsAlwaysOnTopCheckBox.UseVisualStyleBackColor = true;
			this.ShowThumbnailsAlwaysOnTopCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// HideThumbnailsOnLostFocusCheckBox
			// 
			this.HideThumbnailsOnLostFocusCheckBox.AutoSize = true;
			this.HideThumbnailsOnLostFocusCheckBox.Checked = true;
			this.HideThumbnailsOnLostFocusCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.HideThumbnailsOnLostFocusCheckBox.Location = new System.Drawing.Point(3, 127);
			this.HideThumbnailsOnLostFocusCheckBox.Name = "HideThumbnailsOnLostFocusCheckBox";
			this.HideThumbnailsOnLostFocusCheckBox.Size = new System.Drawing.Size(234, 17);
			this.HideThumbnailsOnLostFocusCheckBox.TabIndex = 2;
			this.HideThumbnailsOnLostFocusCheckBox.Text = "Hide previews when EVE client is not active";
			this.HideThumbnailsOnLostFocusCheckBox.UseVisualStyleBackColor = true;
			this.HideThumbnailsOnLostFocusCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// EnablePerClientThumbnailsLayoutsCheckBox
			// 
			this.EnablePerClientThumbnailsLayoutsCheckBox.AutoSize = true;
			this.EnablePerClientThumbnailsLayoutsCheckBox.Checked = true;
			this.EnablePerClientThumbnailsLayoutsCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.EnablePerClientThumbnailsLayoutsCheckBox.Location = new System.Drawing.Point(3, 150);
			this.EnablePerClientThumbnailsLayoutsCheckBox.Name = "EnablePerClientThumbnailsLayoutsCheckBox";
			this.EnablePerClientThumbnailsLayoutsCheckBox.Size = new System.Drawing.Size(185, 17);
			this.EnablePerClientThumbnailsLayoutsCheckBox.TabIndex = 3;
			this.EnablePerClientThumbnailsLayoutsCheckBox.Text = "Unique layout for each EVE client";
			this.EnablePerClientThumbnailsLayoutsCheckBox.UseVisualStyleBackColor = true;
			this.EnablePerClientThumbnailsLayoutsCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ResizeOptionsPanel
			// 
			ResizeOptionsPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			ResizeOptionsPanel.Controls.Add(this.SyncThumbnailsSizeCheckBox);
			ResizeOptionsPanel.Controls.Add(this.ThumbnailsWidthNumericEdit);
			ResizeOptionsPanel.Controls.Add(this.ThumbnailsHeightNumericEdit);
			ResizeOptionsPanel.Location = new System.Drawing.Point(3, 173);
			ResizeOptionsPanel.Name = "ResizeOptionsPanel";
			ResizeOptionsPanel.Size = new System.Drawing.Size(246, 30);
			ResizeOptionsPanel.TabIndex = 26;
			// 
			// SyncThumbnailsSizeCheckBox
			// 
			this.SyncThumbnailsSizeCheckBox.AutoSize = true;
			this.SyncThumbnailsSizeCheckBox.Checked = true;
			this.SyncThumbnailsSizeCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.SyncThumbnailsSizeCheckBox.Location = new System.Drawing.Point(1, 3);
			this.SyncThumbnailsSizeCheckBox.Name = "SyncThumbnailsSizeCheckBox";
			this.SyncThumbnailsSizeCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.SyncThumbnailsSizeCheckBox.Size = new System.Drawing.Size(108, 17);
			this.SyncThumbnailsSizeCheckBox.TabIndex = 4;
			this.SyncThumbnailsSizeCheckBox.Text = "Syncronize resize";
			this.SyncThumbnailsSizeCheckBox.UseVisualStyleBackColor = true;
			this.SyncThumbnailsSizeCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ThumbnailsWidthNumericEdit
			// 
			this.ThumbnailsWidthNumericEdit.BackColor = System.Drawing.SystemColors.Window;
			this.ThumbnailsWidthNumericEdit.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.ThumbnailsWidthNumericEdit.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.ThumbnailsWidthNumericEdit.Location = new System.Drawing.Point(137, 3);
			this.ThumbnailsWidthNumericEdit.Maximum = new decimal(new int[] {
            640,
            0,
            0,
            0});
			this.ThumbnailsWidthNumericEdit.Minimum = new decimal(new int[] {
            80,
            0,
            0,
            0});
			this.ThumbnailsWidthNumericEdit.Name = "ThumbnailsWidthNumericEdit";
			this.ThumbnailsWidthNumericEdit.Size = new System.Drawing.Size(48, 20);
			this.ThumbnailsWidthNumericEdit.TabIndex = 11;
			this.ThumbnailsWidthNumericEdit.Value = new decimal(new int[] {
            100,
            0,
            0,
            0});
			this.ThumbnailsWidthNumericEdit.TextChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
			this.ThumbnailsWidthNumericEdit.ValueChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
			// 
			// ThumbnailsHeightNumericEdit
			// 
			this.ThumbnailsHeightNumericEdit.BackColor = System.Drawing.SystemColors.Window;
			this.ThumbnailsHeightNumericEdit.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.ThumbnailsHeightNumericEdit.Increment = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.ThumbnailsHeightNumericEdit.Location = new System.Drawing.Point(196, 3);
			this.ThumbnailsHeightNumericEdit.Maximum = new decimal(new int[] {
            480,
            0,
            0,
            0});
			this.ThumbnailsHeightNumericEdit.Minimum = new decimal(new int[] {
            60,
            0,
            0,
            0});
			this.ThumbnailsHeightNumericEdit.Name = "ThumbnailsHeightNumericEdit";
			this.ThumbnailsHeightNumericEdit.Size = new System.Drawing.Size(42, 20);
			this.ThumbnailsHeightNumericEdit.TabIndex = 12;
			this.ThumbnailsHeightNumericEdit.Value = new decimal(new int[] {
            70,
            0,
            0,
            0});
			this.ThumbnailsHeightNumericEdit.TextChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
			this.ThumbnailsHeightNumericEdit.ValueChanged += new System.EventHandler(this.ThumbnailSizeChanged_Handler);
			// 
			// ZoomOptionsPanel
			// 
			ZoomOptionsPanel.BackColor = System.Drawing.SystemColors.Control;
			ZoomOptionsPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			ZoomOptionsPanel.Controls.Add(ZoomFactorLabel);
			ZoomOptionsPanel.Controls.Add(this.ZoomAnchorPanel);
			ZoomOptionsPanel.Controls.Add(ZoomAnchorLabel);
			ZoomOptionsPanel.Controls.Add(this.EnableThumbnailZoomCheckBox);
			ZoomOptionsPanel.Controls.Add(this.ThumbnailZoomFactorNumericEdit);
			ZoomOptionsPanel.Location = new System.Drawing.Point(3, 209);
			ZoomOptionsPanel.Name = "ZoomOptionsPanel";
			ZoomOptionsPanel.Size = new System.Drawing.Size(246, 82);
			ZoomOptionsPanel.TabIndex = 27;
			// 
			// ZoomFactorLabel
			// 
			ZoomFactorLabel.AutoSize = true;
			ZoomFactorLabel.Location = new System.Drawing.Point(49, 43);
			ZoomFactorLabel.Name = "ZoomFactorLabel";
			ZoomFactorLabel.Size = new System.Drawing.Size(37, 13);
			ZoomFactorLabel.TabIndex = 29;
			ZoomFactorLabel.Text = "Factor";
			// 
			// ZoomAnchorPanel
			// 
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNWRadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNRadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorNERadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorWRadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSERadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorCRadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSRadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorERadioButton);
			this.ZoomAnchorPanel.Controls.Add(this.ZoomAanchorSWRadioButton);
			this.ZoomAnchorPanel.Location = new System.Drawing.Point(182, 21);
			this.ZoomAnchorPanel.Name = "ZoomAnchorPanel";
			this.ZoomAnchorPanel.Size = new System.Drawing.Size(60, 57);
			this.ZoomAnchorPanel.TabIndex = 28;
			// 
			// ZoomAanchorNWRadioButton
			// 
			this.ZoomAanchorNWRadioButton.AutoSize = true;
			this.ZoomAanchorNWRadioButton.Location = new System.Drawing.Point(3, 3);
			this.ZoomAanchorNWRadioButton.Name = "ZoomAanchorNWRadioButton";
			this.ZoomAanchorNWRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorNWRadioButton.TabIndex = 15;
			this.ZoomAanchorNWRadioButton.TabStop = true;
			this.ZoomAanchorNWRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorNWRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorNRadioButton
			// 
			this.ZoomAanchorNRadioButton.AutoSize = true;
			this.ZoomAanchorNRadioButton.Location = new System.Drawing.Point(23, 3);
			this.ZoomAanchorNRadioButton.Name = "ZoomAanchorNRadioButton";
			this.ZoomAanchorNRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorNRadioButton.TabIndex = 16;
			this.ZoomAanchorNRadioButton.TabStop = true;
			this.ZoomAanchorNRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorNRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorNERadioButton
			// 
			this.ZoomAanchorNERadioButton.AutoSize = true;
			this.ZoomAanchorNERadioButton.Location = new System.Drawing.Point(43, 3);
			this.ZoomAanchorNERadioButton.Name = "ZoomAanchorNERadioButton";
			this.ZoomAanchorNERadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorNERadioButton.TabIndex = 17;
			this.ZoomAanchorNERadioButton.TabStop = true;
			this.ZoomAanchorNERadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorNERadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorWRadioButton
			// 
			this.ZoomAanchorWRadioButton.AutoSize = true;
			this.ZoomAanchorWRadioButton.Location = new System.Drawing.Point(3, 22);
			this.ZoomAanchorWRadioButton.Name = "ZoomAanchorWRadioButton";
			this.ZoomAanchorWRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorWRadioButton.TabIndex = 18;
			this.ZoomAanchorWRadioButton.TabStop = true;
			this.ZoomAanchorWRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorWRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorSERadioButton
			// 
			this.ZoomAanchorSERadioButton.AutoSize = true;
			this.ZoomAanchorSERadioButton.Location = new System.Drawing.Point(43, 41);
			this.ZoomAanchorSERadioButton.Name = "ZoomAanchorSERadioButton";
			this.ZoomAanchorSERadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorSERadioButton.TabIndex = 23;
			this.ZoomAanchorSERadioButton.TabStop = true;
			this.ZoomAanchorSERadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorSERadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorCRadioButton
			// 
			this.ZoomAanchorCRadioButton.AutoSize = true;
			this.ZoomAanchorCRadioButton.Location = new System.Drawing.Point(23, 22);
			this.ZoomAanchorCRadioButton.Name = "ZoomAanchorCRadioButton";
			this.ZoomAanchorCRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorCRadioButton.TabIndex = 19;
			this.ZoomAanchorCRadioButton.TabStop = true;
			this.ZoomAanchorCRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorCRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorSRadioButton
			// 
			this.ZoomAanchorSRadioButton.AutoSize = true;
			this.ZoomAanchorSRadioButton.Location = new System.Drawing.Point(23, 41);
			this.ZoomAanchorSRadioButton.Name = "ZoomAanchorSRadioButton";
			this.ZoomAanchorSRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorSRadioButton.TabIndex = 22;
			this.ZoomAanchorSRadioButton.TabStop = true;
			this.ZoomAanchorSRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorSRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorERadioButton
			// 
			this.ZoomAanchorERadioButton.AutoSize = true;
			this.ZoomAanchorERadioButton.Location = new System.Drawing.Point(43, 22);
			this.ZoomAanchorERadioButton.Name = "ZoomAanchorERadioButton";
			this.ZoomAanchorERadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorERadioButton.TabIndex = 20;
			this.ZoomAanchorERadioButton.TabStop = true;
			this.ZoomAanchorERadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorERadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAanchorSWRadioButton
			// 
			this.ZoomAanchorSWRadioButton.AutoSize = true;
			this.ZoomAanchorSWRadioButton.Location = new System.Drawing.Point(3, 41);
			this.ZoomAanchorSWRadioButton.Name = "ZoomAanchorSWRadioButton";
			this.ZoomAanchorSWRadioButton.Size = new System.Drawing.Size(14, 13);
			this.ZoomAanchorSWRadioButton.TabIndex = 21;
			this.ZoomAanchorSWRadioButton.TabStop = true;
			this.ZoomAanchorSWRadioButton.UseVisualStyleBackColor = true;
			this.ZoomAanchorSWRadioButton.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ZoomAnchorLabel
			// 
			ZoomAnchorLabel.AutoSize = true;
			ZoomAnchorLabel.Location = new System.Drawing.Point(138, 43);
			ZoomAnchorLabel.Name = "ZoomAnchorLabel";
			ZoomAnchorLabel.Size = new System.Drawing.Size(41, 13);
			ZoomAnchorLabel.TabIndex = 30;
			ZoomAnchorLabel.Text = "Anchor";
			// 
			// EnableThumbnailZoomCheckBox
			// 
			this.EnableThumbnailZoomCheckBox.AutoSize = true;
			this.EnableThumbnailZoomCheckBox.Checked = true;
			this.EnableThumbnailZoomCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.EnableThumbnailZoomCheckBox.Location = new System.Drawing.Point(1, 5);
			this.EnableThumbnailZoomCheckBox.Name = "EnableThumbnailZoomCheckBox";
			this.EnableThumbnailZoomCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.EnableThumbnailZoomCheckBox.Size = new System.Drawing.Size(98, 17);
			this.EnableThumbnailZoomCheckBox.TabIndex = 13;
			this.EnableThumbnailZoomCheckBox.Text = "Zoom on hover";
			this.EnableThumbnailZoomCheckBox.UseVisualStyleBackColor = true;
			this.EnableThumbnailZoomCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ThumbnailZoomFactorNumericEdit
			// 
			this.ThumbnailZoomFactorNumericEdit.BackColor = System.Drawing.SystemColors.Window;
			this.ThumbnailZoomFactorNumericEdit.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.ThumbnailZoomFactorNumericEdit.Location = new System.Drawing.Point(9, 40);
			this.ThumbnailZoomFactorNumericEdit.Maximum = new decimal(new int[] {
            10,
            0,
            0,
            0});
			this.ThumbnailZoomFactorNumericEdit.Minimum = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.ThumbnailZoomFactorNumericEdit.Name = "ThumbnailZoomFactorNumericEdit";
			this.ThumbnailZoomFactorNumericEdit.Size = new System.Drawing.Size(34, 20);
			this.ThumbnailZoomFactorNumericEdit.TabIndex = 24;
			this.ThumbnailZoomFactorNumericEdit.Value = new decimal(new int[] {
            1,
            0,
            0,
            0});
			this.ThumbnailZoomFactorNumericEdit.ValueChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ShowThumbnailOverlaysCheckBox
			// 
			this.ShowThumbnailOverlaysCheckBox.AutoSize = true;
			this.ShowThumbnailOverlaysCheckBox.Checked = true;
			this.ShowThumbnailOverlaysCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ShowThumbnailOverlaysCheckBox.Location = new System.Drawing.Point(3, 297);
			this.ShowThumbnailOverlaysCheckBox.Name = "ShowThumbnailOverlaysCheckBox";
			this.ShowThumbnailOverlaysCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowThumbnailOverlaysCheckBox.Size = new System.Drawing.Size(90, 17);
			this.ShowThumbnailOverlaysCheckBox.TabIndex = 14;
			this.ShowThumbnailOverlaysCheckBox.Text = "Show overlay";
			this.ShowThumbnailOverlaysCheckBox.UseVisualStyleBackColor = true;
			this.ShowThumbnailOverlaysCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ShowThumbnailFramesCheckBox
			// 
			this.ShowThumbnailFramesCheckBox.AutoSize = true;
			this.ShowThumbnailFramesCheckBox.Checked = true;
			this.ShowThumbnailFramesCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
			this.ShowThumbnailFramesCheckBox.Location = new System.Drawing.Point(99, 297);
			this.ShowThumbnailFramesCheckBox.Name = "ShowThumbnailFramesCheckBox";
			this.ShowThumbnailFramesCheckBox.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowThumbnailFramesCheckBox.Size = new System.Drawing.Size(127, 17);
			this.ShowThumbnailFramesCheckBox.TabIndex = 9;
			this.ShowThumbnailFramesCheckBox.Text = "Show preview frames";
			this.ShowThumbnailFramesCheckBox.UseVisualStyleBackColor = true;
			this.ShowThumbnailFramesCheckBox.CheckedChanged += new System.EventHandler(this.OptionChanged_Handler);
			// 
			// ThumbnailsListPanel
			// 
			ThumbnailsListPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			ThumbnailsListPanel.Controls.Add(this.ThumbnailsList);
			ThumbnailsListPanel.Controls.Add(ThumbnailsListLabel);
			ThumbnailsListPanel.Location = new System.Drawing.Point(3, 320);
			ThumbnailsListPanel.Name = "ThumbnailsListPanel";
			ThumbnailsListPanel.Size = new System.Drawing.Size(246, 125);
			ThumbnailsListPanel.TabIndex = 31;
			// 
			// ThumbnailsList
			// 
			this.ThumbnailsList.BackColor = System.Drawing.SystemColors.Window;
			this.ThumbnailsList.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.ThumbnailsList.FormattingEnabled = true;
			this.ThumbnailsList.IntegralHeight = false;
			this.ThumbnailsList.Location = new System.Drawing.Point(3, 18);
			this.ThumbnailsList.Name = "ThumbnailsList";
			this.ThumbnailsList.Size = new System.Drawing.Size(240, 100);
			this.ThumbnailsList.TabIndex = 28;
			this.ThumbnailsList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.ThumbnailsList_ItemCheck_Handler);
			// 
			// ThumbnailsListLabel
			// 
			ThumbnailsListLabel.AutoSize = true;
			ThumbnailsListLabel.Location = new System.Drawing.Point(3, 0);
			ThumbnailsListLabel.Name = "ThumbnailsListLabel";
			ThumbnailsListLabel.Size = new System.Drawing.Size(162, 13);
			ThumbnailsListLabel.TabIndex = 29;
			ThumbnailsListLabel.Text = "Thumbnails (check to force hide)";
			// 
			// ForumLinkLabel
			// 
			this.ForumLinkLabel.AutoSize = true;
			this.ForumLinkLabel.Location = new System.Drawing.Point(3, 448);
			this.ForumLinkLabel.Name = "ForumLinkLabel";
			this.ForumLinkLabel.Size = new System.Drawing.Size(241, 26);
			this.ForumLinkLabel.TabIndex = 10;
			this.ForumLinkLabel.TabStop = true;
			this.ForumLinkLabel.Text = "to be set from prresenter to be set from prresenter to be set from prresenter to " +
    "be set from prresenter";
			this.ForumLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.ForumLinkLabelClicked_Handler);
			// 
			// TitleMenuItem
			// 
			TitleMenuItem.Enabled = false;
			TitleMenuItem.Name = "TitleMenuItem";
			TitleMenuItem.Size = new System.Drawing.Size(151, 22);
			TitleMenuItem.Text = "EVE-O Preview";
			// 
			// SeparatorMenuItem
			// 
			SeparatorMenuItem.Name = "SeparatorMenuItem";
			SeparatorMenuItem.Size = new System.Drawing.Size(148, 6);
			// 
			// NotifyIcon
			// 
			this.NotifyIcon.ContextMenuStrip = this.TrayMenu;
			this.NotifyIcon.Icon = ((System.Drawing.Icon)(resources.GetObject("NotifyIcon.Icon")));
			this.NotifyIcon.Text = "EVE-O Preview";
			this.NotifyIcon.Visible = true;
			this.NotifyIcon.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.RestoreMainForm_Handler);
			// 
			// TrayMenu
			// 
			this.TrayMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            TitleMenuItem,
            RestoreWindowMenuItem,
            SeparatorMenuItem,
            ExitMenuItem});
			this.TrayMenu.Name = "contextMenuStrip1";
			this.TrayMenu.Size = new System.Drawing.Size(152, 76);
			// 
			// MainForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
			this.ClientSize = new System.Drawing.Size(252, 487);
			this.Controls.Add(ContentFlowLayoutPanel);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
			this.Margin = new System.Windows.Forms.Padding(0);
			this.MaximizeBox = false;
			this.Name = "MainForm";
			this.Text = "EVE-O Preview";
			this.TopMost = true;
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormClosing_Handler);
			this.Load += new System.EventHandler(this.MainFormResize_Handler);
			this.Resize += new System.EventHandler(this.MainFormResize_Handler);
			ContentFlowLayoutPanel.ResumeLayout(false);
			ContentFlowLayoutPanel.PerformLayout();
			OpacityPanel.ResumeLayout(false);
			OpacityPanel.PerformLayout();
			ResizeOptionsPanel.ResumeLayout(false);
			ResizeOptionsPanel.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailsWidthNumericEdit)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailsHeightNumericEdit)).EndInit();
			ZoomOptionsPanel.ResumeLayout(false);
			ZoomOptionsPanel.PerformLayout();
			this.ZoomAnchorPanel.ResumeLayout(false);
			this.ZoomAnchorPanel.PerformLayout();
			((System.ComponentModel.ISupportInitialize)(this.ThumbnailZoomFactorNumericEdit)).EndInit();
			ThumbnailsListPanel.ResumeLayout(false);
			ThumbnailsListPanel.PerformLayout();
			this.TrayMenu.ResumeLayout(false);
			this.ResumeLayout(false);

		}