Exemplo n.º 1
0
 /// <summary>
 /// Hosts a page on the Wizard
 /// </summary>
 /// <param name="wizardPage"></param>
 /// <param name="throwExceptions"></param>
 /// <returns></returns>
 public bool SitePage(IWizardPage wizardPage, bool throwExceptions)
 {
     if (wizardPage != null)
     {
         Control control = wizardPage as Control;
         if (control != null)
         {
             try
             {
                 _pageHolder.SuspendLayout();
                 control.Parent = _pageHolder;
                 control.Dock   = DockStyle.Fill;
                 _pageHolder.Controls.Add(control);
                 return(true);
             }
             catch (Exception ex)
             {
                 Trace.WriteLine(ex);
                 if (throwExceptions)
                 {
                     throw new Exception(ex.Message, ex);
                 }
             }
             finally
             {
                 _pageHolder.ResumeLayout(true);
             }
         }
     }
     return(false);
 }
Exemplo n.º 2
0
		public void AnchorLayoutEvents ()
		{
			Panel p;
			Button b;

			p = new Panel ();

			b = new Button ();
			p.Controls.Add (b);

			p.Layout += new LayoutEventHandler (p_Layout);

			/* set the button's anchor to something different */
			b.Anchor = AnchorStyles.Bottom;
			Assert.AreEqual (1, event_count, "1");
			Assert.AreEqual ("Anchor", most_recent_args.AffectedProperty, "2");

			/* reset it to something new with the panel's layout suspended */
			event_count = 0;
			p.SuspendLayout ();
			b.Anchor = AnchorStyles.Top;
			Assert.AreEqual (0, event_count, "3");
			p.ResumeLayout ();
			Assert.AreEqual (1, event_count, "4");
			Assert.AreEqual (null, most_recent_args.AffectedProperty, "5");

			/* with the anchor style set to something, resize the parent */
			event_count = 0;
			p.Size = new Size (500, 500);
			Assert.AreEqual (1, event_count, "6");
			Assert.AreEqual ("Bounds", most_recent_args.AffectedProperty, "7");

			/* now try it with layout suspended */
			event_count = 0;
			p.SuspendLayout ();
			p.Size = new Size (400, 400);
			Assert.AreEqual (0, event_count, "8");
			p.ResumeLayout ();
			Assert.AreEqual (1, event_count, "9");
			Assert.AreEqual (null, most_recent_args.AffectedProperty, "10");

			/* with the anchor style set to something, resize the child */
			event_count = 0;
			b.Size = new Size (100, 100);
			Assert.AreEqual (1, event_count, "11");
			Assert.AreEqual ("Bounds", most_recent_args.AffectedProperty, "12");

			/* and again with layout suspended */
			event_count = 0;
			p.SuspendLayout ();
			b.Size = new Size (200, 200);
			Assert.AreEqual (0, event_count, "13");
			p.ResumeLayout ();
			Assert.AreEqual (1, event_count, "14");
			Assert.AreEqual (null, most_recent_args.AffectedProperty, "15");
		}
        private void button1_Click(object sender, System.EventArgs e)
        {
            TBLStream tbl = new TBLStream();

            tbl.Load(@"C:\Programmation\FINAL FANTASY 2 - vrsprojet\Final Fantasy 2 us.tbl");

            ItemPanel.SuspendLayout();

            //Vide le tableau
            ItemPanel.Controls.Clear();

            TableFixeEntry[] entry   = new TableFixeEntry[50];
            long             HexaPos = 492041; //temp var

            for (int i = 50 - 1; i > -1; i--)
            {
                entry[i] = new TableFixeEntry();

                entry[i].Length   = 9;
                entry[i].Position = HexaPos;
                entry[i].FileName = @"C:\Programmation\FINAL FANTASY 2 - vrsprojet\Final Fantasy 2 - Version 1.1 (US).smc";
                entry[i].TBL      = tbl;

                HexaPos = entry[i].NextPosition;
                entry[i].Decode();

                entry[i].Dock = DockStyle.Top;
            }


            ItemPanel.Controls.AddRange(entry);

            ItemPanel.ResumeLayout();
            ItemPanel.AutoScrollMinSize = new Size(0, this.Height - 100);
        }
Exemplo n.º 4
0
        private void doTextOnly()
        {
            tprpPanel.SuspendLayout();
            tprpPanel.Controls.Clear();
            tprpPanel.Controls.Add(this.pjse_banner1);
            tprpPanel.Controls.Add(this.lbFilename);
            tbFilename.ReadOnly = true;
            tbFilename.Text     = wrapper.FileName;
            tprpPanel.Controls.Add(this.tbFilename);

            Label lb = new Label();

            lb.AutoSize = true;
            lb.Location = new Point(0, tbFilename.Bottom + 6);
            lb.Text     = pjse.Localization.GetString("tprpTextOnly");

            TextBox tb = new TextBox();

            tb.Anchor     = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
            tb.Multiline  = true;
            tb.Location   = new Point(0, lb.Bottom + 6);
            tb.ReadOnly   = true;
            tb.ScrollBars = ScrollBars.Both;
            tb.Size       = tprpPanel.Size;
            tb.Height    -= tb.Top;

            tb.Text = getText(wrapper.StoredData);

            tprpPanel.Controls.Add(lb);
            tprpPanel.Controls.Add(tb);
            tprpPanel.ResumeLayout(true);
        }
Exemplo n.º 5
0
        public Form1()
        {
            this.Load += Form1_Load;

            _tabPanel = zForm.CreatePanel(dockStyle: DockStyle.Top, backColor: Color.DodgerBlue, height: 300);
            _tabPanel.SuspendLayout();
            _toolsPanel = zForm.CreatePanel(dockStyle: DockStyle.Top, backColor: Color.DodgerBlue, height: 35);
            _toolsPanel.SuspendLayout();
            _tracePanel = zForm.CreatePanel(dockStyle: DockStyle.Fill);
            _tracePanel.SuspendLayout();

            CreateTabPanel();
            CreateToolsPanel();
            CreateTracePanel();

            this.SuspendLayout();

            this.AutoScaleDimensions = new SizeF(6F, 13F);
            this.AutoScaleMode = AutoScaleMode.Font;
            this.ClientSize = new Size(1000, 600);

            this.Controls.Add(_tracePanel);
            this.Controls.Add(_toolsPanel);
            this.Controls.Add(_tabPanel);

            ActiveTabPanel(4);

            _tracePanel.ResumeLayout(false);
            _toolsPanel.ResumeLayout(false);
            _tabPanel.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Exemplo n.º 6
0
        private void BuildInitialBrowseView(XCore.Mediator mediator)
        {
            XmlNode configurationParameters =
                (XmlNode)mediator.PropertyTable.GetValue("WindowConfiguration");
            XmlNode toolNode = configurationParameters.SelectSingleNode(
                "controls/parameters/guicontrol[@id='PhonologicalFeaturesFlatList']/parameters");

            m_listPanel.SuspendLayout();
            m_fakeFlid = FdoCache.DummyFlid;
            IVwCacheDa cda = m_cache.MainCacheAccessor as IVwCacheDa;

            int[] featureHvos = m_cache.LangProject.PhFeatureSystemOA.FeaturesOC.HvoArray;
            cda.CacheVecProp(m_cache.LangProject.Hvo, m_fakeFlid, featureHvos, featureHvos.Length);
            m_bvList = new BrowseViewer(toolNode, m_cache.LangProject.Hvo, m_fakeFlid, m_cache, mediator, null);
            m_bvList.SelectionChanged       += new FwSelectionChangedEventHandler(m_bvList_SelectionChanged);
            m_bvList.ScrollBar.ValueChanged += new EventHandler(ScrollBar_ValueChanged);
            m_bvList.Scroller.Scroll        += new ScrollEventHandler(ScrollBar_Scroll);
            m_bvList.ColumnsChanged         += new EventHandler(BrowseViewer_ColumnsChanged);
            m_bvList.Resize    += new EventHandler(m_bvList_Resize);
            m_bvList.TabStop    = true;
            m_bvList.StyleSheet = FontHeightAdjuster.StyleSheetFromMediator(mediator);
            m_bvList.Dock       = DockStyle.Fill;
            m_bvList.BackColor  = SystemColors.Window;
            m_listPanel.Controls.Add(m_bvList);
            m_listPanel.ResumeLayout(false);
        }
Exemplo n.º 7
0
        public Form1()
        {
            Trace.WriteLine("Form1 constructor");
            _topPanel = zForm.CreatePanel(dockStyle: DockStyle.Top, backColor: Color.DodgerBlue, height: 300);
            _topPanel.SuspendLayout();

            Trace.WriteLine("Create TextBox");
            _textBox = zForm.CreateTextBox();
            //_textBox.ParentChanged += _textBox_ParentChanged;
            ControlFindForm.Find(_textBox, FormFound);
            Trace.WriteLine("before add TextBox to topPanel");
            _topPanel.Controls.Add(_textBox);
            Trace.WriteLine("after add TextBox to topPanel");

            this.SuspendLayout();

            this.AutoScaleDimensions = new SizeF(6F, 13F);
            this.AutoScaleMode = AutoScaleMode.Font;
            this.ClientSize = new Size(1000, 600);

            Trace.WriteLine("before add topPanel to Form");
            this.Controls.Add(_topPanel);
            Trace.WriteLine("after add topPanel to Form");

            _topPanel.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Exemplo n.º 8
0
 private void DiffCallTreeForm_Resize(object sender, System.EventArgs e)
 {
     controlCollection.SuspendLayout();
     controlCollection.Left   = 0;
     controlCollection.Top    = 0;
     controlCollection.Width  = this.ClientSize.Width;
     controlCollection.Height = this.ClientSize.Height - controlCollection.Top;
     controlCollection.ResumeLayout();
 }
Exemplo n.º 9
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.º 10
0
        //Agrega las imagenes en el panel
        public void AgregarImagen(string file, string Name)
        {
            Panel panel = new System.Windows.Forms.Panel();

            System.Windows.Forms.Button Button_Close = new System.Windows.Forms.Button();
            PictureBox pictureBox = new System.Windows.Forms.PictureBox();

            panel.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(pictureBox)).BeginInit();
            this.flowLayoutPanel1.Controls.Add(panel);

            //
            // panel
            //
            panel.Controls.Add(Button_Close);

            panel.Size     = new System.Drawing.Size(170, 185);
            panel.TabIndex = 0;
            //
            // Button_Close
            //
            Button_Close.BackColor = System.Drawing.Color.Firebrick;
            Button_Close.Image     = global::Monitoreo_360.Properties.Resources.Delete_96px;
            Button_Close.Location  = new System.Drawing.Point(152, 0);
            Button_Close.Name      = "Button_Close";
            Button_Close.Size      = new System.Drawing.Size(18, 18);
            Button_Close.TabIndex  = 1;
            Button_Close.TabStop   = false;

            //
            // pictureBox
            //
            using (FileStream strm = new FileStream(file, FileMode.Open, FileAccess.Read))
            {
                panel.Controls.Add(pictureBox);
                pictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
                //pictureBox.Image = Image.FromFile(file);
                pictureBox.Image                 = Image.FromStream(strm);
                pictureBox.InitialImage          = null;
                pictureBox.Location              = new System.Drawing.Point(0, 0);
                pictureBox.Name                  = Name;
                pictureBox.Height                = 100;
                pictureBox.Width                 = 185;
                pictureBox.BackgroundImageLayout = ImageLayout.Stretch;
                pictureBox.SizeMode              = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
                pictureBox.TabIndex              = 0;
                pictureBox.DoubleClick          += new System.EventHandler(this.pictureBox_DoubleClick);
                pictureBox.TabStop               = false;
                ((System.ComponentModel.ISupportInitialize)(pictureBox)).EndInit();
                strm.Dispose();
            }



            panel.ResumeLayout(false);
        }
Exemplo n.º 11
0
 private Panel CreatePanel(DockStyle dockStyle, Color? backColor = null)
 {
     Panel panel = new Panel();
     panel.SuspendLayout();
     panel.Dock = dockStyle;
     if (backColor != null)
         panel.BackColor = (Color)backColor;
     panel.ResumeLayout(false);
     return panel;
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     buttonsPn_   = new System.Windows.Forms.Panel();
     cancelBtn_   = new System.Windows.Forms.Button();
     filtersCtrl_ = new Technosoftware.DaAeHdaClient.SampleClient.BitMaskCtrl();
     buttonsPn_.SuspendLayout();
     SuspendLayout();
     //
     // ButtonsPN
     //
     buttonsPn_.Controls.Add(cancelBtn_);
     buttonsPn_.Dock     = System.Windows.Forms.DockStyle.Bottom;
     buttonsPn_.Location = new System.Drawing.Point(0, 110);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(242, 36);
     buttonsPn_.TabIndex = 0;
     //
     // 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(84, 8);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Close";
     //
     // FiltersCTRL
     //
     filtersCtrl_.Dock     = System.Windows.Forms.DockStyle.Fill;
     filtersCtrl_.Location = new System.Drawing.Point(0, 0);
     filtersCtrl_.Name     = "filtersCtrl_";
     filtersCtrl_.ReadOnly = false;
     filtersCtrl_.Size     = new System.Drawing.Size(242, 110);
     filtersCtrl_.TabIndex = 1;
     filtersCtrl_.Type     = null;
     filtersCtrl_.Value    = 0;
     //
     // EventTypesSelectDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     CancelButton      = cancelBtn_;
     ClientSize        = new System.Drawing.Size(242, 146);
     Controls.Add(filtersCtrl_);
     Controls.Add(buttonsPn_);
     MaximizeBox   = false;
     MaximumSize   = new System.Drawing.Size(600, 216);
     MinimumSize   = new System.Drawing.Size(250, 180);
     Name          = "EventTypesSelectDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Select Event Types";
     buttonsPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 13
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);
 }
Exemplo n.º 14
0
        private void initCompoment()
        {
            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();

            panel1.SuspendLayout();
            pnHead.SuspendLayout();
            pnBotton.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;

            pnBotton.Dock        = DockStyle.Fill;
            pnBotton.BorderStyle = BorderStyle.FixedSingle;

            setControlComponent();

            pnHead.Controls.Add(lbCboYear);
            pnHead.Controls.Add(cboYear);

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

            panel1.ResumeLayout(false);
            pnHead.ResumeLayout(false);
            pnBotton.ResumeLayout(false);

            this.ResumeLayout(false);
            this.PerformLayout();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     buttonsPn_  = new System.Windows.Forms.Panel();
     cancelBtn_  = new System.Windows.Forms.Button();
     itemUrlsLv_ = new System.Windows.Forms.ListView();
     buttonsPn_.SuspendLayout();
     SuspendLayout();
     //
     // ButtonsPN
     //
     buttonsPn_.Controls.Add(cancelBtn_);
     buttonsPn_.Dock     = System.Windows.Forms.DockStyle.Bottom;
     buttonsPn_.Location = new System.Drawing.Point(0, 258);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(592, 36);
     buttonsPn_.TabIndex = 0;
     //
     // CancelBTN
     //
     cancelBtn_.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
     cancelBtn_.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     cancelBtn_.Location     = new System.Drawing.Point(259, 8);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Close";
     //
     // ItemUrlsLV
     //
     itemUrlsLv_.Dock     = System.Windows.Forms.DockStyle.Fill;
     itemUrlsLv_.Location = new System.Drawing.Point(0, 0);
     itemUrlsLv_.Name     = "itemUrlsLv_";
     itemUrlsLv_.Size     = new System.Drawing.Size(592, 258);
     itemUrlsLv_.TabIndex = 1;
     itemUrlsLv_.View     = System.Windows.Forms.View.Details;
     //
     // ItemIDsViewDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     CancelButton      = cancelBtn_;
     ClientSize        = new System.Drawing.Size(592, 294);
     Controls.Add(itemUrlsLv_);
     Controls.Add(buttonsPn_);
     MaximizeBox   = false;
     MaximumSize   = new System.Drawing.Size(600, 400);
     MinimumSize   = new System.Drawing.Size(300, 180);
     Name          = "ItemIDsViewDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Translate Item IDs";
     buttonsPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 16
0
        private void  m_mthShowTemplateContent(string[] strTitle, string[] strContent, string[] strXml)
        {
            bool blnReadOnly = true;

            if ((strTitle == null) || (strContent == null) || (strXml == null))
            {
                return;
            }

            //Create Controls
            while (strTitle.Length > m_arlControlGroup.Count)
            {
                clsControlGroup objCG;
                m_mthCreateControls(m_arlControlGroup.Count, out objCG);
                m_arlControlGroup.Add(objCG);
            }

            //
            m_pnlContent.Visible = false;
            m_pnlContent.SuspendLayout();
            m_pnlContent.Controls.Clear();

            int intTop = 0;

            for (int i = 0; i < strTitle.Length; i++)
            {
                if ((i >= strContent.Length) || (i >= strXml.Length))
                {
                    break;
                }

                clsControlGroup objCG = (clsControlGroup)(m_arlControlGroup[i]);

                m_pnlContent.Controls.Add(objCG.m_txtTitle);
                m_pnlContent.Controls.Add(objCG.m_txtContent);

                objCG.m_mthSetContent(c_intDefaultTextBoxWidth, strTitle[i], strContent[i], strXml[i], blnReadOnly);
                objCG.m_txtContent.m_mthSetNewText(strContent[i], strXml[i]);

                objCG.m_txtTitle.Location = new Point(0, intTop);
                intTop += objCG.m_txtTitle.Height + 1;

                objCG.m_txtContent.Location = new Point(0, intTop);
                intTop += objCG.m_txtContent.Height + 1;
            }
            m_pnlContent.ResumeLayout(true);
            m_pnlContent.Visible = true;
        }
Exemplo n.º 17
0
        private Action InitControlPnlBud(string group)
        {
            var pnl = new System.Windows.Forms.Panel();

            pnl.SuspendLayout();

            pnl.Controls.Add(this.fgForGroup(group));
            pnl.Dock     = System.Windows.Forms.DockStyle.Fill;
            pnl.Location = new System.Drawing.Point(0, 0);
            pnl.Name     = "pnl" + group + "Bud";
            pnl.Size     = new System.Drawing.Size(961, 504);
            pnl.TabIndex = 3;

            pnlBudList.Add(group, pnl);
            return(() => pnl.ResumeLayout(false));;
        }
Exemplo n.º 18
0
        private void UpdateDisplay()
        {
            // Suspend layout to prevent multiple window refreshes.
            pnlPictures.SuspendLayout();

            // Clear the current display.
            foreach (Control ctrl in pnlPictures.Controls)
            {
                ctrl.Dispose();
            }
            pnlPictures.Controls.Clear();

            // Row and Col will track the current position where pictures are
            // being inserted. They begin at the top-right corner.
            int row = border, col = border;

            // Iterate through the Images collection, and create PictureBox controls.
            foreach (NamedImage image in images)
            {
                PictureBox pic = new PictureBox();
                pic.Image       = image.Image;
                pic.Tag         = image.FileName;
                pic.Size        = new Size(dimension, dimension);
                pic.Location    = new Point(col, row);
                pic.BorderStyle = BorderStyle.FixedSingle;

                // StrechImage mode gives us the "thumbnail" ability.
                pic.SizeMode = PictureBoxSizeMode.StretchImage;

                // Display the picture.
                pnlPictures.Controls.Add(pic);

                // Move to the next column.
                col += dimension + spacing;

                // Handle the event.
                pic.Click += new EventHandler(this.pic_Click);

                // Move to next line if no more pictures will fit.
                if ((col + dimension + spacing + border) > this.Width)
                {
                    col  = border;
                    row += dimension + spacing;
                }
            }
            pnlPictures.ResumeLayout();
        }
        /// <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.º 20
0
        private void BuildUI()
        {
            if (_parameters == null)
            {
                return;
            }

            SuspendLayout();
            panelTop.SuspendLayout();

            panelTop.Controls.Clear();
            panelTop.AutoScroll = true;

            int y        = 5;
            int tabIndex = 0;

            for (int i = 0; i < _parameters.Count; i++)
            {
                Parameter p = _parameters[i];

                AddLabel(p.Name, p.Caption, tabIndex++, 5, y);

                if (p.EditorType == SearchEditorType.Standar)
                {
                    if (p.EditorObject == typeof(System.String))
                    {
                        p.InputControl = AddTextBox(p.Name, tabIndex++, 160, y);
                    }
                    else
                    {
                        MessageBox.Show(string.Format("No se ha implementado editor para el tipo '{0}'", p.EditorType.ToString()));
                    }
                }
                else if (p.EditorType == SearchEditorType.Search)
                {
                    p.InputControl = AddSearchEdit(p.Name, tabIndex++, p.EditorObject, 160, y);
                }

                y += 24;
            }

            panelTop.ResumeLayout(false);
            ResumeLayout(false);
            panelTop.Refresh();
        }
Exemplo n.º 21
0
        void _mainContentPanel_Resize(object sender, EventArgs e)
        {
            _row1.SuspendLayout();
            _row2.SuspendLayout();
            _row3.SuspendLayout();
            _row4.SuspendLayout();
            int rowHeight = _mainContentPanel.Height / 4;
            int remainder = _mainContentPanel.Height % 4;

            _row1.Height = rowHeight;
            _row2.Height = rowHeight;
            _row3.Height = rowHeight;
            _row4.Height = rowHeight + remainder;

            //_mainContentPanel.ResumeLayout(true);
            _row1.ResumeLayout();
            _row2.ResumeLayout();
            _row3.ResumeLayout();
            _row4.ResumeLayout();
        }
Exemplo n.º 22
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.º 23
0
 private void InitializeComponent()
 {
     Panel panel = new Panel();
     this._commandPrompt = new CommandPrompt();
     panel.SuspendLayout();
     base.SuspendLayout();
     this._commandPrompt.BorderStyle = BorderStyle.None;
     this._commandPrompt.Dock = DockStyle.Fill;
     this._commandPrompt.ForeColor = Color.Cyan;
     this._commandPrompt.BackColor = Color.Black;
     this._commandPrompt.Font = new Font("Lucida Console", 8f);
     this._commandPrompt.TabIndex = 0;
     panel.BackColor = SystemColors.ControlDark;
     panel.Controls.Add(this._commandPrompt);
     panel.Dock = DockStyle.Fill;
     panel.DockPadding.All = 1;
     panel.TabIndex = 0;
     base.Controls.Add(panel);
     this.Text = "Command Shell";
     base.Icon = new Icon(typeof(CommandToolWindow), "CommandToolWindow.ico");
     panel.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 24
0
 private void InitializeComponent()
 {
     BorderPanel = new Panel();
     ContentPanel = new Panel();
     BorderPanel.SuspendLayout();
     SuspendLayout();
     // 
     // BorderPanel
     // 
     BorderPanel.BackColor = SystemColors.ControlDark;
     BorderPanel.Controls.Add(ContentPanel);
     BorderPanel.Dock = DockStyle.Fill;
     BorderPanel.Location = new Point(3, 3);
     BorderPanel.Name = "BorderPanel";
     BorderPanel.Padding = new Padding(1);
     BorderPanel.Size = new Size(286, 260);
     BorderPanel.TabIndex = 0;
     // 
     // ContentPanel
     // 
     ContentPanel.BackColor = SystemColors.Control;
     ContentPanel.Dock = DockStyle.Fill;
     ContentPanel.Location = new Point(1, 1);
     ContentPanel.Name = "ContentPanel";
     ContentPanel.Size = new Size(284, 258);
     ContentPanel.TabIndex = 1;
     // 
     // DocumentForm
     // 
     BackColor = Color.White;
     ClientSize = new Size(292, 266);
     Controls.Add(BorderPanel);
     Name = "DocumentForm";
     Padding = new Padding(3);
     BorderPanel.ResumeLayout(false);
     ResumeLayout(false);
 }
        private void MakeCruiserListItem(CruiserVM cruiser, Control parent)
        {
            Panel panel = new Panel();
            panel.SuspendLayout();

            Label lbl = new Label();

            Button btn = new Button();

            panel.BackColor = System.Drawing.Color.Tan;
            panel.Controls.Add(lbl);
            panel.Controls.Add(btn);
            panel.Size = new System.Drawing.Size(240, 25);
            panel.Dock = System.Windows.Forms.DockStyle.Top;
            //panel.Location = new System.Drawing.Point(0, 0);
            //panel.Name = "panel3";

            btn.BackColor = System.Drawing.Color.Crimson;
            btn.Dock = System.Windows.Forms.DockStyle.Right;
            //this.button1.Location = new System.Drawing.Point(213, 0);
            //this.button1.Name = "button1";
            btn.Size = new System.Drawing.Size(27, 25);
            btn.TabIndex = 1;
            btn.Text = "X";
            btn.Click += new System.EventHandler(this._removeItemBTN_Click);

            lbl.Location = new System.Drawing.Point(12, 3);
            lbl.Name = "label2";
            lbl.Size = new System.Drawing.Size(48, 20);
            lbl.Text = cruiser.Initials;

            panel.Tag = cruiser;
            panel.Parent = parent;

            #if NetCF
            FMSC.Controls.DpiHelper.AdjustControl(panel);
            FMSC.Controls.DpiHelper.AdjustControl(lbl);
            FMSC.Controls.DpiHelper.AdjustControl(btn);
            #endif

            panel.ResumeLayout(false);
        }
Exemplo n.º 26
0
        public void attachTo(Panel mainGUI, bool userInput = false)
        {
            mainGUI.SuspendLayout();
            for (int i = 0; i < this.ColumnCount; ++i)
                this.Columns[i].Width = cellWidth;

            Point p = userInput ? new Point(0, offsetH) : SetFreeLocation();
            if (userInput)
                Location = p;

            titleLabel.Location = new Point(p.X, p.Y - 17);
            titleLabel.Width = Width;
            titleLabel.Height = 17;
            titleLabel.TextAlign = ContentAlignment.MiddleCenter;
            titleLabel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            titleLabel.FlatStyle = FlatStyle.System;

            titleLabel.BackColor = Color.LightBlue;
            titleLabel.Text = userInput ? "User X" : "X #" + objectCounter;

            mainGUI.Controls.Add(this);
            mainGUI.Controls.Add(titleLabel);
            mainGUI.ResumeLayout(false);
            mainGUI.Focus();
        }
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()
    {
      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.º 28
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);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     cancelBtn_            = new System.Windows.Forms.Button();
     buttonsPn_            = new System.Windows.Forms.Panel();
     okBtn_                = new System.Windows.Forms.Button();
     mainPn_               = new System.Windows.Forms.Panel();
     timestampCtrl_        = new System.Windows.Forms.DateTimePicker();
     timestampLb_          = new System.Windows.Forms.Label();
     timestampSpecifiedCb_ = new System.Windows.Forms.CheckBox();
     buttonsPn_.SuspendLayout();
     mainPn_.SuspendLayout();
     SuspendLayout();
     //
     // CancelBTN
     //
     cancelBtn_.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     cancelBtn_.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     cancelBtn_.Location     = new System.Drawing.Point(168, 8);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Cancel";
     //
     // ButtonsPN
     //
     buttonsPn_.Controls.Add(okBtn_);
     buttonsPn_.Controls.Add(cancelBtn_);
     buttonsPn_.Dock     = System.Windows.Forms.DockStyle.Bottom;
     buttonsPn_.Location = new System.Drawing.Point(0, 26);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(248, 36);
     buttonsPn_.TabIndex = 0;
     //
     // OkBTN
     //
     okBtn_.DialogResult = System.Windows.Forms.DialogResult.OK;
     okBtn_.Location     = new System.Drawing.Point(4, 8);
     okBtn_.Name         = "okBtn_";
     okBtn_.TabIndex     = 0;
     okBtn_.Text         = "OK";
     //
     // MainPN
     //
     mainPn_.Controls.Add(timestampSpecifiedCb_);
     mainPn_.Controls.Add(timestampCtrl_);
     mainPn_.Controls.Add(timestampLb_);
     mainPn_.Dock              = System.Windows.Forms.DockStyle.Fill;
     mainPn_.DockPadding.Left  = 4;
     mainPn_.DockPadding.Right = 4;
     mainPn_.DockPadding.Top   = 4;
     mainPn_.Location          = new System.Drawing.Point(0, 0);
     mainPn_.Name              = "mainPn_";
     mainPn_.Size              = new System.Drawing.Size(248, 26);
     mainPn_.TabIndex          = 33;
     //
     // TimestampCTRL
     //
     timestampCtrl_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     timestampCtrl_.CustomFormat = "yyyy-MM-dd HH:mm:ss";
     timestampCtrl_.Enabled      = false;
     timestampCtrl_.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     timestampCtrl_.Location     = new System.Drawing.Point(72, 4);
     timestampCtrl_.Name         = "timestampCtrl_";
     timestampCtrl_.Size         = new System.Drawing.Size(152, 20);
     timestampCtrl_.TabIndex     = 40;
     //
     // TimestampLB
     //
     timestampLb_.Location  = new System.Drawing.Point(4, 4);
     timestampLb_.Name      = "timestampLb_";
     timestampLb_.Size      = new System.Drawing.Size(68, 23);
     timestampLb_.TabIndex  = 39;
     timestampLb_.Text      = "Timestamp";
     timestampLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // TimestampSpecifiedCB
     //
     timestampSpecifiedCb_.Anchor          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     timestampSpecifiedCb_.Location        = new System.Drawing.Point(228, 3);
     timestampSpecifiedCb_.Name            = "timestampSpecifiedCb_";
     timestampSpecifiedCb_.Size            = new System.Drawing.Size(16, 24);
     timestampSpecifiedCb_.TabIndex        = 41;
     timestampSpecifiedCb_.CheckedChanged += new System.EventHandler(TimestampSpecifiedCB_CheckedChanged);
     //
     // TimestampEditDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     ClientSize        = new System.Drawing.Size(248, 62);
     Controls.Add(mainPn_);
     Controls.Add(buttonsPn_);
     Name          = "TimestampEditDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Edit Timestamp";
     buttonsPn_.ResumeLayout(false);
     mainPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     buttonsPn_       = new System.Windows.Forms.Panel();
     cancelBtn_       = new System.Windows.Forms.Button();
     okBtn_           = new System.Windows.Forms.Button();
     specificationLb_ = new System.Windows.Forms.Label();
     serversCtrl_     = new SampleClients.Da.Browse.BrowseTreeCtrl();
     topPn_           = new System.Windows.Forms.Panel();
     specificationCb_ = new System.Windows.Forms.ComboBox();
     buttonsPn_.SuspendLayout();
     topPn_.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, 194);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(336, 44);
     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(240, 10);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.Size         = new System.Drawing.Size(90, 28);
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Cancel";
     //
     // 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(144, 10);
     okBtn_.Name         = "okBtn_";
     okBtn_.Size         = new System.Drawing.Size(90, 28);
     okBtn_.TabIndex     = 1;
     okBtn_.Text         = "OK";
     //
     // specificationLb_
     //
     specificationLb_.Location  = new System.Drawing.Point(5, 5);
     specificationLb_.Name      = "specificationLb_";
     specificationLb_.Size      = new System.Drawing.Size(87, 28);
     specificationLb_.TabIndex  = 2;
     specificationLb_.Text      = "Specification";
     specificationLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // serversCtrl_
     //
     serversCtrl_.Dock     = System.Windows.Forms.DockStyle.Fill;
     serversCtrl_.Location = new System.Drawing.Point(0, 39);
     serversCtrl_.Name     = "serversCtrl_";
     serversCtrl_.Padding  = new System.Windows.Forms.Padding(4, 0, 4, 0);
     serversCtrl_.Size     = new System.Drawing.Size(336, 155);
     serversCtrl_.TabIndex = 4;
     //
     // topPn_
     //
     topPn_.Controls.Add(specificationCb_);
     topPn_.Controls.Add(specificationLb_);
     topPn_.Dock     = System.Windows.Forms.DockStyle.Top;
     topPn_.Location = new System.Drawing.Point(0, 0);
     topPn_.Name     = "topPn_";
     topPn_.Size     = new System.Drawing.Size(336, 39);
     topPn_.TabIndex = 5;
     //
     // specificationCb_
     //
     specificationCb_.Location              = new System.Drawing.Point(88, 5);
     specificationCb_.Name                  = "specificationCb_";
     specificationCb_.Size                  = new System.Drawing.Size(243, 23);
     specificationCb_.TabIndex              = 3;
     specificationCb_.SelectedIndexChanged += new System.EventHandler(SpecificationCB_SelectedIndexChanged);
     //
     // SelectServerDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(6, 16);
     CancelButton      = cancelBtn_;
     ClientSize        = new System.Drawing.Size(336, 238);
     Controls.Add(serversCtrl_);
     Controls.Add(topPn_);
     Controls.Add(buttonsPn_);
     Name          = "SelectServerDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Select Server";
     buttonsPn_.ResumeLayout(false);
     topPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 31
0
 private void InitializeComponent()
 {
     dgvHash = new DataGridViewEx();
     clmn1_Icon = new DataGridViewImageColumn();
     clmn2_Path = new DataGridViewTextBoxColumn();
     clmn3_Hash = new DataGridViewProgressBarColumn();
     panel1 = new Panel();
     btnClear = new Button();
     btnClose = new Button();
     btnRefresh = new Button();
     chbFullPath = new CheckBox();
     chbClearOnClose = new CheckBox();
     chbShowResult = new CheckBox();
     chbTopMost = new CheckBox();
     cmbHashType = new ComboBox();
     ((ISupportInitialize)dgvHash).BeginInit();
     panel1.SuspendLayout();
     SuspendLayout();
     dgvHash.AllowUserToAddRows = false;
     dgvHash.AllowUserToResizeRows = false;
     dgvHash.BackgroundColor = SystemColors.Window;
     dgvHash.BorderStyle = BorderStyle.None;
     dgvHash.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.None;
     dgvHash.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dgvHash.Columns.AddRange(new DataGridViewColumn[] { clmn1_Icon, clmn2_Path, clmn3_Hash });
     dgvHash.Dock = DockStyle.Fill;
     dgvHash.GridColor = SystemColors.ControlLight;
     dgvHash.Location = new Point(0, 0);
     dgvHash.ReadOnly = true;
     dgvHash.RowHeadersVisible = false;
     dgvHash.RowTemplate.Height = 0x15;
     dgvHash.Size = new Size(0x1bf, 0x6c);
     dgvHash.MouseDown += dataGridView1_MouseDown;
     dgvHash.KeyDown += dataGridView1_KeyDown;
     dgvHash.CellStateChanged += dataGridView1_CellStateChanged;
     dgvHash.CellMouseDoubleClick += dataGridView1_CellMouseDoubleClick;
     clmn1_Icon.ReadOnly = true;
     clmn1_Icon.Resizable = DataGridViewTriState.False;
     clmn1_Icon.Width = 0x12;
     clmn2_Path.AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;
     clmn2_Path.HeaderText = QTUtility.TextResourcesDic["FileHashComputer"][0];
     clmn2_Path.MinimumWidth = 80;
     clmn2_Path.ReadOnly = true;
     clmn3_Hash.AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells;
     clmn3_Hash.HeaderText = QTUtility.TextResourcesDic["FileHashComputer"][1];
     clmn3_Hash.MinimumWidth = 200;
     clmn3_Hash.ReadOnly = true;
     panel1.Controls.Add(cmbHashType);
     panel1.Controls.Add(chbTopMost);
     panel1.Controls.Add(chbShowResult);
     panel1.Controls.Add(chbClearOnClose);
     panel1.Controls.Add(chbFullPath);
     panel1.Controls.Add(btnClear);
     panel1.Controls.Add(btnClose);
     panel1.Controls.Add(btnRefresh);
     panel1.Dock = DockStyle.Bottom;
     panel1.Location = new Point(0, 0x6c);
     panel1.Size = new Size(0x1bf, 0x5d);
     panel1.Paint += panel1_Paint;
     btnClose.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     btnClose.Location = new Point(0x171, 0x43);
     btnClose.Size = new Size(0x4b, 0x17);
     btnClose.Text = QTUtility.TextResourcesDic["FileHashComputer"][2];
     btnClose.UseVisualStyleBackColor = true;
     btnClose.Click += buttonClose_Click;
     btnClear.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     btnClear.Location = new Point(0x120, 0x43);
     btnClear.Size = new Size(0x4b, 0x17);
     btnClear.Text = QTUtility.TextResourcesDic["FileHashComputer"][3];
     btnClear.UseVisualStyleBackColor = true;
     btnClear.Click += buttonClear_Click;
     btnRefresh.Location = new Point(0x89, 8);
     btnRefresh.Size = new Size(0x4b, 0x15);
     btnRefresh.Text = QTUtility.TextResourcesDic["FileHashComputer"][4];
     btnRefresh.UseVisualStyleBackColor = true;
     btnRefresh.Click += buttonRefresh_Click;
     cmbHashType.DropDownStyle = ComboBoxStyle.DropDownList;
     cmbHashType.Items.AddRange(new object[] { "MD5", "SHA-1", "SHA-256", "SHA-384", "SHA-512" });
     cmbHashType.Location = new Point(12, 8);
     cmbHashType.Size = new Size(0x79, 0x15);
     chbTopMost.AutoSize = true;
     chbTopMost.Location = new Point(12, 0x43);
     chbTopMost.Size = new Size(0x4b, 0x17);
     chbTopMost.Text = QTUtility.TextResourcesDic["FileHashComputer"][5];
     chbTopMost.UseVisualStyleBackColor = true;
     chbTopMost.CheckedChanged += checkBoxTopMost_CheckedChanged;
     chbShowResult.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     chbShowResult.AutoSize = true;
     chbShowResult.Location = new Point(0xd7, 0x29);
     chbShowResult.Size = new Size(0x5e, 0x11);
     chbShowResult.Text = QTUtility.TextResourcesDic["FileHashComputer"][6];
     chbShowResult.UseVisualStyleBackColor = true;
     chbClearOnClose.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     chbClearOnClose.AutoSize = true;
     chbClearOnClose.Location = new Point(0x60, 0x29);
     chbClearOnClose.Size = new Size(0x5e, 0x11);
     chbClearOnClose.Text = QTUtility.TextResourcesDic["FileHashComputer"][7];
     chbClearOnClose.UseVisualStyleBackColor = true;
     chbFullPath.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     chbFullPath.AutoSize = true;
     chbFullPath.Location = new Point(12, 0x29);
     chbFullPath.Size = new Size(0x5e, 0x11);
     chbFullPath.Text = QTUtility.TextResourcesDic["FileHashComputer"][8];
     chbFullPath.UseVisualStyleBackColor = true;
     chbFullPath.CheckedChanged += checkBoxFullPath_CheckedChanged;
     AutoScaleDimensions = new SizeF(6f, 13f);
     AutoScaleMode = AutoScaleMode.Font;
     ClientSize = new Size(0x1bf, 0xab);
     Controls.Add(dgvHash);
     Controls.Add(panel1);
     MinimumSize = new Size(320, 0xd5);
     MaximizeBox = false;
     MinimizeBox = false;
     ShowIcon = false;
     ShowInTaskbar = false;
     StartPosition = FormStartPosition.Manual;
     Text = QTUtility.TextResourcesDic["FileHashComputer"][1];
     FormClosing += MD5Form_FormClosing;
     ((ISupportInitialize)dgvHash).EndInit();
     panel1.ResumeLayout(false);
     ResumeLayout(false);
 }
    private static void ShowPanelBar(string text)
    {
      if (_form == null)
      {
        return;
      }
      _form.UseWaitCursor = true;

      _splashOuterPanel = new Panel();
      _splashOuterTable = new TableLayoutPanel();
      _splashInnerTable = new TableLayoutPanel();
      _splashStatusLabel = new Label();
      _splashAnimation = new PictureBox();

      _splashOuterPanel.SuspendLayout();
      _splashOuterTable.SuspendLayout();
      _splashInnerTable.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(_splashAnimation)).BeginInit();
      _form.SuspendLayout();

      var splashX = (_form.ClientRectangle.Width / 2) - (262 / 2);
      var splashY = (_form.ClientRectangle.Height / 2) - (117 / 2);

      // 
      // splashOuterPanel
      // 
      _splashOuterPanel.BorderStyle = BorderStyle.FixedSingle;
      _splashOuterPanel.Controls.Add(_splashOuterTable);
      _splashOuterPanel.Location = new System.Drawing.Point(splashX, splashY);
      _splashOuterPanel.Name = "splashOuterPanel";
      _splashOuterPanel.Size = new System.Drawing.Size(262, 117);
      _splashOuterPanel.UseWaitCursor = true;

      // 
      // splashOuterTable
      // 
      _splashOuterTable.CellBorderStyle = TableLayoutPanelCellBorderStyle.Single;
      _splashOuterTable.ColumnCount = 1;
      _splashOuterTable.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));
      _splashOuterTable.Controls.Add(_splashInnerTable, 0, 0);
      _splashOuterTable.Dock = DockStyle.Fill;
      _splashOuterTable.Location = new System.Drawing.Point(0, 0);
      _splashOuterTable.Name = "splashOuterTable";
      _splashOuterTable.RowCount = 1;
      _splashOuterTable.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));
      _splashOuterTable.Size = new System.Drawing.Size(260, 115);
      _splashOuterTable.UseWaitCursor = true;

      // 
      // splashInnerTable
      // 
      _splashInnerTable.AutoSize = true;
      _splashInnerTable.BackgroundImage = Properties.Resources.AboutBack;
      _splashInnerTable.BackgroundImageLayout = ImageLayout.Stretch;
      _splashInnerTable.ColumnCount = 1;
      _splashInnerTable.ColumnStyles.Add(new ColumnStyle());
      _splashInnerTable.Controls.Add(_splashStatusLabel, 0, 0);
      _splashInnerTable.Controls.Add(_splashAnimation, 0, 1);
      _splashInnerTable.Dock = DockStyle.Fill;
      _splashInnerTable.ForeColor = System.Drawing.SystemColors.ControlText;
      _splashInnerTable.Location = new System.Drawing.Point(1, 1);
      _splashInnerTable.Margin = new Padding(0);
      _splashInnerTable.Name = "splashInnerTable";
      _splashInnerTable.RowCount = 2;
      _splashInnerTable.RowStyles.Add(new RowStyle(SizeType.Absolute, 60F));
      _splashInnerTable.RowStyles.Add(new RowStyle());
      _splashInnerTable.Size = new System.Drawing.Size(258, 113);
      _splashInnerTable.UseWaitCursor = true;

      // 
      // splashStatusLabel
      // 
      _splashStatusLabel.BackColor = System.Drawing.Color.Transparent;
      _splashStatusLabel.Dock = DockStyle.Fill;
      _splashStatusLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
      _splashStatusLabel.ImeMode = ImeMode.NoControl;
      _splashStatusLabel.Location = new System.Drawing.Point(20, 0);
      _splashStatusLabel.Margin = new Padding(20, 0, 40, 0);
      _splashStatusLabel.Name = "splashStatusLabel";
      _splashStatusLabel.Size = new System.Drawing.Size(210, 60);
      if (text.Length > 0)
      {
        _splashStatusLabel.Text = text;
      }
      _splashStatusLabel.TextAlign = System.Drawing.ContentAlignment.BottomLeft;
      _splashStatusLabel.UseWaitCursor = true;

      // 
      // splashAnimation
      // 
      _splashAnimation.Image = Properties.Resources.progressbar_green;
      _splashAnimation.ImeMode = ImeMode.NoControl;
      _splashAnimation.Location = new System.Drawing.Point(20, 70);
      _splashAnimation.Margin = new Padding(20, 10, 0, 0);
      _splashAnimation.Name = "splashAnimation";
      _splashAnimation.Size = new System.Drawing.Size(214, 15);
      _splashAnimation.TabStop = false;
      _splashAnimation.UseWaitCursor = true;

      // 
      // Add to form
      // 
      _form.Controls.Add(_splashOuterPanel);
      _splashOuterPanel.ResumeLayout(false);
      _splashOuterTable.ResumeLayout(false);
      _splashOuterTable.PerformLayout();
      _splashInnerTable.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(_splashAnimation)).EndInit();
      _form.ResumeLayout(false);

      _splashOuterPanel.BringToFront();
    }
    /// <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.º 34
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.º 35
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.º 36
0
 private void InitializeComponent()
 {
     Panel panel = new Panel();
     ImageList list = new ImageList();
     ImageList list2 = new ImageList();
     ToolBarButton button = new MxToolBarButton();
     ToolBarButton button2 = new MxToolBarButton();
     ToolBarButton button3 = new MxToolBarButton();
     this._toolBar = new MxToolBar();
     this._openButton = new MxToolBarButton();
     this._refreshButton = new MxToolBarButton();
     this._deleteButton = new MxToolBarButton();
     this._newFolderButton = new MxToolBarButton();
     this._newDocumentButton = new MxToolBarButton();
     this._newProjectButton = new MxToolBarButton();
     this._treeView = new MxTreeView();
     panel.SuspendLayout();
     base.SuspendLayout();
     list2.ImageSize = new Size(0x10, 0x10);
     list2.TransparentColor = Color.Red;
     list2.ColorDepth = ColorDepth.Depth32Bit;
     list2.Images.AddStrip(new Bitmap(typeof(WorkspaceToolWindow), "WorkspaceToolBar.bmp"));
     this._toolBar.Appearance = ToolBarAppearance.Flat;
     this._toolBar.Divider = false;
     this._toolBar.DropDownArrows = true;
     this._toolBar.ShowToolTips = true;
     this._toolBar.TabIndex = 0;
     this._toolBar.TextAlign = ToolBarTextAlign.Right;
     this._toolBar.Wrappable = false;
     this._toolBar.ImageList = list2;
     this._toolBar.ButtonClick += new ToolBarButtonClickEventHandler(this.OnToolBarButtonClick);
     button.Style = ToolBarButtonStyle.Separator;
     button2.Style = ToolBarButtonStyle.Separator;
     button3.Style = ToolBarButtonStyle.Separator;
     this._openButton.ImageIndex = 0;
     this._openButton.ToolTipText = "Open File";
     this._openButton.Enabled = false;
     this._refreshButton.ImageIndex = 2;
     this._refreshButton.ToolTipText = "Refresh";
     this._refreshButton.Enabled = false;
     this._deleteButton.ImageIndex = 1;
     this._deleteButton.ToolTipText = "Delete";
     this._deleteButton.Enabled = false;
     this._newFolderButton.ImageIndex = 3;
     this._newFolderButton.ToolTipText = "New Folder";
     this._newFolderButton.Enabled = false;
     this._newDocumentButton.ImageIndex = 4;
     this._newDocumentButton.ToolTipText = "New File";
     this._newDocumentButton.Enabled = false;
     this._newProjectButton.ImageIndex = 5;
     this._newProjectButton.ToolTipText = "New Project";
     this._toolBar.Buttons.AddRange(new ToolBarButton[] { this._openButton, button, this._newDocumentButton, this._newFolderButton, this._deleteButton, button2, this._refreshButton, button3, this._newProjectButton });
     list.ImageSize = new Size(0x10, 0x10);
     list.TransparentColor = Color.Fuchsia;
     list.ColorDepth = ColorDepth.Depth32Bit;
     list.Images.AddStrip(new Bitmap(typeof(WorkspaceToolWindow), "WorkspaceTreeItems.bmp"));
     this._treeView.AllowDrop = true;
     this._treeView.BorderStyle = BorderStyle.None;
     this._treeView.Dock = DockStyle.Fill;
     this._treeView.HideSelection = false;
     this._treeView.ShowLines = false;
     this._treeView.TabIndex = 0;
     this._treeView.ImageList = list;
     this._treeView.AfterSelect += new TreeViewEventHandler(this.OnAfterSelectTreeView);
     this._treeView.AfterCollapse += new TreeViewEventHandler(this.OnAfterCollapseTreeView);
     this._treeView.BeforeExpand += new TreeViewCancelEventHandler(this.OnBeforeExpandTreeView);
     this._treeView.NodeDoubleClick += new TreeViewEventHandler(this.OnDoubleClickTreeView);
     this._treeView.ShowContextMenu += new ShowContextMenuEventHandler(this.OnShowContextMenuTreeView);
     this._treeView.ItemDrag += new ItemDragEventHandler(this.OnItemDragTreeView);
     this._treeView.DragDrop += new DragEventHandler(this.OnDragDropTreeView);
     this._treeView.DragEnter += new DragEventHandler(this.OnDragEnterTreeView);
     this._treeView.DragOver += new DragEventHandler(this.OnDragOverTreeView);
     panel.BackColor = SystemColors.ControlDark;
     panel.Controls.Add(this._treeView);
     panel.Dock = DockStyle.Fill;
     panel.DockPadding.All = 1;
     panel.TabIndex = 1;
     base.Controls.AddRange(new Control[] { panel, this._toolBar });
     this.Text = "Workspace";
     base.Icon = new Icon(typeof(WorkspaceToolWindow), "WorkspaceToolWindow.ico");
     panel.ResumeLayout(false);
     base.ResumeLayout(false);
 }
Exemplo n.º 37
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.º 38
0
        private void InitializeComponent()
        {
            playerListMapSplitContainer = new SplitContainer();
            playerBoxSearchBarContainer = new Panel();
            playerBox = new PlayerListControl();
            searchBarContainer = new TableLayoutPanel();
            playerSearchBox = new ZklTextBox();
            sendBox = new SendBox();
            topicPanel = new Panel();
            hideButton = new BitmapButton();
            topicBox = new ChatBox();
            ChatBox = new ChatBox();
            splitContainer1 = new ZkSplitContainer();
            ((ISupportInitialize)playerListMapSplitContainer).BeginInit();
            playerListMapSplitContainer.Panel1.SuspendLayout();
            playerListMapSplitContainer.SuspendLayout();
            playerBoxSearchBarContainer.SuspendLayout();
            searchBarContainer.SuspendLayout();
            topicPanel.SuspendLayout();
            ((ISupportInitialize)splitContainer1).BeginInit();
            splitContainer1.Panel1.SuspendLayout();
            splitContainer1.Panel2.SuspendLayout();
            splitContainer1.SuspendLayout();
            SuspendLayout();
            // 
            // playerListMapSplitContainer
            // 
            playerListMapSplitContainer.BackColor = Color.DimGray;
            playerListMapSplitContainer.Dock = DockStyle.Fill;
            playerListMapSplitContainer.Location = new Point(0, 0);
            playerListMapSplitContainer.Margin = new Padding(2);
            playerListMapSplitContainer.Name = "playerListMapSplitContainer";
            playerListMapSplitContainer.Orientation = Orientation.Horizontal;
            // 
            // playerListMapSplitContainer.Panel1
            // 
            playerListMapSplitContainer.Panel1.Controls.Add(playerBoxSearchBarContainer);
            // 
            // playerListMapSplitContainer.Panel2
            // 
            playerListMapSplitContainer.Panel2.AutoScroll = true;
            playerListMapSplitContainer.Size = new Size(326, 793);
            playerListMapSplitContainer.SplitterDistance = 565;
            playerListMapSplitContainer.SplitterWidth = 3;
            playerListMapSplitContainer.TabIndex = 0;
            playerListMapSplitContainer.SplitterMoved += new SplitterEventHandler(playerListMapSplitContainer_SplitterMoved);
            // 
            // playerBoxSearchBarContainer
            // 
            playerBoxSearchBarContainer.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            playerBoxSearchBarContainer.Controls.Add(playerBox);
            playerBoxSearchBarContainer.Controls.Add(searchBarContainer);
            playerBoxSearchBarContainer.Dock = DockStyle.Fill;
            playerBoxSearchBarContainer.Location = new Point(0, 0);
            playerBoxSearchBarContainer.Name = "playerBoxSearchBarContainer";
            playerBoxSearchBarContainer.Size = new Size(326, 565);
            playerBoxSearchBarContainer.TabIndex = 2;
            // 
            // playerBox
            // 
            playerBox.BackColor = Color.DimGray;
            playerBox.Dock = DockStyle.Fill;
            playerBox.ForeColor = Color.White;
            playerBox.HoverItem = null;
            playerBox.IsBattle = false;
            playerBox.IsSorted = false;
            playerBox.Location = new Point(0, 24);
            playerBox.Name = "playerBox";
            playerBox.SelectedItem = null;
            playerBox.Size = new Size(326, 541);
            playerBox.TabIndex = 1;
            // 
            // searchBarContainer
            // 
            searchBarContainer.ColumnCount = 2;
            searchBarContainer.ColumnStyles.Add(new ColumnStyle(SizeType.AutoSize, 20F));
            searchBarContainer.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 20F));
            searchBarContainer.Controls.Add(playerSearchBox, 1, 0);
            searchBarContainer.Dock = DockStyle.Top;
            searchBarContainer.Location = new Point(0, 0);
            searchBarContainer.Name = "searchBarContainer";
            searchBarContainer.RowCount = 1;
            searchBarContainer.RowStyles.Add(new RowStyle(SizeType.Absolute, 25F));
            searchBarContainer.Size = new Size(326, 30);
            searchBarContainer.AutoSize = false;
            searchBarContainer.TabIndex = 0;
            // 
            // playerSearchBox
            // 
            playerSearchBox.Anchor = AnchorStyles.Left | AnchorStyles.Top;
            playerSearchBox.Location = new Point(23, 22);
            playerSearchBox.Name = "playerSearchBox";
            playerSearchBox.Size = new Size(300, 20);
            playerSearchBox.Margin = new Padding(0);
            playerSearchBox.TabIndex = 0;
            playerSearchBox.Font = Config.GeneralFontSmall;
            playerSearchBox.TextChanged += new EventHandler(playerSearchBox_TextChanged);
            // 
            // sendBox
            // 
            sendBox.Dock = DockStyle.Bottom;
            sendBox.Font = Config.GeneralFont;
            sendBox.ForeColor = Color.White;
            sendBox.Location = new Point(0, 765);
            sendBox.Multiline = true;
            sendBox.Name = "sendBox";
            sendBox.Size = new Size(800, 28);
            sendBox.TabIndex = 0;
            sendBox.WordWrap = false;
            // 
            // topicPanel
            // 
            topicPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;
            topicPanel.Controls.Add(hideButton);
            topicPanel.Controls.Add(topicBox);
            topicPanel.Dock = DockStyle.Top;
            topicPanel.Location = new Point(0, 0);
            topicPanel.Margin = new Padding(0);
            topicPanel.Name = "topicPanel";
            topicPanel.Size = new Size(800, 0);
            topicPanel.TabIndex = 3;
            // 
            // hideButton
            // 
            hideButton.Anchor = (AnchorStyles)(AnchorStyles.Bottom | AnchorStyles.Right);
            hideButton.BackColor = Color.Transparent;
            hideButton.ButtonStyle = FrameBorderRenderer.StyleType.DarkHive;
            hideButton.Cursor = Cursors.Hand;
            hideButton.FlatStyle = FlatStyle.Flat;
            hideButton.ForeColor = Color.White;
            hideButton.Location = new Point(711, -29);
            hideButton.Name = "hideButton";
            hideButton.Size = new Size(75, 23);
            hideButton.SoundType = SoundPalette.SoundType.Click;
            hideButton.TabIndex = 3;
            hideButton.Text = "Hide";
            hideButton.UseVisualStyleBackColor = true;
            hideButton.Click += new EventHandler(hideButton_Click);
            // 
            // topicBox
            // 
            topicBox.BackColor = Color.FromArgb((int)(byte)0, (int)(byte)30, (int)(byte)40);
            topicBox.ChatBackgroundColor = 0;
            topicBox.DefaultTooltip = null;
            topicBox.Dock = DockStyle.Fill;
            topicBox.Font = Config.GeneralFontBig;
            topicBox.HideScroll = false;
            topicBox.IRCForeColor = 0;
            topicBox.LineHighlight = null;
            topicBox.Location = new Point(0, 0);
            topicBox.Name = "topicBox";
            topicBox.NoColorMode = false;
            topicBox.ShowHistory = true;
            topicBox.ShowJoinLeave = false;
            topicBox.ShowUnreadLine = true;
            topicBox.SingleLine = false;
            topicBox.Size = new Size(800, 0);
            topicBox.TabIndex = 2;
            topicBox.TextFilter = null;
            // 
            // ChatBox
            // 
            ChatBox.BackColor = Color.DimGray;
            ChatBox.ChatBackgroundColor = 0;
            ChatBox.DefaultTooltip = null;
            ChatBox.Dock = DockStyle.Fill;
            ChatBox.Font = Config.GeneralFont;
            ChatBox.ForeColor = Color.White;
            ChatBox.HideScroll = false;
            ChatBox.IRCForeColor = 0;
            ChatBox.LineHighlight = null;
            ChatBox.Location = new Point(0, 0);
            ChatBox.Name = "ChatBox";
            ChatBox.NoColorMode = false;
            ChatBox.ShowHistory = true;
            ChatBox.ShowJoinLeave = false;
            ChatBox.ShowUnreadLine = true;
            ChatBox.SingleLine = false;
            ChatBox.Size = new Size(800, 765);
            ChatBox.TabIndex = 1;
            ChatBox.TextFilter = null;
            // 
            // splitContainer1
            // 
            splitContainer1.BackColor = Color.Transparent;
            splitContainer1.Dock = DockStyle.Fill;
            splitContainer1.Location = new Point(0, 0);
            splitContainer1.Margin = new Padding(0);
            splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            splitContainer1.Panel1.Controls.Add(ChatBox);
            splitContainer1.Panel1.Controls.Add(topicPanel);
            splitContainer1.Panel1.Controls.Add(sendBox);
            // 
            // splitContainer1.Panel2
            // 
            splitContainer1.Panel2.Controls.Add(playerListMapSplitContainer);
            splitContainer1.Size = new Size(1130, 793);
            splitContainer1.SplitterDistance = 800;
            splitContainer1.TabIndex = 0;
            splitContainer1.SplitterMoved += splitContainer1_SplitterMoved;


            playerBox.BackColor = Config.BgColor;
            playerBox.ForeColor = Config.TextColor;
            playerBox_zklclick.AttachTo(playerBox);
            playerBox_zklclick.MouseClick += PlayerBox_MouseClick;

            playerSearchBox.BackColor = Config.BgColor;
            playerSearchBox.ForeColor = Config.TextColor;


            var searchLabel = new Label() { Text = "Search: ", AutoSize = true, Font = Config.GeneralFontSmall, Margin = new Padding(3) };
            searchBarContainer.Controls.Add(searchLabel, 0, 0);


            // 
            // ChatControl
            // 
            Controls.Add(splitContainer1);
            Margin = new Padding(0);
            Name = "ChatControl";
            Size = new Size(1130, 793);
            playerListMapSplitContainer.Panel1.ResumeLayout(false);
            ((ISupportInitialize)playerListMapSplitContainer).EndInit();
            playerListMapSplitContainer.ResumeLayout(false);
            playerBoxSearchBarContainer.ResumeLayout(false);
            searchBarContainer.ResumeLayout(false);
            topicPanel.ResumeLayout(false);
            splitContainer1.Panel1.ResumeLayout(false);
            splitContainer1.Panel1.PerformLayout();
            splitContainer1.Panel2.ResumeLayout(false);
            ((ISupportInitialize)splitContainer1).EndInit();
            splitContainer1.ResumeLayout(false);
            ResumeLayout(false);
        }
        /// <summary>
        /// Required method for Designer support - do not modify 
        ///   the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.Panel panelControls;
            System.Windows.Forms.GroupBox filtersGroup;
            System.Windows.Forms.SplitContainer splitContainer;
            System.Windows.Forms.TableLayoutPanel tableLeft;
            System.Windows.Forms.TableLayoutPanel tableRight;
            this.episodesTree = new System.Windows.Forms.TreeView();
            this.episodesCountLabel = new System.Windows.Forms.Label();
            this.refreshButton = new System.Windows.Forms.Button();
            this.hideWholeSeasons = new System.Windows.Forms.CheckBox();
            this.hideLocked = new System.Windows.Forms.CheckBox();
            this.hidePart2 = new System.Windows.Forms.CheckBox();
            this.hideSeason0 = new System.Windows.Forms.CheckBox();
            this.hideUnaired = new System.Windows.Forms.CheckBox();
            this.duplicatesButton = new System.Windows.Forms.Button();
            this.missingButton = new System.Windows.Forms.Button();
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            panelControls = new System.Windows.Forms.Panel();
            filtersGroup = new System.Windows.Forms.GroupBox();
            splitContainer = new System.Windows.Forms.SplitContainer();
            tableLeft = new System.Windows.Forms.TableLayoutPanel();
            tableRight = new System.Windows.Forms.TableLayoutPanel();
            panelControls.SuspendLayout();
            filtersGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(splitContainer)).BeginInit();
            splitContainer.Panel1.SuspendLayout();
            splitContainer.Panel2.SuspendLayout();
            splitContainer.SuspendLayout();
            tableLeft.SuspendLayout();
            tableRight.SuspendLayout();
            this.SuspendLayout();
            // 
            // episodesTree
            // 
            this.episodesTree.Dock = System.Windows.Forms.DockStyle.Fill;
            this.episodesTree.Location = new System.Drawing.Point(3, 36);
            this.episodesTree.Name = "episodesTree";
            this.episodesTree.Size = new System.Drawing.Size(232, 497);
            this.episodesTree.TabIndex = 0;
            this.toolTip.SetToolTip(this.episodesTree, "Shows the results of the search");
            // 
            // episodesCountLabel
            // 
            this.episodesCountLabel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
            this.episodesCountLabel.AutoSize = true;
            this.episodesCountLabel.Location = new System.Drawing.Point(3, 20);
            this.episodesCountLabel.Name = "episodesCountLabel";
            this.episodesCountLabel.Size = new System.Drawing.Size(114, 13);
            this.episodesCountLabel.TabIndex = 1;
            this.episodesCountLabel.Text = "Number of Episodes: 0";
            // 
            // refreshButton
            // 
            this.refreshButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
            this.refreshButton.Location = new System.Drawing.Point(3, 5);
            this.refreshButton.Name = "refreshButton";
            this.refreshButton.Size = new System.Drawing.Size(144, 23);
            this.refreshButton.TabIndex = 1;
            this.refreshButton.Text = "Refresh Episode Counts";
            this.toolTip.SetToolTip(this.refreshButton, "Searches the Output Directories for episodes and updates their file count numbers" +
        ". \r\nThis is used to determine the results of the missing and duplicate episode\r\n" +
        "searches.");
            this.refreshButton.UseVisualStyleBackColor = true;
            this.refreshButton.Click += new System.EventHandler(this.RefreshButtonClick);
            // 
            // panelControls
            // 
            panelControls.Controls.Add(filtersGroup);
            panelControls.Controls.Add(this.duplicatesButton);
            panelControls.Controls.Add(this.missingButton);
            panelControls.Dock = System.Windows.Forms.DockStyle.Fill;
            panelControls.Location = new System.Drawing.Point(0, 33);
            panelControls.Margin = new System.Windows.Forms.Padding(0);
            panelControls.Name = "panelControls";
            panelControls.Size = new System.Drawing.Size(468, 503);
            panelControls.TabIndex = 2;
            // 
            // filtersGroup
            // 
            filtersGroup.Controls.Add(this.hideWholeSeasons);
            filtersGroup.Controls.Add(this.hideLocked);
            filtersGroup.Controls.Add(this.hidePart2);
            filtersGroup.Controls.Add(this.hideSeason0);
            filtersGroup.Controls.Add(this.hideUnaired);
            filtersGroup.Location = new System.Drawing.Point(3, 32);
            filtersGroup.Name = "filtersGroup";
            filtersGroup.Size = new System.Drawing.Size(294, 136);
            filtersGroup.TabIndex = 4;
            filtersGroup.TabStop = false;
            filtersGroup.Text = "Missing Episode Filters";
            // 
            // hideWholeSeasons
            // 
            this.hideWholeSeasons.AutoSize = true;
            this.hideWholeSeasons.Location = new System.Drawing.Point(6, 111);
            this.hideWholeSeasons.Name = "hideWholeSeasons";
            this.hideWholeSeasons.Size = new System.Drawing.Size(156, 17);
            this.hideWholeSeasons.TabIndex = 4;
            this.hideWholeSeasons.Text = "Hide entire missing seasons";
            this.toolTip.SetToolTip(this.hideWholeSeasons, "Hides episodes where and entire season is missing. This can be useful for long ru" +
        "nning where you don\'t have early seasons.");
            this.hideWholeSeasons.UseVisualStyleBackColor = true;
            // 
            // hideLocked
            // 
            this.hideLocked.AutoSize = true;
            this.hideLocked.Location = new System.Drawing.Point(6, 88);
            this.hideLocked.Name = "hideLocked";
            this.hideLocked.Size = new System.Drawing.Size(116, 17);
            this.hideLocked.TabIndex = 3;
            this.hideLocked.Text = "Hide locked shows";
            this.toolTip.SetToolTip(this.hideLocked, "Hides the episodes from shows that are locked.");
            this.hideLocked.UseVisualStyleBackColor = true;
            // 
            // hidePart2
            // 
            this.hidePart2.AutoSize = true;
            this.hidePart2.Location = new System.Drawing.Point(6, 65);
            this.hidePart2.Name = "hidePart2";
            this.hidePart2.Size = new System.Drawing.Size(165, 17);
            this.hidePart2.TabIndex = 2;
            this.hidePart2.Text = "Hide episodes ending with (2)";
            this.toolTip.SetToolTip(this.hidePart2, "Hides episodes with the name ending in (2). \r\nIt is possible these aren\'t missing" +
        " but the filename\r\ndoesn\'t contain both episode numbers and so\r\nTVSorter isn\'t a" +
        "ble to match it.");
            this.hidePart2.UseVisualStyleBackColor = true;
            // 
            // hideSeason0
            // 
            this.hideSeason0.AutoSize = true;
            this.hideSeason0.Location = new System.Drawing.Point(6, 42);
            this.hideSeason0.Name = "hideSeason0";
            this.hideSeason0.Size = new System.Drawing.Size(143, 17);
            this.hideSeason0.TabIndex = 1;
            this.hideSeason0.Text = "Hide season 0 (Specials)";
            this.toolTip.SetToolTip(this.hideSeason0, "Hides episode in season 0. These are generally specials.");
            this.hideSeason0.UseVisualStyleBackColor = true;
            // 
            // hideUnaired
            // 
            this.hideUnaired.AutoSize = true;
            this.hideUnaired.Location = new System.Drawing.Point(6, 19);
            this.hideUnaired.Name = "hideUnaired";
            this.hideUnaired.Size = new System.Drawing.Size(109, 17);
            this.hideUnaired.TabIndex = 0;
            this.hideUnaired.Text = "Hide not yet aired";
            this.toolTip.SetToolTip(this.hideUnaired, "Hides episodes from the results whose air date is in the future");
            this.hideUnaired.UseVisualStyleBackColor = true;
            // 
            // duplicatesButton
            // 
            this.duplicatesButton.Location = new System.Drawing.Point(153, 3);
            this.duplicatesButton.Name = "duplicatesButton";
            this.duplicatesButton.Size = new System.Drawing.Size(144, 23);
            this.duplicatesButton.TabIndex = 3;
            this.duplicatesButton.Text = "Display Duplicate Episodes";
            this.toolTip.SetToolTip(this.duplicatesButton, "Searches for duplicate episodes");
            this.duplicatesButton.UseVisualStyleBackColor = true;
            this.duplicatesButton.Click += new System.EventHandler(this.DuplicatesButtonClick);
            // 
            // missingButton
            // 
            this.missingButton.Location = new System.Drawing.Point(3, 3);
            this.missingButton.Name = "missingButton";
            this.missingButton.Size = new System.Drawing.Size(144, 23);
            this.missingButton.TabIndex = 2;
            this.missingButton.Text = "Display Missing Episodes";
            this.toolTip.SetToolTip(this.missingButton, "Searches for missing episodes.");
            this.missingButton.UseVisualStyleBackColor = true;
            this.missingButton.Click += new System.EventHandler(this.MissingButtonClick);
            // 
            // splitContainer
            // 
            splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            splitContainer.Location = new System.Drawing.Point(0, 0);
            splitContainer.Name = "splitContainer";
            // 
            // splitContainer.Panel1
            // 
            splitContainer.Panel1.Controls.Add(tableLeft);
            // 
            // splitContainer.Panel2
            // 
            splitContainer.Panel2.Controls.Add(tableRight);
            splitContainer.Size = new System.Drawing.Size(710, 536);
            splitContainer.SplitterDistance = 238;
            splitContainer.TabIndex = 5;
            // 
            // tableLeft
            // 
            tableLeft.ColumnCount = 1;
            tableLeft.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLeft.Controls.Add(this.episodesTree, 0, 1);
            tableLeft.Controls.Add(this.episodesCountLabel, 0, 0);
            tableLeft.Dock = System.Windows.Forms.DockStyle.Fill;
            tableLeft.Location = new System.Drawing.Point(0, 0);
            tableLeft.Name = "tableLeft";
            tableLeft.RowCount = 2;
            tableLeft.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 33F));
            tableLeft.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableLeft.Size = new System.Drawing.Size(238, 536);
            tableLeft.TabIndex = 0;
            // 
            // tableRight
            // 
            tableRight.ColumnCount = 1;
            tableRight.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableRight.Controls.Add(panelControls, 0, 1);
            tableRight.Controls.Add(this.refreshButton, 0, 0);
            tableRight.Dock = System.Windows.Forms.DockStyle.Fill;
            tableRight.Location = new System.Drawing.Point(0, 0);
            tableRight.Name = "tableRight";
            tableRight.RowCount = 2;
            tableRight.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 33F));
            tableRight.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
            tableRight.Size = new System.Drawing.Size(468, 536);
            tableRight.TabIndex = 0;
            // 
            // MissingDuplicateEpisodes
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(splitContainer);
            this.Name = "MissingDuplicateEpisodes";
            this.Size = new System.Drawing.Size(710, 536);
            this.Load += new System.EventHandler(this.MissingDuplicateEpisodesLoad);
            panelControls.ResumeLayout(false);
            filtersGroup.ResumeLayout(false);
            filtersGroup.PerformLayout();
            splitContainer.Panel1.ResumeLayout(false);
            splitContainer.Panel2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(splitContainer)).EndInit();
            splitContainer.ResumeLayout(false);
            tableLeft.ResumeLayout(false);
            tableLeft.PerformLayout();
            tableRight.ResumeLayout(false);
            this.ResumeLayout(false);

        }
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()
		{
			System.Windows.Forms.Button m_btnAdd;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HeaderFooterSetupDlg));
			System.Windows.Forms.Button m_btnModify;
			System.Windows.Forms.Button m_btnOk;
			System.Windows.Forms.Button m_btnCancel;
			System.Windows.Forms.Button m_btnHelp;
			System.Windows.Forms.Label m_lblDescription;
			System.Windows.Forms.TabControl tabControl1;
			System.Windows.Forms.TabPage m_tpFirst;
			System.Windows.Forms.Panel m_pnlFirstPage;
			System.Windows.Forms.Label m_lblFirstPage;
			System.Windows.Forms.TabPage m_tpOddEven;
			System.Windows.Forms.Panel panel3;
			System.Windows.Forms.GroupBox m_grpBoxEdit;
			SIL.FieldWorks.Common.Controls.LineControl lineControl1;
			this.m_pnlFirstTop = new System.Windows.Forms.Panel();
			this.m_chkFirstSameAsOdd = new System.Windows.Forms.CheckBox();
			this.m_pnlFirstBottom = new System.Windows.Forms.Panel();
			this.panel2 = new System.Windows.Forms.Panel();
			this.m_pnlEvenPage = new System.Windows.Forms.Panel();
			this.m_pnlEvenTop = new System.Windows.Forms.Panel();
			this.m_chkEvenSameAsOdd = new System.Windows.Forms.CheckBox();
			this.m_pnlEvenBottom = new System.Windows.Forms.Panel();
			this.m_pnlOddPage = new System.Windows.Forms.Panel();
			this.m_pnlOddBottom = new System.Windows.Forms.Panel();
			this.m_pnlOddTop = new System.Windows.Forms.Panel();
			this.m_lblOddPage = new System.Windows.Forms.Label();
			this.m_lblEvenPage = new System.Windows.Forms.Label();
			this.panel4 = new System.Windows.Forms.Panel();
			this.m_btnDelete = new System.Windows.Forms.Button();
			this.m_lstBoxName = new System.Windows.Forms.ListBox();
			this.panel1 = new System.Windows.Forms.Panel();
			this.m_txtBoxDescription = new System.Windows.Forms.TextBox();
			m_btnAdd = new System.Windows.Forms.Button();
			m_btnModify = new System.Windows.Forms.Button();
			m_btnOk = new System.Windows.Forms.Button();
			m_btnCancel = new System.Windows.Forms.Button();
			m_btnHelp = new System.Windows.Forms.Button();
			m_lblDescription = new System.Windows.Forms.Label();
			tabControl1 = new System.Windows.Forms.TabControl();
			m_tpFirst = new System.Windows.Forms.TabPage();
			m_pnlFirstPage = new System.Windows.Forms.Panel();
			m_lblFirstPage = new System.Windows.Forms.Label();
			m_tpOddEven = new System.Windows.Forms.TabPage();
			panel3 = new System.Windows.Forms.Panel();
			m_grpBoxEdit = new System.Windows.Forms.GroupBox();
			lineControl1 = new SIL.FieldWorks.Common.Controls.LineControl();
			tabControl1.SuspendLayout();
			m_tpFirst.SuspendLayout();
			m_pnlFirstPage.SuspendLayout();
			m_tpOddEven.SuspendLayout();
			this.m_pnlEvenPage.SuspendLayout();
			this.m_pnlOddPage.SuspendLayout();
			m_grpBoxEdit.SuspendLayout();
			this.panel1.SuspendLayout();
			this.SuspendLayout();
			//
			// m_btnAdd
			//
			resources.ApplyResources(m_btnAdd, "m_btnAdd");
			m_btnAdd.Name = "m_btnAdd";
			m_btnAdd.Click += new System.EventHandler(this.m_btnAdd_Click);
			//
			// m_btnModify
			//
			resources.ApplyResources(m_btnModify, "m_btnModify");
			m_btnModify.Name = "m_btnModify";
			m_btnModify.Click += new System.EventHandler(this.m_btnModify_Click);
			//
			// m_btnOk
			//
			resources.ApplyResources(m_btnOk, "m_btnOk");
			m_btnOk.Name = "m_btnOk";
			m_btnOk.Click += new System.EventHandler(this.m_btnOk_Click);
			//
			// m_btnCancel
			//
			m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			resources.ApplyResources(m_btnCancel, "m_btnCancel");
			m_btnCancel.Name = "m_btnCancel";
			//
			// m_btnHelp
			//
			resources.ApplyResources(m_btnHelp, "m_btnHelp");
			m_btnHelp.Name = "m_btnHelp";
			m_btnHelp.Click += new System.EventHandler(this.m_btnHelp_Click);
			//
			// m_lblDescription
			//
			resources.ApplyResources(m_lblDescription, "m_lblDescription");
			m_lblDescription.Name = "m_lblDescription";
			//
			// tabControl1
			//
			tabControl1.Controls.Add(m_tpFirst);
			tabControl1.Controls.Add(m_tpOddEven);
			resources.ApplyResources(tabControl1, "tabControl1");
			tabControl1.Name = "tabControl1";
			tabControl1.SelectedIndex = 0;
			//
			// m_tpFirst
			//
			m_tpFirst.Controls.Add(m_pnlFirstPage);
			m_tpFirst.Controls.Add(m_lblFirstPage);
			m_tpFirst.Controls.Add(this.panel2);
			resources.ApplyResources(m_tpFirst, "m_tpFirst");
			m_tpFirst.Name = "m_tpFirst";
			//
			// m_pnlFirstPage
			//
			m_pnlFirstPage.BackColor = System.Drawing.SystemColors.Window;
			m_pnlFirstPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			m_pnlFirstPage.Controls.Add(this.m_pnlFirstTop);
			m_pnlFirstPage.Controls.Add(this.m_chkFirstSameAsOdd);
			m_pnlFirstPage.Controls.Add(this.m_pnlFirstBottom);
			resources.ApplyResources(m_pnlFirstPage, "m_pnlFirstPage");
			m_pnlFirstPage.Name = "m_pnlFirstPage";
			//
			// m_pnlFirstTop
			//
			resources.ApplyResources(this.m_pnlFirstTop, "m_pnlFirstTop");
			this.m_pnlFirstTop.Name = "m_pnlFirstTop";
			//
			// m_chkFirstSameAsOdd
			//
			resources.ApplyResources(this.m_chkFirstSameAsOdd, "m_chkFirstSameAsOdd");
			this.m_chkFirstSameAsOdd.Name = "m_chkFirstSameAsOdd";
			this.m_chkFirstSameAsOdd.CheckedChanged += new System.EventHandler(this.m_chkFirstSameAsOdd_CheckedChanged);
			//
			// m_pnlFirstBottom
			//
			resources.ApplyResources(this.m_pnlFirstBottom, "m_pnlFirstBottom");
			this.m_pnlFirstBottom.Name = "m_pnlFirstBottom";
			//
			// m_lblFirstPage
			//
			resources.ApplyResources(m_lblFirstPage, "m_lblFirstPage");
			m_lblFirstPage.Name = "m_lblFirstPage";
			//
			// panel2
			//
			this.panel2.BackColor = System.Drawing.Color.Silver;
			resources.ApplyResources(this.panel2, "panel2");
			this.panel2.Name = "panel2";
			//
			// m_tpOddEven
			//
			m_tpOddEven.Controls.Add(this.m_pnlEvenPage);
			m_tpOddEven.Controls.Add(this.m_pnlOddPage);
			m_tpOddEven.Controls.Add(this.m_lblOddPage);
			m_tpOddEven.Controls.Add(this.m_lblEvenPage);
			m_tpOddEven.Controls.Add(panel3);
			m_tpOddEven.Controls.Add(this.panel4);
			resources.ApplyResources(m_tpOddEven, "m_tpOddEven");
			m_tpOddEven.Name = "m_tpOddEven";
			//
			// m_pnlEvenPage
			//
			this.m_pnlEvenPage.BackColor = System.Drawing.SystemColors.Window;
			this.m_pnlEvenPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.m_pnlEvenPage.Controls.Add(this.m_pnlEvenTop);
			this.m_pnlEvenPage.Controls.Add(this.m_chkEvenSameAsOdd);
			this.m_pnlEvenPage.Controls.Add(this.m_pnlEvenBottom);
			resources.ApplyResources(this.m_pnlEvenPage, "m_pnlEvenPage");
			this.m_pnlEvenPage.Name = "m_pnlEvenPage";
			//
			// m_pnlEvenTop
			//
			resources.ApplyResources(this.m_pnlEvenTop, "m_pnlEvenTop");
			this.m_pnlEvenTop.Name = "m_pnlEvenTop";
			//
			// m_chkEvenSameAsOdd
			//
			resources.ApplyResources(this.m_chkEvenSameAsOdd, "m_chkEvenSameAsOdd");
			this.m_chkEvenSameAsOdd.Name = "m_chkEvenSameAsOdd";
			this.m_chkEvenSameAsOdd.CheckedChanged += new System.EventHandler(this.m_chkEvenSameAsOdd_CheckedChanged);
			//
			// m_pnlEvenBottom
			//
			resources.ApplyResources(this.m_pnlEvenBottom, "m_pnlEvenBottom");
			this.m_pnlEvenBottom.Name = "m_pnlEvenBottom";
			//
			// m_pnlOddPage
			//
			this.m_pnlOddPage.BackColor = System.Drawing.SystemColors.Window;
			this.m_pnlOddPage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.m_pnlOddPage.Controls.Add(this.m_pnlOddBottom);
			this.m_pnlOddPage.Controls.Add(this.m_pnlOddTop);
			resources.ApplyResources(this.m_pnlOddPage, "m_pnlOddPage");
			this.m_pnlOddPage.Name = "m_pnlOddPage";
			//
			// m_pnlOddBottom
			//
			resources.ApplyResources(this.m_pnlOddBottom, "m_pnlOddBottom");
			this.m_pnlOddBottom.Name = "m_pnlOddBottom";
			//
			// m_pnlOddTop
			//
			resources.ApplyResources(this.m_pnlOddTop, "m_pnlOddTop");
			this.m_pnlOddTop.Name = "m_pnlOddTop";
			//
			// m_lblOddPage
			//
			resources.ApplyResources(this.m_lblOddPage, "m_lblOddPage");
			this.m_lblOddPage.Name = "m_lblOddPage";
			//
			// m_lblEvenPage
			//
			resources.ApplyResources(this.m_lblEvenPage, "m_lblEvenPage");
			this.m_lblEvenPage.Name = "m_lblEvenPage";
			//
			// panel3
			//
			panel3.BackColor = System.Drawing.Color.Silver;
			resources.ApplyResources(panel3, "panel3");
			panel3.Name = "panel3";
			//
			// panel4
			//
			this.panel4.BackColor = System.Drawing.Color.Silver;
			resources.ApplyResources(this.panel4, "panel4");
			this.panel4.Name = "panel4";
			//
			// m_grpBoxEdit
			//
			m_grpBoxEdit.Controls.Add(m_btnModify);
			m_grpBoxEdit.Controls.Add(this.m_btnDelete);
			m_grpBoxEdit.Controls.Add(m_btnAdd);
			m_grpBoxEdit.Controls.Add(this.m_lstBoxName);
			resources.ApplyResources(m_grpBoxEdit, "m_grpBoxEdit");
			m_grpBoxEdit.Name = "m_grpBoxEdit";
			m_grpBoxEdit.TabStop = false;
			//
			// m_btnDelete
			//
			resources.ApplyResources(this.m_btnDelete, "m_btnDelete");
			this.m_btnDelete.Name = "m_btnDelete";
			this.m_btnDelete.Click += new System.EventHandler(this.m_btnDelete_Click);
			//
			// m_lstBoxName
			//
			resources.ApplyResources(this.m_lstBoxName, "m_lstBoxName");
			this.m_lstBoxName.Name = "m_lstBoxName";
			this.m_lstBoxName.SelectedIndexChanged += new System.EventHandler(this.m_lstBoxName_SelectedIndexChanged);
			//
			// panel1
			//
			this.panel1.Controls.Add(m_lblDescription);
			this.panel1.Controls.Add(tabControl1);
			this.panel1.Controls.Add(lineControl1);
			this.panel1.Controls.Add(this.m_txtBoxDescription);
			resources.ApplyResources(this.panel1, "panel1");
			this.panel1.Name = "panel1";
			//
			// lineControl1
			//
			lineControl1.BackColor = System.Drawing.Color.Transparent;
			resources.ApplyResources(lineControl1, "lineControl1");
			lineControl1.ForeColor2 = System.Drawing.Color.Transparent;
			lineControl1.LinearGradientMode = System.Drawing.Drawing2D.LinearGradientMode.Horizontal;
			lineControl1.Name = "lineControl1";
			//
			// m_txtBoxDescription
			//
			resources.ApplyResources(this.m_txtBoxDescription, "m_txtBoxDescription");
			this.m_txtBoxDescription.Name = "m_txtBoxDescription";
			this.m_txtBoxDescription.ReadOnly = true;
			//
			// HeaderFooterSetupDlg
			//
			this.AcceptButton = m_btnOk;
			resources.ApplyResources(this, "$this");
			this.CancelButton = m_btnCancel;
			this.Controls.Add(m_grpBoxEdit);
			this.Controls.Add(this.panel1);
			this.Controls.Add(m_btnHelp);
			this.Controls.Add(m_btnCancel);
			this.Controls.Add(m_btnOk);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "HeaderFooterSetupDlg";
			this.ShowInTaskbar = false;
			tabControl1.ResumeLayout(false);
			m_tpFirst.ResumeLayout(false);
			m_pnlFirstPage.ResumeLayout(false);
			m_tpOddEven.ResumeLayout(false);
			this.m_pnlEvenPage.ResumeLayout(false);
			this.m_pnlOddPage.ResumeLayout(false);
			m_grpBoxEdit.ResumeLayout(false);
			this.panel1.ResumeLayout(false);
			this.panel1.PerformLayout();
			this.ResumeLayout(false);

		}
Exemplo n.º 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     buttonsPn_       = new System.Windows.Forms.Panel();
     cancelBtn_       = new System.Windows.Forms.Button();
     okBtn_           = new System.Windows.Forms.Button();
     mainPn_          = new System.Windows.Forms.Panel();
     descriptionLb_   = new System.Windows.Forms.Label();
     nameLb_          = new System.Windows.Forms.Label();
     attributeCb_     = new System.Windows.Forms.ComboBox();
     topPn_           = new System.Windows.Forms.Panel();
     operatorCtrl_    = new SampleClients.Common.EnumCtrl();
     filterValueCtrl_ = new SampleClients.Common.ValueCtrl();
     operatorLb_      = new System.Windows.Forms.Label();
     filterValueLb_   = new System.Windows.Forms.Label();
     buttonsPn_.SuspendLayout();
     mainPn_.SuspendLayout();
     topPn_.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, 138);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(304, 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(224, 8);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.TabIndex     = 0;
     cancelBtn_.Text         = "Cancel";
     //
     // 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(4, 8);
     okBtn_.Name         = "okBtn_";
     okBtn_.TabIndex     = 1;
     okBtn_.Text         = "OK";
     //
     // MainPN
     //
     mainPn_.Controls.Add(descriptionLb_);
     mainPn_.Dock              = System.Windows.Forms.DockStyle.Fill;
     mainPn_.DockPadding.Left  = 4;
     mainPn_.DockPadding.Right = 4;
     mainPn_.DockPadding.Top   = 4;
     mainPn_.Location          = new System.Drawing.Point(0, 76);
     mainPn_.Name              = "mainPn_";
     mainPn_.Size              = new System.Drawing.Size(304, 62);
     mainPn_.TabIndex          = 5;
     //
     // DescriptionLB
     //
     descriptionLb_.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     descriptionLb_.Dock        = System.Windows.Forms.DockStyle.Fill;
     descriptionLb_.Location    = new System.Drawing.Point(4, 4);
     descriptionLb_.Name        = "descriptionLb_";
     descriptionLb_.Size        = new System.Drawing.Size(296, 58);
     descriptionLb_.TabIndex    = 2;
     descriptionLb_.Text        = "Description";
     //
     // NameLB
     //
     nameLb_.Location  = new System.Drawing.Point(4, 4);
     nameLb_.Name      = "nameLb_";
     nameLb_.Size      = new System.Drawing.Size(68, 23);
     nameLb_.TabIndex  = 0;
     nameLb_.Text      = "Attribute";
     nameLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // AttributeCB
     //
     attributeCb_.Location              = new System.Drawing.Point(72, 4);
     attributeCb_.Name                  = "attributeCb_";
     attributeCb_.Size                  = new System.Drawing.Size(228, 21);
     attributeCb_.TabIndex              = 3;
     attributeCb_.SelectedIndexChanged += new System.EventHandler(AttributeCB_SelectedIndexChanged);
     //
     // TopPN
     //
     topPn_.Controls.Add(operatorCtrl_);
     topPn_.Controls.Add(filterValueCtrl_);
     topPn_.Controls.Add(operatorLb_);
     topPn_.Controls.Add(filterValueLb_);
     topPn_.Controls.Add(attributeCb_);
     topPn_.Controls.Add(nameLb_);
     topPn_.Dock     = System.Windows.Forms.DockStyle.Top;
     topPn_.Location = new System.Drawing.Point(0, 0);
     topPn_.Name     = "topPn_";
     topPn_.Size     = new System.Drawing.Size(304, 76);
     topPn_.TabIndex = 6;
     //
     // OperatorCTRL
     //
     operatorCtrl_.Location = new System.Drawing.Point(72, 28);
     operatorCtrl_.Name     = "operatorCtrl_";
     operatorCtrl_.Size     = new System.Drawing.Size(144, 24);
     operatorCtrl_.TabIndex = 13;
     //
     // FilterValueCTRL
     //
     filterValueCtrl_.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     filterValueCtrl_.ItemID   = null;
     filterValueCtrl_.Location = new System.Drawing.Point(72, 52);
     filterValueCtrl_.Name     = "filterValueCtrl_";
     filterValueCtrl_.Size     = new System.Drawing.Size(228, 20);
     filterValueCtrl_.TabIndex = 12;
     //
     // OperatorLB
     //
     operatorLb_.Location  = new System.Drawing.Point(4, 28);
     operatorLb_.Name      = "operatorLb_";
     operatorLb_.Size      = new System.Drawing.Size(68, 23);
     operatorLb_.TabIndex  = 10;
     operatorLb_.Text      = "Operator";
     operatorLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // FilterValueLB
     //
     filterValueLb_.Location  = new System.Drawing.Point(4, 52);
     filterValueLb_.Name      = "filterValueLb_";
     filterValueLb_.Size      = new System.Drawing.Size(68, 23);
     filterValueLb_.TabIndex  = 11;
     filterValueLb_.Text      = "Filter Value";
     filterValueLb_.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // AttributeFilterEditDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     CancelButton      = cancelBtn_;
     ClientSize        = new System.Drawing.Size(304, 174);
     Controls.Add(mainPn_);
     Controls.Add(topPn_);
     Controls.Add(buttonsPn_);
     Name          = "AttributeFilterEditDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Set Attribute Filter";
     buttonsPn_.ResumeLayout(false);
     mainPn_.ResumeLayout(false);
     topPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 42
0
  /// <summary>
  /// Required method for Designer support - do not modify
  /// the contents of this method with the code editor.
  /// </summary>
  private void InitializeComponent()
  {
   int i;
   String fname = "CreativeModePlus.res.Minecraft-Icon.ico";
   Stream file = Asm.exe.GetManifestResourceStream( fname );
   Bitmap icon = new Bitmap( file );
   menuStrip1 = new MenuStrip();
   fileToolStripMenuItem = new ToolStripMenuItem();
   openMenu = new ToolStripMenuItem();
   exportMenu = new ToolStripMenuItem();
   toolStripSeparator1 = new ToolStripSeparator();
   exitMenu = new ToolStripMenuItem();
   editToolStripMenuItem = new ToolStripMenuItem();
   undoMenu = new ToolStripMenuItem();
   redoMenu = new ToolStripMenuItem();
   toolStripSeparator2 = new ToolStripSeparator();
   deselMenu = new ToolStripMenuItem();
   toolStripSeparator3 = new ToolStripSeparator();
   copyMenu = new ToolStripMenuItem();
   cutMenu = new ToolStripMenuItem();
   pasteMenu = new ToolStripMenuItem();
   viewToolStripMenuItem = new ToolStripMenuItem();
   toolsMenu = new ToolStripMenuItem();
   mapToolStripMenuItem = new ToolStripMenuItem();
   regionMenu = new ToolStripMenuItem();
   helpToolStripMenuItem = new ToolStripMenuItem();
   helpMenu = new ToolStripMenuItem();
   aboutMenu = new ToolStripMenuItem();
   mnuScale = new ToolStripTextBox();
   height = new ComboBox();
   statusStrip1 = new StatusStrip();
   toolStripStatusLabel1 = new ToolStripStatusLabel();
   mnuLoad = new ToolStripProgressBar();
   toolStripStatusLabel2 = new ToolStripStatusLabel();
   mnuStatus = new ToolStripStatusLabel();
   toolStripStatusLabel3 = new ToolStripStatusLabel();
   mnuBlock = new ToolStripStatusLabel();
   toolStripStatusLabel4 = new ToolStripStatusLabel();
   mnuCoord = new ToolStripStatusLabel();
   pnlImage = new Panel();
   mapImage = new PictureBox();
   cmbBlocks = new CreativeModePlus.ComboBoxWithIcons();
   cmbPaint = new CreativeModePlus.ComboBoxWithIcons();
   menuStrip1.SuspendLayout();
   statusStrip1.SuspendLayout();
   pnlImage.SuspendLayout();
   ((System.ComponentModel.ISupportInitialize)(mapImage)).BeginInit();
   SuspendLayout();
   // 
   // menuStrip1
   // 
   menuStrip1.BackColor = Color.LightGray;
   menuStrip1.Items.AddRange(new ToolStripItem[] {
            fileToolStripMenuItem,
            editToolStripMenuItem,
            viewToolStripMenuItem,
            mapToolStripMenuItem,
            helpToolStripMenuItem,
            mnuScale});
   menuStrip1.Location = new Point(0, 0);
   menuStrip1.Name = "menuStrip1";
   menuStrip1.Size = new Size(528, 27);
   menuStrip1.TabIndex = 0;
   menuStrip1.Text = "menuStrip1";
   // 
   // fileToolStripMenuItem
   // 
   fileToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] {
            openMenu,
            exportMenu,
            toolStripSeparator1,
            exitMenu});
   fileToolStripMenuItem.Name = "fileToolStripMenuItem";
   fileToolStripMenuItem.Size = new Size(37, 23);
   fileToolStripMenuItem.Text = "&File";
   // 
   // openMenu
   // 
   openMenu.Name = "openMenu";
   openMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.O)));
   openMenu.Size = new Size(182, 22);
   openMenu.Text = "&Open World";
   openMenu.Click += new EventHandler(openMenu_Click);
   // 
   // exportMenu
   // 
   exportMenu.Name = "exportMenu";
   exportMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.S)));
   exportMenu.Size = new Size(182, 22);
   exportMenu.Text = "&Save";
   exportMenu.Click += new EventHandler( exportMenu_Click );
   // 
   // toolStripSeparator1
   // 
   toolStripSeparator1.Name = "toolStripSeparator1";
   toolStripSeparator1.Size = new Size(179, 6);
   // 
   // exitMenu
   // 
   exitMenu.Name = "exitMenu";
   exitMenu.ShortcutKeys = ((Keys)((Keys.Alt | Keys.F4)));
   exitMenu.Size = new Size(182, 22);
   exitMenu.Text = "E&xit";
   exitMenu.Click += new EventHandler(exitMenu_Click);
   // 
   // editToolStripMenuItem
   // 
   editToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] {
            undoMenu,
            redoMenu,
            toolStripSeparator2,
            deselMenu,
            toolStripSeparator3,
            copyMenu,
            cutMenu,
            pasteMenu});
   editToolStripMenuItem.Name = "editToolStripMenuItem";
   editToolStripMenuItem.Size = new Size(39, 23);
   editToolStripMenuItem.Text = "&Edit";
   //
   // deselMenu
   //
   deselMenu.Name = "deselMenu";
   deselMenu.ShortcutKeys = (( Keys )( Keys.Control | Keys.D ));
   deselMenu.Size = new Size( 152, 22 );
   deselMenu.Text = "&Deselect";
   deselMenu.Click += new EventHandler( deselMenu_Click );
   // 
   // copyMenu
   // 
   copyMenu.Name = "copyMenu";
   copyMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.C)));
   copyMenu.Size = new Size(152, 22);
   copyMenu.Text = "C&opy";
   copyMenu.Click += new EventHandler( copyMenu_Click );
   // 
   // cutMenu
   // 
   cutMenu.Name = "cutMenu";
   cutMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.X)));
   cutMenu.Size = new Size(152, 22);
   cutMenu.Text = "C&ut";
   cutMenu.Click += new EventHandler( cutMenu_Click );
   // 
   // pasteMenu
   // 
   pasteMenu.Name = "pasteMenu";
   pasteMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.V)));
   pasteMenu.Size = new Size(152, 22);
   pasteMenu.Text = "&Paste";
   pasteMenu.Click += new EventHandler( pasteMenu_Click );
   // 
   // viewToolStripMenuItem
   // 
   viewToolStripMenuItem.DropDownItems.Add( toolsMenu );
   viewToolStripMenuItem.Name = "viewToolStripMenuItem";
   viewToolStripMenuItem.Size = new Size(44, 23);
   viewToolStripMenuItem.Text = "&View";
   // 
   // toolsMenu
   // 
   toolsMenu.Checked = true;
   toolsMenu.CheckOnClick = true;
   toolsMenu.CheckState = CheckState.Checked;
   toolsMenu.Name = "toolsMenu";
   toolsMenu.Size = new Size(112, 22);
   toolsMenu.Text = "Tools";
   toolsMenu.CheckedChanged += new EventHandler(toolsMenu_CheckChanged);
   // 
   // mapToolStripMenuItem
   // 
   mapToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] {
            regionMenu});
   mapToolStripMenuItem.Name = "mapToolStripMenuItem";
   mapToolStripMenuItem.Size = new Size(43, 23);
   mapToolStripMenuItem.Text = "&Map";
   // 
   // regionMenu
   // 
   regionMenu.Name = "regionMenu";
   regionMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.R)));
   regionMenu.Size = new Size(186, 22);
   regionMenu.Text = "&Select Region";
   regionMenu.Click += new EventHandler(regionMenu_Click);
   // 
   // helpToolStripMenuItem
   // 
   helpToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] {
            helpMenu, aboutMenu});
   helpToolStripMenuItem.Name = "helpToolStripMenuItem";
   helpToolStripMenuItem.Size = new Size(44, 23);
   helpToolStripMenuItem.Text = "&Help";
   //
   // helpMenu
   //
   helpMenu.Name = "helpMenu";
   helpMenu.ShortcutKeys = Keys.F1;
   helpMenu.Size = new Size( 149, 22 );
   helpMenu.Text = "&Help";
   helpMenu.Click += new EventHandler( helpMenu_Click );
   // 
   // aboutMenu
   // 
   aboutMenu.Name = "aboutMenu";
   aboutMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.A)));
   aboutMenu.Size = new Size(149, 22);
   aboutMenu.Text = "&About";
   aboutMenu.Click += new EventHandler(aboutMenu_Click);
   // 
   // mnuScale
   // 
   mnuScale.BackColor = Color.LightGray;
   mnuScale.Name = "mnuScale";
   mnuScale.Size = new Size(50, 23);
   mnuScale.Text = "100%";
   mnuScale.TextBoxTextAlign = HorizontalAlignment.Right;
   // 
   // statusStrip1
   // 
   statusStrip1.BackColor = Color.LightGray;
   statusStrip1.Items.AddRange(new ToolStripItem[] {
            toolStripStatusLabel1,
            mnuLoad,
            toolStripStatusLabel2,
            mnuStatus,
            toolStripStatusLabel3,
            mnuBlock,
            toolStripStatusLabel4,
            mnuCoord});
   statusStrip1.Location = new Point(0, 601);
   statusStrip1.Name = "statusStrip1";
   statusStrip1.Size = new Size(528, 22);
   statusStrip1.TabIndex = 3;
   statusStrip1.Text = "statusStrip1";
   // 
   // toolStripStatusLabel1
   // 
   toolStripStatusLabel1.BackColor = Color.LightGray;
   toolStripStatusLabel1.Name = "toolStripStatusLabel";
   toolStripStatusLabel1.Size = new Size(22, 17);
   toolStripStatusLabel1.Text = "     ";
   // 
   // mnuLoad
   // 
   mnuLoad.BackColor = SystemColors.GrayText;
   mnuLoad.ForeColor = SystemColors.GradientActiveCaption;
   mnuLoad.Name = "mnuLoad";
   mnuLoad.Size = new Size(100, 16);
   mnuLoad.Style = ProgressBarStyle.Continuous;
   // 
   // toolStripStatusLabel2
   // 
   toolStripStatusLabel2.BackColor = Color.LightGray;
   toolStripStatusLabel2.Name = "toolStripStatusLabel2";
   toolStripStatusLabel2.Size = new Size(22, 17);
   toolStripStatusLabel2.Text = "     ";
   // 
   // mnuStatus
   // 
   mnuStatus.BackColor = Color.LightGray;
   mnuStatus.Name = "mnuStatus";
   mnuStatus.Size = new Size(102, 17);
   mnuStatus.Text = "Not Loading";
   // 
   // toolStripStatusLabel3
   // 
   toolStripStatusLabel3.BackColor = Color.LightGray;
   toolStripStatusLabel3.Name = "toolStripStatusLabel3";
   toolStripStatusLabel3.Size = new Size(22, 17);
   toolStripStatusLabel3.Text = "     ";
   // 
   // mnuBlock
   // 
   mnuBlock.BackColor = Color.LightGray;
   mnuBlock.Name = "mnuBlock";
   mnuBlock.Size = new Size(102, 17);
   mnuBlock.Text = "Block Information";
   // 
   // toolStripStatusLabel4
   // 
   toolStripStatusLabel3.BackColor = Color.LightGray;
   toolStripStatusLabel3.Name = "toolStripStatusLabel4";
   toolStripStatusLabel3.Size = new Size(22, 17);
   toolStripStatusLabel3.Text = "     ";
   // 
   // mnuCoord
   // 
   mnuCoord.BackColor = Color.LightGray;
   mnuCoord.Name = "mnuBlock";
   mnuCoord.Size = new Size(102, 17);
   mnuCoord.Text = "( X, Y )";
   // 
   // pnlImage
   // 
   pnlImage.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom) 
            | AnchorStyles.Left) 
            | AnchorStyles.Right)));
   pnlImage.AutoScroll = true;
   pnlImage.BackColor = SystemColors.Desktop;
   pnlImage.Controls.Add(mapImage);
   pnlImage.Location = new Point(0, 48);
   pnlImage.Name = "pnlImage";
   pnlImage.Size = new Size(528, 550);
   pnlImage.TabIndex = 4;
   pnlImage.MouseWheel += new MouseEventHandler( pnlImage_Wheel );
   // 
   // mapImage
   // 
   mapImage.Location = new Point(0, 0);
   mapImage.Name = "mapImage";
   mapImage.Size = new Size(512, 512);
   mapImage.SizeMode = PictureBoxSizeMode.Zoom;
   mapImage.TabIndex = 0;
   mapImage.TabStop = false;
   mapImage.MouseClick += new MouseEventHandler(mapImage_Click);
   mapImage.MouseDown += new MouseEventHandler(mapImage_Down);
   mapImage.MouseEnter += new EventHandler(mapImage_MouseEnter);
   mapImage.MouseLeave += new EventHandler(mapImage_MouseLeave);
   mapImage.MouseMove += new MouseEventHandler(mapImage_MouseMove);
   mapImage.MouseUp += new MouseEventHandler(mapImage_Up);
   // 
   // height
   // 
   height.DropDownStyle = ComboBoxStyle.DropDownList;
   height.FlatStyle = FlatStyle.Flat;
   height.Location = new Point(380, 27);
   height.Name = "height";
   height.Size = new Size(100, 21);
   height.TabIndex = 2;
   height.SelectedIndexChanged += new EventHandler(height_ValueChanged);
   // 
   // cmbBlocks
   // 
   cmbBlocks.DrawMode = DrawMode.OwnerDrawFixed;
   cmbBlocks.DropDownStyle = ComboBoxStyle.DropDownList;
   cmbBlocks.FlatStyle = FlatStyle.Flat;
   cmbBlocks.FormattingEnabled = true;
   cmbBlocks.Location = new Point(0, 27);
   cmbBlocks.Name = "cmbBlocks";
   cmbBlocks.Size = new Size(187, 21);
   cmbBlocks.TabIndex = 5;
   for( i = 0; i < 256; i++ )
    height.Items.Add( "" + ( i + 1 ));
   cmbBlocks.SelectedIndexChanged += new EventHandler(cmbBlocks_SelectedIndexChanged);
   // 
   // cmbPaint
   // 
   cmbPaint.DrawMode = DrawMode.OwnerDrawFixed;
   cmbPaint.DropDownStyle = ComboBoxStyle.DropDownList;
   cmbPaint.FlatStyle = FlatStyle.Flat;
   cmbPaint.FormattingEnabled = true;
   cmbPaint.Location = new Point(190, 27);
   cmbPaint.Name = "cmbPaint";
   cmbPaint.Size = new Size(187, 21);
   cmbPaint.TabIndex = 5;
   cmbPaint.SelectedIndexChanged += new EventHandler(cmbPaint_SelectedIndexChanged);
   // 
   // toolStripSeparator2
   // 
   toolStripSeparator2.Name = "toolStripSeparator2";
   toolStripSeparator2.Size = new Size(149, 6);
   // 
   // undoMenu
   // 
   undoMenu.Name = "undoMenu";
   undoMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.Z)));
   undoMenu.Size = new Size(152, 22);
   undoMenu.Text = "&Undo";
   undoMenu.Click += new EventHandler(undoMenu_Click);
   // 
   // redoMenu
   // 
   redoMenu.Name = "redoMenu";
   redoMenu.ShortcutKeys = ((Keys)((Keys.Control | Keys.Y)));
   redoMenu.Size = new Size(152, 22);
   redoMenu.Text = "&Redo";
   redoMenu.Click += new EventHandler(redoMenu_Click);
   // 
   // frmMain
   // 
   BackColor = Color.LightGray;
   ClientSize = new Size(528, 623);
   Controls.Add(cmbBlocks);
   Controls.Add(cmbPaint);
   Controls.Add(statusStrip1);
   Controls.Add(height);
   Controls.Add(menuStrip1);
   Controls.Add(pnlImage);
   FormClosing += new FormClosingEventHandler( frmMain_Closing );
   Icon = Icon.FromHandle( icon.GetHicon());
   file.Close();
   Location = new Point(( Screen.PrimaryScreen.Bounds.Width - Width ) / 2,
                        ( Screen.PrimaryScreen.Bounds.Height - Height ) / 2 );
   MainMenuStrip = menuStrip1;
   Move += new EventHandler(frmMain_SizeChanged);
   Name = "frmMain";
   StartPosition = FormStartPosition.Manual;
   Text = "Creative Mode+";
   SizeChanged += new EventHandler(frmMain_SizeChanged);
   menuStrip1.ResumeLayout(false);
   menuStrip1.PerformLayout();
   statusStrip1.ResumeLayout(false);
   statusStrip1.PerformLayout();
   pnlImage.ResumeLayout(false);
   ((System.ComponentModel.ISupportInitialize)(mapImage)).EndInit();
   ResumeLayout(false);
   PerformLayout();

  }
		/// <summary>
		///   This method was autogenerated - do not change the contents manually
		/// </summary>
		private void InitializeComponents()
		{
			System.Windows.Forms.ColumnHeader columnHeader1;
			System.Windows.Forms.Panel panel1;
			this.okButton = new System.Windows.Forms.Button();
			this.cancelButton = new System.Windows.Forms.Button();
			this.selectionListBox = new System.Windows.Forms.CheckedListBox();
			this.statusLabel = new System.Windows.Forms.Label();
			this.categoryListView = new System.Windows.Forms.ListView();
			columnHeader1 = new System.Windows.Forms.ColumnHeader();
			panel1 = new System.Windows.Forms.Panel();
			panel1.SuspendLayout();
			this.SuspendLayout();
			// 
			// columnHeader1
			// 
			columnHeader1.Width = 258;
			// 
			// panel1
			// 
			panel1.BackColor = System.Drawing.SystemColors.Control;
			panel1.Controls.Add(this.okButton);
			panel1.Controls.Add(this.cancelButton);
			panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
			panel1.Location = new System.Drawing.Point(1, 309);
			panel1.Name = "panel1";
			panel1.Size = new System.Drawing.Size(262, 29);
			panel1.TabIndex = 3;
			// 
			// okButton
			// 
			this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.okButton.Location = new System.Drawing.Point(94, 3);
			this.okButton.Name = "okButton";
			this.okButton.Size = new System.Drawing.Size(75, 23);
			this.okButton.TabIndex = 0;
			this.okButton.Text = "OK";
			this.okButton.UseCompatibleTextRendering = true;
			this.okButton.UseVisualStyleBackColor = true;
			this.okButton.Click += new System.EventHandler(this.OkButtonClick);
			// 
			// cancelButton
			// 
			this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cancelButton.Location = new System.Drawing.Point(175, 3);
			this.cancelButton.Name = "cancelButton";
			this.cancelButton.Size = new System.Drawing.Size(75, 23);
			this.cancelButton.TabIndex = 1;
			this.cancelButton.Text = "Cancel";
			this.cancelButton.UseCompatibleTextRendering = true;
			this.cancelButton.UseVisualStyleBackColor = true;
			this.cancelButton.Click += new System.EventHandler(this.CancelButtonClick);
			// 
			// selectionListBox
			// 
			this.selectionListBox.Dock = System.Windows.Forms.DockStyle.Fill;
			this.selectionListBox.IntegralHeight = false;
			this.selectionListBox.Location = new System.Drawing.Point(1, 129);
			this.selectionListBox.Name = "selectionListBox";
			this.selectionListBox.Size = new System.Drawing.Size(262, 180);
			this.selectionListBox.TabIndex = 2;
			this.selectionListBox.UseCompatibleTextRendering = true;
			// 
			// statusLabel
			// 
			this.statusLabel.BackColor = System.Drawing.SystemColors.Control;
			this.statusLabel.Dock = System.Windows.Forms.DockStyle.Top;
			this.statusLabel.Location = new System.Drawing.Point(1, 113);
			this.statusLabel.Name = "statusLabel";
			this.statusLabel.Size = new System.Drawing.Size(262, 16);
			this.statusLabel.TabIndex = 1;
			this.statusLabel.Text = "statusLabel";
			this.statusLabel.UseCompatibleTextRendering = true;
			// 
			// categoryListView
			// 
			this.categoryListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
									columnHeader1});
			this.categoryListView.Dock = System.Windows.Forms.DockStyle.Top;
			this.categoryListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
			this.categoryListView.Location = new System.Drawing.Point(1, 1);
			this.categoryListView.MultiSelect = false;
			this.categoryListView.Name = "categoryListView";
			this.categoryListView.Size = new System.Drawing.Size(262, 112);
			this.categoryListView.TabIndex = 0;
			this.categoryListView.UseCompatibleStateImageBehavior = false;
			this.categoryListView.View = System.Windows.Forms.View.Details;
			// 
			// CodeGenerationForm
			// 
			this.AcceptButton = this.okButton;
			this.BackColor = System.Drawing.SystemColors.ControlDarkDark;
			this.CancelButton = this.cancelButton;
			this.ClientSize = new System.Drawing.Size(264, 339);
			this.Controls.Add(this.selectionListBox);
			this.Controls.Add(this.statusLabel);
			this.Controls.Add(this.categoryListView);
			this.Controls.Add(panel1);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
			this.Name = "CodeGenerationForm";
			this.Padding = new System.Windows.Forms.Padding(1);
			this.ShowInTaskbar = false;
			panel1.ResumeLayout(false);
			this.ResumeLayout(false);
		}
Exemplo n.º 44
0
 private void InitializeComponent() {
     components = new Container();
     btnOk = new Button();
     btnOk2 = new Button();
     btnCancel = new Button();
     panel1 = new Panel();
     labelMessage = new Label();
     pictureBoxIcon = new PictureBox();
     timerClose = new Timer(components);
     labelCounter = new Label();
     panel1.SuspendLayout();
     ((ISupportInitialize)pictureBoxIcon).BeginInit();
     SuspendLayout();
     btnOk.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     btnOk.Font = new Font(Font.FontFamily, 9f);
     btnOk.Location = new Point(0x13e, 0x7a);
     btnOk.Size = new Size(0x4b, 0x1c);
     btnOk.TabIndex = 0;
     btnOk.Text = "OK";
     btnOk.UseVisualStyleBackColor = true;
     btnOk.Click += btnOk_Click;
     btnOk2.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     btnOk2.Font = new Font(Font.FontFamily, 9f);
     btnOk2.Location = new Point(0xed, 0x7a);
     btnOk2.Size = new Size(0x4b, 0x1c);
     btnOk2.TabIndex = 0;
     btnOk2.Text = "OK";
     btnOk2.UseVisualStyleBackColor = true;
     btnOk2.Visible = false;
     btnOk2.Click += btnOk2_Click;
     btnCancel.Anchor = AnchorStyles.Right | AnchorStyles.Bottom;
     btnCancel.Font = new Font(Font.FontFamily, 9f);
     btnCancel.Location = new Point(0x13e, 0x7a);
     btnCancel.Size = new Size(0x4b, 0x1c);
     btnCancel.TabIndex = 1;
     btnCancel.Text = "Cancel";
     btnCancel.UseVisualStyleBackColor = true;
     btnCancel.Visible = false;
     btnCancel.Click += btnOk_Click;
     panel1.Anchor = AnchorStyles.Right | AnchorStyles.Left | AnchorStyles.Top;
     panel1.BackColor = SystemColors.Window;
     panel1.Controls.Add(labelMessage);
     panel1.Controls.Add(pictureBoxIcon);
     panel1.Location = new Point(0, 0);
     panel1.Size = new Size(0x196, 0x70);
     labelMessage.Font = new Font(Font.FontFamily, 9f);
     labelMessage.Location = new Point(0x4d, 0x17);
     labelMessage.Size = new Size(0x13c, 0x34);
     pictureBoxIcon.Location = new Point(0x1c, 20);
     pictureBoxIcon.Size = new Size(0x20, 0x20);
     timerClose.Interval = 0x3e8;
     timerClose.Tick += timerClose_Tick;
     labelCounter.Anchor = AnchorStyles.Left | AnchorStyles.Bottom;
     labelCounter.AutoSize = true;
     labelCounter.Location = new Point(0x19, 130);
     labelCounter.Size = new Size(0x23, 13);
     AutoScaleDimensions = new SizeF(6f, 13f);
     AutoScaleMode = AutoScaleMode.Font;
     ClientSize = new Size(0x195, 0xa2);
     Controls.Add(labelCounter);
     Controls.Add(panel1);
     Controls.Add(btnOk);
     Controls.Add(btnOk2);
     Controls.Add(btnCancel);
     FormBorderStyle = FormBorderStyle.FixedSingle;
     MaximizeBox = false;
     MinimizeBox = false;
     KeyPreview = true;
     ShowIcon = false;
     ShowInTaskbar = false;
     StartPosition = FormStartPosition.Manual;
     Shown += MessageForm_Shown;
     panel1.ResumeLayout(false);
     ((ISupportInitialize)pictureBoxIcon).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Exemplo n.º 45
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.º 46
0
 private void InitializeComponent()
 {
     components = new Container();
     leftButton = new MaterialButton();
     MaterialFlexibleFormBindingSource = new BindingSource(components);
     messageContainer   = new System.Windows.Forms.Panel();
     pictureBoxForIcon  = new PictureBox();
     richTextBoxMessage = new MaterialRichTextBox();
     middleButton       = new MaterialButton();
     rightButton        = new MaterialButton();
     ((ISupportInitialize)(MaterialFlexibleFormBindingSource)).BeginInit();
     messageContainer.SuspendLayout();
     ((ISupportInitialize)(pictureBoxForIcon)).BeginInit();
     SuspendLayout();
     //
     // leftButton
     //
     leftButton.Anchor                  = (AnchorStyles.Bottom | AnchorStyles.Right);
     leftButton.AutoSize                = false;
     leftButton.AutoSizeMode            = AutoSizeMode.GrowAndShrink;
     leftButton.Depth                   = 0;
     leftButton.DialogResult            = DialogResult.OK;
     leftButton.DrawShadows             = true;
     leftButton.HighEmphasis            = false;
     leftButton.Icon                    = null;
     leftButton.Location                = new(44, 163);
     leftButton.Margin                  = new Padding(4, 6, 4, 6);
     leftButton.MinimumSize             = new(0, 24);
     leftButton.MouseState              = MaterialMouseState.HOVER;
     leftButton.Name                    = "leftButton";
     leftButton.Size                    = new(108, 36);
     leftButton.TabIndex                = 2;
     leftButton.Text                    = "OK";
     leftButton.Type                    = MaterialButton.MaterialButtonType.Text;
     leftButton.UseAccentColor          = false;
     leftButton.UseVisualStyleBackColor = true;
     leftButton.Visible                 = false;
     //
     // messageContainer
     //
     messageContainer.Anchor = (((AnchorStyles.Top | AnchorStyles.Bottom)
                                 | AnchorStyles.Left)
                                | AnchorStyles.Right);
     messageContainer.BackColor = Color.White;
     messageContainer.Controls.Add(pictureBoxForIcon);
     messageContainer.Controls.Add(richTextBoxMessage);
     messageContainer.Location = new(0, 65);
     messageContainer.Name     = "messageContainer";
     messageContainer.Size     = new(388, 81);
     messageContainer.TabIndex = 1;
     //
     // pictureBoxForIcon
     //
     pictureBoxForIcon.BackColor = Color.Transparent;
     pictureBoxForIcon.Location  = new(15, 19);
     pictureBoxForIcon.Name      = "pictureBoxForIcon";
     pictureBoxForIcon.Size      = new(32, 32);
     pictureBoxForIcon.TabIndex  = 8;
     pictureBoxForIcon.TabStop   = false;
     //
     // richTextBoxMessage
     //
     richTextBoxMessage.Anchor = (((AnchorStyles.Top | AnchorStyles.Bottom)
                                   | AnchorStyles.Left)
                                  | AnchorStyles.Right);
     richTextBoxMessage.BackColor   = Color.FromArgb(237, 237, 237);
     richTextBoxMessage.BorderStyle = BorderStyle.None;
     richTextBoxMessage.DataBindings.Add(new Binding("Text", MaterialFlexibleFormBindingSource, "MessageText", true, DataSourceUpdateMode.OnPropertyChanged));
     richTextBoxMessage.Depth        = 0;
     richTextBoxMessage.Font         = new("Microsoft Sans Serif", 9F, FontStyle.Regular, GraphicsUnit.Point, 0);
     richTextBoxMessage.ForeColor    = Color.FromArgb(180, 0, 0, 0);
     richTextBoxMessage.Hint         = "";
     richTextBoxMessage.Location     = new(47, 2);
     richTextBoxMessage.Margin       = new Padding(0);
     richTextBoxMessage.MouseState   = MaterialMouseState.HOVER;
     richTextBoxMessage.Name         = "richTextBoxMessage";
     richTextBoxMessage.ReadOnly     = true;
     richTextBoxMessage.ScrollBars   = RichTextBoxScrollBars.Vertical;
     richTextBoxMessage.Size         = new(338, 78);
     richTextBoxMessage.TabIndex     = 0;
     richTextBoxMessage.TabStop      = false;
     richTextBoxMessage.Text         = "<Message>";
     richTextBoxMessage.LinkClicked += new LinkClickedEventHandler(RichTextBoxMessage_LinkClicked);
     //
     // middleButton
     //
     middleButton.Anchor                  = (AnchorStyles.Bottom | AnchorStyles.Right);
     middleButton.AutoSize                = false;
     middleButton.AutoSizeMode            = AutoSizeMode.GrowAndShrink;
     middleButton.Depth                   = 0;
     middleButton.DialogResult            = DialogResult.OK;
     middleButton.DrawShadows             = true;
     middleButton.HighEmphasis            = true;
     middleButton.Icon                    = null;
     middleButton.Location                = new(160, 163);
     middleButton.Margin                  = new Padding(4, 6, 4, 6);
     middleButton.MinimumSize             = new(0, 24);
     middleButton.MouseState              = MaterialMouseState.HOVER;
     middleButton.Name                    = "middleButton";
     middleButton.Size                    = new(102, 36);
     middleButton.TabIndex                = 3;
     middleButton.Text                    = "OK";
     middleButton.Type                    = MaterialButton.MaterialButtonType.Text;
     middleButton.UseAccentColor          = false;
     middleButton.UseVisualStyleBackColor = true;
     middleButton.Visible                 = false;
     //
     // rightButton
     //
     rightButton.Anchor                  = (AnchorStyles.Bottom | AnchorStyles.Right);
     rightButton.AutoSize                = false;
     rightButton.AutoSizeMode            = AutoSizeMode.GrowAndShrink;
     rightButton.Depth                   = 0;
     rightButton.DialogResult            = DialogResult.OK;
     rightButton.DrawShadows             = true;
     rightButton.HighEmphasis            = true;
     rightButton.Icon                    = null;
     rightButton.Location                = new(270, 163);
     rightButton.Margin                  = new Padding(4, 6, 4, 6);
     rightButton.MinimumSize             = new(0, 24);
     rightButton.MouseState              = MaterialMouseState.HOVER;
     rightButton.Name                    = "rightButton";
     rightButton.Size                    = new(106, 36);
     rightButton.TabIndex                = 0;
     rightButton.Text                    = "OK";
     rightButton.Type                    = MaterialButton.MaterialButtonType.Contained;
     rightButton.UseAccentColor          = false;
     rightButton.UseVisualStyleBackColor = true;
     rightButton.Visible                 = false;
     //
     // MaterialFlexibleForm
     //
     BackColor  = Color.White;
     ClientSize = new(388, 208);
     Controls.Add(rightButton);
     Controls.Add(middleButton);
     Controls.Add(messageContainer);
     Controls.Add(leftButton);
     DataBindings.Add(new Binding("Text", MaterialFlexibleFormBindingSource, "CaptionText", true));
     MaximizeBox   = false;
     MinimizeBox   = false;
     MinimumSize   = new(276, 140);
     Name          = "MaterialFlexibleForm";
     ShowIcon      = false;
     SizeGripStyle = SizeGripStyle.Show;
     StartPosition = FormStartPosition.CenterParent;
     Text          = "<Caption>";
     Load         += new EventHandler(MaterialFlexibleForm_Load);
     Shown        += new EventHandler(MaterialFlexibleForm_Shown);
     ((ISupportInitialize)(MaterialFlexibleFormBindingSource)).EndInit();
     messageContainer.ResumeLayout(false);
     ((ISupportInitialize)(pictureBoxForIcon)).EndInit();
     ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     valuesLv_       = new System.Windows.Forms.ListView();
     popupMenu_      = new System.Windows.Forms.ContextMenuStrip();
     graphMi_        = new System.Windows.Forms.ToolStripMenuItem();
     dataMi_         = new System.Windows.Forms.ToolStripMenuItem();
     separator01_    = new System.Windows.Forms.ToolStripMenuItem();
     addMi_          = new System.Windows.Forms.ToolStripMenuItem();
     copyMi_         = new System.Windows.Forms.ToolStripMenuItem();
     editMi_         = new System.Windows.Forms.ToolStripMenuItem();
     removeMi_       = new System.Windows.Forms.ToolStripMenuItem();
     separator02_    = new System.Windows.Forms.ToolStripMenuItem();
     importValuesMi_ = new System.Windows.Forms.ToolStripMenuItem();
     mainPn_         = new System.Windows.Forms.Panel();
     plotPn_         = new System.Windows.Forms.Panel();
     plotCtrl_       = new scpl.Windows.PlotSurface2D();
     mainPn_.SuspendLayout();
     plotPn_.SuspendLayout();
     SuspendLayout();
     //
     // ValuesLV
     //
     valuesLv_.ContextMenuStrip = popupMenu_;
     valuesLv_.Dock             = System.Windows.Forms.DockStyle.Fill;
     valuesLv_.FullRowSelect    = true;
     valuesLv_.Location         = new System.Drawing.Point(0, 0);
     valuesLv_.Name             = "valuesLv_";
     valuesLv_.Size             = new System.Drawing.Size(544, 360);
     valuesLv_.TabIndex         = 1;
     valuesLv_.View             = System.Windows.Forms.View.Details;
     valuesLv_.MouseDown       += new System.Windows.Forms.MouseEventHandler(ValuesLV_MouseDown);
     valuesLv_.DoubleClick     += new System.EventHandler(EditMI_Click);
     //
     // PopupMenu
     //
     popupMenu_.Items.AddRange(new System.Windows.Forms.ToolStripMenuItem[] {
         graphMi_,
         dataMi_,
         separator01_,
         addMi_,
         copyMi_,
         editMi_,
         removeMi_,
         separator02_,
         importValuesMi_
     });
     //
     // GraphMI
     //
     graphMi_.ImageIndex = 0;
     //this.GraphMI.RadioCheck = true;
     graphMi_.Text   = "Graph";
     graphMi_.Click += new System.EventHandler(GraphMI_Click);
     //
     // DataMI
     //
     dataMi_.Checked    = true;
     dataMi_.ImageIndex = 1;
     //this.DataMI.RadioCheck = true;
     dataMi_.Text   = "Data";
     dataMi_.Click += new System.EventHandler(DataMI_Click);
     //
     // Separator01
     //
     separator01_.ImageIndex = 2;
     separator01_.Text       = "-";
     //
     // AddMI
     //
     addMi_.ImageIndex = 3;
     addMi_.Text       = "Add...";
     addMi_.Click     += new System.EventHandler(AddMI_Click);
     //
     // CopyMI
     //
     copyMi_.ImageIndex = 4;
     copyMi_.Text       = "Copy...";
     copyMi_.Click     += new System.EventHandler(CopyMI_Click);
     //
     // EditMI
     //
     editMi_.ImageIndex = 5;
     editMi_.Text       = "Edit...";
     editMi_.Click     += new System.EventHandler(EditMI_Click);
     //
     // RemoveMI
     //
     removeMi_.ImageIndex = 6;
     removeMi_.Text       = "Remove";
     removeMi_.Click     += new System.EventHandler(RemoveMI_Click);
     //
     // Separator02
     //
     separator02_.ImageIndex = 7;
     separator02_.Text       = "-";
     //
     // ImportValuesMI
     //
     importValuesMi_.ImageIndex = 8;
     importValuesMi_.Text       = "Import Values...";
     importValuesMi_.Click     += new System.EventHandler(ImportValuesMI_Click);
     //
     // MainPN
     //
     mainPn_.Controls.Add(valuesLv_);
     mainPn_.Controls.Add(plotPn_);
     mainPn_.Dock     = System.Windows.Forms.DockStyle.Fill;
     mainPn_.Location = new System.Drawing.Point(0, 0);
     mainPn_.Name     = "mainPn_";
     mainPn_.Size     = new System.Drawing.Size(544, 360);
     mainPn_.TabIndex = 2;
     //
     // PlotPN
     //
     plotPn_.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     plotPn_.Controls.Add(plotCtrl_);
     plotPn_.Dock     = System.Windows.Forms.DockStyle.Fill;
     plotPn_.Location = new System.Drawing.Point(0, 0);
     plotPn_.Name     = "plotPn_";
     plotPn_.Size     = new System.Drawing.Size(544, 360);
     plotPn_.TabIndex = 3;
     //
     // PlotCTRL
     //
     plotCtrl_.AllowSelection   = false;
     plotCtrl_.BackColor        = System.Drawing.SystemColors.ControlLightLight;
     plotCtrl_.ContextMenuStrip = popupMenu_;
     plotCtrl_.Dock             = System.Windows.Forms.DockStyle.Fill;
     plotCtrl_.HorizontalEdgeLegendPlacement = scpl.Legend.Placement.Inside;
     plotCtrl_.LegendBorderStyle             = scpl.Legend.BorderType.Shadow;
     plotCtrl_.LegendXOffset = 10F;
     plotCtrl_.LegendYOffset = 1F;
     plotCtrl_.Location      = new System.Drawing.Point(0, 0);
     plotCtrl_.Name          = "plotCtrl_";
     plotCtrl_.Padding       = 10;
     plotCtrl_.PlotBackColor = System.Drawing.Color.White;
     plotCtrl_.ShowLegend    = false;
     plotCtrl_.Size          = new System.Drawing.Size(540, 356);
     plotCtrl_.TabIndex      = 2;
     plotCtrl_.Title         = "";
     plotCtrl_.TitleFont     = new System.Drawing.Font("Arial", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Pixel);
     plotCtrl_.VerticalEdgeLegendPlacement = scpl.Legend.Placement.Outside;
     plotCtrl_.XAxis1 = null;
     plotCtrl_.XAxis2 = null;
     plotCtrl_.YAxis1 = null;
     plotCtrl_.YAxis2 = null;
     //
     // ItemValuesCtrl
     //
     Controls.Add(mainPn_);
     Name = "ItemValuesCtrl";
     Size = new System.Drawing.Size(544, 360);
     mainPn_.ResumeLayout(false);
     plotPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 48
0
        Control CreateLayoutRecurse(GuiLayout gl)
        {
            Control ctl = null;
            switch (gl.type)
            {
                case GuiLayout.LayoutType.Control:
                    ctl = GetControlOrButton(gl.name, false);
                    if (guiConf.PreviewMode)
                        ctl = CreatePreviewControl(gl.name, ctl);
                    FillCommonLayoutParameters(gl, ctl);
                    break;

                case GuiLayout.LayoutType.FlowPanel:
                    ctl = CreateFlowPanel(gl);
                    break;

                case GuiLayout.LayoutType.Layout:
                case GuiLayout.LayoutType.Panel:
                    ctl = new Panel();
                    ctl.SuspendLayout();
                    if (gl.type == GuiLayout.LayoutType.Layout)
                        ctl.Dock = DockStyle.Fill;
                    FillCommonLayoutParameters(gl, ctl);
                    break;

                case GuiLayout.LayoutType.SplitPanel:
                    ctl = CreateSplitPanel(gl);
                    break;

                case GuiLayout.LayoutType.TabPanel:
                    ctl = CreateTabPanel(gl);
                    break;
            }

            if (ctl == null)
                return null;

            if (guiConf.PreviewMode || (gl.type != GuiLayout.LayoutType.Control))
                AddLayoutControl(gl.name, ctl);
            CreateSublayouts(gl, ctl);
            if (ctl is ctlCollapse)
                ((ctlCollapse)ctl).InnerControl.ResumeLayout();
            ctl.ResumeLayout();
            return ctl;
        }
Exemplo n.º 49
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.º 50
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.º 51
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();
     mainPn_    = new System.Windows.Forms.Panel();
     itemsCtrl_ = new TrendItemsCtrl();
     buttonsPn_.SuspendLayout();
     mainPn_.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(4, 8);
     okBtn_.Name         = "okBtn_";
     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(248, 8);
     cancelBtn_.Name         = "cancelBtn_";
     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, 242);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(328, 36);
     buttonsPn_.TabIndex = 0;
     //
     // MainPN
     //
     mainPn_.Controls.Add(itemsCtrl_);
     mainPn_.Dock              = System.Windows.Forms.DockStyle.Fill;
     mainPn_.DockPadding.Left  = 4;
     mainPn_.DockPadding.Right = 4;
     mainPn_.DockPadding.Top   = 4;
     mainPn_.Location          = new System.Drawing.Point(0, 0);
     mainPn_.Name              = "mainPn_";
     mainPn_.Size              = new System.Drawing.Size(328, 242);
     mainPn_.TabIndex          = 32;
     //
     // ItemsCTRL
     //
     itemsCtrl_.AllowDrop   = true;
     itemsCtrl_.Dock        = System.Windows.Forms.DockStyle.Fill;
     itemsCtrl_.Location    = new System.Drawing.Point(4, 4);
     itemsCtrl_.Name        = "itemsCtrl_";
     itemsCtrl_.Size        = new System.Drawing.Size(320, 238);
     itemsCtrl_.TabIndex    = 0;
     itemsCtrl_.ItemPicked += new TrendItemsCtrl.ItemPickedEventHandler(ItemsCTRL_ItemPicked);
     //
     // TrendSelectItemsDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     ClientSize        = new System.Drawing.Size(328, 278);
     Controls.Add(mainPn_);
     Controls.Add(buttonsPn_);
     Name          = "TrendSelectItemsDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Select Items";
     buttonsPn_.ResumeLayout(false);
     mainPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
        private void AllowedTimeSlotsForm_Load(object sender, System.EventArgs e)
        {
            _mainPanel.SuspendLayout();

            int dlStartX        = 15;
            int hlStartY        = 15;
            int dayLabelWidth   = 60;
            int dayLabelHeight  = 20;
            int hourLabelWidth  = 55;
            int hourLabelHeight = 22;

            Label dayHourLabel = new Label();

            dayHourLabel.Text        = RES_MANAGER.GetString("dayHourLabel.text");
            dayHourLabel.Size        = new System.Drawing.Size(hourLabelWidth, dayLabelHeight);
            dayHourLabel.Location    = new System.Drawing.Point(dlStartX, hlStartY);
            dayHourLabel.BorderStyle = BorderStyle.FixedSingle;
            dayHourLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
            dayHourLabel.BackColor   = System.Drawing.Color.LightBlue;
            _mainPanel.Controls.Add(dayHourLabel);


            int nn = 0;

            foreach (int[] term in AppForm.CURR_OCTT_DOC.IncludedTerms)
            {
                string [] printTerm = new string[4];
                for (int k = 0; k < 4; k++)
                {
                    if (term[k] < 10)
                    {
                        printTerm[k] = "0" + System.Convert.ToString(term[k]);
                    }
                    else
                    {
                        printTerm[k] = System.Convert.ToString(term[k]);
                    }
                }

                string labelText = printTerm[0] + ":" + printTerm[1] + "-" + printTerm[2] + ":" + printTerm[3];

                Label termLabel = new Label();
                termLabel.Size        = new System.Drawing.Size(hourLabelWidth, hourLabelHeight);
                termLabel.Location    = new System.Drawing.Point(dlStartX, hlStartY + dayLabelHeight + nn * hourLabelHeight);
                termLabel.BorderStyle = BorderStyle.FixedSingle;
                termLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
                termLabel.BackColor   = System.Drawing.Color.Ivory;
                termLabel.Font        = new System.Drawing.Font("Microsoft Sans Serif", 5.4F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(238)));
                termLabel.Text        = labelText;
                _mainPanel.Controls.Add(termLabel);
                nn++;
            }

            String[] dayText = new String[7];
            dayText[0] = RES_MANAGER.GetString("dayMonday.text");
            dayText[1] = RES_MANAGER.GetString("dayTuesday.text");
            dayText[2] = RES_MANAGER.GetString("dayWednesday.text");
            dayText[3] = RES_MANAGER.GetString("dayThursday.text");
            dayText[4] = RES_MANAGER.GetString("dayFriday.text");
            dayText[5] = RES_MANAGER.GetString("daySaturday.text");
            dayText[6] = RES_MANAGER.GetString("daySunday.text");

            int goAhead = 0;

            for (int n = 0; n < 7; n++)
            {
                if (AppForm.CURR_OCTT_DOC.getIsDayIncluded(n))
                {
                    Label dayLabel = new Label();
                    dayLabel.Size        = new System.Drawing.Size(dayLabelWidth, dayLabelHeight);
                    dayLabel.Location    = new System.Drawing.Point(hourLabelWidth + dlStartX + goAhead * dayLabelWidth, hlStartY);
                    dayLabel.BorderStyle = BorderStyle.FixedSingle;
                    dayLabel.TextAlign   = System.Drawing.ContentAlignment.MiddleCenter;
                    dayLabel.BackColor   = System.Drawing.Color.Ivory;
                    dayLabel.Text        = dayText[n];
                    _mainPanel.Controls.Add(dayLabel);

                    goAhead++;
                }
            }

            int otlStartX = dlStartX + hourLabelWidth;
            int otlStartY = hlStartY + dayLabelHeight;

            for (int j = 0; j < AppForm.CURR_OCTT_DOC.IncludedTerms.Count; j++)
            {
                for (int k = 0; k < AppForm.CURR_OCTT_DOC.getNumberOfDays(); k++)
                {
                    bool tsState = _allowedTimeSlots[j, k];


                    EnableDisableOneTermLabel edotl = new EnableDisableOneTermLabel(tsState, j, k);

                    edotl.Size     = new System.Drawing.Size(dayLabelWidth, hourLabelHeight);
                    edotl.Location = new Point(otlStartX + k * dayLabelWidth, otlStartY + j * hourLabelHeight);

                    _mainPanel.Controls.Add(edotl);
                }
            }

            int startY = 36;

            for (int n = 0; n < AppForm.CURR_OCTT_DOC.IncludedTerms.Count; n++)
            {
                EnableDisableRCButton edb = new EnableDisableRCButton(10, startY + n * 22, n, 0, true, true);
                _rightPanel.Controls.Add(edb);
            }

            for (int n = 0; n < AppForm.CURR_OCTT_DOC.IncludedTerms.Count; n++)
            {
                EnableDisableRCButton edb = new EnableDisableRCButton(35, startY + n * 22, n, 0, false, true);
                _rightPanel.Controls.Add(edb);
            }

            int startX = otlStartX + 10;

            for (int n = 0; n < AppForm.CURR_OCTT_DOC.getNumberOfDays(); n++)
            {
                EnableDisableRCButton edb = new EnableDisableRCButton(startX + n * dayLabelWidth, 1, 0, n, true, false);
                _bottomPanel.Controls.Add(edb);
            }

            for (int n = 0; n < AppForm.CURR_OCTT_DOC.getNumberOfDays(); n++)
            {
                EnableDisableRCButton edb = new EnableDisableRCButton(startX + n * dayLabelWidth, 26, 0, n, false, false);
                _bottomPanel.Controls.Add(edb);
            }

            int mainPanelWidth = dlStartX + hourLabelWidth + dayLabelWidth * AppForm.CURR_OCTT_DOC.getNumberOfDays() + 5;
            int formHeight     = hlStartY + dayLabelHeight + hourLabelHeight * AppForm.CURR_OCTT_DOC.IncludedTerms.Count + _bottomPanel.Height + 15;
            int formWidth      = mainPanelWidth + 74;

            this.ClientSize = new System.Drawing.Size(formWidth, formHeight);

            this._okButton.Location     = new System.Drawing.Point(formWidth / 2 - 78, 75);
            this._cancelButton.Location = new System.Drawing.Point(_okButton.Location.X + 92, 75);

            _mainPanel.ResumeLayout(false);
        }
Exemplo n.º 53
0
 private void InitializeComponent()
 {
     components       = new Container();
     btnPlay          = new Button();
     btnRewind        = new Button();
     chkLoop          = new CheckBox();
     lblProgress      = new Label();
     tmrUpdate        = new Timer(components);
     lstStreams       = new ComboBox();
     panel2           = new Panel();
     trackBarVolume   = new CustomTrackBar();
     trackBarPosition = new CustomTrackBar();
     panel2.SuspendLayout();
     ((ISupportInitialize)trackBarVolume).BeginInit();
     ((ISupportInitialize)trackBarPosition).BeginInit();
     SuspendLayout();
     //
     // btnPlay
     //
     btnPlay.Location = new Drawing.Point(35, 4);
     btnPlay.Name     = "btnPlay";
     btnPlay.Size     = new Drawing.Size(73, 20);
     btnPlay.TabIndex = 1;
     btnPlay.Text     = "Play";
     btnPlay.UseVisualStyleBackColor = true;
     btnPlay.Click += new EventHandler(btnPlay_Click);
     //
     // btnRewind
     //
     btnRewind.Location = new Drawing.Point(5, 4);
     btnRewind.Name     = "btnRewind";
     btnRewind.Size     = new Drawing.Size(24, 20);
     btnRewind.TabIndex = 2;
     btnRewind.Text     = "|<";
     btnRewind.UseVisualStyleBackColor = true;
     btnRewind.Click += new EventHandler(btnRewind_Click);
     //
     // chkLoop
     //
     chkLoop.Location = new Drawing.Point(114, 5);
     chkLoop.Name     = "chkLoop";
     chkLoop.Size     = new Drawing.Size(50, 20);
     chkLoop.TabIndex = 3;
     chkLoop.Text     = "Loop";
     chkLoop.UseVisualStyleBackColor = true;
     chkLoop.CheckedChanged         += new EventHandler(chkLoop_CheckedChanged);
     //
     // lblProgress
     //
     lblProgress.Anchor = AnchorStyles.Top | AnchorStyles.Left
                          | AnchorStyles.Right;
     lblProgress.Location  = new Drawing.Point(0, 31);
     lblProgress.Name      = "lblProgress";
     lblProgress.Size      = new Drawing.Size(377, 23);
     lblProgress.TabIndex  = 4;
     lblProgress.Text      = "0/0";
     lblProgress.TextAlign = Drawing.ContentAlignment.MiddleCenter;
     //
     // tmrUpdate
     //
     tmrUpdate.Interval = 10;
     tmrUpdate.Tick    += new EventHandler(tmrUpdate_Tick);
     //
     // lstStreams
     //
     lstStreams.Anchor            = AnchorStyles.Top | AnchorStyles.Bottom;
     lstStreams.DropDownStyle     = ComboBoxStyle.DropDownList;
     lstStreams.FormattingEnabled = true;
     lstStreams.Location          = new Drawing.Point(219, 34);
     lstStreams.Name                  = "lstStreams";
     lstStreams.Size                  = new Drawing.Size(73, 21);
     lstStreams.TabIndex              = 5;
     lstStreams.SelectedIndexChanged += new EventHandler(lstStreams_SelectedIndexChanged);
     //
     // panel2
     //
     panel2.Anchor = AnchorStyles.Top;
     panel2.Controls.Add(btnPlay);
     panel2.Controls.Add(btnRewind);
     panel2.Controls.Add(chkLoop);
     panel2.Location = new Drawing.Point(116, 61);
     panel2.Name     = "panel2";
     panel2.Size     = new Drawing.Size(167, 30);
     panel2.TabIndex = 9;
     //
     // trackBarVolume
     //
     trackBarVolume.Anchor = AnchorStyles.Top | AnchorStyles.Bottom
                             | AnchorStyles.Right;
     trackBarVolume.Location      = new Drawing.Point(329, 31);
     trackBarVolume.Maximum       = 100;
     trackBarVolume.Name          = "trackBarVolume";
     trackBarVolume.Orientation   = Orientation.Vertical;
     trackBarVolume.Size          = new Drawing.Size(45, 89);
     trackBarVolume.TabIndex      = 6;
     trackBarVolume.TickFrequency = 25;
     trackBarVolume.Value         = 100;
     trackBarVolume.ValueChanged += new EventHandler(customTrackBar1_ValueChanged);
     //
     // trackBarPosition
     //
     trackBarPosition.Anchor = AnchorStyles.Top | AnchorStyles.Left
                               | AnchorStyles.Right;
     trackBarPosition.Location      = new Drawing.Point(0, 4);
     trackBarPosition.Name          = "trackBarPosition";
     trackBarPosition.Size          = new Drawing.Size(377, 45);
     trackBarPosition.TabIndex      = 0;
     trackBarPosition.TickFrequency = 2;
     trackBarPosition.UserSeek     += new EventHandler(trackBar1_UserSeek);
     trackBarPosition.ValueChanged += new EventHandler(trackBar1_ValueChanged);
     //
     // AudioPlaybackPanel
     //
     Controls.Add(lstStreams);
     Controls.Add(panel2);
     Controls.Add(trackBarVolume);
     Controls.Add(lblProgress);
     Controls.Add(trackBarPosition);
     Name = "AudioPlaybackPanel";
     Size = new Drawing.Size(377, 120);
     panel2.ResumeLayout(false);
     ((ISupportInitialize)trackBarVolume).EndInit();
     ((ISupportInitialize)trackBarPosition).EndInit();
     ResumeLayout(false);
     PerformLayout();
 }
Exemplo n.º 54
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();
        }
 public void resumeLayout(Panel panel)
 {
     foreach (Control control in panel.Controls)
     {
         try
         {
             Panel panel2 = (Panel) control;
             if (panel2 != null)
             {
                 panel2.ResumeLayout(false);
             }
         }
         catch (Exception)
         {
         }
     }
     panel.ResumeLayout(false);
 }
Exemplo n.º 56
0
		/// <summary>
		/// This method is required for Windows Forms designer support.
		/// Do not change the method contents inside the source code editor. The Forms designer might
		/// not be able to load this method if it was changed manually.
		/// </summary>
		private void InitializeComponent()
		{
			System.Windows.Forms.Panel bottomPanel;
			this.closeButton = new System.Windows.Forms.Button();
			this.table = new System.Windows.Forms.TableLayoutPanel();
			bottomPanel = new System.Windows.Forms.Panel();
			bottomPanel.SuspendLayout();
			this.SuspendLayout();
			// 
			// bottomPanel
			// 
			bottomPanel.Controls.Add(this.closeButton);
			bottomPanel.Dock = System.Windows.Forms.DockStyle.Bottom;
			bottomPanel.Location = new System.Drawing.Point(0, 233);
			bottomPanel.Name = "bottomPanel";
			bottomPanel.Size = new System.Drawing.Size(351, 35);
			bottomPanel.TabIndex = 0;
			// 
			// closeButton
			// 
			this.closeButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
			this.closeButton.Location = new System.Drawing.Point(264, 6);
			this.closeButton.Name = "closeButton";
			this.closeButton.Size = new System.Drawing.Size(75, 23);
			this.closeButton.TabIndex = 0;
			this.closeButton.Text = "Close";
			this.closeButton.UseCompatibleTextRendering = true;
			this.closeButton.UseVisualStyleBackColor = true;
			this.closeButton.Click += new System.EventHandler(this.CloseButtonClick);
			// 
			// table
			// 
			this.table.ColumnCount = 2;
			this.table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle());
			this.table.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
			this.table.Dock = System.Windows.Forms.DockStyle.Fill;
			this.table.Location = new System.Drawing.Point(0, 8);
			this.table.Name = "table";
			this.table.RowCount = 2;
			this.table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.table.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
			this.table.Size = new System.Drawing.Size(351, 225);
			this.table.TabIndex = 1;
			// 
			// AboutForm
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Info;
			this.ClientSize = new System.Drawing.Size(351, 268);
			this.Controls.Add(this.table);
			this.Controls.Add(bottomPanel);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "AboutForm";
			this.Padding = new System.Windows.Forms.Padding(0, 8, 0, 0);
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "AboutForm";
			bottomPanel.ResumeLayout(false);
			this.ResumeLayout(false);
		}
Exemplo n.º 57
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   imageList = new ListBox();
   thumbPanel = new Panel();
   thumbPictureBox = new PictureBox();
   thumbPanel.SuspendLayout();
   SuspendLayout();
   // 
   // imageList
   // 
   imageList.BorderStyle = BorderStyle.None;
   imageList.Location = new Point(140, 4);
   imageList.Name = "imageList";
   imageList.Size = new Size(256, 130);
   imageList.Sorted = true;
   imageList.TabIndex = 5;
   imageList.DoubleClick += new EventHandler(imageList_DoubleClick);
   imageList.SelectedIndexChanged += new EventHandler(imageList_SelectedIndexChanged);
   // 
   // thumbPanel
   // 
   thumbPanel.BackColor = Color.Transparent;
   thumbPanel.Controls.Add(thumbPictureBox);
   thumbPanel.Location = new Point(4, 4);
   thumbPanel.Name = "thumbPanel";
   thumbPanel.Size = new Size(132, 132);
   thumbPanel.TabIndex = 6;
   // 
   // thumbPictureBox
   // 
   thumbPictureBox.BackColor = Color.Transparent;
   thumbPictureBox.Location = new Point(2, 2);
   thumbPictureBox.Name = "thumbPictureBox";
   thumbPictureBox.Size = new Size(128, 128);
   thumbPictureBox.SizeMode = PictureBoxSizeMode.CenterImage;
   thumbPictureBox.TabIndex = 4;
   thumbPictureBox.TabStop = false;
   thumbPictureBox.Click += new EventHandler(thumbPictureBox_Click);
   // 
   // ImageSelector
   // 
   Controls.Add(thumbPanel);
   Controls.Add(imageList);
   Name = "ImageSelector";
   Size = new Size(400, 140);
   thumbPanel.ResumeLayout(false);
   ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     rightPn_          = new System.Windows.Forms.Panel();
     browseCtrl_       = new BrowseTreeCtrl();
     valuesCtrl_       = new ItemValuesCtrl();
     resultsCtrl_      = new ResultListCtrl();
     buttonsPn_        = new System.Windows.Forms.Panel();
     backBtn_          = new System.Windows.Forms.Button();
     nextBtn_          = new System.Windows.Forms.Button();
     doneBtn_          = new System.Windows.Forms.Button();
     cancelBtn_        = new System.Windows.Forms.Button();
     asyncResultsCtrl_ = new ResultListCtrl();
     rightPn_.SuspendLayout();
     buttonsPn_.SuspendLayout();
     SuspendLayout();
     //
     // RightPN
     //
     rightPn_.Controls.Add(asyncResultsCtrl_);
     rightPn_.Controls.Add(browseCtrl_);
     rightPn_.Controls.Add(valuesCtrl_);
     rightPn_.Controls.Add(resultsCtrl_);
     rightPn_.Dock              = System.Windows.Forms.DockStyle.Fill;
     rightPn_.DockPadding.Left  = 4;
     rightPn_.DockPadding.Right = 4;
     rightPn_.DockPadding.Top   = 4;
     rightPn_.Location          = new System.Drawing.Point(0, 0);
     rightPn_.Name              = "rightPn_";
     rightPn_.Size              = new System.Drawing.Size(552, 386);
     rightPn_.TabIndex          = 13;
     //
     // BrowseCTRL
     //
     browseCtrl_.Dock          = System.Windows.Forms.DockStyle.Fill;
     browseCtrl_.Location      = new System.Drawing.Point(4, 4);
     browseCtrl_.Name          = "browseCtrl_";
     browseCtrl_.Size          = new System.Drawing.Size(544, 382);
     browseCtrl_.TabIndex      = 1;
     browseCtrl_.ItemSelected += new BrowseTreeCtrl.ItemSelectedEventHandler(BrowseCTRL_ItemSelected);
     browseCtrl_.ItemPicked   += new BrowseTreeCtrl.ItemPickedEventHandler(BrowseCTRL_ItemPicked);
     //
     // ValuesCTRL
     //
     valuesCtrl_.DisplayGraph = false;
     valuesCtrl_.Dock         = System.Windows.Forms.DockStyle.Fill;
     valuesCtrl_.Location     = new System.Drawing.Point(4, 4);
     valuesCtrl_.Name         = "valuesCtrl_";
     valuesCtrl_.ReadOnly     = false;
     valuesCtrl_.Size         = new System.Drawing.Size(544, 382);
     valuesCtrl_.TabIndex     = 2;
     //
     // ResultsCTRL
     //
     resultsCtrl_.AllowDrop = true;
     resultsCtrl_.Dock      = System.Windows.Forms.DockStyle.Fill;
     resultsCtrl_.Location  = new System.Drawing.Point(4, 4);
     resultsCtrl_.Name      = "resultsCtrl_";
     resultsCtrl_.Size      = new System.Drawing.Size(544, 382);
     resultsCtrl_.TabIndex  = 3;
     //
     // ButtonsPN
     //
     buttonsPn_.Controls.Add(backBtn_);
     buttonsPn_.Controls.Add(nextBtn_);
     buttonsPn_.Controls.Add(doneBtn_);
     buttonsPn_.Controls.Add(cancelBtn_);
     buttonsPn_.Dock     = System.Windows.Forms.DockStyle.Bottom;
     buttonsPn_.Location = new System.Drawing.Point(0, 386);
     buttonsPn_.Name     = "buttonsPn_";
     buttonsPn_.Size     = new System.Drawing.Size(552, 36);
     buttonsPn_.TabIndex = 15;
     //
     // BackBTN
     //
     backBtn_.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     backBtn_.Location = new System.Drawing.Point(312, 8);
     backBtn_.Name     = "backBtn_";
     backBtn_.TabIndex = 3;
     backBtn_.Text     = "< Back";
     backBtn_.Click   += new System.EventHandler(BackBTN_Click);
     //
     // NextBTN
     //
     nextBtn_.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     nextBtn_.Location = new System.Drawing.Point(392, 8);
     nextBtn_.Name     = "nextBtn_";
     nextBtn_.TabIndex = 2;
     nextBtn_.Text     = "Next >";
     nextBtn_.Click   += new System.EventHandler(NextBTN_Click);
     //
     // DoneBTN
     //
     doneBtn_.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     doneBtn_.DialogResult = System.Windows.Forms.DialogResult.OK;
     doneBtn_.Location     = new System.Drawing.Point(472, 8);
     doneBtn_.Name         = "doneBtn_";
     doneBtn_.TabIndex     = 0;
     doneBtn_.Text         = "Done";
     //
     // CancelBTN
     //
     cancelBtn_.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     cancelBtn_.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     cancelBtn_.Location     = new System.Drawing.Point(472, 8);
     cancelBtn_.Name         = "cancelBtn_";
     cancelBtn_.TabIndex     = 5;
     cancelBtn_.Text         = "Cancel";
     //
     // AsyncResultsCTRL
     //
     asyncResultsCtrl_.AllowDrop = true;
     asyncResultsCtrl_.Dock      = System.Windows.Forms.DockStyle.Fill;
     asyncResultsCtrl_.Location  = new System.Drawing.Point(4, 4);
     asyncResultsCtrl_.Name      = "asyncResultsCtrl_";
     asyncResultsCtrl_.Size      = new System.Drawing.Size(544, 382);
     asyncResultsCtrl_.TabIndex  = 4;
     //
     // InsertValuesDlg
     //
     AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     ClientSize        = new System.Drawing.Size(552, 422);
     Controls.Add(rightPn_);
     Controls.Add(buttonsPn_);
     Name          = "InsertValuesDlg";
     StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     Text          = "Insert Item Values";
     rightPn_.ResumeLayout(false);
     buttonsPn_.ResumeLayout(false);
     ResumeLayout(false);
 }
Exemplo n.º 59
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.Button btnClose;
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DiffDialog));
			System.Windows.Forms.ImageList imageList1;
			System.Windows.Forms.Button btnHelp;
			System.Windows.Forms.Panel pnlCloseHelp;
			System.Windows.Forms.TableLayoutPanel tableLayoutRevision;
			System.Windows.Forms.TableLayoutPanel tableLayoutCurrent;
			this.btnRevertToOld = new System.Windows.Forms.Button();
			this.btnKeepCurrent = new System.Windows.Forms.Button();
			this.btnNext = new System.Windows.Forms.Button();
			this.btnEdit = new System.Windows.Forms.Button();
			this.btnPrev = new System.Windows.Forms.Button();
			this.lblDiffCount = new System.Windows.Forms.Label();
			this.lblRevDiffType = new System.Windows.Forms.Label();
			this.lblCurrentDiffType = new System.Windows.Forms.Label();
			this.lblReference = new System.Windows.Forms.Label();
			this.lblSavedVersion = new System.Windows.Forms.Label();
			this.lblCurrent = new System.Windows.Forms.Label();
			this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
			this.persistence = new SIL.FieldWorks.Common.Controls.Persistence(this.components);
			btnClose = new System.Windows.Forms.Button();
			imageList1 = new System.Windows.Forms.ImageList(this.components);
			btnHelp = new System.Windows.Forms.Button();
			pnlCloseHelp = new System.Windows.Forms.Panel();
			tableLayoutRevision = new System.Windows.Forms.TableLayoutPanel();
			tableLayoutCurrent = new System.Windows.Forms.TableLayoutPanel();
			pnlCloseHelp.SuspendLayout();
			tableLayoutRevision.SuspendLayout();
			tableLayoutCurrent.SuspendLayout();
			this.tableLayoutPanel.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.persistence)).BeginInit();
			this.SuspendLayout();
			//
			// btnClose
			//
			resources.ApplyResources(btnClose, "btnClose");
			btnClose.BackColor = System.Drawing.SystemColors.Control;
			btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			btnClose.ImageList = imageList1;
			btnClose.Name = "btnClose";
			btnClose.UseVisualStyleBackColor = true;
			btnClose.Click += new System.EventHandler(this.btnClose_Click);
			//
			// imageList1
			//
			imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			imageList1.TransparentColor = System.Drawing.Color.Magenta;
			imageList1.Images.SetKeyName(0, "");
			imageList1.Images.SetKeyName(1, "");
			imageList1.Images.SetKeyName(2, "");
			imageList1.Images.SetKeyName(3, "");
			imageList1.Images.SetKeyName(4, "");
			//
			// btnHelp
			//
			resources.ApplyResources(btnHelp, "btnHelp");
			btnHelp.BackColor = System.Drawing.SystemColors.Control;
			btnHelp.ImageList = imageList1;
			btnHelp.Name = "btnHelp";
			btnHelp.UseVisualStyleBackColor = true;
			btnHelp.Click += new System.EventHandler(this.btnHelp_Click);
			//
			// btnRevertToOld
			//
			resources.ApplyResources(this.btnRevertToOld, "btnRevertToOld");
			this.btnRevertToOld.ImageList = imageList1;
			this.btnRevertToOld.Name = "btnRevertToOld";
			this.btnRevertToOld.Click += new System.EventHandler(this.btnRevertToOld_Click);
			//
			// btnKeepCurrent
			//
			resources.ApplyResources(this.btnKeepCurrent, "btnKeepCurrent");
			this.btnKeepCurrent.ImageList = imageList1;
			this.btnKeepCurrent.Name = "btnKeepCurrent";
			this.btnKeepCurrent.Click += new System.EventHandler(this.btnKeepCurrent_Click);
			//
			// btnNext
			//
			resources.ApplyResources(this.btnNext, "btnNext");
			this.btnNext.ImageList = imageList1;
			this.btnNext.Name = "btnNext";
			this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
			//
			// btnEdit
			//
			resources.ApplyResources(this.btnEdit, "btnEdit");
			this.btnEdit.BackColor = System.Drawing.SystemColors.Control;
			this.btnEdit.ImageList = imageList1;
			this.btnEdit.Name = "btnEdit";
			this.btnEdit.UseVisualStyleBackColor = true;
			this.btnEdit.Click += new System.EventHandler(this.btnEdit_click);
			//
			// btnPrev
			//
			resources.ApplyResources(this.btnPrev, "btnPrev");
			this.btnPrev.ImageList = imageList1;
			this.btnPrev.Name = "btnPrev";
			this.btnPrev.Click += new System.EventHandler(this.btnPrev_Click);
			//
			// pnlCloseHelp
			//
			tableLayoutCurrent.SetColumnSpan(pnlCloseHelp, 2);
			pnlCloseHelp.Controls.Add(btnClose);
			pnlCloseHelp.Controls.Add(btnHelp);
			resources.ApplyResources(pnlCloseHelp, "pnlCloseHelp");
			pnlCloseHelp.Name = "pnlCloseHelp";
			//
			// tableLayoutRevision
			//
			resources.ApplyResources(tableLayoutRevision, "tableLayoutRevision");
			tableLayoutRevision.Controls.Add(this.lblDiffCount, 0, 2);
			tableLayoutRevision.Controls.Add(this.lblRevDiffType, 0, 0);
			tableLayoutRevision.Controls.Add(this.btnRevertToOld, 2, 1);
			tableLayoutRevision.Controls.Add(this.btnPrev, 0, 1);
			tableLayoutRevision.Name = "tableLayoutRevision";
			//
			// lblDiffCount
			//
			resources.ApplyResources(this.lblDiffCount, "lblDiffCount");
			this.lblDiffCount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			tableLayoutRevision.SetColumnSpan(this.lblDiffCount, 3);
			this.lblDiffCount.Name = "lblDiffCount";
			//
			// lblRevDiffType
			//
			resources.ApplyResources(this.lblRevDiffType, "lblRevDiffType");
			this.lblRevDiffType.BackColor = System.Drawing.Color.Honeydew;
			this.lblRevDiffType.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			tableLayoutRevision.SetColumnSpan(this.lblRevDiffType, 3);
			this.lblRevDiffType.ForeColor = System.Drawing.SystemColors.InfoText;
			this.lblRevDiffType.MinimumSize = new System.Drawing.Size(0, 27);
			this.lblRevDiffType.Name = "lblRevDiffType";
			this.lblRevDiffType.Paint += new System.Windows.Forms.PaintEventHandler(this.lblRevDiffType_Paint);
			//
			// tableLayoutCurrent
			//
			resources.ApplyResources(tableLayoutCurrent, "tableLayoutCurrent");
			tableLayoutCurrent.Controls.Add(this.lblCurrentDiffType, 0, 0);
			tableLayoutCurrent.Controls.Add(this.btnKeepCurrent, 0, 1);
			tableLayoutCurrent.Controls.Add(this.btnEdit, 1, 1);
			tableLayoutCurrent.Controls.Add(this.btnNext, 2, 1);
			tableLayoutCurrent.Controls.Add(pnlCloseHelp, 1, 2);
			tableLayoutCurrent.Controls.Add(this.lblReference, 0, 2);
			tableLayoutCurrent.Name = "tableLayoutCurrent";
			//
			// lblCurrentDiffType
			//
			resources.ApplyResources(this.lblCurrentDiffType, "lblCurrentDiffType");
			this.lblCurrentDiffType.BackColor = System.Drawing.Color.Honeydew;
			this.lblCurrentDiffType.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			tableLayoutCurrent.SetColumnSpan(this.lblCurrentDiffType, 3);
			this.lblCurrentDiffType.ForeColor = System.Drawing.SystemColors.InfoText;
			this.lblCurrentDiffType.MinimumSize = new System.Drawing.Size(0, 27);
			this.lblCurrentDiffType.Name = "lblCurrentDiffType";
			this.lblCurrentDiffType.Paint += new System.Windows.Forms.PaintEventHandler(this.lblCurrentDiffType_Paint);
			//
			// lblReference
			//
			this.lblReference.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			resources.ApplyResources(this.lblReference, "lblReference");
			this.lblReference.Name = "lblReference";
			//
			// lblSavedVersion
			//
			this.lblSavedVersion.AutoEllipsis = true;
			resources.ApplyResources(this.lblSavedVersion, "lblSavedVersion");
			this.lblSavedVersion.Name = "lblSavedVersion";
			//
			// lblCurrent
			//
			this.lblCurrent.BackColor = System.Drawing.SystemColors.Control;
			resources.ApplyResources(this.lblCurrent, "lblCurrent");
			this.lblCurrent.Name = "lblCurrent";
			//
			// tableLayoutPanel
			//
			resources.ApplyResources(this.tableLayoutPanel, "tableLayoutPanel");
			this.tableLayoutPanel.Controls.Add(this.lblCurrent, 1, 0);
			this.tableLayoutPanel.Controls.Add(this.lblSavedVersion, 0, 0);
			this.tableLayoutPanel.Controls.Add(tableLayoutCurrent, 1, 3);
			this.tableLayoutPanel.Controls.Add(tableLayoutRevision, 0, 3);
			this.tableLayoutPanel.Name = "tableLayoutPanel";
			//
			// persistence
			//
			this.persistence.Parent = this;
			this.persistence.LoadSettings += new SIL.FieldWorks.Common.Controls.Persistence.Settings(this.OnLoadSettings);
			this.persistence.SaveSettings += new SIL.FieldWorks.Common.Controls.Persistence.Settings(this.OnSaveSettings);
			//
			// DiffDialog
			//
			this.AcceptButton = btnClose;
			resources.ApplyResources(this, "$this");
			this.AccessibleRole = System.Windows.Forms.AccessibleRole.Dialog;
			this.CancelButton = btnClose;
			this.Controls.Add(this.tableLayoutPanel);
			this.MinimizeBox = false;
			this.Name = "DiffDialog";
			this.ShowIcon = false;
			this.ShowInTaskbar = false;
			pnlCloseHelp.ResumeLayout(false);
			tableLayoutRevision.ResumeLayout(false);
			tableLayoutRevision.PerformLayout();
			tableLayoutCurrent.ResumeLayout(false);
			tableLayoutCurrent.PerformLayout();
			this.tableLayoutPanel.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.persistence)).EndInit();
			this.ResumeLayout(false);

		}
Exemplo n.º 60
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.ToolStripSeparator sep1;
            System.Windows.Forms.ToolStripSeparator sep2;
            System.Windows.Forms.ToolStripSeparator sep3;
            System.Windows.Forms.ToolStripMenuItem _editMenuItem;
            System.Windows.Forms.ToolStripSeparator sep4;
            System.Windows.Forms.ToolStripSeparator sep5;
            System.Windows.Forms.Panel _stylesPanel;
            System.Windows.Forms.Label _seedLbl;
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main));
            this._undoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._redoMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._fillStylesGroup = new System.Windows.Forms.GroupBox();
            this._styleList = new EscherTiler.StyleListView();
            this._lineStyleGroup = new System.Windows.Forms.GroupBox();
            this._lineStyleControl = new EscherTiler.StyleControl();
            this._lineWidthTrack = new System.Windows.Forms.TrackBar();
            this._greedyStyleManagerPnl = new System.Windows.Forms.Panel();
            this._greedyParamCTrack = new System.Windows.Forms.TrackBar();
            this._greedyParamBTrack = new System.Windows.Forms.TrackBar();
            this._greedyParamATrack = new System.Windows.Forms.TrackBar();
            this._randomStyleMangerPnl = new System.Windows.Forms.Panel();
            this._randomSeedBtn = new System.Windows.Forms.Button();
            this._seedNum = new System.Windows.Forms.NumericUpDown();
            this._styleManagerTypeCmb = new System.Windows.Forms.ComboBox();
            this._menuStrip = new System.Windows.Forms.MenuStrip();
            this._fileMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._newMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._openMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._saveMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._saveAsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._pageSetupMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._printMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._printPreviewMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._exitMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._toolsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._customizeMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._optionsMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._helpMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._indexMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._searchMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._aboutMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this._toolStrip = new System.Windows.Forms.ToolStrip();
            this._newButton = new System.Windows.Forms.ToolStripButton();
            this._openButton = new System.Windows.Forms.ToolStripButton();
            this._saveButton = new System.Windows.Forms.ToolStripButton();
            this._printButton = new System.Windows.Forms.ToolStripButton();
            this._helpButton = new System.Windows.Forms.ToolStripButton();
            this._operationToolStrip = new System.Windows.Forms.ToolStrip();
            this._panToolBtn = new System.Windows.Forms.ToolStripButton();
            this._statusStrip = new System.Windows.Forms.StatusStrip();
            this._statusInfoLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this._contextToolStrip = new System.Windows.Forms.ToolStrip();
            this._zoomText = new System.Windows.Forms.ToolStripTextBox();
            this._changeLineTypeCmb = new System.Windows.Forms.ToolStripComboBox();
            this._saveFileDialog = new System.Windows.Forms.SaveFileDialog();
            this._openFileDialog = new System.Windows.Forms.OpenFileDialog();
            this._toolTip = new System.Windows.Forms.ToolTip(this.components);
            this._renderControl = new EscherTiler.RenderControl();
            this._pageSetupDialog = new System.Windows.Forms.PageSetupDialog();
            this._printDocument = new EscherTiler.Graphics.GDI.TilerPrintDocument();
            this._printDialog = new System.Windows.Forms.PrintDialog();
            this._printPreviewDialog = new System.Windows.Forms.PrintPreviewDialog();
            sep1 = new System.Windows.Forms.ToolStripSeparator();
            sep2 = new System.Windows.Forms.ToolStripSeparator();
            sep3 = new System.Windows.Forms.ToolStripSeparator();
            _editMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            sep4 = new System.Windows.Forms.ToolStripSeparator();
            sep5 = new System.Windows.Forms.ToolStripSeparator();
            _stylesPanel = new System.Windows.Forms.Panel();
            _seedLbl = new System.Windows.Forms.Label();
            _stylesPanel.SuspendLayout();
            this._fillStylesGroup.SuspendLayout();
            this._lineStyleGroup.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._lineWidthTrack)).BeginInit();
            this._greedyStyleManagerPnl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamCTrack)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamBTrack)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamATrack)).BeginInit();
            this._randomStyleMangerPnl.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this._seedNum)).BeginInit();
            this._menuStrip.SuspendLayout();
            this._toolStrip.SuspendLayout();
            this._operationToolStrip.SuspendLayout();
            this._statusStrip.SuspendLayout();
            this._contextToolStrip.SuspendLayout();
            this.SuspendLayout();
            //
            // sep1
            //
            sep1.Name = "sep1";
            sep1.Size = new System.Drawing.Size(143, 6);
            //
            // sep2
            //
            sep2.Name = "sep2";
            sep2.Size = new System.Drawing.Size(143, 6);
            //
            // sep3
            //
            sep3.Name = "sep3";
            sep3.Size = new System.Drawing.Size(143, 6);
            //
            // _editMenuItem
            //
            _editMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._undoMenuItem,
            this._redoMenuItem});
            _editMenuItem.Name = "_editMenuItem";
            _editMenuItem.Size = new System.Drawing.Size(39, 20);
            _editMenuItem.Text = "&Edit";
            _editMenuItem.Visible = false;
            //
            // _undoMenuItem
            //
            this._undoMenuItem.Name = "_undoMenuItem";
            this._undoMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z)));
            this._undoMenuItem.Size = new System.Drawing.Size(144, 22);
            this._undoMenuItem.Text = "&Undo";
            this._undoMenuItem.Click += new System.EventHandler(this.undoMenuItem_Click);
            //
            // _redoMenuItem
            //
            this._redoMenuItem.Name = "_redoMenuItem";
            this._redoMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Y)));
            this._redoMenuItem.Size = new System.Drawing.Size(144, 22);
            this._redoMenuItem.Text = "&Redo";
            this._redoMenuItem.Click += new System.EventHandler(this.redoMenuItem_Click);
            //
            // sep4
            //
            sep4.Name = "sep4";
            sep4.Size = new System.Drawing.Size(113, 6);
            //
            // sep5
            //
            sep5.Name = "sep5";
            sep5.Size = new System.Drawing.Size(6, 25);
            //
            // _stylesPanel
            //
            _stylesPanel.Controls.Add(this._fillStylesGroup);
            _stylesPanel.Controls.Add(this._lineStyleGroup);
            _stylesPanel.Controls.Add(this._greedyStyleManagerPnl);
            _stylesPanel.Controls.Add(this._randomStyleMangerPnl);
            _stylesPanel.Controls.Add(this._styleManagerTypeCmb);
            _stylesPanel.Dock = System.Windows.Forms.DockStyle.Right;
            _stylesPanel.Location = new System.Drawing.Point(789, 49);
            _stylesPanel.Name = "_stylesPanel";
            _stylesPanel.Size = new System.Drawing.Size(195, 565);
            _stylesPanel.TabIndex = 6;
            _stylesPanel.Visible = true;
            //
            // _fillStylesGroup
            //
            this._fillStylesGroup.Controls.Add(this._styleList);
            this._fillStylesGroup.Dock = System.Windows.Forms.DockStyle.Fill;
            this._fillStylesGroup.Enabled = false;
            this._fillStylesGroup.Location = new System.Drawing.Point(0, 257);
            this._fillStylesGroup.Name = "_fillStylesGroup";
            this._fillStylesGroup.Size = new System.Drawing.Size(195, 308);
            this._fillStylesGroup.TabIndex = 5;
            this._fillStylesGroup.TabStop = false;
            this._fillStylesGroup.Text = "Fill styles";
            //
            // _styleList
            //
            this._styleList.Dock = System.Windows.Forms.DockStyle.Fill;
            this._styleList.Location = new System.Drawing.Point(3, 16);
            this._styleList.Name = "_styleList";
            this._styleList.Size = new System.Drawing.Size(189, 289);
            this._styleList.TabIndex = 3;
            this._styleList.StylesChanged += new System.EventHandler(this._styleList_StylesChanged);
            //
            // _lineStyleGroup
            //
            this._lineStyleGroup.Controls.Add(this._lineStyleControl);
            this._lineStyleGroup.Controls.Add(this._lineWidthTrack);
            this._lineStyleGroup.Dock = System.Windows.Forms.DockStyle.Top;
            this._lineStyleGroup.Enabled = false;
            this._lineStyleGroup.Location = new System.Drawing.Point(0, 149);
            this._lineStyleGroup.Name = "_lineStyleGroup";
            this._lineStyleGroup.Size = new System.Drawing.Size(195, 108);
            this._lineStyleGroup.TabIndex = 4;
            this._lineStyleGroup.TabStop = false;
            this._lineStyleGroup.Text = "Line style";
            //
            // _lineStyleControl
            //
            this._lineStyleControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this._lineStyleControl.Location = new System.Drawing.Point(3, 49);
            this._lineStyleControl.Name = "_lineStyleControl";
            this._lineStyleControl.Size = new System.Drawing.Size(189, 56);
            this._lineStyleControl.Style = null;
            this._lineStyleControl.TabIndex = 1;
            this._lineStyleControl.StyleChanged += new System.EventHandler(this._lineStyleControl_StyleChanged);
            //
            // _lineWidthTrack
            //
            this._lineWidthTrack.AutoSize = false;
            this._lineWidthTrack.Dock = System.Windows.Forms.DockStyle.Top;
            this._lineWidthTrack.Location = new System.Drawing.Point(3, 16);
            this._lineWidthTrack.Maximum = 100;
            this._lineWidthTrack.Name = "_lineWidthTrack";
            this._lineWidthTrack.Size = new System.Drawing.Size(189, 33);
            this._lineWidthTrack.TabIndex = 0;
            this._lineWidthTrack.TickFrequency = 10;
            this._toolTip.SetToolTip(this._lineWidthTrack, "The width of the line");
            this._lineWidthTrack.Value = 10;
            this._lineWidthTrack.Scroll += new System.EventHandler(this._lineWidthTrack_ValueChanged);
            this._lineWidthTrack.ValueChanged += new System.EventHandler(this._lineWidthTrack_ValueChanged);
            //
            // _greedyStyleManagerPnl
            //
            this._greedyStyleManagerPnl.Controls.Add(this._greedyParamCTrack);
            this._greedyStyleManagerPnl.Controls.Add(this._greedyParamBTrack);
            this._greedyStyleManagerPnl.Controls.Add(this._greedyParamATrack);
            this._greedyStyleManagerPnl.Dock = System.Windows.Forms.DockStyle.Top;
            this._greedyStyleManagerPnl.Location = new System.Drawing.Point(0, 47);
            this._greedyStyleManagerPnl.Name = "_greedyStyleManagerPnl";
            this._greedyStyleManagerPnl.Size = new System.Drawing.Size(195, 102);
            this._greedyStyleManagerPnl.TabIndex = 2;
            this._greedyStyleManagerPnl.Visible = false;
            this._greedyStyleManagerPnl.VisibleChanged += new System.EventHandler(this.StyleManagerPanel_VisibleChanged);
            //
            // _greedyParamCTrack
            //
            this._greedyParamCTrack.AutoSize = false;
            this._greedyParamCTrack.Dock = System.Windows.Forms.DockStyle.Top;
            this._greedyParamCTrack.Location = new System.Drawing.Point(0, 66);
            this._greedyParamCTrack.Name = "_greedyParamCTrack";
            this._greedyParamCTrack.Size = new System.Drawing.Size(195, 33);
            this._greedyParamCTrack.TabIndex = 2;
            this._greedyParamCTrack.ValueChanged += new System.EventHandler(this._greedyParamCTrack_ValueChanged);
            //
            // _greedyParamBTrack
            //
            this._greedyParamBTrack.AutoSize = false;
            this._greedyParamBTrack.Dock = System.Windows.Forms.DockStyle.Top;
            this._greedyParamBTrack.Location = new System.Drawing.Point(0, 33);
            this._greedyParamBTrack.Name = "_greedyParamBTrack";
            this._greedyParamBTrack.Size = new System.Drawing.Size(195, 33);
            this._greedyParamBTrack.TabIndex = 1;
            this._greedyParamBTrack.ValueChanged += new System.EventHandler(this._greedyParamBTrack_ValueChanged);
            //
            // _greedyParamATrack
            //
            this._greedyParamATrack.AutoSize = false;
            this._greedyParamATrack.Dock = System.Windows.Forms.DockStyle.Top;
            this._greedyParamATrack.Location = new System.Drawing.Point(0, 0);
            this._greedyParamATrack.Name = "_greedyParamATrack";
            this._greedyParamATrack.Size = new System.Drawing.Size(195, 33);
            this._greedyParamATrack.TabIndex = 0;
            this._greedyParamATrack.ValueChanged += new System.EventHandler(this._greedyParamATrack_ValueChanged);
            //
            // _randomStyleMangerPnl
            //
            this._randomStyleMangerPnl.Controls.Add(this._randomSeedBtn);
            this._randomStyleMangerPnl.Controls.Add(this._seedNum);
            this._randomStyleMangerPnl.Controls.Add(_seedLbl);
            this._randomStyleMangerPnl.Dock = System.Windows.Forms.DockStyle.Top;
            this._randomStyleMangerPnl.Location = new System.Drawing.Point(0, 21);
            this._randomStyleMangerPnl.Name = "_randomStyleMangerPnl";
            this._randomStyleMangerPnl.Size = new System.Drawing.Size(195, 26);
            this._randomStyleMangerPnl.TabIndex = 1;
            this._randomStyleMangerPnl.Visible = false;
            this._randomStyleMangerPnl.VisibleChanged += new System.EventHandler(this.StyleManagerPanel_VisibleChanged);
            //
            // _randomSeedBtn
            //
            this._randomSeedBtn.Location = new System.Drawing.Point(136, 2);
            this._randomSeedBtn.Name = "_randomSeedBtn";
            this._randomSeedBtn.Size = new System.Drawing.Size(56, 22);
            this._randomSeedBtn.TabIndex = 2;
            this._randomSeedBtn.Text = "&Random";
            this._toolTip.SetToolTip(this._randomSeedBtn, "Picks a random seed");
            this._randomSeedBtn.UseVisualStyleBackColor = true;
            this._randomSeedBtn.Click += new System.EventHandler(this._randomSeedBtn_Click);
            //
            // _seedNum
            //
            this._seedNum.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
            | System.Windows.Forms.AnchorStyles.Right)));
            this._seedNum.Location = new System.Drawing.Point(44, 3);
            this._seedNum.Maximum = new decimal(new int[] {
            2147483647,
            0,
            0,
            0});
            this._seedNum.Minimum = new decimal(new int[] {
            -2147483648,
            0,
            0,
            -2147483648});
            this._seedNum.Name = "_seedNum";
            this._seedNum.Size = new System.Drawing.Size(86, 20);
            this._seedNum.TabIndex = 1;
            this._seedNum.ValueChanged += new System.EventHandler(this._seedNum_ValueChanged);
            //
            // _seedLbl
            //
            _seedLbl.AutoSize = true;
            _seedLbl.Location = new System.Drawing.Point(3, 6);
            _seedLbl.Name = "_seedLbl";
            _seedLbl.Size = new System.Drawing.Size(35, 13);
            _seedLbl.TabIndex = 0;
            _seedLbl.Text = "Seed:";
            //
            // _styleManagerTypeCmb
            //
            this._styleManagerTypeCmb.Dock = System.Windows.Forms.DockStyle.Top;
            this._styleManagerTypeCmb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._styleManagerTypeCmb.Enabled = false;
            this._styleManagerTypeCmb.FormattingEnabled = true;
            this._styleManagerTypeCmb.Location = new System.Drawing.Point(0, 0);
            this._styleManagerTypeCmb.Name = "_styleManagerTypeCmb";
            this._styleManagerTypeCmb.Size = new System.Drawing.Size(195, 21);
            this._styleManagerTypeCmb.TabIndex = 0;
            this._styleManagerTypeCmb.SelectedIndexChanged += new System.EventHandler(this._styleManagerTypeCmb_SelectedIndexChanged);
            //
            // _menuStrip
            //
            this._menuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._fileMenuItem,
            _editMenuItem,
            this._toolsMenuItem,
            this._helpMenuItem});
            this._menuStrip.Location = new System.Drawing.Point(0, 0);
            this._menuStrip.Name = "_menuStrip";
            this._menuStrip.Size = new System.Drawing.Size(984, 24);
            this._menuStrip.TabIndex = 0;
            this._menuStrip.Text = "Menu";
            //
            // _fileMenuItem
            //
            this._fileMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._newMenuItem,
            this._openMenuItem,
            sep1,
            this._saveMenuItem,
            this._saveAsMenuItem,
            sep2,
            this._pageSetupMenuItem,
            this._printMenuItem,
            this._printPreviewMenuItem,
            sep3,
            this._exitMenuItem});
            this._fileMenuItem.Name = "_fileMenuItem";
            this._fileMenuItem.Size = new System.Drawing.Size(37, 20);
            this._fileMenuItem.Text = "&File";
            //
            // _newMenuItem
            //
            this._newMenuItem.Image = global::EscherTiler.Properties.Resources.NewIcon;
            this._newMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._newMenuItem.Name = "_newMenuItem";
            this._newMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));
            this._newMenuItem.Size = new System.Drawing.Size(146, 22);
            this._newMenuItem.Text = "&New";
            this._newMenuItem.Click += new System.EventHandler(this.newMenuItem_Click);
            //
            // _openMenuItem
            //
            this._openMenuItem.Image = global::EscherTiler.Properties.Resources.OpenIcon;
            this._openMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._openMenuItem.Name = "_openMenuItem";
            this._openMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
            this._openMenuItem.Size = new System.Drawing.Size(146, 22);
            this._openMenuItem.Text = "&Open";
            this._openMenuItem.Click += new System.EventHandler(this.openMenuItem_Click);
            //
            // _saveMenuItem
            //
            this._saveMenuItem.Image = global::EscherTiler.Properties.Resources.SaveIcon;
            this._saveMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._saveMenuItem.Name = "_saveMenuItem";
            this._saveMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
            this._saveMenuItem.Size = new System.Drawing.Size(146, 22);
            this._saveMenuItem.Text = "&Save";
            this._saveMenuItem.Click += new System.EventHandler(this.saveMenuItem_Click);
            //
            // _saveAsMenuItem
            //
            this._saveAsMenuItem.Name = "_saveAsMenuItem";
            this._saveAsMenuItem.Size = new System.Drawing.Size(146, 22);
            this._saveAsMenuItem.Text = "Save &As";
            this._saveAsMenuItem.Click += new System.EventHandler(this.saveAsMenuItem_Click);
            //
            // _pageSetupMenuItem
            //
            this._pageSetupMenuItem.Name = "_pageSetupMenuItem";
            this._pageSetupMenuItem.Size = new System.Drawing.Size(146, 22);
            this._pageSetupMenuItem.Text = "Page Set&up";
            this._pageSetupMenuItem.Click += new System.EventHandler(this._pageSetupMenuItem_Click);
            //
            // _printMenuItem
            //
            this._printMenuItem.Image = global::EscherTiler.Properties.Resources.PrintIcon;
            this._printMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._printMenuItem.Name = "_printMenuItem";
            this._printMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.P)));
            this._printMenuItem.Size = new System.Drawing.Size(146, 22);
            this._printMenuItem.Text = "&Print";
            this._printMenuItem.Click += new System.EventHandler(this.printMenuItem_Click);
            //
            // _printPreviewMenuItem
            //
            this._printPreviewMenuItem.Image = global::EscherTiler.Properties.Resources.PrintPreviewIcon;
            this._printPreviewMenuItem.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._printPreviewMenuItem.Name = "_printPreviewMenuItem";
            this._printPreviewMenuItem.Size = new System.Drawing.Size(146, 22);
            this._printPreviewMenuItem.Text = "Print Pre&view";
            this._printPreviewMenuItem.Click += new System.EventHandler(this.printPreviewMenuItem_Click);
            //
            // _exitMenuItem
            //
            this._exitMenuItem.Name = "_exitMenuItem";
            this._exitMenuItem.Size = new System.Drawing.Size(146, 22);
            this._exitMenuItem.Text = "E&xit";
            this._exitMenuItem.Click += new System.EventHandler(this.exitMenuItem_Click);
            //
            // _toolsMenuItem
            //
            this._toolsMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._customizeMenuItem,
            this._optionsMenuItem});
            this._toolsMenuItem.Name = "_toolsMenuItem";
            this._toolsMenuItem.Size = new System.Drawing.Size(47, 20);
            this._toolsMenuItem.Text = "&Tools";
            this._toolsMenuItem.Visible = false;
            //
            // _customizeMenuItem
            //
            this._customizeMenuItem.Name = "_customizeMenuItem";
            this._customizeMenuItem.Size = new System.Drawing.Size(130, 22);
            this._customizeMenuItem.Text = "&Customize";
            //
            // _optionsMenuItem
            //
            this._optionsMenuItem.Name = "_optionsMenuItem";
            this._optionsMenuItem.Size = new System.Drawing.Size(130, 22);
            this._optionsMenuItem.Text = "&Options";
            //
            // _helpMenuItem
            //
            this._helpMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._indexMenuItem,
            this._searchMenuItem,
            sep4,
            this._aboutMenuItem});
            this._helpMenuItem.Name = "_helpMenuItem";
            this._helpMenuItem.Size = new System.Drawing.Size(44, 20);
            this._helpMenuItem.Text = "&Help";
            //
            // _indexMenuItem
            //
            this._indexMenuItem.Name = "_indexMenuItem";
            this._indexMenuItem.Size = new System.Drawing.Size(116, 22);
            this._indexMenuItem.Text = "&Index";
            this._indexMenuItem.Click += new System.EventHandler(this.indexMenuItem_Click);
            //
            // _searchMenuItem
            //
            this._searchMenuItem.Name = "_searchMenuItem";
            this._searchMenuItem.Size = new System.Drawing.Size(116, 22);
            this._searchMenuItem.Text = "&Search";
            this._searchMenuItem.Click += new System.EventHandler(this.searchMenuItem_Click);
            //
            // _aboutMenuItem
            //
            this._aboutMenuItem.Name = "_aboutMenuItem";
            this._aboutMenuItem.Size = new System.Drawing.Size(116, 22);
            this._aboutMenuItem.Text = "&About...";
            this._aboutMenuItem.Click += new System.EventHandler(this.aboutMenuItem_Click);
            //
            // _toolStrip
            //
            this._toolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this._toolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._newButton,
            this._openButton,
            this._saveButton,
            this._printButton,
            sep5,
            this._helpButton});
            this._toolStrip.Location = new System.Drawing.Point(0, 24);
            this._toolStrip.Name = "_toolStrip";
            this._toolStrip.Size = new System.Drawing.Size(984, 25);
            this._toolStrip.TabIndex = 1;
            this._toolStrip.Text = "Tools";
            //
            // _newButton
            //
            this._newButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._newButton.Image = global::EscherTiler.Properties.Resources.NewIcon;
            this._newButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._newButton.Name = "_newButton";
            this._newButton.Size = new System.Drawing.Size(23, 22);
            this._newButton.Text = "&New";
            this._newButton.Click += new System.EventHandler(this.newButton_Click);
            //
            // _openButton
            //
            this._openButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._openButton.Image = global::EscherTiler.Properties.Resources.OpenIcon;
            this._openButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._openButton.Name = "_openButton";
            this._openButton.Size = new System.Drawing.Size(23, 22);
            this._openButton.Text = "&Open";
            this._openButton.Click += new System.EventHandler(this.openButton_Click);
            //
            // _saveButton
            //
            this._saveButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._saveButton.Image = global::EscherTiler.Properties.Resources.SaveIcon;
            this._saveButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._saveButton.Name = "_saveButton";
            this._saveButton.Size = new System.Drawing.Size(23, 22);
            this._saveButton.Text = "&Save";
            this._saveButton.Click += new System.EventHandler(this.saveButton_Click);
            //
            // _printButton
            //
            this._printButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._printButton.Image = global::EscherTiler.Properties.Resources.PrintIcon;
            this._printButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._printButton.Name = "_printButton";
            this._printButton.Size = new System.Drawing.Size(23, 22);
            this._printButton.Text = "&Print";
            this._printButton.Click += new System.EventHandler(this.printButton_Click);
            //
            // _helpButton
            //
            this._helpButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._helpButton.Image = global::EscherTiler.Properties.Resources.HelpIcon;
            this._helpButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._helpButton.Name = "_helpButton";
            this._helpButton.Size = new System.Drawing.Size(23, 22);
            this._helpButton.Text = "He&lp";
            this._helpButton.Click += new System.EventHandler(this.helpButton_Click);
            //
            // _operationToolStrip
            //
            this._operationToolStrip.AutoSize = false;
            this._operationToolStrip.Dock = System.Windows.Forms.DockStyle.Left;
            this._operationToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this._operationToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._panToolBtn});
            this._operationToolStrip.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.Flow;
            this._operationToolStrip.Location = new System.Drawing.Point(0, 49);
            this._operationToolStrip.Name = "_operationToolStrip";
            this._operationToolStrip.Size = new System.Drawing.Size(41, 590);
            this._operationToolStrip.TabIndex = 2;
            this._operationToolStrip.Text = "Operations";
            //
            // _panToolBtn
            //
            this._panToolBtn.AutoSize = false;
            this._panToolBtn.Checked = true;
            this._panToolBtn.CheckState = System.Windows.Forms.CheckState.Checked;
            this._panToolBtn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._panToolBtn.Image = global::EscherTiler.Properties.Resources.PanTool_Icon;
            this._panToolBtn.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._panToolBtn.Name = "_panToolBtn";
            this._panToolBtn.Size = new System.Drawing.Size(20, 20);
            this._panToolBtn.Text = "Pan";
            this._panToolBtn.Click += new System.EventHandler(this.toolBtn_Click);
            //
            // _statusStrip
            //
            this._statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._statusInfoLabel});
            this._statusStrip.Location = new System.Drawing.Point(0, 639);
            this._statusStrip.Name = "_statusStrip";
            this._statusStrip.Size = new System.Drawing.Size(984, 22);
            this._statusStrip.TabIndex = 3;
            this._statusStrip.Text = "Status";
            //
            // _statusInfoLabel
            //
            this._statusInfoLabel.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic);
            this._statusInfoLabel.Name = "_statusInfoLabel";
            this._statusInfoLabel.Size = new System.Drawing.Size(112, 17);
            this._statusInfoLabel.Text = "[Status Information]";
            //
            // _contextToolStrip
            //
            this._contextToolStrip.Dock = System.Windows.Forms.DockStyle.Bottom;
            this._contextToolStrip.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
            this._contextToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this._zoomText,
            this._changeLineTypeCmb});
            this._contextToolStrip.Location = new System.Drawing.Point(41, 614);
            this._contextToolStrip.Name = "_contextToolStrip";
            this._contextToolStrip.Size = new System.Drawing.Size(943, 25);
            this._contextToolStrip.TabIndex = 4;
            this._contextToolStrip.Text = "Context Tools";
            //
            // _zoomText
            //
            this._zoomText.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right;
            this._zoomText.AutoSize = false;
            this._zoomText.BackColor = System.Drawing.SystemColors.Window;
            this._zoomText.Name = "_zoomText";
            this._zoomText.Size = new System.Drawing.Size(50, 25);
            this._zoomText.Text = "100%";
            this._zoomText.TextBoxTextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            this._zoomText.WordWrap = false;
            this._zoomText.Leave += new System.EventHandler(this.zoomText_Leave);
            //
            // _changeLineTypeCmb
            //
            this._changeLineTypeCmb.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this._changeLineTypeCmb.Name = "_changeLineTypeCmb";
            this._changeLineTypeCmb.Size = new System.Drawing.Size(121, 25);
            this._changeLineTypeCmb.Visible = false;
            this._changeLineTypeCmb.SelectedIndexChanged += new System.EventHandler(this.changeLineTypeCmb_SelectedIndexChanged);
            //
            // _saveFileDialog
            //
            this._saveFileDialog.DefaultExt = "esch";
            this._saveFileDialog.Filter = "Tiling|*.esch";
            //
            // _openFileDialog
            //
            this._openFileDialog.DefaultExt = "esch";
            this._openFileDialog.Filter = "Tiling|*.esch";
            //
            // _renderControl
            //
            this._renderControl.Cursor = System.Windows.Forms.Cursors.Cross;
            this._renderControl.Dock = System.Windows.Forms.DockStyle.Fill;
            this._renderControl.Location = new System.Drawing.Point(41, 49);
            this._renderControl.Name = "_renderControl";
            this._renderControl.Size = new System.Drawing.Size(748, 565);
            this._renderControl.TabIndex = 5;
            this._renderControl.Render += new EscherTiler.RenderDelegate(this.renderControl_Render);
            this._renderControl.Layout += new System.Windows.Forms.LayoutEventHandler(this.renderControl_Layout);
            this._renderControl.MouseDown += new System.Windows.Forms.MouseEventHandler(this.renderControl_MouseDown);
            this._renderControl.MouseLeave += new System.EventHandler(this.renderControl_MouseLeave);
            this._renderControl.MouseMove += new System.Windows.Forms.MouseEventHandler(this.renderControl_MouseMove);
            this._renderControl.MouseUp += new System.Windows.Forms.MouseEventHandler(this.renderControl_MouseUp);
            //
            // _pageSetupDialog
            //
            this._pageSetupDialog.Document = this._printDocument;
            this._pageSetupDialog.EnableMetric = true;
            //
            // _printDocument
            //
            this._printDocument.DocumentName = "Tiling";
            this._printDocument.PrintMode = EscherTiler.Graphics.GDI.TilingPrintMode.TilingFull;
            this._printDocument.Tile = null;
            this._printDocument.Tiling = null;
            //
            // _printDialog
            //
            this._printDialog.Document = this._printDocument;
            this._printDialog.UseEXDialog = true;
            //
            // _printPreviewDialog
            //
            this._printPreviewDialog.AutoScrollMargin = new System.Drawing.Size(0, 0);
            this._printPreviewDialog.AutoScrollMinSize = new System.Drawing.Size(0, 0);
            this._printPreviewDialog.ClientSize = new System.Drawing.Size(400, 300);
            this._printPreviewDialog.Document = this._printDocument;
            this._printPreviewDialog.Enabled = true;
            this._printPreviewDialog.Icon = ((System.Drawing.Icon)(resources.GetObject("_printPreviewDialog.Icon")));
            this._printPreviewDialog.Name = "_printPreviewDialog";
            this._printPreviewDialog.UseAntiAlias = true;
            this._printPreviewDialog.Visible = false;
            //
            // Main
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(984, 661);
            this.Controls.Add(this._renderControl);
            this.Controls.Add(_stylesPanel);
            this.Controls.Add(this._contextToolStrip);
            this.Controls.Add(this._operationToolStrip);
            this.Controls.Add(this._toolStrip);
            this.Controls.Add(this._menuStrip);
            this.Controls.Add(this._statusStrip);
            this.MainMenuStrip = this._menuStrip;
            this.MinimumSize = new System.Drawing.Size(600, 450);
            this.Name = "Main";
            this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
            this.Text = "Escher Tiler";
            this.Click += new System.EventHandler(this.toolBtn_Click);
            _stylesPanel.ResumeLayout(false);
            this._fillStylesGroup.ResumeLayout(false);
            this._lineStyleGroup.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this._lineWidthTrack)).EndInit();
            this._greedyStyleManagerPnl.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamCTrack)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamBTrack)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this._greedyParamATrack)).EndInit();
            this._randomStyleMangerPnl.ResumeLayout(false);
            this._randomStyleMangerPnl.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this._seedNum)).EndInit();
            this._menuStrip.ResumeLayout(false);
            this._menuStrip.PerformLayout();
            this._toolStrip.ResumeLayout(false);
            this._toolStrip.PerformLayout();
            this._operationToolStrip.ResumeLayout(false);
            this._operationToolStrip.PerformLayout();
            this._statusStrip.ResumeLayout(false);
            this._statusStrip.PerformLayout();
            this._contextToolStrip.ResumeLayout(false);
            this._contextToolStrip.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }