Example #1
0
        public frmContacts()
        {
            InitializeComponent();

            Icon = Properties.Resources.logo;

            DataSet ds = Program.DB.SelectAll("SELECT ID,Name FROM Companies;");
            if (ds.Tables.Count > 0)
            {
                AutoCompleteStringCollection asCompanies = new AutoCompleteStringCollection();
                foreach (DataRow r in ds.Tables[0].Rows)
                {
                    string sName = r["Name"].ToString();
                    asCompanies.Add(sName);
                }
                txtCompanies.AutoCompleteCustomSource = asCompanies;
            }

            ds = Program.DB.SelectAll("SELECT ID,NameFirst,NameLast FROM Contacts;");
            if (ds.Tables.Count > 0)
            {
                foreach (DataRow r in ds.Tables[0].Rows)
                {
                    DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                    i.Tag = r["ID"];
                    i.Text = r["NameFirst"].ToString() + " " + r["NameLast"].ToString();
                    cbxContact.Items.Add(i);
                }
            }
        }
Example #2
0
        public frmSiteChoose()
        {
            InitializeComponent();
            if (Properties.Settings.Default.PathToData.Length > 0 && System.IO.File.Exists(Properties.Settings.Default.PathToData + "logo.ico"))
            {
                Icon = Icon.ExtractAssociatedIcon(Properties.Settings.Default.PathToData + "logo.ico");
            }
            else
            {
                Icon = Properties.Resources.logo_fes;
            }
            sm.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters { CanvasColor = Color.White, BaseColor = Program.cWindowColour };

            DialogResult = DialogResult.Abort;

            DataSet ds = Program.SQL.SelectAll("SELECT id,name FROM locations_sites;");
            if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
            {
                foreach (DataRow r in ds.Tables[0].Rows)
                {
                    DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                    i.Value = r["id"];
                    i.Text = r["name"].ToString();
                    cbxSites.Items.Add(i);
                }
            }
        }
Example #3
0
		private void frmMerge_Load( object sender, EventArgs e ) {
			DevComponents.Editors.ComboItem item;
			foreach( string key in mFilesMy.Keys ) {
				item = new DevComponents.Editors.ComboItem();
				item.TextAlignment = StringAlignment.Near;
				item.Text = key;
				comboFiles.Items.Add( item );
			}
		}
Example #4
0
        public frmSchedulesQuestions()
        {
            InitializeComponent();
            if (Properties.Settings.Default.PathToData.Length > 0 && System.IO.File.Exists(Properties.Settings.Default.PathToData + "logo.ico"))
            {
                Icon = Icon.ExtractAssociatedIcon(Properties.Settings.Default.PathToData + "logo.ico");
            }
            else
            {
                Icon = Properties.Resources.logo_fes;
            }
            sm.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters { CanvasColor = Color.White, BaseColor = Program.cWindowColour };

            if (!frmSchedules.bIsQuestion)
            {
                Text = "Manage Notes";
                lblEntry.Text = "Note:";
                cmAdd.Text = "Add note";
                cmRemove.Text = "Remove note";
                lblSection.Visible = false;
                lblLetter.Visible = false;
                lblNumber.Visible = false;
                cbxSection.Visible = false;
                cbxLetter.Visible = false;
                cbxNumber.Visible = false;
                chkMultiPart.Enabled = false;
                btnSections.Visible = false;
                tiParts.Visible = false;
            }
            else
            {
                DataSet d = Program.SQL.SelectAll("SELECT * FROM schedules_sections;");
                if (d.Tables.Count > 0)
                {
                    foreach (DataRow row in d.Tables[0].Rows)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Tag = row["id"];
                        i.Text = row["name"].ToString();
                        cbxSection.Items.Add(i);
                    }
                }

                for (int i = 65; i < 91; i++)
                {
                    cbxLetter.Items.Add((Char)i);
                }

                for (int i = 1; i < 100; i++)
                {
                    cbxNumber.Items.Add(i);
                }
            }

            LoadData();
        }
Example #5
0
 private void cbxVessel_SelectionChangeCommitted(object sender, EventArgs e)
 {
     if (cbxVessel.SelectedIndex > -1)
     {
         DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxVessel.Items[cbxVessel.SelectedIndex];
         SharedData.iLocationVessel = Convert.ToInt32(i.Value);
         SharedData.iLocationFloor  = 0;
         SharedData.iLocationGrid   = 0;
         LoadLocations();
     }
 }
Example #6
0
 private void frmMerge_Load(object sender, EventArgs e)
 {
     DevComponents.Editors.ComboItem item;
     foreach (string key in mFilesMy.Keys)
     {
         item = new DevComponents.Editors.ComboItem();
         item.TextAlignment = StringAlignment.Near;
         item.Text          = key;
         comboFiles.Items.Add(item);
     }
 }
Example #7
0
        private void cmbShadow_SelectionChangeCommitted(object sender, EventArgs e)
        {
            DevComponents.Editors.ComboItem item = cmbShadow.SelectedItem as DevComponents.Editors.ComboItem;
            if (item == null)
            {
                return;
            }
            IFrameDecoration pFrameDecoration = (IFrameDecoration)(item.Tag);

            GetDecorationColor(pFrameDecoration, btnShadowColor);
        }
Example #8
0
        public frmLocationRemove()
        {
            InitializeComponent();
            if (Properties.Settings.Default.PathToData.Length > 0 && System.IO.File.Exists(Properties.Settings.Default.PathToData + "logo.ico"))
            {
                Icon = Icon.ExtractAssociatedIcon(Properties.Settings.Default.PathToData + "logo.ico");
            }
            else
            {
                Icon = Properties.Resources.logo_fes;
            }
            sm.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters { CanvasColor = Color.White, BaseColor = Program.cWindowColour };

            DialogResult = DialogResult.Cancel;
            lblLocation.Text = SharedData.sLocationType.Substring(0, 1).ToUpper() + SharedData.sLocationType.Substring(1) + " Name:";

            DataSet ds = Program.SQL.SelectAll("SELECT id,name FROM locations_" + SharedData.sLocationType + "s;");
            if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
            {
                foreach (DataRow dr in ds.Tables[0].Rows)
                {
                    DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                    i.Value = Convert.ToInt32(dr["id"]);
                    i.Text = dr["name"].ToString();
                    cbxLocations.Items.Add(i);
                }
            }

            switch (SharedData.sLocationType)
            {
                case "site":
                    iID = SharedData.iLocationSite;
                    break;
                case "area":
                    iID = SharedData.iLocationArea;
                    break;
                case "vessel":
                    iID = SharedData.iLocationVessel;
                    break;
                case "floor":
                    iID = SharedData.iLocationFloor;
                    break;
                case "grid":
                    iID = SharedData.iLocationGrid;
                    break;
            }

            if (iID < 1)
            {
                MessageBox.Show("Please select a valid location to continue.", "Location", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                Close();
            }
        }
 public void InitColor(List <object[]> list)
 {
     foreach (var pair in list)
     {
         DevComponents.Editors.ComboItem comboItem = new DevComponents.Editors.ComboItem();
         comboItem.BackColor = (Color)pair[0];
         comboItem.ForeColor = Color.FromArgb(0xff - ((Color)pair[0]).R, 0xff - ((Color)pair[0]).G, 0xff - ((Color)pair[0]).B);
         comboItem.Text      = pair[1].ToString();
         comboItem.Value     = pair[2];
         Items.Add(comboItem);
     }
 }
Example #10
0
        private void cmbColorRamp_SelectedIndexChanged(object sender, EventArgs e)
        {
            DevComponents.Editors.ComboItem selItem = cmbColorRamp.SelectedItem as DevComponents.Editors.ComboItem;
            Bitmap bmp = new Bitmap(selItem.Image);

            if (checkReverse.Checked)
            {
                bmp.RotateFlip(RotateFlipType.Rotate90FlipNone);
                pBoxColorRamp.Image = bmp;
            }
            else
            {
                bmp.RotateFlip(RotateFlipType.Rotate270FlipNone);
                pBoxColorRamp.Image = bmp;
            }
        }
        public void LoadThang()
        {
            int n = cbo_thang.AutoCompleteCustomSource.Count;

            for (int i = 0; i < n; i++)
            {
                cbo_thang.AutoCompleteCustomSource.RemoveAt(0);
                cbo_thang.Items.RemoveAt(0);
            }
            foreach (DataRow row in BAOCAO_BUS.ChonThangNam().Rows)
            {
                DevComponents.Editors.ComboItem cbo = new DevComponents.Editors.ComboItem(row[0].ToString());
                cbo_thang.Items.Add(cbo);
                cbo_thang.AutoCompleteCustomSource.Add(row[0].ToString());
            }
        }
Example #12
0
        public SettingsForm(int[] a, int[] b, MainForm f)
        {
            InitializeComponent();
            fontStyleItems = new DevComponents.Editors.ComboItem[4];
            //创建项
            fontStyleItems[0] = new DevComponents.Editors.ComboItem("黑体");
            fontStyleItems[1] = new DevComponents.Editors.ComboItem("仿宋");
            fontStyleItems[2] = new DevComponents.Editors.ComboItem("宋体");
            fontStyleItems[3] = new DevComponents.Editors.ComboItem("Times New Roman");
            fontSizeItems     = new DevComponents.Editors.ComboItem[10];
            fontSizeItems[0]  = new DevComponents.Editors.ComboItem("二号");
            fontSizeItems[1]  = new DevComponents.Editors.ComboItem("小二号");
            fontSizeItems[2]  = new DevComponents.Editors.ComboItem("三号");
            fontSizeItems[3]  = new DevComponents.Editors.ComboItem("小三号");
            fontSizeItems[4]  = new DevComponents.Editors.ComboItem("四号");
            fontSizeItems[5]  = new DevComponents.Editors.ComboItem("小四号");
            fontSizeItems[6]  = new DevComponents.Editors.ComboItem("五号");
            fontSizeItems[7]  = new DevComponents.Editors.ComboItem("小五号");
            fontSizeItems[8]  = new DevComponents.Editors.ComboItem("六号");
            fontSizeItems[9]  = new DevComponents.Editors.ComboItem("小六号");

            //添加项
            this.comboBoxEx1.Items.AddRange(fontStyleItems);
            this.comboBoxEx3.Items.AddRange(fontStyleItems);
            this.comboBoxEx5.Items.AddRange(fontStyleItems);
            this.comboBoxEx7.Items.AddRange(fontStyleItems);
            this.comboBoxEx9.Items.AddRange(fontStyleItems);
            this.comboBoxEx11.Items.AddRange(fontStyleItems);
            this.comboBoxEx13.Items.AddRange(fontStyleItems);
            this.comboBoxEx15.Items.AddRange(fontStyleItems);
            this.comboBoxEx17.Items.AddRange(fontStyleItems);
            this.comboBoxEx19.Items.AddRange(fontStyleItems);
            this.comboBoxEx21.Items.AddRange(fontStyleItems);
            this.comboBoxEx2.Items.AddRange(fontSizeItems);
            this.comboBoxEx4.Items.AddRange(fontSizeItems);
            this.comboBoxEx6.Items.AddRange(fontSizeItems);
            this.comboBoxEx8.Items.AddRange(fontSizeItems);
            this.comboBoxEx10.Items.AddRange(fontSizeItems);
            this.comboBoxEx12.Items.AddRange(fontSizeItems);
            this.comboBoxEx14.Items.AddRange(fontSizeItems);
            this.comboBoxEx16.Items.AddRange(fontSizeItems);
            this.comboBoxEx18.Items.AddRange(fontSizeItems);
            this.comboBoxEx20.Items.AddRange(fontSizeItems);
            this.comboBoxEx22.Items.AddRange(fontSizeItems);
            initSettings(a, b);
            father = f;
        }
Example #13
0
        public frmCompanies()
        {
            InitializeComponent();

            Icon = Properties.Resources.logo;

            DataSet ds = Program.DB.SelectAll("SELECT ID,Name FROM Companies;");
            if (ds.Tables.Count > 0)
            {
                foreach (DataRow r in ds.Tables[0].Rows)
                {
                    DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                    i.Tag = r["ID"];
                    i.Text = r["Name"].ToString();
                    cbxCompany.Items.Add(i);
                }
            }
        }
Example #14
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            if (txtLine1.Text.Trim().Length > 0)
            {
                MessageBox.Show("Enter the first line of the address to continue.", "Address", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                return;
            }

            SharedData.sPostal  = txtLine1.Text.Trim();
            SharedData.sPostal += "|" + txtLine2.Text.Trim();
            SharedData.sPostal += "|" + txtLine3.Text.Trim();
            SharedData.sPostal += "|" + txtTown.Text.Trim();
            SharedData.sPostal += "|" + txtCounty.Text.Trim();
            SharedData.sPostal += "|" + txtPostcode.Text.Trim();
            DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxCountry.SelectedItem;
            SharedData.sPostal += "|" + i.Value;
            DialogResult        = DialogResult.OK;
            Close();
        }
Example #15
0
        public frmBreakColorRenderer()
        {
            InitializeComponent();
            this.Dock    = System.Windows.Forms.DockStyle.Fill;
            m_EditObject = null;
            listValueItem.SmallImageList           = new System.Windows.Forms.ImageList();
            listValueItem.SmallImageList.ImageSize = new System.Drawing.Size(ModuleCommon.ImageWidth, ModuleCommon.ImageHeight);

            System.Windows.Forms.ColumnHeader column = new System.Windows.Forms.ColumnHeader();
            column.Name      = "Symbol";
            column.Text      = "符号";
            column.Width     = 80;
            column.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            listValueItem.Columns.Add(column);

            column           = new System.Windows.Forms.ColumnHeader();
            column.Name      = "Range";
            column.Text      = "范围";
            column.Width     = 146;
            column.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            listValueItem.Columns.Add(column);

            column           = new System.Windows.Forms.ColumnHeader();
            column.Name      = "Label";
            column.Text      = "标签";
            column.Width     = 146;
            column.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            listValueItem.Columns.Add(column);

            List <ColorItem> colorRamps = new ModuleCommon().GetColorScheme(217, 20, "Default Ramps;Dichromatic Ramps");

            for (int i = 0; i < colorRamps.Count; i++)
            {
                DevComponents.Editors.ComboItem item = new DevComponents.Editors.ComboItem();
                item.Image = colorRamps[i].ColorImage;
                item.Text  = colorRamps[i].Name;
                item.Tag   = colorRamps[i].ColorRamp;
                cmbColorRamp.Items.Add(item);
            }
            flag = true;
            cmbColorRamp.SelectedIndex = 0;
            flag = false;
        }
Example #16
0
        public frmChartRenderer()
        {
            InitializeComponent();
            this.Dock    = System.Windows.Forms.DockStyle.Fill;
            m_EditObject = null;
            listAddField.SmallImageList           = new System.Windows.Forms.ImageList();
            listAddField.SmallImageList.ImageSize = new System.Drawing.Size(ModuleCommon.ImageWidth, ModuleCommon.ImageHeight);

            System.Windows.Forms.ColumnHeader column1 = new System.Windows.Forms.ColumnHeader();
            column1.Name      = "Field";
            column1.Text      = "×Ö¶Î";
            column1.Width     = 140;
            column1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            listAllField.Columns.Add(column1);

            System.Windows.Forms.ColumnHeader column2 = new System.Windows.Forms.ColumnHeader();
            column2.Name      = "Symbol";
            column2.Text      = "·ûºÅ";
            column2.Width     = 80;
            column2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
            listAddField.Columns.Add(column2);

            column2           = new System.Windows.Forms.ColumnHeader();
            column2.Name      = "Field";
            column2.Text      = "×Ö¶Î";
            column2.Width     = 130;
            column2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
            listAddField.Columns.Add(column2);

            List <ColorItem> colorRamps = new ModuleCommon().GetColorScheme(217, 20, "Default Schemes;Spatial Ramps");

            for (int i = 0; i < colorRamps.Count; i++)
            {
                DevComponents.Editors.ComboItem item = new DevComponents.Editors.ComboItem();
                item.Image = colorRamps[i].ColorImage;
                item.Text  = colorRamps[i].Name;
                item.Tag   = colorRamps[i].ColorRamp;
                cmbColorRamp.Items.Add(item);
            }
            flag = true;
            cmbColorRamp.SelectedIndex = 0;
            flag = false;
        }
Example #17
0
        public frmStretchColorRampRenderer()
        {
            InitializeComponent();
            this.Dock    = System.Windows.Forms.DockStyle.Fill;
            m_EditObject = null;

            List <ColorItem> colorRamps = new ModuleCommon().GetColorScheme(297, 20, "Default Ramps;Dichromatic Ramps");

            for (int i = 0; i < colorRamps.Count; i++)
            {
                DevComponents.Editors.ComboItem item = new DevComponents.Editors.ComboItem();
                item.Image = colorRamps[i].ColorImage;
                item.Text  = colorRamps[i].Name;
                item.Tag   = colorRamps[i].ColorRamp;
                cmbColorRamp.Items.Add(item);
            }
            flag = true;
            cmbColorRamp.SelectedIndex = 0;
            flag = false;
        }
Example #18
0
 private void FrmBlockOutMap_Load(object sender, EventArgs e)
 {
     for (int i = 0; i < 6; i++)
     {
         int    w = 0, h = 0;
         string paper = "A" + i.ToString();
         getWHfromID(paper, ref w, ref h);
         DevComponents.Editors.ComboItem cbi = new DevComponents.Editors.ComboItem();
         cbi.Text = paper + "(" + w + "mm×" + h + "mm)";
         int[] wh = new int[2];
         wh[0]   = w;
         wh[1]   = h;
         cbi.Tag = wh;
         cboPapers.Items.Add(cbi);
     }
     if (cboPapers.Items.Count > 5)
     {
         cboPapers.SelectedIndex = cboPapers.Items.Count - 2;
     }
 }
Example #19
0
        private void btnEditGrid_Click(object sender, EventArgs e)
        {
            DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxGrid.Items[cbxGrid.SelectedIndex];
            SharedData.iLocationGrid = Convert.ToInt32(i.Value);
            SharedData.sLocationGrid = i.Text.ToString();
            SharedData.sLocationType = "grid";
            SharedData.bLocationEdit = true;

            Form         frmLocation = new frmLocationAdd();
            DialogResult dlg         = frmLocation.ShowDialog();

            if (dlg == DialogResult.OK && SharedData.iLocationSite > 0)
            {
                LoadLocations();
            }

            SharedData.iLocationGrid = 0;
            SharedData.sLocationGrid = "";
            SharedData.sLocationType = "";
            SharedData.bLocationEdit = false;
        }
Example #20
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BaseForm));
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.comboItem1    = new DevComponents.Editors.ComboItem();
     this.comboItem2    = new DevComponents.Editors.ComboItem();
     this.SuspendLayout();
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle         = DevComponents.DotNetBar.eStyle.Office2010Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(163)))), ((int)(((byte)(26))))));
     //
     // comboItem1
     //
     this.comboItem1.Text = "comboItem1";
     //
     // comboItem2
     //
     this.comboItem2.Text = "comboItem2";
     //
     // BaseForm
     //
     this.BackColor             = System.Drawing.SystemColors.Window;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.ClientSize            = new System.Drawing.Size(616, 375);
     this.DoubleBuffered        = true;
     this.Font          = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview    = true;
     this.Name          = "BaseForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "基类窗口";
     this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.BaseForm_FormClosed);
     this.Load         += new System.EventHandler(this.Form_Load);
     this.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.Form_KeyDown);
     this.ResumeLayout(false);
 }
Example #21
0
        private void PreViewCustom(DevComponents.DotNetBar.Controls.ComboBoxEx cmb, object item, esriSymbologyStyleClass styleClass)
        {
            IStyleGalleryItem pStyleItem = new ServerStyleGalleryItemClass();

            pStyleItem.Name = "Custom";
            pStyleItem.Item = item;
            stdole.IPictureDisp  picture;
            System.Drawing.Image image;

            ISymbologyStyleClass symbologyStyleClass = axSymbologyControl1.GetStyleClass(styleClass);

            picture = symbologyStyleClass.PreviewItem(pStyleItem, cmb.Width - 80, cmb.Height);
            image   = System.Drawing.Image.FromHbitmap(new System.IntPtr(picture.Handle));

            DevComponents.Editors.ComboItem valueItem;
            valueItem       = new DevComponents.Editors.ComboItem();
            valueItem.Text  = "Custom";
            valueItem.Tag   = item;
            valueItem.Image = image;
            cmb.Items.Add(valueItem);
            cmb.SelectedIndex = cmb.Items.Count - 1;
        }
Example #22
0
        private void btnConfImport_Click(object sender, EventArgs e)
        {
            string         path = string.Empty;
            OpenFileDialog dlg  = new OpenFileDialog();

            dlg.Filter = "eACGUI XML Export (*.xml)|*.xml";
            if (dlg.ShowDialog() != DialogResult.OK)
            {
                return;
            }

            mFilesExtern = new EathenaConfigFileCollectionSerializeable().Import(dlg.FileName);
            if (mFilesExtern == null)
            {
                Tools.Error("Fehler beim Importieren", "Das Importieren der Datei ist fehlgeschlagen!\nFalls dies öfter vorkommt, wende dich an GodLesZ!");
                return;
            }

            DevComponents.Editors.ComboItem item;
            foreach (string key in mFilesMy.Keys)
            {
                if (comboFiles.Items.Contains(key) == false)
                {
                    item = new DevComponents.Editors.ComboItem();
                    item.TextAlignment = StringAlignment.Far;
                    item.Text          = key;
                    comboFiles.Items.Add(item);
                }
            }

            if (comboFiles.SelectedIndex != -1)
            {
                comboFiles_SelectedIndexChanged(null, EventArgs.Empty);                   // try to select in both Combo's the same File
            }
            Tools.Info("Import erfolgreich Abgeschlossen", "Der Config Import wurde erfolgreich abgeschlossen!\nDu kannst die importieren Datein nun in der rechten DropDown Box auswählen.");
        }
Example #23
0
		public override void Deserialize(ItemSerializationContext context)
		{
			base.Deserialize(context);
            System.Xml.XmlElement ItemXmlSource = context.ItemXmlElement;
			m_ComboWidth=System.Xml.XmlConvert.ToInt32(ItemXmlSource.GetAttribute("ComboWidth"));
			m_FontCombo=System.Xml.XmlConvert.ToBoolean(ItemXmlSource.GetAttribute("FontCombo"));

			m_MenuVisibility=(eMenuVisibility)System.Xml.XmlConvert.ToInt32(ItemXmlSource.GetAttribute("MenuVisibility"));
			m_RecentlyUsed=System.Xml.XmlConvert.ToBoolean(ItemXmlSource.GetAttribute("RecentlyUsed"));
			if(ItemXmlSource.HasAttribute("DropDownStyle"))
				m_ComboBox.DropDownStyle=(System.Windows.Forms.ComboBoxStyle)System.Xml.XmlConvert.ToInt32(ItemXmlSource.GetAttribute("DropDownStyle"));

			if(ItemXmlSource.HasAttribute("CText"))
				this.Text=ItemXmlSource.GetAttribute("CText");

			if(ItemXmlSource.HasAttribute("ThemeAware"))
				m_ComboBox.ThemeAware=System.Xml.XmlConvert.ToBoolean(ItemXmlSource.GetAttribute("ThemeAware"));
			else
                m_ComboBox.ThemeAware=true;

			if(ItemXmlSource.HasAttribute("AlwaysShowCaption"))
				m_AlwaysShowCaption=System.Xml.XmlConvert.ToBoolean(ItemXmlSource.GetAttribute("AlwaysShowCaption"));

            if(ItemXmlSource.HasAttribute("nobeep"))
				this.PreventEnterBeep=System.Xml.XmlConvert.ToBoolean(ItemXmlSource.GetAttribute("nobeep"));

			System.Xml.XmlNodeList list=ItemXmlSource.GetElementsByTagName("cbitems");
			if(!m_FontCombo && list.Count>0)
			{
				foreach(System.Xml.XmlElement xmlChild in list[0].ChildNodes)
				{
					if(xmlChild.Name=="ci")
					{
						DevComponents.Editors.ComboItem ci=new DevComponents.Editors.ComboItem();
						if(xmlChild.HasAttribute("bc"))
							ci.BackColor=BarFunctions.ColorFromString(xmlChild.GetAttribute("bk"));
						if(xmlChild.HasAttribute("fn"))
							ci.FontName=xmlChild.GetAttribute("fn");
						if(xmlChild.HasAttribute("fs"))
							ci.FontSize=System.Xml.XmlConvert.ToSingle(xmlChild.GetAttribute("fs"));
						if(xmlChild.HasAttribute("fy"))
							ci.FontStyle=(FontStyle)System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("fy"));
						if(xmlChild.HasAttribute("fc"))
							ci.ForeColor=BarFunctions.ColorFromString(xmlChild.GetAttribute("fc"));
						
						ci.Image=BarFunctions.DeserializeImage(xmlChild);

						if(xmlChild.HasAttribute("img"))
							ci.ImageIndex=System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("img"));

						if(xmlChild.HasAttribute("ip"))
							ci.ImagePosition=(System.Windows.Forms.HorizontalAlignment)System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("ip"));

						if(xmlChild.HasAttribute("ItemHeight"))
							m_ComboBox.ItemHeight=System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("ItemHeight"));
						
						ci.Text=xmlChild.GetAttribute("text");

						ci.TextAlignment=(StringAlignment)System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("ta"));
						ci.TextLineAlignment=(StringAlignment)System.Xml.XmlConvert.ToInt32(xmlChild.GetAttribute("tla"));

						m_ComboBox.Items.Add(ci);

						if(xmlChild.HasAttribute("selected") && xmlChild.GetAttribute("selected")=="1")
							m_ComboBox.SelectedItem=ci;
					}
					else if(xmlChild.Name=="co")
					{
						m_ComboBox.Items.Add(xmlChild.InnerText);
						if(xmlChild.HasAttribute("selected") && xmlChild.GetAttribute("selected")=="1")
							m_ComboBox.SelectedItem=m_ComboBox.Items[m_ComboBox.Items.Count-1];
					}
				}
			}
			if(m_FontCombo)
				m_ComboBox.LoadFonts();

			if(m_ComboBox!=null)
				m_ComboBox.Enabled=this.Enabled;

            if (ItemXmlSource.HasAttribute("DisplayMembers") && m_ComboBox!=null)
                m_ComboBox.DisplayMember = ItemXmlSource.GetAttribute("DisplayMembers");
		}
Example #24
0
        private void bttOK_Click(object sender, EventArgs e)
        {
            if (txtPath.Text == "")
            {
                MessageBox.Show("请导入块图范围数据!", "提示!"); return;
            }
            if (txtOutPath.Text == "")
            {
                MessageBox.Show("请选择输出的文件夹!", "提示!"); return;
            }
            if (cboPapers.Text == "")
            {
                MessageBox.Show("请选择输出的纸张!", "提示!"); return;
            }
            if (!System.IO.File.Exists(txtPath.Text))
            {
                MessageBox.Show("导入的块图范围数据不存在!", "提示!"); return;
            }
            OutputPath = txtOutPath.Text;
            IFeatureClass pFeatureClass = GetFeatureClass(txtPath.Text);

            _extentFC = pFeatureClass;
            if (pFeatureClass == null)
            {
                MessageBox.Show("未找到指定路径下的要素!", "提示!"); return;
            }
            IGeometry pGeometry = null;
            //存储所有已经输出过的要素
            List <int> pLstFeature = new List <int>();

            m_QueryResult = new Dictionary <IGeometry, List <int> >();
            //获得整个图层的游标
            IFeatureCursor pFeatureCursor = GetFeatureCursor(pFeatureClass, null, null, esriSpatialRelEnum.esriSpatialRelUndefined);
            IFeature       pFeature       = pFeatureCursor.NextFeature();

            while (pFeature != null)
            {
                if (!pLstFeature.Contains(pFeature.OID))
                {
                    DevComponents.Editors.ComboItem cbi =
                        cboPapers.SelectedItem as DevComponents.Editors.ComboItem;
                    int[]  wh = cbi.Tag as int[];
                    double x  = wh[1] * 5,
                           y  = wh[0] * 5;
                    ///需要调整矩形框范围大小
                    pGeometry = SetGeometry(pFeature, x, y);
                    /////////

                    //存储pGeometry包含的要素却未输出过的
                    //List<IFeature> vLstFeature = new List<IFeature>();
                    List <int> vLstFeature = new List <int>();
                    //获取pGeometry包含要素的游标
                    IFeatureCursor vFeatureCursor = GetFeatureCursor(pFeatureClass, null, pGeometry, esriSpatialRelEnum.esriSpatialRelContains);
                    IFeature       vFeature       = vFeatureCursor.NextFeature();
                    while (vFeature != null)
                    {
                        if (!vLstFeature.Contains(vFeature.OID))
                        {
                            vLstFeature.Add(vFeature.OID);
                            pLstFeature.Add(vFeature.OID);
                        }
                        vFeature = vFeatureCursor.NextFeature();
                    }
                    System.Runtime.InteropServices.Marshal.ReleaseComObject(vFeatureCursor);
                    if (vLstFeature.Count != 0)
                    {
                        //添加批量出图要素集合
                        m_QueryResult.Add(pGeometry, vLstFeature);
                    }
                }

                pFeature = pFeatureCursor.NextFeature();
            }
            System.Runtime.InteropServices.Marshal.ReleaseComObject(pFeatureCursor);
            this.DialogResult = DialogResult.OK;
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX_back = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(54, 307);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(92, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(156, 307);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(92, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(65, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(194, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "ADD GROUP";
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(91, 208);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(209, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 82;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(91, 154);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(209, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 81;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(91, 125);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(209, 23);
     this.textBoxXListName.TabIndex = 77;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(8, 125);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(77, 21);
     this.labelX1.TabIndex = 78;
     this.labelX1.Text = "Group Name:";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(8, 154);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(63, 21);
     this.labelX2.TabIndex = 79;
     this.labelX2.Text = "Timeframe:";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(8, 181);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(108, 21);
     this.labelX3.TabIndex = 80;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX_back
     //
     //
     //
     //
     this.labelX_back.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX_back.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX_back.ForeColor = System.Drawing.Color.Black;
     this.labelX_back.Location = new System.Drawing.Point(3, 4);
     this.labelX_back.Name = "labelX_back";
     this.labelX_back.PaddingLeft = 6;
     this.labelX_back.Size = new System.Drawing.Size(68, 64);
     this.labelX_back.Symbol = "";
     this.labelX_back.SymbolColor = System.Drawing.Color.Green;
     this.labelX_back.SymbolSize = 50F;
     this.labelX_back.TabIndex = 105;
     this.labelX_back.Visible = false;
     this.labelX_back.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // AddListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.labelXTitle);
     this.Controls.Add(this.labelX_back);
     this.Controls.Add(this.cmbContinuationType);
     this.Controls.Add(this.cmbHistoricalPeriod);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "AddListControl";
     this.Size = new System.Drawing.Size(303, 383);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            DevComponents.Editors.ComboItem 自定义编辑器;
            this.txtConn = new System.Windows.Forms.TextBox();
            this.dataGridView1 = new System.Windows.Forms.DataGridView();
            this.descriptiontxt = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.label5 = new System.Windows.Forms.Label();
            this.label8 = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.listconditiontxt = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.listfield_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.keyfield_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.listtable_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.label10 = new System.Windows.Forms.Label();
            this.label9 = new System.Windows.Forms.Label();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.txtBoxListValues = new System.Windows.Forms.TextBox();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.label11 = new System.Windows.Forms.Label();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.txtBoxRelativePath = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.label12 = new System.Windows.Forms.Label();
            this.add_button = new DevComponents.DotNetBar.ButtonX();
            this.modification_button = new DevComponents.DotNetBar.ButtonX();
            this.delete_button = new DevComponents.DotNetBar.ButtonX();
            this.tablename_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.fieldname_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.fieldcnnametxt = new DevComponents.DotNetBar.Controls.TextBoxX();
            this.catname_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.editortype_comboBox = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.visible_checkBox = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.readonly_checkBox = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.addField_button = new DevComponents.DotNetBar.ButtonX();
            this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
            自定义编辑器 = new DevComponents.Editors.ComboItem();
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox3.SuspendLayout();
            this.SuspendLayout();
            // 
            // 自定义编辑器
            // 
            自定义编辑器.Text = "自定义编辑器";
            // 
            // txtConn
            // 
            this.txtConn.Location = new System.Drawing.Point(22, 174);
            this.txtConn.Multiline = true;
            this.txtConn.Name = "txtConn";
            this.txtConn.Size = new System.Drawing.Size(50, 56);
            this.txtConn.TabIndex = 1;
            this.txtConn.Text = "Server = jx3web; DataBase = s3design; Uid = s3design; Password = ddd12345678;";
            this.txtConn.Visible = false;
            // 
            // dataGridView1
            // 
            this.dataGridView1.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.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.dataGridView1.Location = new System.Drawing.Point(12, 236);
            this.dataGridView1.Name = "dataGridView1";
            this.dataGridView1.ReadOnly = true;
            this.dataGridView1.RowTemplate.Height = 23;
            this.dataGridView1.Size = new System.Drawing.Size(793, 298);
            this.dataGridView1.TabIndex = 2;
            this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
            // 
            // descriptiontxt
            // 
            this.descriptiontxt.Location = new System.Drawing.Point(97, 131);
            this.descriptiontxt.Multiline = true;
            this.descriptiontxt.Name = "descriptiontxt";
            this.descriptiontxt.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.descriptiontxt.Size = new System.Drawing.Size(246, 86);
            this.descriptiontxt.TabIndex = 7;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(56, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(35, 12);
            this.label1.TabIndex = 15;
            this.label1.Text = "表名:";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(20, 43);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(71, 12);
            this.label2.TabIndex = 16;
            this.label2.Text = "字段英文名:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(20, 75);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(71, 12);
            this.label3.TabIndex = 17;
            this.label3.Text = "字段中文名:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(372, 12);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(59, 12);
            this.label4.TabIndex = 18;
            this.label4.Text = "编辑类型:";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(44, 103);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(47, 12);
            this.label5.TabIndex = 19;
            this.label5.Text = "类别名:";
            // 
            // label8
            // 
            this.label8.AutoSize = true;
            this.label8.Location = new System.Drawing.Point(32, 134);
            this.label8.Name = "label8";
            this.label8.Size = new System.Drawing.Size(59, 12);
            this.label8.TabIndex = 22;
            this.label8.Text = "详细说明:";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.listconditiontxt);
            this.groupBox1.Controls.Add(this.listfield_comboBox);
            this.groupBox1.Controls.Add(this.keyfield_comboBox);
            this.groupBox1.Controls.Add(this.listtable_comboBox);
            this.groupBox1.Controls.Add(this.label10);
            this.groupBox1.Controls.Add(this.label9);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Location = new System.Drawing.Point(374, 39);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(332, 145);
            this.groupBox1.TabIndex = 28;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "下拉框(数据表)设置";
            // 
            // listconditiontxt
            // 
            // 
            // 
            // 
            this.listconditiontxt.Border.Class = "TextBoxBorder";
            this.listconditiontxt.Location = new System.Drawing.Point(117, 111);
            this.listconditiontxt.Name = "listconditiontxt";
            this.listconditiontxt.Size = new System.Drawing.Size(209, 21);
            this.listconditiontxt.TabIndex = 39;
            // 
            // listfield_comboBox
            // 
            this.listfield_comboBox.DisplayMember = "Text";
            this.listfield_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.listfield_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.listfield_comboBox.FormattingEnabled = true;
            this.listfield_comboBox.Location = new System.Drawing.Point(117, 78);
            this.listfield_comboBox.Name = "listfield_comboBox";
            this.listfield_comboBox.Size = new System.Drawing.Size(209, 22);
            this.listfield_comboBox.TabIndex = 38;
            // 
            // keyfield_comboBox
            // 
            this.keyfield_comboBox.DisplayMember = "Text";
            this.keyfield_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.keyfield_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.keyfield_comboBox.FormattingEnabled = true;
            this.keyfield_comboBox.Location = new System.Drawing.Point(117, 48);
            this.keyfield_comboBox.Name = "keyfield_comboBox";
            this.keyfield_comboBox.Size = new System.Drawing.Size(209, 22);
            this.keyfield_comboBox.TabIndex = 37;
            // 
            // listtable_comboBox
            // 
            this.listtable_comboBox.DisplayMember = "Text";
            this.listtable_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.listtable_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.listtable_comboBox.FormattingEnabled = true;
            this.listtable_comboBox.Location = new System.Drawing.Point(117, 18);
            this.listtable_comboBox.Name = "listtable_comboBox";
            this.listtable_comboBox.Size = new System.Drawing.Size(209, 22);
            this.listtable_comboBox.TabIndex = 36;
            this.listtable_comboBox.SelectedIndexChanged += new System.EventHandler(this.listtable_comboBox_SelectedIndexChanged);
            // 
            // label10
            // 
            this.label10.AutoSize = true;
            this.label10.Location = new System.Drawing.Point(16, 114);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(95, 12);
            this.label10.TabIndex = 35;
            this.label10.Text = "关联表过滤条件:";
            // 
            // label9
            // 
            this.label9.AutoSize = true;
            this.label9.Location = new System.Drawing.Point(4, 82);
            this.label9.Name = "label9";
            this.label9.Size = new System.Drawing.Size(107, 12);
            this.label9.TabIndex = 33;
            this.label9.Text = "关联表的显示字段:";
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(4, 51);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(107, 12);
            this.label7.TabIndex = 32;
            this.label7.Text = "关联表的键值字段:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(64, 23);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(47, 12);
            this.label6.TabIndex = 31;
            this.label6.Text = "关联表:";
            // 
            // txtBoxListValues
            // 
            this.txtBoxListValues.Location = new System.Drawing.Point(12, 38);
            this.txtBoxListValues.Multiline = true;
            this.txtBoxListValues.Name = "txtBoxListValues";
            this.txtBoxListValues.Size = new System.Drawing.Size(314, 112);
            this.txtBoxListValues.TabIndex = 34;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.label11);
            this.groupBox2.Controls.Add(this.txtBoxListValues);
            this.groupBox2.Location = new System.Drawing.Point(420, 249);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(361, 156);
            this.groupBox2.TabIndex = 36;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "下拉框(手工输入)设置";
            this.groupBox2.Visible = false;
            // 
            // label11
            // 
            this.label11.AutoSize = true;
            this.label11.Location = new System.Drawing.Point(10, 17);
            this.label11.Name = "label11";
            this.label11.Size = new System.Drawing.Size(149, 12);
            this.label11.TabIndex = 35;
            this.label11.Text = "键值及内容:(例:1,abcdef)";
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.txtBoxRelativePath);
            this.groupBox3.Controls.Add(this.label12);
            this.groupBox3.Location = new System.Drawing.Point(54, 249);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(332, 156);
            this.groupBox3.TabIndex = 37;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "文件相对路径";
            this.groupBox3.Visible = false;
            // 
            // txtBoxRelativePath
            // 
            // 
            // 
            // 
            this.txtBoxRelativePath.Border.Class = "TextBoxBorder";
            this.txtBoxRelativePath.Location = new System.Drawing.Point(6, 79);
            this.txtBoxRelativePath.Name = "txtBoxRelativePath";
            this.txtBoxRelativePath.Size = new System.Drawing.Size(320, 21);
            this.txtBoxRelativePath.TabIndex = 36;
            // 
            // label12
            // 
            this.label12.AutoSize = true;
            this.label12.Location = new System.Drawing.Point(10, 17);
            this.label12.Name = "label12";
            this.label12.Size = new System.Drawing.Size(305, 48);
            this.label12.TabIndex = 35;
            this.label12.Text = "相对路径:(例:\\Scripts_s\\skill\\,此路径将会与工具中\r\n设置的根目录组合为绝对路径,如工具选项中设置根\r\n路径为:e:\\client\\,则组合后" +
                "的路径为:\r\ne:\\client\\Scripts_s\\skill)";
            // 
            // add_button
            // 
            this.add_button.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.add_button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.add_button.Location = new System.Drawing.Point(722, 89);
            this.add_button.Name = "add_button";
            this.add_button.Size = new System.Drawing.Size(83, 23);
            this.add_button.TabIndex = 38;
            this.add_button.Text = "添加";
            this.add_button.Click += new System.EventHandler(this.add_button_Click);
            // 
            // modification_button
            // 
            this.modification_button.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.modification_button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.modification_button.Location = new System.Drawing.Point(722, 131);
            this.modification_button.Name = "modification_button";
            this.modification_button.Size = new System.Drawing.Size(83, 23);
            this.modification_button.TabIndex = 39;
            this.modification_button.Text = "修改";
            this.modification_button.Click += new System.EventHandler(this.modification_button_Click);
            // 
            // delete_button
            // 
            this.delete_button.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.delete_button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.delete_button.Location = new System.Drawing.Point(722, 172);
            this.delete_button.Name = "delete_button";
            this.delete_button.Size = new System.Drawing.Size(83, 23);
            this.delete_button.TabIndex = 40;
            this.delete_button.Text = "删除";
            this.delete_button.Click += new System.EventHandler(this.delete_button_Click);
            // 
            // tablename_comboBox
            // 
            this.tablename_comboBox.DisplayMember = "Text";
            this.tablename_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.tablename_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.tablename_comboBox.FormattingEnabled = true;
            this.tablename_comboBox.Location = new System.Drawing.Point(97, 7);
            this.tablename_comboBox.Name = "tablename_comboBox";
            this.tablename_comboBox.Size = new System.Drawing.Size(246, 22);
            this.tablename_comboBox.TabIndex = 41;
            this.tablename_comboBox.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
            // 
            // fieldname_comboBox
            // 
            this.fieldname_comboBox.DisplayMember = "Text";
            this.fieldname_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.fieldname_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.fieldname_comboBox.FormattingEnabled = true;
            this.fieldname_comboBox.Location = new System.Drawing.Point(97, 39);
            this.fieldname_comboBox.Name = "fieldname_comboBox";
            this.fieldname_comboBox.Size = new System.Drawing.Size(246, 22);
            this.fieldname_comboBox.TabIndex = 42;
            this.fieldname_comboBox.SelectedIndexChanged += new System.EventHandler(this.fieldname_comboBox_SelectedIndexChanged);
            // 
            // fieldcnnametxt
            // 
            // 
            // 
            // 
            this.fieldcnnametxt.Border.Class = "TextBoxBorder";
            this.fieldcnnametxt.Location = new System.Drawing.Point(97, 71);
            this.fieldcnnametxt.Name = "fieldcnnametxt";
            this.fieldcnnametxt.Size = new System.Drawing.Size(246, 21);
            this.fieldcnnametxt.TabIndex = 43;
            // 
            // catname_comboBox
            // 
            this.catname_comboBox.DisplayMember = "Text";
            this.catname_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.catname_comboBox.Location = new System.Drawing.Point(97, 99);
            this.catname_comboBox.Name = "catname_comboBox";
            this.catname_comboBox.Size = new System.Drawing.Size(246, 22);
            this.catname_comboBox.TabIndex = 44;
            // 
            // editortype_comboBox
            // 
            this.editortype_comboBox.DisplayMember = "Text";
            this.editortype_comboBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.editortype_comboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.editortype_comboBox.FormattingEnabled = true;
            this.editortype_comboBox.Items.AddRange(new object[] {
            "文本",
            "文件路径浏览",
            "文件名浏览",
            "真假值",
            "下拉框(数据库)",
            "下拉框(手工输入)",
            自定义编辑器});
            this.editortype_comboBox.Location = new System.Drawing.Point(437, 7);
            this.editortype_comboBox.Name = "editortype_comboBox";
            this.editortype_comboBox.Size = new System.Drawing.Size(209, 22);
            this.editortype_comboBox.TabIndex = 45;
            this.editortype_comboBox.SelectedIndexChanged += new System.EventHandler(this.editortype_comboBox_SelectedIndexChanged);
            // 
            // visible_checkBox
            // 
            this.visible_checkBox.Checked = true;
            this.visible_checkBox.Location = new System.Drawing.Point(392, 198);
            this.visible_checkBox.Name = "visible_checkBox";
            this.visible_checkBox.Size = new System.Drawing.Size(75, 23);
            this.visible_checkBox.TabIndex = 46;
            this.visible_checkBox.Text = "显示";
            // 
            // readonly_checkBox
            // 
            this.readonly_checkBox.Location = new System.Drawing.Point(473, 198);
            this.readonly_checkBox.Name = "readonly_checkBox";
            this.readonly_checkBox.Size = new System.Drawing.Size(75, 23);
            this.readonly_checkBox.TabIndex = 47;
            this.readonly_checkBox.Text = "只读";
            // 
            // addField_button
            // 
            this.addField_button.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.addField_button.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.addField_button.Location = new System.Drawing.Point(722, 7);
            this.addField_button.Name = "addField_button";
            this.addField_button.Size = new System.Drawing.Size(83, 23);
            this.addField_button.TabIndex = 48;
            this.addField_button.Text = "添加新字段";
            this.addField_button.Click += new System.EventHandler(this.addField_button_Click);
            // 
            // buttonX1
            // 
            this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.buttonX1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.buttonX1.Location = new System.Drawing.Point(722, 49);
            this.buttonX1.Name = "buttonX1";
            this.buttonX1.Size = new System.Drawing.Size(83, 25);
            this.buttonX1.TabIndex = 49;
            this.buttonX1.Text = "添加关联字段";
            // 
            // MetainfoEditorForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.SystemColors.InactiveCaptionText;
            this.ClientSize = new System.Drawing.Size(813, 546);
            this.Controls.Add(this.buttonX1);
            this.Controls.Add(this.addField_button);
            this.Controls.Add(this.readonly_checkBox);
            this.Controls.Add(this.visible_checkBox);
            this.Controls.Add(this.editortype_comboBox);
            this.Controls.Add(this.catname_comboBox);
            this.Controls.Add(this.fieldcnnametxt);
            this.Controls.Add(this.fieldname_comboBox);
            this.Controls.Add(this.tablename_comboBox);
            this.Controls.Add(this.delete_button);
            this.Controls.Add(this.modification_button);
            this.Controls.Add(this.add_button);
            this.Controls.Add(this.groupBox3);
            this.Controls.Add(this.groupBox2);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.label8);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.descriptiontxt);
            this.Controls.Add(this.dataGridView1);
            this.Controls.Add(this.txtConn);
            this.Name = "MetainfoEditorForm";
            this.Text = "表元信息维护工具";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MetainfoEditorForm_FormClosed);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MetainfoEditorForm_FormClosing);
            this.Load += new System.EventHandler(this.Form1_Load);
            ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Example #27
0
        private void LoadData()
        {
            tv.Nodes.Clear();
            cbxParent.Items.Clear();

            ds = Program.SQL.SelectAll("SELECT * FROM schedules_sections;");
            if (ds.Tables.Count > 0)
            {
                foreach (DataRow row in ds.Tables[0].Rows)
                {
                    DevComponents.AdvTree.Node tn = new DevComponents.AdvTree.Node();
                    string sName = row["name"].ToString();
                    if (Convert.ToInt32(row["parent"]) == 0)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Tag = row["id"];
                        i.Text = sName;
                        cbxParent.Items.Add(i);
                    }
                    tn.Text = sName;
                    tn.Tag = row["id"].ToString();
                    tv.Nodes.Add(tn);
                }
            }
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevComponents.Editors.ComboItem comboItemClase;
     DevComponents.Editors.ComboItem comboItemOtro;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainCalendarViewControl));
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.buttonBuscar = new DevComponents.DotNetBar.ButtonX();
     this.buttonAddSerie = new DevComponents.DotNetBar.ButtonX();
     this.buttonCancelar = new DevComponents.DotNetBar.ButtonX();
     this.buttonAceptar = new DevComponents.DotNetBar.ButtonX();
     this.superTabControl = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanelClase = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.asignacionClaseControl = new Control_Aulas_UAM.AsignacionClaseControl();
     this.superTabItemClase = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanelOtro = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.asignacionVariosControl = new Control_Aulas_UAM.AsignacionVariosControl();
     this.superTabItemOtro = new DevComponents.DotNetBar.SuperTabItem();
     this.comboBoxTipoAsignacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.calendarControl = new Control_Aulas_UAM.CalendarControl();
     comboItemClase = new DevComponents.Editors.ComboItem();
     comboItemOtro = new DevComponents.Editors.ComboItem();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl)).BeginInit();
     this.superTabControl.SuspendLayout();
     this.superTabControlPanelClase.SuspendLayout();
     this.superTabControlPanelOtro.SuspendLayout();
     this.SuspendLayout();
     //
     // comboItemClase
     //
     comboItemClase.Text = "Clase";
     comboItemClase.Value = "";
     //
     // comboItemOtro
     //
     comboItemOtro.Text = "Otro";
     comboItemOtro.Value = "Otro";
     //
     // expandablePanel1
     //
     this.expandablePanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandablePanel1.Controls.Add(this.buttonBuscar);
     this.expandablePanel1.Controls.Add(this.buttonAddSerie);
     this.expandablePanel1.Controls.Add(this.buttonCancelar);
     this.expandablePanel1.Controls.Add(this.buttonAceptar);
     this.expandablePanel1.Controls.Add(this.superTabControl);
     this.expandablePanel1.Controls.Add(this.comboBoxTipoAsignacion);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Right;
     this.expandablePanel1.ExpandButtonVisible = false;
     this.expandablePanel1.ExpandOnTitleClick = true;
     this.expandablePanel1.Location = new System.Drawing.Point(815, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(264, 557);
     this.expandablePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandablePanel1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.expandablePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandablePanel1.Style.GradientAngle = 90;
     this.expandablePanel1.TabIndex = 0;
     this.expandablePanel1.TitleHeight = 0;
     this.expandablePanel1.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.TitleStyle.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.expandablePanel1.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandablePanel1.TitleStyle.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.expandablePanel1.TitleStyle.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.expandablePanel1.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandablePanel1.TitleStyle.GradientAngle = 90;
     this.expandablePanel1.TitleText = "Title Bar";
     this.expandablePanel1.Visible = false;
     //
     // buttonBuscar
     //
     this.buttonBuscar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonBuscar.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonBuscar.Image = ((System.Drawing.Image)(resources.GetObject("buttonBuscar.Image")));
     this.buttonBuscar.Location = new System.Drawing.Point(147, 48);
     this.buttonBuscar.Name = "buttonBuscar";
     this.buttonBuscar.Size = new System.Drawing.Size(34, 34);
     this.buttonBuscar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonBuscar.TabIndex = 7;
     this.buttonBuscar.Tooltip = "Buscar";
     this.buttonBuscar.Click += new System.EventHandler(this.buttonBuscar_Click);
     //
     // buttonAddSerie
     //
     this.buttonAddSerie.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAddSerie.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonAddSerie.Image = ((System.Drawing.Image)(resources.GetObject("buttonAddSerie.Image")));
     this.buttonAddSerie.Location = new System.Drawing.Point(107, 48);
     this.buttonAddSerie.Name = "buttonAddSerie";
     this.buttonAddSerie.Size = new System.Drawing.Size(34, 34);
     this.buttonAddSerie.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonAddSerie.TabIndex = 6;
     this.buttonAddSerie.Tooltip = "Agregar Serie";
     this.buttonAddSerie.Click += new System.EventHandler(this.buttonAddSerie_Click);
     //
     // buttonCancelar
     //
     this.buttonCancelar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonCancelar.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonCancelar.Image = ((System.Drawing.Image)(resources.GetObject("buttonCancelar.Image")));
     this.buttonCancelar.Location = new System.Drawing.Point(227, 48);
     this.buttonCancelar.Name = "buttonCancelar";
     this.buttonCancelar.Size = new System.Drawing.Size(34, 34);
     this.buttonCancelar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonCancelar.TabIndex = 5;
     this.buttonCancelar.Tooltip = "Cancelar";
     this.buttonCancelar.Click += new System.EventHandler(this.buttonCancelar_Click);
     //
     // buttonAceptar
     //
     this.buttonAceptar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAceptar.Image = ((System.Drawing.Image)(resources.GetObject("buttonAceptar.Image")));
     this.buttonAceptar.Location = new System.Drawing.Point(187, 48);
     this.buttonAceptar.Name = "buttonAceptar";
     this.buttonAceptar.Size = new System.Drawing.Size(34, 34);
     this.buttonAceptar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonAceptar.TabIndex = 4;
     this.buttonAceptar.Tooltip = "Aceptar";
     this.buttonAceptar.Click += new System.EventHandler(this.buttonAceptar_Click);
     //
     // superTabControl
     //
     this.superTabControl.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.superTabControl.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     //
     //
     //
     this.superTabControl.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl.ControlBox.MenuBox.Name = "";
     this.superTabControl.ControlBox.Name = "";
     this.superTabControl.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl.ControlBox.MenuBox,
     this.superTabControl.ControlBox.CloseBox});
     this.superTabControl.ControlBox.Visible = false;
     this.superTabControl.Controls.Add(this.superTabControlPanelClase);
     this.superTabControl.Controls.Add(this.superTabControlPanelOtro);
     this.superTabControl.Location = new System.Drawing.Point(3, 114);
     this.superTabControl.Name = "superTabControl";
     this.superTabControl.ReorderTabsEnabled = false;
     this.superTabControl.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.superTabControl.SelectedTabIndex = 0;
     this.superTabControl.Size = new System.Drawing.Size(258, 439);
     this.superTabControl.TabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl.TabIndex = 3;
     this.superTabControl.TabLayoutType = DevComponents.DotNetBar.eSuperTabLayoutType.SingleLineFit;
     this.superTabControl.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabItemClase,
     this.superTabItemOtro});
     this.superTabControl.TabsVisible = false;
     //
     // superTabControlPanelClase
     //
     this.superTabControlPanelClase.Controls.Add(this.asignacionClaseControl);
     this.superTabControlPanelClase.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanelClase.Location = new System.Drawing.Point(0, 25);
     this.superTabControlPanelClase.Name = "superTabControlPanelClase";
     this.superTabControlPanelClase.Size = new System.Drawing.Size(258, 414);
     this.superTabControlPanelClase.TabIndex = 1;
     this.superTabControlPanelClase.TabItem = this.superTabItemClase;
     //
     // asignacionClaseControl
     //
     this.asignacionClaseControl.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.asignacionClaseControl.Asignatura = null;
     this.asignacionClaseControl.Asignaturas = null;
     this.asignacionClaseControl.Aula = null;
     this.asignacionClaseControl.Aulas = null;
     this.asignacionClaseControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(255)))));
     this.asignacionClaseControl.Fin = new System.DateTime(2012, 10, 29, 5, 53, 0, 0);
     this.asignacionClaseControl.Grupo = null;
     this.asignacionClaseControl.Inicio = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     this.asignacionClaseControl.Location = new System.Drawing.Point(0, 0);
     this.asignacionClaseControl.Name = "asignacionClaseControl";
     this.asignacionClaseControl.ReadOnly = false;
     this.asignacionClaseControl.Size = new System.Drawing.Size(255, 411);
     this.asignacionClaseControl.TabIndex = 0;
     //
     // superTabItemClase
     //
     this.superTabItemClase.AttachedControl = this.superTabControlPanelClase;
     this.superTabItemClase.GlobalItem = false;
     this.superTabItemClase.Name = "superTabItemClase";
     this.superTabItemClase.Text = "Clase";
     //
     // superTabControlPanelOtro
     //
     this.superTabControlPanelOtro.Controls.Add(this.asignacionVariosControl);
     this.superTabControlPanelOtro.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanelOtro.Location = new System.Drawing.Point(0, 0);
     this.superTabControlPanelOtro.Name = "superTabControlPanelOtro";
     this.superTabControlPanelOtro.Size = new System.Drawing.Size(258, 439);
     this.superTabControlPanelOtro.TabIndex = 0;
     this.superTabControlPanelOtro.TabItem = this.superTabItemOtro;
     //
     // asignacionVariosControl
     //
     this.asignacionVariosControl.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.asignacionVariosControl.Aula = null;
     this.asignacionVariosControl.Aulas = null;
     this.asignacionVariosControl.AutoScroll = true;
     this.asignacionVariosControl.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(255)))));
     this.asignacionVariosControl.Fin = new System.DateTime(2012, 10, 29, 4, 53, 39, 0);
     this.asignacionVariosControl.Inicio = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     this.asignacionVariosControl.Location = new System.Drawing.Point(0, 0);
     this.asignacionVariosControl.Name = "asignacionVariosControl";
     this.asignacionVariosControl.Observaciones = "";
     this.asignacionVariosControl.ReadOnly = false;
     this.asignacionVariosControl.Size = new System.Drawing.Size(258, 461);
     this.asignacionVariosControl.TabIndex = 0;
     this.asignacionVariosControl.TipoUso = null;
     //
     // superTabItemOtro
     //
     this.superTabItemOtro.AttachedControl = this.superTabControlPanelOtro;
     this.superTabItemOtro.GlobalItem = false;
     this.superTabItemOtro.Name = "superTabItemOtro";
     this.superTabItemOtro.Text = "Otro";
     //
     // comboBoxTipoAsignacion
     //
     this.comboBoxTipoAsignacion.DisplayMember = "Text";
     this.comboBoxTipoAsignacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxTipoAsignacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxTipoAsignacion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F);
     this.comboBoxTipoAsignacion.FormattingEnabled = true;
     this.comboBoxTipoAsignacion.ItemHeight = 16;
     this.comboBoxTipoAsignacion.Items.AddRange(new object[] {
     comboItemClase,
     comboItemOtro});
     this.comboBoxTipoAsignacion.Location = new System.Drawing.Point(27, 88);
     this.comboBoxTipoAsignacion.Name = "comboBoxTipoAsignacion";
     this.comboBoxTipoAsignacion.Size = new System.Drawing.Size(194, 22);
     this.comboBoxTipoAsignacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.comboBoxTipoAsignacion.TabIndex = 2;
     this.comboBoxTipoAsignacion.SelectedIndexChanged += new System.EventHandler(this.comboBoxExTipoAsignacion_SelectedIndexChanged);
     //
     // superTabItem1
     //
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Clase";
     //
     // calendarControl
     //
     this.calendarControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.calendarControl.Location = new System.Drawing.Point(0, 0);
     this.calendarControl.Name = "calendarControl";
     this.calendarControl.ReadOnly = true;
     this.calendarControl.Size = new System.Drawing.Size(815, 557);
     this.calendarControl.TabIndex = 1;
     //
     // MainCalendarViewControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.calendarControl);
     this.Controls.Add(this.expandablePanel1);
     this.Name = "MainCalendarViewControl";
     this.Size = new System.Drawing.Size(1079, 557);
     this.Load += new System.EventHandler(this.AsignacionSimpleControl_Load);
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl)).EndInit();
     this.superTabControl.ResumeLayout(false);
     this.superTabControlPanelClase.ResumeLayout(false);
     this.superTabControlPanelOtro.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #29
0
        //yjl 20110827 modify 根据渲染对象初始化界面
        public void InitRasterRendererObject(IRasterLayer inRL, IRasterRenderer pRenderer)
        {
            flag = true;
            IRaster pRaster            = inRL.Raster;
            IRasterBandCollection pRBC = pRaster as IRasterBandCollection;
            IRasterBand           pRB  = pRBC.Item(0);//获取第一波段
            bool hasStatis             = false;

            pRB.HasStatistics(out hasStatis);
            if (!hasStatis)
            {
                pRB.ComputeStatsAndHist();//统计直方图
            }
            IRasterStatistics pRStatis = pRB.Statistics;

            minValueInput.Value = pRStatis.Minimum;//最大最小值
            maxValueInput.Value = pRStatis.Maximum;

            IRasterStretchColorRampRenderer pRSCRRenderer = pRenderer as IRasterStretchColorRampRenderer;

            if (pRSCRRenderer.ColorScheme != "")
            {
                cmbColorRamp.Text = pRSCRRenderer.ColorScheme;//颜色方案
            }
            DevComponents.Editors.ComboItem selItem = cmbColorRamp.SelectedItem as DevComponents.Editors.ComboItem;
            Bitmap bmp = new Bitmap(selItem.Image);

            bmp.RotateFlip(RotateFlipType.Rotate270FlipNone);
            pBoxColorRamp.Image = bmp;
            //txtMaxLb.Text=pRSCRRenderer.LabelHigh;//标签
            //txtMinLb.Text=pRSCRRenderer.LabelLow;
            IRasterStretch pRStretch = pRSCRRenderer as IRasterStretch;

            if (pRStretch.Background)//背景值
            {
                checkBackgroundColor.Checked = true;
                dbBackgrdVal.Value           = pRStretch.get_BackgroundValues();
                IColor pColor = pRStretch.BackgroundColor;      //esri color
                System.Drawing.Color bakColor = cWinColor(pColor);
                colorPickerBackGround.SelectedColor = bakColor; //背景值颜色
            }
            else
            {
                checkBackgroundColor.Checked = false;
                dbBackgrdVal.Enabled         = false;
            }
            if (pRStretch.Invert)//色带方向
            {
                checkReverse.Checked = true;
            }
            else
            {
                checkReverse.Checked = false;
            }
            IRasterDisplayProps pRDP = pRSCRRenderer as IRasterDisplayProps;

            System.Drawing.Color nodataColor = cWinColor(pRDP.NoDataColor);
            colorPickerNoData.SelectedColor = nodataColor;//无效值颜色


            flag = false;
        }
Example #30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.cbFrequenciaPagos = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cbSemana = new DevComponents.Editors.ComboItem();
     this.cbMes = new DevComponents.Editors.ComboItem();
     this.cbAno = new DevComponents.Editors.ComboItem();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.pago_MembresiaTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.Pago_MembresiaTableAdapter();
     this.dgPagosEmpresa = new System.Windows.Forms.DataGridView();
     this.pagoMembresiaBindingSource2 = new System.Windows.Forms.BindingSource(this.components);
     this.domainNumCuotas = new System.Windows.Forms.DomainUpDown();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnBorrarPago = new DevComponents.DotNetBar.ButtonX();
     this.btnGenerarPagos = new DevComponents.DotNetBar.ButtonX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.lbTotalPago = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPagosEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pagoMembresiaBindingSource2)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // cbFrequenciaPagos
     //
     this.cbFrequenciaPagos.DisplayMember = "Text";
     this.cbFrequenciaPagos.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbFrequenciaPagos.FormattingEnabled = true;
     this.cbFrequenciaPagos.ItemHeight = 14;
     this.cbFrequenciaPagos.Items.AddRange(new object[] {
     this.cbSemana,
     this.cbMes,
     this.cbAno});
     this.cbFrequenciaPagos.Location = new System.Drawing.Point(276, 49);
     this.cbFrequenciaPagos.Name = "cbFrequenciaPagos";
     this.cbFrequenciaPagos.Size = new System.Drawing.Size(121, 20);
     this.cbFrequenciaPagos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbFrequenciaPagos.TabIndex = 3;
     //
     // cbSemana
     //
     this.cbSemana.Text = "Semanal";
     //
     // cbMes
     //
     this.cbMes.Text = "Mes";
     //
     // cbAno
     //
     this.cbAno.Text = "Año";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(19, 47);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(107, 23);
     this.labelX2.TabIndex = 4;
     this.labelX2.Text = "Cantidad de Cuotas:";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(212, 47);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(69, 23);
     this.labelX3.TabIndex = 5;
     this.labelX3.Text = "Frequencia:";
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // pago_MembresiaTableAdapter
     //
     this.pago_MembresiaTableAdapter.ClearBeforeFill = true;
     //
     // dgPagosEmpresa
     //
     this.dgPagosEmpresa.AllowUserToAddRows = false;
     this.dgPagosEmpresa.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgPagosEmpresa.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgPagosEmpresa.Location = new System.Drawing.Point(12, 157);
     this.dgPagosEmpresa.Name = "dgPagosEmpresa";
     this.dgPagosEmpresa.Size = new System.Drawing.Size(706, 186);
     this.dgPagosEmpresa.TabIndex = 6;
     this.dgPagosEmpresa.DataSourceChanged += new System.EventHandler(this.dgPagosEmpresa_DataSourceChanged);
     this.dgPagosEmpresa.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgPagosEmpresa_CellBeginEdit);
     this.dgPagosEmpresa.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgPagosEmpresa_CellEndEdit);
     //
     // pagoMembresiaBindingSource2
     //
     this.pagoMembresiaBindingSource2.DataMember = "Pago_Membresia";
     this.pagoMembresiaBindingSource2.DataSource = this.cADINDataSet;
     //
     // domainNumCuotas
     //
     this.domainNumCuotas.Items.Add("12");
     this.domainNumCuotas.Items.Add("11");
     this.domainNumCuotas.Items.Add("10");
     this.domainNumCuotas.Items.Add("9");
     this.domainNumCuotas.Items.Add("8");
     this.domainNumCuotas.Items.Add("7");
     this.domainNumCuotas.Items.Add("6");
     this.domainNumCuotas.Items.Add("5");
     this.domainNumCuotas.Items.Add("4");
     this.domainNumCuotas.Items.Add("3");
     this.domainNumCuotas.Items.Add("2");
     this.domainNumCuotas.Items.Add("1");
     this.domainNumCuotas.Location = new System.Drawing.Point(124, 49);
     this.domainNumCuotas.Name = "domainNumCuotas";
     this.domainNumCuotas.Size = new System.Drawing.Size(58, 20);
     this.domainNumCuotas.TabIndex = 7;
     this.domainNumCuotas.SelectedItemChanged += new System.EventHandler(this.domainNumCuotas_SelectedItemChanged);
     //
     // groupBox1
     //
     this.groupBox1.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.groupBox1.Controls.Add(this.btnBorrarPago);
     this.groupBox1.Controls.Add(this.btnGenerarPagos);
     this.groupBox1.Controls.Add(this.cbFrequenciaPagos);
     this.groupBox1.Controls.Add(this.domainNumCuotas);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Location = new System.Drawing.Point(12, 28);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(566, 114);
     this.groupBox1.TabIndex = 9;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Generación de Pagos";
     //
     // btnBorrarPago
     //
     this.btnBorrarPago.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBorrarPago.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBorrarPago.Location = new System.Drawing.Point(423, 63);
     this.btnBorrarPago.Name = "btnBorrarPago";
     this.btnBorrarPago.Size = new System.Drawing.Size(106, 23);
     this.btnBorrarPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBorrarPago.TabIndex = 9;
     this.btnBorrarPago.Text = "Borrar Pago(s)";
     //
     // btnGenerarPagos
     //
     this.btnGenerarPagos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnGenerarPagos.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnGenerarPagos.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGenerarPagos.Location = new System.Drawing.Point(423, 23);
     this.btnGenerarPagos.Name = "btnGenerarPagos";
     this.btnGenerarPagos.Size = new System.Drawing.Size(106, 23);
     this.btnGenerarPagos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnGenerarPagos.TabIndex = 8;
     this.btnGenerarPagos.Text = "Generar Pagos";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.ActiveCaption;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Location = new System.Drawing.Point(584, 28);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(134, 31);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background;
     this.panelEx1.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 10;
     this.panelEx1.Text = "Total a pagar Por Tarifa";
     this.panelEx1.Click += new System.EventHandler(this.panelEx1_Click);
     //
     // lbTotalPago
     //
     this.lbTotalPago.CanvasColor = System.Drawing.SystemColors.Control;
     this.lbTotalPago.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.lbTotalPago.Location = new System.Drawing.Point(584, 51);
     this.lbTotalPago.Name = "lbTotalPago";
     this.lbTotalPago.Size = new System.Drawing.Size(134, 91);
     this.lbTotalPago.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.lbTotalPago.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbTotalPago.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.lbTotalPago.Style.BackgroundImagePosition = DevComponents.DotNetBar.eBackgroundImagePosition.Tile;
     this.lbTotalPago.Style.Border = DevComponents.DotNetBar.eBorderType.DoubleLine;
     this.lbTotalPago.Style.Font = new System.Drawing.Font("Lucida Sans Typewriter", 15F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbTotalPago.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.lbTotalPago.Style.GradientAngle = 90;
     this.lbTotalPago.TabIndex = 11;
     this.lbTotalPago.Text = "Aqui va el Monto a Pagar";
     //
     // Pagos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::Sistema_De_Administracion_De_Servicios.Properties.Resources.form_background2;
     this.ClientSize = new System.Drawing.Size(734, 383);
     this.Controls.Add(this.lbTotalPago);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.dgPagosEmpresa);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Name = "Pagos";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Pagos";
     this.Load += new System.EventHandler(this.Pagos_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgPagosEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pagoMembresiaBindingSource2)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.txtNombreCliente = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txtMonto = new DevComponents.DotNetBar.Controls.MaskedTextBoxAdv();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.radioMembresia = new System.Windows.Forms.RadioButton();
     this.radioCaso = new System.Windows.Forms.RadioButton();
     this.radioOtro = new System.Windows.Forms.RadioButton();
     this.tabControl2 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnBuscarCaso = new DevComponents.DotNetBar.ButtonX();
     this.txtDinamico = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lbDinamico = new DevComponents.DotNetBar.LabelX();
     this.btnAgregarPago = new DevComponents.DotNetBar.ButtonX();
     this.btnCrearRecibo = new DevComponents.DotNetBar.ButtonX();
     this.fechaPago = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txtDescripcion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtRecibidoPor = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.txtObservacion = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.comboMoneda = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.dataGridDescripcionPago = new System.Windows.Forms.DataGridView();
     this.descripcion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.control = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecha = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.peri_pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto_pend = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.observaciones = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cod_caso = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monto_Pago = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).BeginInit();
     this.tabControl2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fechaPago)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridDescripcionPago)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // txtNombreCliente
     //
     this.txtNombreCliente.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtNombreCliente.Border.Class = "TextBoxBorder";
     this.txtNombreCliente.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombreCliente.ForeColor = System.Drawing.Color.Black;
     this.txtNombreCliente.Location = new System.Drawing.Point(74, 15);
     this.txtNombreCliente.Name = "txtNombreCliente";
     this.txtNombreCliente.Size = new System.Drawing.Size(361, 20);
     this.txtNombreCliente.TabIndex = 1;
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(26, 13);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(48, 23);
     this.labelX3.TabIndex = 6;
     this.labelX3.Text = "Cliente:";
     //
     // txtMonto
     //
     //
     //
     //
     this.txtMonto.BackgroundStyle.Class = "TextBoxBorder";
     this.txtMonto.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtMonto.ButtonClear.Visible = true;
     this.txtMonto.CutCopyMaskFormat = System.Windows.Forms.MaskFormat.IncludeLiterals;
     this.txtMonto.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Default;
     this.txtMonto.Location = new System.Drawing.Point(74, 191);
     this.txtMonto.Name = "txtMonto";
     this.txtMonto.Size = new System.Drawing.Size(99, 20);
     this.txtMonto.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.txtMonto.TabIndex = 4;
     this.txtMonto.Text = "";
     this.txtMonto.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtMonto.TextMaskFormat = System.Windows.Forms.MaskFormat.ExcludePromptAndLiterals;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(21, 188);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(43, 23);
     this.labelX4.TabIndex = 4;
     this.labelX4.Text = "Importe:";
     //
     // radioMembresia
     //
     this.radioMembresia.AutoSize = true;
     this.radioMembresia.BackColor = System.Drawing.Color.Transparent;
     this.radioMembresia.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioMembresia.Location = new System.Drawing.Point(44, 19);
     this.radioMembresia.Name = "radioMembresia";
     this.radioMembresia.Size = new System.Drawing.Size(88, 19);
     this.radioMembresia.TabIndex = 3;
     this.radioMembresia.TabStop = true;
     this.radioMembresia.Text = "Membresia";
     this.radioMembresia.UseVisualStyleBackColor = false;
     //
     // radioCaso
     //
     this.radioCaso.AutoSize = true;
     this.radioCaso.BackColor = System.Drawing.Color.Transparent;
     this.radioCaso.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioCaso.Location = new System.Drawing.Point(148, 19);
     this.radioCaso.Name = "radioCaso";
     this.radioCaso.Size = new System.Drawing.Size(161, 19);
     this.radioCaso.TabIndex = 0;
     this.radioCaso.TabStop = true;
     this.radioCaso.Text = "Pago Por Servicio (Caso)";
     this.radioCaso.UseVisualStyleBackColor = false;
     //
     // radioOtro
     //
     this.radioOtro.AutoSize = true;
     this.radioOtro.BackColor = System.Drawing.Color.Transparent;
     this.radioOtro.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioOtro.Location = new System.Drawing.Point(323, 19);
     this.radioOtro.Name = "radioOtro";
     this.radioOtro.Size = new System.Drawing.Size(48, 19);
     this.radioOtro.TabIndex = 0;
     this.radioOtro.TabStop = true;
     this.radioOtro.Text = "Otro";
     this.radioOtro.UseVisualStyleBackColor = false;
     //
     // tabControl2
     //
     this.tabControl2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabControl2.CanReorderTabs = true;
     this.tabControl2.Controls.Add(this.tabControlPanel1);
     this.tabControl2.ForeColor = System.Drawing.Color.Black;
     this.tabControl2.Location = new System.Drawing.Point(12, 1);
     this.tabControl2.Name = "tabControl2";
     this.tabControl2.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.tabControl2.SelectedTabIndex = 0;
     this.tabControl2.Size = new System.Drawing.Size(458, 451);
     this.tabControl2.Style = DevComponents.DotNetBar.eTabStripStyle.SimulatedTheme;
     this.tabControl2.TabIndex = 10;
     this.tabControl2.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabControl2.Tabs.Add(this.tabItem1);
     this.tabControl2.Text = "tabControl2";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.groupBox1);
     this.tabControlPanel1.Controls.Add(this.btnAgregarPago);
     this.tabControlPanel1.Controls.Add(this.btnCrearRecibo);
     this.tabControlPanel1.Controls.Add(this.fechaPago);
     this.tabControlPanel1.Controls.Add(this.labelX7);
     this.tabControlPanel1.Controls.Add(this.labelX5);
     this.tabControlPanel1.Controls.Add(this.txtDescripcion);
     this.tabControlPanel1.Controls.Add(this.txtRecibidoPor);
     this.tabControlPanel1.Controls.Add(this.labelX6);
     this.tabControlPanel1.Controls.Add(this.labelX2);
     this.tabControlPanel1.Controls.Add(this.txtObservacion);
     this.tabControlPanel1.Controls.Add(this.labelX3);
     this.tabControlPanel1.Controls.Add(this.txtNombreCliente);
     this.tabControlPanel1.Controls.Add(this.comboMoneda);
     this.tabControlPanel1.Controls.Add(this.txtMonto);
     this.tabControlPanel1.Controls.Add(this.labelX4);
     this.tabControlPanel1.Controls.Add(this.labelX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 26);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(458, 425);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.White;
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.White;
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(172)))), ((int)(((byte)(168)))), ((int)(((byte)(153)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = -90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.tabItem1;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.btnBuscarCaso);
     this.groupBox1.Controls.Add(this.txtDinamico);
     this.groupBox1.Controls.Add(this.lbDinamico);
     this.groupBox1.Controls.Add(this.radioMembresia);
     this.groupBox1.Controls.Add(this.radioCaso);
     this.groupBox1.Controls.Add(this.radioOtro);
     this.groupBox1.Location = new System.Drawing.Point(21, 92);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(414, 90);
     this.groupBox1.TabIndex = 17;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Concepto";
     //
     // btnBuscarCaso
     //
     this.btnBuscarCaso.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBuscarCaso.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBuscarCaso.Location = new System.Drawing.Point(278, 55);
     this.btnBuscarCaso.Name = "btnBuscarCaso";
     this.btnBuscarCaso.Size = new System.Drawing.Size(56, 20);
     this.btnBuscarCaso.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBuscarCaso.TabIndex = 5;
     this.btnBuscarCaso.Text = "Buscar";
     this.btnBuscarCaso.Click += new System.EventHandler(this.btnBuscarCaso_Click);
     //
     // txtDinamico
     //
     this.txtDinamico.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtDinamico.Border.Class = "TextBoxBorder";
     this.txtDinamico.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDinamico.ForeColor = System.Drawing.Color.Black;
     this.txtDinamico.Location = new System.Drawing.Point(172, 55);
     this.txtDinamico.Name = "txtDinamico";
     this.txtDinamico.Size = new System.Drawing.Size(100, 20);
     this.txtDinamico.TabIndex = 4;
     //
     // lbDinamico
     //
     //
     //
     //
     this.lbDinamico.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbDinamico.Location = new System.Drawing.Point(109, 53);
     this.lbDinamico.Name = "lbDinamico";
     this.lbDinamico.Size = new System.Drawing.Size(56, 23);
     this.lbDinamico.TabIndex = 3;
     this.lbDinamico.Text = "labelX8";
     this.lbDinamico.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // btnAgregarPago
     //
     this.btnAgregarPago.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAgregarPago.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAgregarPago.Location = new System.Drawing.Point(180, 389);
     this.btnAgregarPago.Name = "btnAgregarPago";
     this.btnAgregarPago.Size = new System.Drawing.Size(104, 23);
     this.btnAgregarPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnAgregarPago.TabIndex = 8;
     this.btnAgregarPago.Text = "Agregar";
     //
     // btnCrearRecibo
     //
     this.btnCrearRecibo.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCrearRecibo.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCrearRecibo.Location = new System.Drawing.Point(290, 389);
     this.btnCrearRecibo.Name = "btnCrearRecibo";
     this.btnCrearRecibo.Size = new System.Drawing.Size(145, 23);
     this.btnCrearRecibo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCrearRecibo.TabIndex = 9;
     this.btnCrearRecibo.Text = "Crear Recibo";
     this.btnCrearRecibo.Click += new System.EventHandler(this.btnCrearRecibo_Click);
     //
     // fechaPago
     //
     //
     //
     //
     this.fechaPago.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechaPago.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechaPago.ButtonDropDown.Visible = true;
     this.fechaPago.IsPopupCalendarOpen = false;
     this.fechaPago.Location = new System.Drawing.Point(331, 56);
     //
     //
     //
     this.fechaPago.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechaPago.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechaPago.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechaPago.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.DisplayMonth = new System.DateTime(2012, 7, 1, 0, 0, 0, 0);
     this.fechaPago.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechaPago.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechaPago.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechaPago.MonthCalendar.TodayButtonVisible = true;
     this.fechaPago.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechaPago.Name = "fechaPago";
     this.fechaPago.Size = new System.Drawing.Size(104, 20);
     this.fechaPago.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechaPago.TabIndex = 13;
     //
     // labelX7
     //
     this.labelX7.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX7.Location = new System.Drawing.Point(21, 218);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(75, 23);
     this.labelX7.TabIndex = 14;
     this.labelX7.Text = "Descripción: ";
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(290, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 23);
     this.labelX5.TabIndex = 15;
     this.labelX5.Text = "Fecha:";
     //
     // txtDescripcion
     //
     this.txtDescripcion.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtDescripcion.Border.Class = "TextBoxBorder";
     this.txtDescripcion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtDescripcion.ForeColor = System.Drawing.Color.Black;
     this.txtDescripcion.Location = new System.Drawing.Point(21, 247);
     this.txtDescripcion.Multiline = true;
     this.txtDescripcion.Name = "txtDescripcion";
     this.txtDescripcion.Size = new System.Drawing.Size(414, 19);
     this.txtDescripcion.TabIndex = 6;
     //
     // txtRecibidoPor
     //
     this.txtRecibidoPor.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtRecibidoPor.Border.Class = "TextBoxBorder";
     this.txtRecibidoPor.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtRecibidoPor.ForeColor = System.Drawing.Color.Black;
     this.txtRecibidoPor.Location = new System.Drawing.Point(75, 54);
     this.txtRecibidoPor.Name = "txtRecibidoPor";
     this.txtRecibidoPor.Size = new System.Drawing.Size(173, 20);
     this.txtRecibidoPor.TabIndex = 2;
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(21, 272);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(75, 23);
     this.labelX6.TabIndex = 4;
     this.labelX6.Text = "Observacion: ";
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(8, 51);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(71, 23);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "Recibido por:";
     //
     // txtObservacion
     //
     this.txtObservacion.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtObservacion.Border.Class = "TextBoxBorder";
     this.txtObservacion.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtObservacion.ForeColor = System.Drawing.Color.Black;
     this.txtObservacion.Location = new System.Drawing.Point(21, 301);
     this.txtObservacion.Multiline = true;
     this.txtObservacion.Name = "txtObservacion";
     this.txtObservacion.Size = new System.Drawing.Size(414, 82);
     this.txtObservacion.TabIndex = 7;
     //
     // comboMoneda
     //
     this.comboMoneda.DisplayMember = "Text";
     this.comboMoneda.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboMoneda.FormattingEnabled = true;
     this.comboMoneda.ItemHeight = 14;
     this.comboMoneda.Items.AddRange(new object[] {
     this.comboItem1});
     this.comboMoneda.Location = new System.Drawing.Point(247, 191);
     this.comboMoneda.Name = "comboMoneda";
     this.comboMoneda.Size = new System.Drawing.Size(192, 20);
     this.comboMoneda.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboMoneda.TabIndex = 5;
     //
     // comboItem1
     //
     this.comboItem1.Text = "NIO-Córdobas Nicaragüenses";
     //
     // labelX1
     //
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(193, 188);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(43, 23);
     this.labelX1.TabIndex = 11;
     this.labelX1.Text = "Moneda:";
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel1;
     this.tabItem1.BackColor = System.Drawing.Color.White;
     this.tabItem1.BackColor2 = System.Drawing.Color.White;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "--- Pago ---        ";
     //
     // dataGridDescripcionPago
     //
     this.dataGridDescripcionPago.AllowUserToAddRows = false;
     this.dataGridDescripcionPago.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.dataGridDescripcionPago.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridDescripcionPago.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.descripcion,
     this.monto,
     this.control,
     this.fecha,
     this.peri_pago,
     this.monto_pend,
     this.observaciones,
     this.cod_caso,
     this.num_pago,
     this.monto_Pago});
     this.dataGridDescripcionPago.Location = new System.Drawing.Point(10, 37);
     this.dataGridDescripcionPago.MultiSelect = false;
     this.dataGridDescripcionPago.Name = "dataGridDescripcionPago";
     this.dataGridDescripcionPago.Size = new System.Drawing.Size(458, 390);
     this.dataGridDescripcionPago.TabIndex = 11;
     //
     // descripcion
     //
     this.descripcion.HeaderText = "Descripción";
     this.descripcion.Name = "descripcion";
     this.descripcion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.descripcion.Width = 300;
     //
     // monto
     //
     this.monto.HeaderText = "Monto";
     this.monto.Name = "monto";
     this.monto.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // control
     //
     this.control.HeaderText = "control";
     this.control.Name = "control";
     this.control.Visible = false;
     //
     // fecha
     //
     this.fecha.HeaderText = "Fecha";
     this.fecha.Name = "fecha";
     this.fecha.Visible = false;
     //
     // peri_pago
     //
     this.peri_pago.HeaderText = "Periodo";
     this.peri_pago.Name = "peri_pago";
     this.peri_pago.Visible = false;
     //
     // monto_pend
     //
     this.monto_pend.HeaderText = "montoPendiente";
     this.monto_pend.Name = "monto_pend";
     this.monto_pend.Visible = false;
     //
     // observaciones
     //
     this.observaciones.HeaderText = "Observaciones";
     this.observaciones.Name = "observaciones";
     this.observaciones.Visible = false;
     //
     // cod_caso
     //
     this.cod_caso.HeaderText = "codigocaso";
     this.cod_caso.Name = "cod_caso";
     this.cod_caso.Visible = false;
     //
     // num_pago
     //
     this.num_pago.HeaderText = "Column1";
     this.num_pago.Name = "num_pago";
     this.num_pago.Visible = false;
     //
     // monto_Pago
     //
     this.monto_Pago.HeaderText = "Column1";
     this.monto_Pago.Name = "monto_Pago";
     this.monto_Pago.Visible = false;
     //
     // expandablePanel1
     //
     this.expandablePanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.RightToLeft;
     this.expandablePanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandablePanel1.Controls.Add(this.dataGridDescripcionPago);
     this.expandablePanel1.Location = new System.Drawing.Point(476, 12);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(485, 440);
     this.expandablePanel1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandablePanel1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandablePanel1.Style.GradientAngle = 90;
     this.expandablePanel1.TabIndex = 13;
     this.expandablePanel1.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandablePanel1.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandablePanel1.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandablePanel1.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandablePanel1.TitleStyle.GradientAngle = 90;
     this.expandablePanel1.TitleText = "Pagos";
     //
     // RealizarPago
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(933, 457);
     this.Controls.Add(this.expandablePanel1);
     this.Controls.Add(this.tabControl2);
     this.Name = "RealizarPago";
     this.Text = "RealizarPago";
     ((System.ComponentModel.ISupportInitialize)(this.tabControl2)).EndInit();
     this.tabControl2.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.fechaPago)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridDescripcionPago)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cmbQuyCach = new DevComponents.DotNetBar.ButtonX();
     this.cmb_quycach = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txt_ma = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.cmdLoaiHH = new DevComponents.DotNetBar.ButtonX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmdInDS = new DevComponents.DotNetBar.ButtonX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmb_loai = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.cmdDVT = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txt_chidinh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmdNhomHH = new DevComponents.DotNetBar.ButtonX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.txtMota = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmb_nhom = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.txttenthuoc = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.cmb_dvt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.cmbQuyCach);
     this.groupPanel2.Controls.Add(this.cmb_quycach);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.txt_ma);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Controls.Add(this.cmdLoaiHH);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmb_loai);
     this.groupPanel2.Controls.Add(this.cmdDVT);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.txt_chidinh);
     this.groupPanel2.Controls.Add(this.cmdNhomHH);
     this.groupPanel2.Controls.Add(this.labelX27);
     this.groupPanel2.Controls.Add(this.txtMota);
     this.groupPanel2.Controls.Add(this.cmb_nhom);
     this.groupPanel2.Controls.Add(this.labelX23);
     this.groupPanel2.Controls.Add(this.labelX25);
     this.groupPanel2.Controls.Add(this.txttenthuoc);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Controls.Add(this.cmb_dvt);
     this.groupPanel2.Location = new System.Drawing.Point(12, 39);
     this.groupPanel2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(1008, 242);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "THÔNG TIN THUỐC";
     //
     // cmbQuyCach
     //
     this.cmbQuyCach.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbQuyCach.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbQuyCach.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbQuyCach.Location = new System.Drawing.Point(710, 13);
     this.cmbQuyCach.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmbQuyCach.Name = "cmbQuyCach";
     this.cmbQuyCach.Size = new System.Drawing.Size(25, 25);
     this.cmbQuyCach.TabIndex = 79;
     this.cmbQuyCach.Text = "+";
     this.cmbQuyCach.Click += new System.EventHandler(this.cmbQuyCach_Click);
     //
     // cmb_quycach
     //
     this.cmb_quycach.DisplayMember = "Text";
     this.cmb_quycach.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_quycach.FocusHighlightEnabled = true;
     this.cmb_quycach.FormattingEnabled = true;
     this.cmb_quycach.ItemHeight = 18;
     this.cmb_quycach.Location = new System.Drawing.Point(514, 13);
     this.cmb_quycach.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmb_quycach.Name = "cmb_quycach";
     this.cmb_quycach.Size = new System.Drawing.Size(190, 24);
     this.cmb_quycach.TabIndex = 7;
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(426, 10);
     this.labelX4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(95, 30);
     this.labelX4.TabIndex = 77;
     this.labelX4.Text = "Quy cách:";
     //
     // txt_ma
     //
     //
     //
     //
     this.txt_ma.Border.Class = "TextBoxBorder";
     this.txt_ma.FocusHighlightEnabled = true;
     this.txt_ma.Location = new System.Drawing.Point(98, 17);
     this.txt_ma.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_ma.Name = "txt_ma";
     this.txt_ma.Size = new System.Drawing.Size(221, 24);
     this.txt_ma.TabIndex = 1;
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(12, 12);
     this.labelX3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(80, 30);
     this.labelX3.TabIndex = 76;
     this.labelX3.Text = "Mã thuốc:";
     //
     // cmdLoaiHH
     //
     this.cmdLoaiHH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdLoaiHH.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdLoaiHH.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdLoaiHH.Location = new System.Drawing.Point(290, 84);
     this.cmdLoaiHH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmdLoaiHH.Name = "cmdLoaiHH";
     this.cmdLoaiHH.Size = new System.Drawing.Size(25, 25);
     this.cmdLoaiHH.TabIndex = 74;
     this.cmdLoaiHH.Text = "+";
     this.cmdLoaiHH.Click += new System.EventHandler(this.cmdLoaiHH_Click);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmdInDS);
     this.panel5.Controls.Add(this.buttonX6);
     this.panel5.Controls.Add(this.buttonX4);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 187);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(1002, 30);
     this.panel5.TabIndex = 8;
     //
     // cmdInDS
     //
     this.cmdInDS.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdInDS.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdInDS.Enabled = false;
     this.cmdInDS.Location = new System.Drawing.Point(589, 2);
     this.cmdInDS.Margin = new System.Windows.Forms.Padding(0);
     this.cmdInDS.Name = "cmdInDS";
     this.cmdInDS.Size = new System.Drawing.Size(70, 27);
     this.cmdInDS.TabIndex = 55;
     this.cmdInDS.Text = "In";
     this.cmdInDS.Click += new System.EventHandler(this.cmdInDS_Click);
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(411, 2);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 1;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Enabled = false;
     this.buttonX4.Location = new System.Drawing.Point(500, 2);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 2;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(323, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(12, 80);
     this.labelX2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(80, 30);
     this.labelX2.TabIndex = 72;
     this.labelX2.Text = "Loại hàng:";
     //
     // cmb_loai
     //
     this.cmb_loai.DisplayMember = "Text";
     this.cmb_loai.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_loai.FocusHighlightEnabled = true;
     this.cmb_loai.FormattingEnabled = true;
     this.cmb_loai.ItemHeight = 18;
     this.cmb_loai.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_loai.Location = new System.Drawing.Point(98, 84);
     this.cmb_loai.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmb_loai.Name = "cmb_loai";
     this.cmb_loai.Size = new System.Drawing.Size(190, 24);
     this.cmb_loai.TabIndex = 3;
                this.cmb_loai.SelectedIndexChanged += new System.EventHandler(this.cmb_loai_SelectedIndexChanged);
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // cmdDVT
     //
     this.cmdDVT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdDVT.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdDVT.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdDVT.Location = new System.Drawing.Point(290, 119);
     this.cmdDVT.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmdDVT.Name = "cmdDVT";
     this.cmdDVT.Size = new System.Drawing.Size(25, 25);
     this.cmdDVT.TabIndex = 71;
     this.cmdDVT.Text = "+";
     this.cmdDVT.Click += new System.EventHandler(this.cmdDVT_Click);
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(426, 47);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(120, 30);
     this.labelX1.TabIndex = 70;
     this.labelX1.Text = "Chỉ định";
     //
     // txt_chidinh
     //
     //
     //
     //
     this.txt_chidinh.Border.Class = "TextBoxBorder";
     this.txt_chidinh.FocusHighlightEnabled = true;
     this.txt_chidinh.Location = new System.Drawing.Point(426, 80);
     this.txt_chidinh.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_chidinh.Multiline = true;
     this.txt_chidinh.Name = "txt_chidinh";
     this.txt_chidinh.Size = new System.Drawing.Size(427, 30);
     this.txt_chidinh.TabIndex = 8;
     this.txt_chidinh.TextChanged += new System.EventHandler(this.textBoxX1_TextChanged);
     //
     // cmdNhomHH
     //
     this.cmdNhomHH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdNhomHH.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdNhomHH.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdNhomHH.Location = new System.Drawing.Point(290, 155);
     this.cmdNhomHH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmdNhomHH.Name = "cmdNhomHH";
     this.cmdNhomHH.Size = new System.Drawing.Size(25, 25);
     this.cmdNhomHH.TabIndex = 68;
     this.cmdNhomHH.Text = "+";
     this.cmdNhomHH.Click += new System.EventHandler(this.cmdNhomHH_Click);
     //
     // labelX27
     //
     this.labelX27.Location = new System.Drawing.Point(426, 116);
     this.labelX27.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(120, 30);
     this.labelX27.TabIndex = 67;
     this.labelX27.Text = "Mô Tả";
     //
     // txtMota
     //
     //
     //
     //
     this.txtMota.Border.Class = "TextBoxBorder";
     this.txtMota.FocusHighlightEnabled = true;
     this.txtMota.Location = new System.Drawing.Point(426, 152);
     this.txtMota.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtMota.Multiline = true;
     this.txtMota.Name = "txtMota";
     this.txtMota.Size = new System.Drawing.Size(427, 28);
     this.txtMota.TabIndex = 9;
     //
     // cmb_nhom
     //
     this.cmb_nhom.DisplayMember = "Text";
     this.cmb_nhom.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_nhom.FocusHighlightEnabled = true;
     this.cmb_nhom.FormattingEnabled = true;
     this.cmb_nhom.ItemHeight = 18;
     this.cmb_nhom.Location = new System.Drawing.Point(98, 155);
     this.cmb_nhom.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmb_nhom.Name = "cmb_nhom";
     this.cmb_nhom.Size = new System.Drawing.Size(190, 24);
     this.cmb_nhom.TabIndex = 6;
     //
     // labelX23
     //
     this.labelX23.Location = new System.Drawing.Point(12, 116);
     this.labelX23.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(80, 30);
     this.labelX23.TabIndex = 58;
     this.labelX23.Text = "Đơn vị tính:";
     //
     // labelX25
     //
     this.labelX25.Location = new System.Drawing.Point(13, 152);
     this.labelX25.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(79, 30);
     this.labelX25.TabIndex = 59;
     this.labelX25.Text = "Nhóm:";
     //
     // txttenthuoc
     //
     //
     //
     //
     this.txttenthuoc.Border.Class = "TextBoxBorder";
     this.txttenthuoc.FocusHighlightEnabled = true;
     this.txttenthuoc.Location = new System.Drawing.Point(98, 50);
     this.txttenthuoc.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txttenthuoc.Name = "txttenthuoc";
     this.txttenthuoc.Size = new System.Drawing.Size(221, 24);
     this.txttenthuoc.TabIndex = 2;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(9, 45);
     this.labelX26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(72, 30);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên thuốc:";
     //
     // cmb_dvt
     //
     this.cmb_dvt.DisplayMember = "Text";
     this.cmb_dvt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_dvt.FocusHighlightEnabled = true;
     this.cmb_dvt.FormattingEnabled = true;
     this.cmb_dvt.ItemHeight = 18;
     this.cmb_dvt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_dvt.Location = new System.Drawing.Point(98, 119);
     this.cmb_dvt.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmb_dvt.Name = "cmb_dvt";
     this.cmb_dvt.Size = new System.Drawing.Size(190, 24);
     this.cmb_dvt.TabIndex = 5;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader9,
     this.columnHeader10,
     this.columnHeader3,
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader1});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(8, 4);
     this.lvhanghoa.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(989, 294);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 49;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Mã SP";
     this.columnHeader2.Width = 65;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Sản phẩm";
     this.columnHeader9.Width = 233;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Đơn vị tính";
     this.columnHeader10.Width = 76;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Quy Cách";
     this.columnHeader3.Width = 85;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Loại SP";
     this.columnHeader11.Width = 74;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Nhóm SP";
     this.columnHeader12.Width = 88;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Chỉ định";
     this.columnHeader13.Width = 149;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "Mô tả";
     this.columnHeader14.Width = 170;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MA";
     this.columnHeader1.Width = 0;
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(5, 283);
     this.groupPanel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(1006, 327);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 72;
     this.groupPanel1.Text = "DANH SÁCH HÀNG HÓA";
     //
     // frmHangHoa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1019, 626);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "frmHangHoa";
     this.Text = "Quản lý hàng hóa";
     this.Load += new System.EventHandler(this.frmHangHoa_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.groupPanel1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #33
0
        private void Enable(bool bEnable = true)
        {
            if (!bEnable)
            {
                txtDrawing.Text            = "";
                txtDrawingRev.Text         = "";
                dtDrawingDate.Text         = "";
                txtHacDrawing.Text         = "";
                txtHacDrawingRev.Text      = "";
                dtHacDrawingDate.Text      = "";
                txtFault.Text              = "";
                txtManufacturer.Text       = "";
                txtTypesDevice.Text        = "";
                txtTypesProtection.Text    = "";
                txtCountry.Text            = "";
                txtCountryCode.Text        = "";
                txtDrawing.Enabled         = false;
                txtDrawingRev.Enabled      = false;
                dtDrawingDate.Enabled      = false;
                txtHacDrawing.Enabled      = false;
                txtHacDrawingRev.Enabled   = false;
                dtHacDrawingDate.Enabled   = false;
                txtFault.Enabled           = false;
                txtManufacturer.Enabled    = false;
                txtTypesDevice.Enabled     = false;
                txtTypesProtection.Enabled = false;
                txtCountry.Enabled         = false;
                txtCountryCode.Enabled     = false;
                cbxType.Enabled            = true;
                tv.Enabled        = true;
                btnCancel.Enabled = false;
                btnSave.Enabled   = false;
            }
            else
            {
                DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxType.Items[cbxType.SelectedIndex];
                string sListType = i.Value != null?i.Value.ToString() : "";

                switch (sListType)
                {
                case "lists_drawings":
                    txtDrawing.Enabled    = true;
                    txtDrawingRev.Enabled = true;
                    dtDrawingDate.Enabled = true;
                    ActiveControl         = txtDrawing;
                    txtDrawing.Focus();
                    break;

                case "lists_drawings_hac":
                    txtHacDrawing.Enabled    = true;
                    txtHacDrawingRev.Enabled = true;
                    dtHacDrawingDate.Enabled = true;
                    ActiveControl            = txtHacDrawing;
                    txtHacDrawing.Focus();
                    break;

                case "lists_faults":
                    txtFault.Enabled = true;
                    ActiveControl    = txtFault;
                    txtFault.Focus();
                    break;

                case "lists_manufacturers":
                    txtManufacturer.Enabled = true;
                    ActiveControl           = txtManufacturer;
                    txtManufacturer.Focus();
                    break;

                case "lists_types_device":
                    txtTypesDevice.Enabled = true;
                    ActiveControl          = txtTypesDevice;
                    txtTypesDevice.Focus();
                    break;

                case "lists_types_protection":
                    txtTypesProtection.Enabled = true;
                    ActiveControl = txtTypesProtection;
                    txtTypesProtection.Focus();
                    break;

                default:
                    txtCountry.Enabled     = true;
                    txtCountryCode.Enabled = true;
                    ActiveControl          = txtCountry;
                    txtCountry.Focus();
                    break;
                }

                cbxType.Enabled   = false;
                tv.Enabled        = false;
                btnCancel.Enabled = true;
                btnSave.Enabled   = true;
            }
        }
Example #34
0
        private void cmRemove_Click(object sender, EventArgs e)
        {
            if (tv.SelectedNodes.Count < 1)
            {
                return;
            }

            DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxType.Items[cbxType.SelectedIndex];
            string sTable = "", sIDs = "", sListType = i.Value != null?i.Value.ToString() : "";

            foreach (DevComponents.AdvTree.Node n in tv.Nodes)
            {
                if (n.Checked && n.Tag != null && n.Tag.ToString().All(char.IsDigit))
                {
                    sIDs += sIDs.Length > 0 ? "," + n.Tag.ToString() : n.Tag.ToString();
                }
            }

            switch (sListType)
            {
            case "lists_drawings":
                sTable = "lists_drawings";
                break;

            case "lists_drawings_hac":
                sTable = "lists_drawings_hac";
                break;

            case "lists_faults":
                sTable = "lists_faults";
                break;

            case "lists_manufacturers":
                sTable = "lists_manufacturers";
                break;

            case "lists_types_device":
                sTable = "lists_types_device";
                break;

            case "lists_types_protection":
                sTable = "lists_types_protection";
                break;

            default:
                sTable = "lists_countries";
                break;
            }

            int iRes = Program.SQL.Delete("DELETE FROM " + sTable + " WHERE id IN (" + sIDs + ");");

            if (iRes < 1)
            {
                MessageBox.Show("The removal failed. Please try again.", "Failed", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                return;
            }
            else
            {
                MessageBox.Show("The removal was successful.", "Removed", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

            switch (sListType)
            {
            case "lists_drawings":
                LoadDrawings();
                break;

            case "lists_drawings_hac":
                LoadHacDrawings();
                break;

            case "lists_faults":
                LoadFaults();
                break;

            case "lists_manufacturers":
                LoadManufacturers();
                break;

            case "lists_types_device":
                LoadTypesDevice();
                break;

            case "lists_types_protection":
                LoadTypesProtection();
                break;

            default:
                LoadCountries();
                break;
            }
        }
Example #35
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxType.Items[cbxType.SelectedIndex];
            string sTable = "", sInsertCols = "", sInsertVals = "", sUpdate = "", sListType = i.Value != null?i.Value.ToString() : "";

            switch (sListType)
            {
            case "lists_drawings":
                if (txtDrawing.Text.Trim().Length == 0 || txtDrawingRev.Text.Trim().Length == 0 || dtDrawingDate.Text.Trim().Length == 0)
                {
                    MessageBox.Show("All drawing details must be provided to continue.", "Drawing", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name,revision,date";
                sInsertVals = "@name,@revision,@date";
                sUpdate     = "name=@name,revision=@revision,date=@date";
                sTable      = "lists_drawings";
                Program.SQL.AddParameter("name", txtDrawing.Text.Trim());
                Program.SQL.AddParameter("revision", txtDrawingRev.Text.Trim());
                Program.SQL.AddParameter("date", dtDrawingDate.Value);
                break;

            case "lists_drawings_hac":
                if (txtHacDrawing.Text.Trim().Length == 0 || txtHacDrawingRev.Text.Trim().Length == 0 || dtHacDrawingDate.Text.Trim().Length == 0)
                {
                    MessageBox.Show("All HAC drawing details must be provided to continue.", "HAC Drawing", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name,revision,date";
                sInsertVals = "@name,@revision,@date";
                sUpdate     = "name=@name,revision=@revision,date=@date";
                sTable      = "lists_drawings_hac";
                Program.SQL.AddParameter("name", txtHacDrawing.Text.Trim());
                Program.SQL.AddParameter("revision", txtHacDrawingRev.Text.Trim());
                Program.SQL.AddParameter("date", dtHacDrawingDate.Value);
                break;

            case "lists_faults":
                if (txtFault.Text.Trim().Length == 0)
                {
                    MessageBox.Show("A fault must be provided to continue.", "Fault", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "fault";
                sInsertVals = "@fault";
                sUpdate     = "fault=@fault";
                sTable      = "lists_faults";
                Program.SQL.AddParameter("fault", txtFault.Text.Trim());
                break;

            case "lists_manufacturers":
                if (txtManufacturer.Text.Trim().Length == 0)
                {
                    MessageBox.Show("A name must be provided to continue.", "Manufacturer", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name";
                sInsertVals = "@name";
                sUpdate     = "name=@name";
                sTable      = "lists_manufacturers";
                Program.SQL.AddParameter("name", txtManufacturer.Text.Trim());
                break;

            case "lists_types_device":
                if (txtTypesProtection.Text.Trim().Length == 0)
                {
                    MessageBox.Show("A name must be provided to continue.", "Device Type", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name";
                sInsertVals = "@name";
                sUpdate     = "name=@name";
                sTable      = "lists_types_device";
                Program.SQL.AddParameter("name", txtTypesProtection.Text.Trim());
                break;

            case "lists_types_protection":
                if (txtTypesProtection.Text.Trim().Length == 0)
                {
                    MessageBox.Show("A name must be provided to continue.", "Protection Type", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name";
                sInsertVals = "@name";
                sUpdate     = "name=@name";
                sTable      = "lists_types_protection";
                Program.SQL.AddParameter("name", txtTypesProtection.Text.Trim());
                break;

            default:
                if (txtCountry.Text.Trim().Length == 0 || txtCountryCode.Text.Trim().Length == 0)
                {
                    MessageBox.Show("All country details must be provided to continue.", "Country", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                sInsertCols = "name,code";
                sInsertVals = "@name,@code";
                sUpdate     = "name=@name,code=@code";
                sTable      = "lists_countries";
                Program.SQL.AddParameter("name", txtCountry.Text.Trim());
                Program.SQL.AddParameter("code", txtCountryCode.Text.Trim());
                break;
            }

            int iRes = 0;

            if (iID > 0)
            {
                Program.SQL.AddParameter("id", iID);
                iRes = Program.SQL.Update("UPDATE " + sTable + " SET " + sUpdate + " WHERE id=@id");
                if (iRes < 1)
                {
                    MessageBox.Show("The update failed. Please try again.", "Update", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                else
                {
                    MessageBox.Show("The update was successful.", "Update", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
            else
            {
                iRes = Program.SQL.Insert("INSERT INTO " + sTable + " (" + sInsertCols + ") VALUES (" + sInsertVals + ")");
                if (iRes < 1)
                {
                    MessageBox.Show("The addition failed. Please try again.", "Insert", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                else
                {
                    MessageBox.Show("The addition was successful.", "Insert", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }

            Enable(false);

            if (tv.Nodes.Count > 0)
            {
                tv.Nodes.Clear();
            }

            switch (sListType)
            {
            case "lists_drawings":
                LoadDrawings();
                break;

            case "lists_drawings_hac":
                LoadHacDrawings();
                break;

            case "lists_faults":
                LoadFaults();
                break;

            case "lists_manufacturers":
                LoadManufacturers();
                break;

            case "lists_types_device":
                LoadTypesDevice();
                break;

            case "lists_types_protection":
                LoadTypesProtection();
                break;

            default:
                LoadCountries();
                break;
            }
        }
Example #36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.cmdPopupBar       = new System.Windows.Forms.Button();
     this.richTextBox1      = new System.Windows.Forms.RichTextBox();
     this.imageList1        = new System.Windows.Forms.ImageList(this.components);
     this.cmdPopupMenu      = new System.Windows.Forms.Button();
     this.comboItem2        = new DevComponents.Editors.ComboItem();
     this.comboItem1        = new DevComponents.Editors.ComboItem();
     this.cboStyle          = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmdClose          = new System.Windows.Forms.Button();
     this.contextMenuBar1   = new DevComponents.DotNetBar.ContextMenuBar();
     this.bRichPopup        = new DevComponents.DotNetBar.ButtonItem();
     this.bCut              = new DevComponents.DotNetBar.ButtonItem();
     this.bCopy             = new DevComponents.DotNetBar.ButtonItem();
     this.bPaste            = new DevComponents.DotNetBar.ButtonItem();
     this.bDelete           = new DevComponents.DotNetBar.ButtonItem();
     this.bSelectAll        = new DevComponents.DotNetBar.ButtonItem();
     this.dotNetBarManager1 = new DevComponents.DotNetBar.DotNetBarManager(this.components);
     this.dockSite1         = new DevComponents.DotNetBar.DockSite();
     this.dockSite2         = new DevComponents.DotNetBar.DockSite();
     this.dockSite3         = new DevComponents.DotNetBar.DockSite();
     this.dockSite4         = new DevComponents.DotNetBar.DockSite();
     this.dockSite5         = new DevComponents.DotNetBar.DockSite();
     this.dockSite6         = new DevComponents.DotNetBar.DockSite();
     this.dockSite7         = new DevComponents.DotNetBar.DockSite();
     this.dockSite8         = new DevComponents.DotNetBar.DockSite();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
     this.SuspendLayout();
     //
     // cmdPopupBar
     //
     this.cmdPopupBar.Anchor    = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.cmdPopupBar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdPopupBar.Location  = new System.Drawing.Point(296, 66);
     this.cmdPopupBar.Name      = "cmdPopupBar";
     this.cmdPopupBar.Size      = new System.Drawing.Size(88, 24);
     this.cmdPopupBar.TabIndex  = 5;
     this.cmdPopupBar.Text      = "Popup Bar";
     this.cmdPopupBar.Click    += new System.EventHandler(this.PopupBar);
     //
     // richTextBox1
     //
     this.richTextBox1.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                  | System.Windows.Forms.AnchorStyles.Left)
                                 | System.Windows.Forms.AnchorStyles.Right);
     this.contextMenuBar1.SetContextMenuEx(this.richTextBox1, this.bRichPopup);
     this.richTextBox1.Location = new System.Drawing.Point(8, 8);
     this.richTextBox1.Name     = "richTextBox1";
     this.richTextBox1.Size     = new System.Drawing.Size(280, 208);
     this.richTextBox1.TabIndex = 4;
     this.richTextBox1.Text     = "Right-click in this edit box to show context menu";
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 15);
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Silver;
     //
     // cmdPopupMenu
     //
     this.cmdPopupMenu.Anchor    = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.cmdPopupMenu.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdPopupMenu.Location  = new System.Drawing.Point(296, 34);
     this.cmdPopupMenu.Name      = "cmdPopupMenu";
     this.cmdPopupMenu.Size      = new System.Drawing.Size(88, 24);
     this.cmdPopupMenu.TabIndex  = 5;
     this.cmdPopupMenu.Text      = "Popup Menu";
     this.cmdPopupMenu.Click    += new System.EventHandler(this.PopupMenu);
     //
     // comboItem2
     //
     this.comboItem2.Text = "VS.NET 2005";
     this.comboItem2.TextLineAlignment = System.Drawing.StringAlignment.Center;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Office2003";
     this.comboItem1.TextLineAlignment = System.Drawing.StringAlignment.Center;
     //
     // cboStyle
     //
     this.cboStyle.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
     this.cboStyle.DisableInternalDrawing = false;
     this.cboStyle.DropDownStyle          = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboStyle.DropDownWidth          = 84;
     this.cboStyle.Images = null;
     this.cboStyle.Items.AddRange(new object[] {
         this.comboItem1,
         this.comboItem2
     });
     this.cboStyle.Location = new System.Drawing.Point(299, 8);
     this.cboStyle.Name     = "cboStyle";
     this.cboStyle.Size     = new System.Drawing.Size(84, 21);
     this.cboStyle.Style    = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.cboStyle.TabIndex = 6;
     //
     // cmdClose
     //
     this.cmdClose.Anchor    = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
     this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.cmdClose.Location  = new System.Drawing.Point(296, 192);
     this.cmdClose.Name      = "cmdClose";
     this.cmdClose.Size      = new System.Drawing.Size(88, 24);
     this.cmdClose.TabIndex  = 5;
     this.cmdClose.Text      = "&Close";
     this.cmdClose.Click    += new System.EventHandler(this.cmdClose_Click);
     //
     // contextMenuBar1
     //
     this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.bRichPopup
     });
     this.contextMenuBar1.Location = new System.Drawing.Point(288, 104);
     this.contextMenuBar1.Name     = "contextMenuBar1";
     this.contextMenuBar1.Size     = new System.Drawing.Size(104, 25);
     this.contextMenuBar1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.contextMenuBar1.TabIndex = 11;
     this.contextMenuBar1.TabStop  = false;
     //
     // bRichPopup
     //
     this.bRichPopup.AutoExpandOnClick = true;
     this.bRichPopup.GlobalName        = "bRichPopup";
     this.bRichPopup.Name           = "bRichPopup";
     this.bRichPopup.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bRichPopup.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
         this.bCut,
         this.bCopy,
         this.bPaste,
         this.bDelete,
         this.bSelectAll
     });
     this.bRichPopup.Text = "Rich Edit Popup";
     //
     // bCut
     //
     this.bCut.GlobalName     = "bCut";
     this.bCut.ImageIndex     = 0;
     this.bCut.Name           = "bCut";
     this.bCut.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCut.Text           = "Cu&t";
     //
     // bCopy
     //
     this.bCopy.GlobalName     = "bCopy";
     this.bCopy.ImageIndex     = 1;
     this.bCopy.Name           = "bCopy";
     this.bCopy.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCopy.Text           = "&Copy";
     //
     // bPaste
     //
     this.bPaste.GlobalName     = "bPaste";
     this.bPaste.ImageIndex     = 2;
     this.bPaste.Name           = "bPaste";
     this.bPaste.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bPaste.Text           = "&Paste";
     //
     // bDelete
     //
     this.bDelete.GlobalName     = "bDelete";
     this.bDelete.Name           = "bDelete";
     this.bDelete.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bDelete.Text           = "&Delete";
     //
     // bSelectAll
     //
     this.bSelectAll.BeginGroup     = true;
     this.bSelectAll.GlobalName     = "bSelectAll";
     this.bSelectAll.Name           = "bSelectAll";
     this.bSelectAll.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bSelectAll.Text           = "Select &All";
     //
     // dotNetBarManager1
     //
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.F1);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlC);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlA);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlV);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlX);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlZ);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlY);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Del);
     this.dotNetBarManager1.AutoDispatchShortcuts.Add(DevComponents.DotNetBar.eShortcut.Ins);
     this.dotNetBarManager1.BottomDockSite     = this.dockSite4;
     this.dotNetBarManager1.DefinitionName     = "";
     this.dotNetBarManager1.EnableFullSizeDock = false;
     this.dotNetBarManager1.LeftDockSite       = this.dockSite1;
     this.dotNetBarManager1.ParentForm         = this;
     this.dotNetBarManager1.RightDockSite      = this.dockSite2;
     this.dotNetBarManager1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.dotNetBarManager1.ToolbarBottomDockSite = this.dockSite8;
     this.dotNetBarManager1.ToolbarLeftDockSite   = this.dockSite5;
     this.dotNetBarManager1.ToolbarRightDockSite  = this.dockSite6;
     this.dotNetBarManager1.ToolbarTopDockSite    = this.dockSite7;
     this.dotNetBarManager1.TopDockSite           = this.dockSite3;
     //
     // dockSite1
     //
     this.dockSite1.AccessibleRole        = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite1.Dock                  = System.Windows.Forms.DockStyle.Left;
     this.dockSite1.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite1.Name                  = "dockSite1";
     this.dockSite1.Size                  = new System.Drawing.Size(0, 225);
     this.dockSite1.TabIndex              = 12;
     this.dockSite1.TabStop               = false;
     //
     // dockSite2
     //
     this.dockSite2.AccessibleRole        = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite2.Dock                  = System.Windows.Forms.DockStyle.Right;
     this.dockSite2.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite2.Location              = new System.Drawing.Point(392, 0);
     this.dockSite2.Name                  = "dockSite2";
     this.dockSite2.Size                  = new System.Drawing.Size(0, 225);
     this.dockSite2.TabIndex              = 13;
     this.dockSite2.TabStop               = false;
     //
     // dockSite3
     //
     this.dockSite3.AccessibleRole        = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite3.Dock                  = System.Windows.Forms.DockStyle.Top;
     this.dockSite3.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite3.Name                  = "dockSite3";
     this.dockSite3.Size                  = new System.Drawing.Size(392, 0);
     this.dockSite3.TabIndex              = 14;
     this.dockSite3.TabStop               = false;
     //
     // dockSite4
     //
     this.dockSite4.AccessibleRole        = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite4.Dock                  = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite4.DocumentDockContainer = new DevComponents.DotNetBar.DocumentDockContainer();
     this.dockSite4.Location              = new System.Drawing.Point(0, 225);
     this.dockSite4.Name                  = "dockSite4";
     this.dockSite4.Size                  = new System.Drawing.Size(392, 0);
     this.dockSite4.TabIndex              = 15;
     this.dockSite4.TabStop               = false;
     //
     // dockSite5
     //
     this.dockSite5.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite5.Dock           = System.Windows.Forms.DockStyle.Left;
     this.dockSite5.Name           = "dockSite5";
     this.dockSite5.Size           = new System.Drawing.Size(0, 225);
     this.dockSite5.TabIndex       = 16;
     this.dockSite5.TabStop        = false;
     //
     // dockSite6
     //
     this.dockSite6.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite6.Dock           = System.Windows.Forms.DockStyle.Right;
     this.dockSite6.Location       = new System.Drawing.Point(392, 0);
     this.dockSite6.Name           = "dockSite6";
     this.dockSite6.Size           = new System.Drawing.Size(0, 225);
     this.dockSite6.TabIndex       = 17;
     this.dockSite6.TabStop        = false;
     //
     // dockSite7
     //
     this.dockSite7.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite7.Dock           = System.Windows.Forms.DockStyle.Top;
     this.dockSite7.Name           = "dockSite7";
     this.dockSite7.Size           = new System.Drawing.Size(392, 0);
     this.dockSite7.TabIndex       = 18;
     this.dockSite7.TabStop        = false;
     //
     // dockSite8
     //
     this.dockSite8.AccessibleRole = System.Windows.Forms.AccessibleRole.Window;
     this.dockSite8.Dock           = System.Windows.Forms.DockStyle.Bottom;
     this.dockSite8.Location       = new System.Drawing.Point(0, 225);
     this.dockSite8.Name           = "dockSite8";
     this.dockSite8.Size           = new System.Drawing.Size(392, 0);
     this.dockSite8.TabIndex       = 19;
     this.dockSite8.TabStop        = false;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(392, 225);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
         this.contextMenuBar1,
         this.cboStyle,
         this.cmdClose,
         this.cmdPopupBar,
         this.cmdPopupMenu,
         this.richTextBox1,
         this.dockSite1,
         this.dockSite2,
         this.dockSite3,
         this.dockSite4,
         this.dockSite5,
         this.dockSite6,
         this.dockSite7,
         this.dockSite8
     });
     this.Name  = "Form1";
     this.Text  = "DotNetBar Popup Sample";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.btnRemov = new DevComponents.DotNetBar.ButtonX();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.lbSelList = new System.Windows.Forms.ListBox();
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX_repeat_dialy = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX_add_date = new DevComponents.DotNetBar.ButtonX();
     this.listViewEx_dates = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip2 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dateTimeInput_date = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.buttonX_add = new DevComponents.DotNetBar.ButtonX();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.checkedListBox_rd = new System.Windows.Forms.CheckedListBox();
     this.checkBoxX_parttime = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.listViewEx_times = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.ui_nudDOMDepth = new System.Windows.Forms.NumericUpDown();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.contextMenuStrip2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).BeginInit();
     this.SuspendLayout();
     //
     // btnRemov
     //
     this.btnRemov.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemov.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemov.Location = new System.Drawing.Point(696, 45);
     this.btnRemov.Name = "btnRemov";
     this.btnRemov.Size = new System.Drawing.Size(75, 24);
     this.btnRemov.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnRemov.TabIndex = 73;
     this.btnRemov.Text = "<";
     this.btnRemov.Click += new System.EventHandler(this.btnRemov_Click);
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(542, 404);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(105, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 70;
     this.saveButton.Text = "Save";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX5.Location = new System.Drawing.Point(546, 48);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(131, 21);
     this.labelX5.TabIndex = 68;
     this.labelX5.Text = "Selected symbols:";
     //
     // lbSelList
     //
     this.lbSelList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lbSelList.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lbSelList.FormattingEnabled = true;
     this.lbSelList.ItemHeight = 15;
     this.lbSelList.Location = new System.Drawing.Point(542, 71);
     this.lbSelList.Name = "lbSelList";
     this.lbSelList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.lbSelList.Size = new System.Drawing.Size(229, 319);
     this.lbSelList.TabIndex = 58;
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(666, 404);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(105, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 21;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(101, 4);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(239, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "EDIT SYMBOLS LIST";
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::TickNetClient.Properties.Resources.backbutton1;
     this.pictureBox1.Location = new System.Drawing.Point(3, 3);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(44, 44);
     this.pictureBox1.TabIndex = 12;
     this.pictureBox1.TabStop = false;
     this.toolTip1.SetToolTip(this.pictureBox1, "Cancel");
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(185, 129);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(198, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 88;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(185, 100);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(351, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 87;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(185, 71);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(351, 23);
     this.textBoxXListName.TabIndex = 83;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(104, 71);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 21);
     this.labelX1.TabIndex = 84;
     this.labelX1.Text = "List Name:";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(104, 100);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 21);
     this.labelX2.TabIndex = 85;
     this.labelX2.Text = "Timeframe:";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(45, 127);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(134, 21);
     this.labelX3.TabIndex = 86;
     this.labelX3.Text = "Continuation Types:";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // checkBoxX_repeat_dialy
     //
     //
     //
     //
     this.checkBoxX_repeat_dialy.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_repeat_dialy.Location = new System.Drawing.Point(212, 28);
     this.checkBoxX_repeat_dialy.Name = "checkBoxX_repeat_dialy";
     this.checkBoxX_repeat_dialy.Size = new System.Drawing.Size(136, 23);
     this.checkBoxX_repeat_dialy.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_repeat_dialy.TabIndex = 89;
     this.checkBoxX_repeat_dialy.Text = "Days required";
     this.checkBoxX_repeat_dialy.CheckedChanged += new System.EventHandler(this.checkBoxX_repeat_dialy_CheckedChanged);
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.buttonX_add_date);
     this.panelEx1.Controls.Add(this.listViewEx_dates);
     this.panelEx1.Controls.Add(this.dateTimeInput_date);
     this.panelEx1.Controls.Add(this.buttonX_add);
     this.panelEx1.Controls.Add(this.dateTimeInput2);
     this.panelEx1.Controls.Add(this.dateTimeInput1);
     this.panelEx1.Controls.Add(this.checkedListBox_rd);
     this.panelEx1.Controls.Add(this.checkBoxX_parttime);
     this.panelEx1.Controls.Add(this.listViewEx_times);
     this.panelEx1.Controls.Add(this.labelX4);
     this.panelEx1.Controls.Add(this.checkBoxX_repeat_dialy);
     this.panelEx1.Location = new System.Drawing.Point(24, 172);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(512, 218);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 90;
     //
     // buttonX_add_date
     //
     this.buttonX_add_date.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add_date.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add_date.Location = new System.Drawing.Point(448, 28);
     this.buttonX_add_date.Name = "buttonX_add_date";
     this.buttonX_add_date.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add_date.TabIndex = 103;
     this.buttonX_add_date.Text = "Add";
     this.buttonX_add_date.Click += new System.EventHandler(this.buttonX_add_date_Click);
     //
     // listViewEx_dates
     //
     this.listViewEx_dates.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_dates.Border.Class = "ListViewBorder";
     this.listViewEx_dates.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_dates.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1});
     this.listViewEx_dates.ContextMenuStrip = this.contextMenuStrip2;
     this.listViewEx_dates.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_dates.Location = new System.Drawing.Point(354, 57);
     this.listViewEx_dates.Name = "listViewEx_dates";
     this.listViewEx_dates.Size = new System.Drawing.Size(143, 149);
     this.listViewEx_dates.TabIndex = 102;
     this.listViewEx_dates.UseCompatibleStateImageBehavior = false;
     this.listViewEx_dates.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Date";
     this.columnHeader1.Width = 120;
     //
     // contextMenuStrip2
     //
     this.contextMenuStrip2.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip2.Name = "contextMenuStrip1";
     this.contextMenuStrip2.Size = new System.Drawing.Size(108, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(107, 22);
     this.toolStripMenuItem1.Text = "Delete";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // dateTimeInput_date
     //
     //
     //
     //
     this.dateTimeInput_date.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput_date.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput_date.ButtonDropDown.Visible = true;
     this.dateTimeInput_date.IsPopupCalendarOpen = false;
     this.dateTimeInput_date.Location = new System.Drawing.Point(354, 28);
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput_date.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput_date.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput_date.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput_date.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput_date.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput_date.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput_date.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput_date.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput_date.Name = "dateTimeInput_date";
     this.dateTimeInput_date.Size = new System.Drawing.Size(88, 23);
     this.dateTimeInput_date.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput_date.TabIndex = 101;
     this.dateTimeInput_date.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // buttonX_add
     //
     this.buttonX_add.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add.Enabled = false;
     this.buttonX_add.Location = new System.Drawing.Point(155, 57);
     this.buttonX_add.Name = "buttonX_add";
     this.buttonX_add.Size = new System.Drawing.Size(49, 23);
     this.buttonX_add.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add.TabIndex = 100;
     this.buttonX_add.Text = "Add";
     this.buttonX_add.Click += new System.EventHandler(this.buttonX_add_Click);
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.Enabled = false;
     this.dateTimeInput2.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(79, 58);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.Visible = false;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput2.TabIndex = 99;
     this.dateTimeInput2.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.Enabled = false;
     this.dateTimeInput1.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(12, 58);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.Visible = false;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(64, 23);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 98;
     this.dateTimeInput1.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // checkedListBox_rd
     //
     this.checkedListBox_rd.Enabled = false;
     this.checkedListBox_rd.FormattingEnabled = true;
     this.checkedListBox_rd.Items.AddRange(new object[] {
     "Sunday",
     "Monday",
     "Tuesday",
     "Wednesday",
     "Thursday",
     "Friday",
     "Saturday"});
     this.checkedListBox_rd.Location = new System.Drawing.Point(212, 57);
     this.checkedListBox_rd.Name = "checkedListBox_rd";
     this.checkedListBox_rd.Size = new System.Drawing.Size(136, 148);
     this.checkedListBox_rd.TabIndex = 96;
     //
     // checkBoxX_parttime
     //
     //
     //
     //
     this.checkBoxX_parttime.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX_parttime.Location = new System.Drawing.Point(12, 28);
     this.checkBoxX_parttime.Name = "checkBoxX_parttime";
     this.checkBoxX_parttime.Size = new System.Drawing.Size(192, 23);
     this.checkBoxX_parttime.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX_parttime.TabIndex = 95;
     this.checkBoxX_parttime.Text = "Is particular?";
     this.checkBoxX_parttime.CheckedChanged += new System.EventHandler(this.checkBoxX_parttime_CheckedChanged);
     //
     // listViewEx_times
     //
     this.listViewEx_times.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_times.Border.Class = "ListViewBorder";
     this.listViewEx_times.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_times.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader2,
     this.columnHeader3});
     this.listViewEx_times.ContextMenuStrip = this.contextMenuStrip1;
     this.listViewEx_times.Enabled = false;
     this.listViewEx_times.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_times.Location = new System.Drawing.Point(12, 87);
     this.listViewEx_times.Name = "listViewEx_times";
     this.listViewEx_times.Size = new System.Drawing.Size(192, 116);
     this.listViewEx_times.TabIndex = 94;
     this.listViewEx_times.UseCompatibleStateImageBehavior = false;
     this.listViewEx_times.View = System.Windows.Forms.View.Details;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Time Start";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Time End";
     this.columnHeader3.Width = 80;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deleteToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI Semibold", 9F);
     this.labelX4.Location = new System.Drawing.Point(3, 3);
     this.labelX4.Name = "labelX4";
     this.labelX4.PaddingLeft = 10;
     this.labelX4.Size = new System.Drawing.Size(110, 23);
     this.labelX4.TabIndex = 90;
     this.labelX4.Text = "Schedule";
     //
     // ui_nudDOMDepth
     //
     this.ui_nudDOMDepth.BackColor = System.Drawing.Color.White;
     this.ui_nudDOMDepth.ForeColor = System.Drawing.Color.Black;
     this.ui_nudDOMDepth.Location = new System.Drawing.Point(485, 128);
     this.ui_nudDOMDepth.Maximum = new decimal(new int[] {
     500,
     0,
     0,
     0});
     this.ui_nudDOMDepth.Name = "ui_nudDOMDepth";
     this.ui_nudDOMDepth.Size = new System.Drawing.Size(51, 23);
     this.ui_nudDOMDepth.TabIndex = 92;
     this.ui_nudDOMDepth.Value = new decimal(new int[] {
     1,
     0,
     0,
     0});
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX6.Location = new System.Drawing.Point(389, 127);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(90, 21);
     this.labelX6.TabIndex = 93;
     this.labelX6.Text = "Depth";
     this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // EditListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.ui_nudDOMDepth);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.cmbContinuationType);
     this.Controls.Add(this.cmbHistoricalPeriod);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.labelXTitle);
     this.Controls.Add(this.btnRemov);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.lbSelList);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "EditListControl";
     this.Size = new System.Drawing.Size(800, 482);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.contextMenuStrip2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput_date)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ui_nudDOMDepth)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmScaffoldRecommendSelect));
     this.Btn_TjBzsgsj = new DevComponents.DotNetBar.ButtonX();
     this.Lb_TjDsyt = new DevComponents.DotNetBar.LabelX();
     this.Lb_TjDsgd = new DevComponents.DotNetBar.LabelX();
     this.DbInput_TjDsgd = new DevComponents.Editors.DoubleInput();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.Cbx_TjDsyt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.Lb7_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb6_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb5_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb4_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb3_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb2_Tj = new DevComponents.DotNetBar.LabelX();
     this.Lb1_Tj = new DevComponents.DotNetBar.LabelX();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel7 = new DevComponents.DotNetBar.TabControlPanel();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabControl_Tj = new DevComponents.DotNetBar.TabControl();
     this.tcPanel_Tj5 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj1 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj2 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj7 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem7 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj6 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj4 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tcPanel_Tj3 = new DevComponents.DotNetBar.TabControlPanel();
     this.TJtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).BeginInit();
     this.groupPanel1.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.tabControlPanel4.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.tabControlPanel5.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.tabControlPanel7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).BeginInit();
     this.tabControl_Tj.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.SuspendLayout();
     //
     // Btn_TjBzsgsj
     //
     this.Btn_TjBzsgsj.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_TjBzsgsj.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_TjBzsgsj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_TjBzsgsj.Location = new System.Drawing.Point(240, 2);
     this.Btn_TjBzsgsj.Name = "Btn_TjBzsgsj";
     this.Btn_TjBzsgsj.Size = new System.Drawing.Size(122, 36);
     this.Btn_TjBzsgsj.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_TjBzsgsj.TabIndex = 0;
     this.Btn_TjBzsgsj.Text = "����ר��ʩ������ ";
     this.Btn_TjBzsgsj.Click += new System.EventHandler(this.Btn_TjBzsgsj_Click);
     //
     // Lb_TjDsyt
     //
     this.Lb_TjDsyt.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsyt.BackgroundStyle.Class = "";
     this.Lb_TjDsyt.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsyt.Location = new System.Drawing.Point(9, 27);
     this.Lb_TjDsyt.Name = "Lb_TjDsyt";
     this.Lb_TjDsyt.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsyt.TabIndex = 48;
     this.Lb_TjDsyt.Text = "�������ּܵ���;";
     //
     // Lb_TjDsgd
     //
     this.Lb_TjDsgd.AutoSize = true;
     //
     //
     //
     this.Lb_TjDsgd.BackgroundStyle.Class = "";
     this.Lb_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_TjDsgd.Location = new System.Drawing.Point(9, 76);
     this.Lb_TjDsgd.Name = "Lb_TjDsgd";
     this.Lb_TjDsgd.Size = new System.Drawing.Size(118, 18);
     this.Lb_TjDsgd.TabIndex = 47;
     this.Lb_TjDsgd.Text = "�������ּܵĸ߶�";
     //
     // DbInput_TjDsgd
     //
     //
     //
     //
     this.DbInput_TjDsgd.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_TjDsgd.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_TjDsgd.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_TjDsgd.Increment = 1;
     this.DbInput_TjDsgd.Location = new System.Drawing.Point(131, 76);
     this.DbInput_TjDsgd.MinValue = 0;
     this.DbInput_TjDsgd.Name = "DbInput_TjDsgd";
     this.DbInput_TjDsgd.ShowUpDown = true;
     this.DbInput_TjDsgd.Size = new System.Drawing.Size(89, 21);
     this.DbInput_TjDsgd.TabIndex = 49;
     this.DbInput_TjDsgd.ValueChanged += new System.EventHandler(this.DbInput_TjDsgd_ValueChanged);
     //
     // comboItem2
     //
     this.comboItem2.Text = "װ��װ��";
     //
     // comboItem1
     //
     this.comboItem1.Text = "�ṹʩ��";
     //
     // Cbx_TjDsyt
     //
     this.Cbx_TjDsyt.DisplayMember = "Text";
     this.Cbx_TjDsyt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_TjDsyt.FormattingEnabled = true;
     this.Cbx_TjDsyt.ItemHeight = 15;
     this.Cbx_TjDsyt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.Cbx_TjDsyt.Location = new System.Drawing.Point(130, 24);
     this.Cbx_TjDsyt.Name = "Cbx_TjDsyt";
     this.Cbx_TjDsyt.Size = new System.Drawing.Size(89, 21);
     this.Cbx_TjDsyt.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_TjDsyt.TabIndex = 50;
     this.Cbx_TjDsyt.SelectedIndexChanged += new System.EventHandler(this.Cbx_TjDsyt_SelectedIndexChanged);
     //
     // groupPanel1
     //
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel1.Controls.Add(this.Lb_TjDsgd);
     this.groupPanel1.Controls.Add(this.Lb_TjDsyt);
     this.groupPanel1.Controls.Add(this.Cbx_TjDsyt);
     this.groupPanel1.Controls.Add(this.DbInput_TjDsgd);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(252, 150);
     //
     //
     //
     this.groupPanel1.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.Class = "";
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel1.StyleMouseDown.Class = "";
     this.groupPanel1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel1.StyleMouseOver.Class = "";
     this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel1.TabIndex = 0;
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.groupPanel2);
     this.panelEx1.Controls.Add(this.groupPanel1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(252, 558);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 47;
     //
     // groupPanel2
     //
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Windows7;
     this.groupPanel2.Controls.Add(this.Lb7_Tj);
     this.groupPanel2.Controls.Add(this.Lb6_Tj);
     this.groupPanel2.Controls.Add(this.Lb5_Tj);
     this.groupPanel2.Controls.Add(this.Lb4_Tj);
     this.groupPanel2.Controls.Add(this.Lb3_Tj);
     this.groupPanel2.Controls.Add(this.Lb2_Tj);
     this.groupPanel2.Controls.Add(this.Lb1_Tj);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupPanel2.Location = new System.Drawing.Point(0, 151);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(252, 407);
     //
     //
     //
     this.groupPanel2.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.Class = "";
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     //
     //
     this.groupPanel2.StyleMouseDown.Class = "";
     this.groupPanel2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.groupPanel2.StyleMouseOver.Class = "";
     this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.groupPanel2.TabIndex = 3;
     //
     // Lb7_Tj
     //
     this.Lb7_Tj.AutoSize = true;
     //
     //
     //
     this.Lb7_Tj.BackgroundStyle.Class = "";
     this.Lb7_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb7_Tj.Enabled = false;
     this.Lb7_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb7_Tj.Location = new System.Drawing.Point(12, 303);
     this.Lb7_Tj.Name = "Lb7_Tj";
     this.Lb7_Tj.Size = new System.Drawing.Size(86, 20);
     this.Lb7_Tj.TabIndex = 48;
     this.Lb7_Tj.Text = "�� �����ּ�";
     //
     // Lb6_Tj
     //
     this.Lb6_Tj.AutoSize = true;
     //
     //
     //
     this.Lb6_Tj.BackgroundStyle.Class = "";
     this.Lb6_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb6_Tj.Enabled = false;
     this.Lb6_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb6_Tj.Location = new System.Drawing.Point(12, 265);
     this.Lb6_Tj.Name = "Lb6_Tj";
     this.Lb6_Tj.Size = new System.Drawing.Size(159, 20);
     this.Lb6_Tj.TabIndex = 48;
     this.Lb6_Tj.Text = "�� Һѹ����������ּ�";
     //
     // Lb5_Tj
     //
     this.Lb5_Tj.AutoSize = true;
     //
     //
     //
     this.Lb5_Tj.BackgroundStyle.Class = "";
     this.Lb5_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb5_Tj.Enabled = false;
     this.Lb5_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb5_Tj.Location = new System.Drawing.Point(12, 218);
     this.Lb5_Tj.Name = "Lb5_Tj";
     this.Lb5_Tj.Size = new System.Drawing.Size(130, 20);
     this.Lb5_Tj.TabIndex = 48;
     this.Lb5_Tj.Text = "�� ��ʽ�ֹܽ��ּ�";
     //
     // Lb4_Tj
     //
     this.Lb4_Tj.AutoSize = true;
     //
     //
     //
     this.Lb4_Tj.BackgroundStyle.Class = "";
     this.Lb4_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb4_Tj.Enabled = false;
     this.Lb4_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb4_Tj.Location = new System.Drawing.Point(12, 171);
     this.Lb4_Tj.Name = "Lb4_Tj";
     this.Lb4_Tj.Size = new System.Drawing.Size(187, 20);
     this.Lb4_Tj.TabIndex = 48;
     this.Lb4_Tj.Text = "�� �в����̿�ʽ�ֹܽ��ּ�";
     //
     // Lb3_Tj
     //
     this.Lb3_Tj.AutoSize = true;
     //
     //
     //
     this.Lb3_Tj.BackgroundStyle.Class = "";
     this.Lb3_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb3_Tj.Enabled = false;
     this.Lb3_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb3_Tj.Location = new System.Drawing.Point(12, 130);
     this.Lb3_Tj.Name = "Lb3_Tj";
     this.Lb3_Tj.Size = new System.Drawing.Size(115, 20);
     this.Lb3_Tj.TabIndex = 48;
     this.Lb3_Tj.Text = "�� ���ʽ���ּ�";
     //
     // Lb2_Tj
     //
     this.Lb2_Tj.AutoSize = true;
     //
     //
     //
     this.Lb2_Tj.BackgroundStyle.Class = "";
     this.Lb2_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb2_Tj.Enabled = false;
     this.Lb2_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb2_Tj.Location = new System.Drawing.Point(12, 86);
     this.Lb2_Tj.Name = "Lb2_Tj";
     this.Lb2_Tj.Size = new System.Drawing.Size(238, 20);
     this.Lb2_Tj.TabIndex = 48;
     this.Lb2_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ����+�����";
     //
     // Lb1_Tj
     //
     this.Lb1_Tj.AutoSize = true;
     //
     //
     //
     this.Lb1_Tj.BackgroundStyle.Class = "";
     this.Lb1_Tj.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb1_Tj.Enabled = false;
     this.Lb1_Tj.Font = new System.Drawing.Font("����", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Lb1_Tj.Location = new System.Drawing.Point(12, 47);
     this.Lb1_Tj.Name = "Lb1_Tj";
     this.Lb1_Tj.Size = new System.Drawing.Size(202, 20);
     this.Lb1_Tj.TabIndex = 48;
     this.Lb1_Tj.Text = "�� �ۼ�ʽ�ֹܽ��ּܣ���أ�";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.textBoxX1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     //
     // textBoxX1
     //
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX1.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX1.Location = new System.Drawing.Point(1, 1);
     this.textBoxX1.Multiline = true;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(578, 468);
     this.textBoxX1.TabIndex = 1;
     this.textBoxX1.Text = resources.GetString("textBoxX1.Text");
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.textBoxX4);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     //
     // textBoxX4
     //
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX4.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX4.Location = new System.Drawing.Point(1, 1);
     this.textBoxX4.Multiline = true;
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.ReadOnly = true;
     this.textBoxX4.Size = new System.Drawing.Size(578, 468);
     this.textBoxX4.TabIndex = 2;
     this.textBoxX4.Text = resources.GetString("textBoxX4.Text");
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.textBoxX3);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     //
     // textBoxX3
     //
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX3.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX3.Location = new System.Drawing.Point(1, 1);
     this.textBoxX3.Multiline = true;
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.ReadOnly = true;
     this.textBoxX3.Size = new System.Drawing.Size(578, 468);
     this.textBoxX3.TabIndex = 2;
     this.textBoxX3.Text = resources.GetString("textBoxX3.Text");
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.Controls.Add(this.textBoxX2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     //
     // textBoxX2
     //
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX2.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX2.Location = new System.Drawing.Point(1, 1);
     this.textBoxX2.Multiline = true;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(578, 468);
     this.textBoxX2.TabIndex = 2;
     this.textBoxX2.Text = resources.GetString("textBoxX2.Text");
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.textBoxX5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     //
     // textBoxX5
     //
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX5.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX5.Location = new System.Drawing.Point(1, 1);
     this.textBoxX5.Multiline = true;
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.ReadOnly = true;
     this.textBoxX5.Size = new System.Drawing.Size(578, 468);
     this.textBoxX5.TabIndex = 2;
     this.textBoxX5.Text = resources.GetString("textBoxX5.Text");
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.textBoxX6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     //
     // textBoxX6
     //
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX6.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX6.Location = new System.Drawing.Point(1, 1);
     this.textBoxX6.Multiline = true;
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.ReadOnly = true;
     this.textBoxX6.Size = new System.Drawing.Size(578, 468);
     this.textBoxX6.TabIndex = 2;
     this.textBoxX6.Text = resources.GetString("textBoxX6.Text");
     //
     // tabControlPanel7
     //
     this.tabControlPanel7.Controls.Add(this.textBoxX7);
     this.tabControlPanel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel7.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel7.Name = "tabControlPanel7";
     this.tabControlPanel7.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel7.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel7.Style.GradientAngle = 90;
     this.tabControlPanel7.TabIndex = 7;
     this.tabControlPanel7.Visible = false;
     //
     // textBoxX7
     //
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.textBoxX7.Font = new System.Drawing.Font("����", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.textBoxX7.ForeColor = System.Drawing.SystemColors.WindowText;
     this.textBoxX7.Location = new System.Drawing.Point(1, 1);
     this.textBoxX7.Multiline = true;
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.ReadOnly = true;
     this.textBoxX7.Size = new System.Drawing.Size(578, 468);
     this.textBoxX7.TabIndex = 2;
     this.textBoxX7.Text = "\r\n�ŵ㣺\r\n������ס�\r\n\r\nȱ�㣺\r\n��ȫ�Խϲ\r\n\r\n�����ԣ�\r\n��Ҫ���ڽ���������װ��װ�޹��̡�\r\n";
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(580, 470);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     //
     // tabControl_Tj
     //
     this.tabControl_Tj.BackColor = System.Drawing.Color.Transparent;
     this.tabControl_Tj.CanReorderTabs = true;
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj1);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj5);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj2);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj7);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj6);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj4);
     this.tabControl_Tj.Controls.Add(this.tcPanel_Tj3);
     this.tabControl_Tj.Controls.Add(this.tabControlPanel16);
     this.tabControl_Tj.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabControl_Tj.Location = new System.Drawing.Point(252, 0);
     this.tabControl_Tj.Name = "tabControl_Tj";
     this.tabControl_Tj.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.tabControl_Tj.SelectedTabIndex = 6;
     this.tabControl_Tj.Size = new System.Drawing.Size(580, 514);
     this.tabControl_Tj.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.tabControl_Tj.TabIndex = 51;
     this.tabControl_Tj.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.tabControl_Tj.Tabs.Add(this.TJtabItem1);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem2);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem3);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem4);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem5);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem6);
     this.tabControl_Tj.Tabs.Add(this.TJtabItem7);
     this.tabControl_Tj.Tabs.Add(this.tabItem1);
     this.tabControl_Tj.Text = "tabControl1";
     //
     // tcPanel_Tj5
     //
     this.tcPanel_Tj5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj5.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj5.Name = "tcPanel_Tj5";
     this.tcPanel_Tj5.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj5.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj5.Style.GradientAngle = 90;
     this.tcPanel_Tj5.TabIndex = 5;
     this.tcPanel_Tj5.TabItem = this.TJtabItem5;
     //
     // TJtabItem5
     //
     this.TJtabItem5.AttachedControl = this.tcPanel_Tj5;
     this.TJtabItem5.Name = "TJtabItem5";
     this.TJtabItem5.Text = "��ʽ�ֹܽ��ּ�";
     this.TJtabItem5.Visible = false;
     //
     // tcPanel_Tj1
     //
     this.tcPanel_Tj1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tcPanel_Tj1.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj1.Name = "tcPanel_Tj1";
     this.tcPanel_Tj1.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj1.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj1.Style.GradientAngle = 90;
     this.tcPanel_Tj1.TabIndex = 1;
     this.tcPanel_Tj1.TabItem = this.TJtabItem1;
     //
     // TJtabItem1
     //
     this.TJtabItem1.AttachedControl = this.tcPanel_Tj1;
     this.TJtabItem1.Name = "TJtabItem1";
     this.TJtabItem1.Text = "�ۼ�ʽ�ֹܽ��ּܣ���أ�";
     this.TJtabItem1.Visible = false;
     //
     // tcPanel_Tj2
     //
     this.tcPanel_Tj2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj2.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj2.Name = "tcPanel_Tj2";
     this.tcPanel_Tj2.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj2.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj2.Style.GradientAngle = 90;
     this.tcPanel_Tj2.TabIndex = 2;
     this.tcPanel_Tj2.TabItem = this.TJtabItem2;
     //
     // TJtabItem2
     //
     this.TJtabItem2.AttachedControl = this.tcPanel_Tj2;
     this.TJtabItem2.Name = "TJtabItem2";
     this.TJtabItem2.Text = "�ۼ�ʽ�ֹܽ��ּܣ����+�����";
     this.TJtabItem2.Visible = false;
     //
     // tcPanel_Tj7
     //
     this.tcPanel_Tj7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj7.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj7.Name = "tcPanel_Tj7";
     this.tcPanel_Tj7.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj7.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj7.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj7.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj7.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj7.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj7.Style.GradientAngle = 90;
     this.tcPanel_Tj7.TabIndex = 7;
     this.tcPanel_Tj7.TabItem = this.TJtabItem7;
     this.tcPanel_Tj7.Visible = false;
     //
     // TJtabItem7
     //
     this.TJtabItem7.AttachedControl = this.tcPanel_Tj7;
     this.TJtabItem7.Name = "TJtabItem7";
     this.TJtabItem7.Text = "�����ּ�";
     this.TJtabItem7.Visible = false;
     //
     // tcPanel_Tj6
     //
     this.tcPanel_Tj6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj6.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj6.Name = "tcPanel_Tj6";
     this.tcPanel_Tj6.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj6.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj6.Style.GradientAngle = 90;
     this.tcPanel_Tj6.TabIndex = 6;
     this.tcPanel_Tj6.TabItem = this.TJtabItem6;
     //
     // TJtabItem6
     //
     this.TJtabItem6.AttachedControl = this.tcPanel_Tj6;
     this.TJtabItem6.Name = "TJtabItem6";
     this.TJtabItem6.Text = "Һѹ����������ּ�";
     this.TJtabItem6.Visible = false;
     //
     // tcPanel_Tj4
     //
     this.tcPanel_Tj4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj4.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj4.Name = "tcPanel_Tj4";
     this.tcPanel_Tj4.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj4.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj4.Style.GradientAngle = 90;
     this.tcPanel_Tj4.TabIndex = 4;
     this.tcPanel_Tj4.TabItem = this.TJtabItem4;
     //
     // TJtabItem4
     //
     this.TJtabItem4.AttachedControl = this.tcPanel_Tj4;
     this.TJtabItem4.Name = "TJtabItem4";
     this.TJtabItem4.Text = "�в����̿�ʽ�ֹܽ��ּ�";
     this.TJtabItem4.Visible = false;
     //
     // tcPanel_Tj3
     //
     this.tcPanel_Tj3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tcPanel_Tj3.Location = new System.Drawing.Point(0, 47);
     this.tcPanel_Tj3.Name = "tcPanel_Tj3";
     this.tcPanel_Tj3.Padding = new System.Windows.Forms.Padding(1);
     this.tcPanel_Tj3.Size = new System.Drawing.Size(580, 467);
     this.tcPanel_Tj3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tcPanel_Tj3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tcPanel_Tj3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tcPanel_Tj3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tcPanel_Tj3.Style.GradientAngle = 90;
     this.tcPanel_Tj3.TabIndex = 3;
     this.tcPanel_Tj3.TabItem = this.TJtabItem3;
     //
     // TJtabItem3
     //
     this.TJtabItem3.AttachedControl = this.tcPanel_Tj3;
     this.TJtabItem3.Name = "TJtabItem3";
     this.TJtabItem3.Text = "���ʽ���ּ�";
     this.TJtabItem3.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 47);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(580, 467);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(141)))), ((int)(((byte)(147)))), ((int)(((byte)(160)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 8;
     this.tabControlPanel16.TabItem = this.tabItem1;
     //
     // tabItem1
     //
     this.tabItem1.AttachedControl = this.tabControlPanel16;
     this.tabItem1.Name = "tabItem1";
     this.tabItem1.Text = "";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.Btn_TjBzsgsj);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx2.Location = new System.Drawing.Point(252, 520);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(580, 38);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 52;
     //
     // FrmScaffoldRecommendSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(832, 558);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.tabControl_Tj);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldRecommendSelect";
     this.Text = "���ּ�ѡ��-�Ƽ�ѡ��";
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_TjDsgd)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.panelEx1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.tabControlPanel1.ResumeLayout(false);
     this.tabControlPanel4.ResumeLayout(false);
     this.tabControlPanel3.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.tabControlPanel5.ResumeLayout(false);
     this.tabControlPanel6.ResumeLayout(false);
     this.tabControlPanel7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabControl_Tj)).EndInit();
     this.tabControl_Tj.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #39
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.checkBoxX11 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX9 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX10 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX7 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX8 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX6 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX5 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX12 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.checkBox6 = new System.Windows.Forms.CheckBox();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.checkBox4 = new System.Windows.Forms.CheckBox();
     this.checkBox3 = new System.Windows.Forms.CheckBox();
     this.checkBox2 = new System.Windows.Forms.CheckBox();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox11 = new System.Windows.Forms.CheckBox();
     this.checkBox10 = new System.Windows.Forms.CheckBox();
     this.checkBox9 = new System.Windows.Forms.CheckBox();
     this.checkBox8 = new System.Windows.Forms.CheckBox();
     this.checkBox7 = new System.Windows.Forms.CheckBox();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(31, 42);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(91, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "模板铺设尺寸:";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(129, 44);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 1;
     this.labelX2.Text = "长LL(mm)";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(364, 45);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(114, 23);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "宽BB(mm):";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(473, 45);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(100, 21);
     this.textBox2.TabIndex = 4;
     this.textBox2.Text = "3000";
     this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.radioButton2);
     this.groupBox2.Controls.Add(this.radioButton1);
     this.groupBox2.Controls.Add(this.checkBoxX11);
     this.groupBox2.Controls.Add(this.comboBoxEx7);
     this.groupBox2.Controls.Add(this.labelX12);
     this.groupBox2.Controls.Add(this.checkBoxX9);
     this.groupBox2.Controls.Add(this.comboBoxEx8);
     this.groupBox2.Controls.Add(this.labelX13);
     this.groupBox2.Controls.Add(this.checkBoxX10);
     this.groupBox2.Controls.Add(this.comboBoxEx5);
     this.groupBox2.Controls.Add(this.comboBoxEx6);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.checkBoxX7);
     this.groupBox2.Controls.Add(this.checkBoxX8);
     this.groupBox2.Controls.Add(this.comboBoxEx4);
     this.groupBox2.Controls.Add(this.labelX9);
     this.groupBox2.Controls.Add(this.checkBoxX6);
     this.groupBox2.Controls.Add(this.comboBoxEx3);
     this.groupBox2.Controls.Add(this.labelX8);
     this.groupBox2.Controls.Add(this.checkBoxX5);
     this.groupBox2.Controls.Add(this.comboBoxEx2);
     this.groupBox2.Controls.Add(this.comboBoxEx1);
     this.groupBox2.Controls.Add(this.labelX7);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Controls.Add(this.checkBoxX4);
     this.groupBox2.Controls.Add(this.checkBoxX3);
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.labelX4);
     this.groupBox2.Location = new System.Drawing.Point(30, 72);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(364, 359);
     this.groupBox2.TabIndex = 33;
     this.groupBox2.TabStop = false;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Checked = true;
     this.radioButton2.Location = new System.Drawing.Point(214, 23);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(35, 16);
     this.radioButton2.TabIndex = 63;
     this.radioButton2.TabStop = true;
     this.radioButton2.Text = "否";
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(117, 23);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(35, 16);
     this.radioButton1.TabIndex = 62;
     this.radioButton1.Text = "是";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // checkBoxX11
     //
     //
     //
     //
     this.checkBoxX11.BackgroundStyle.Class = "";
     this.checkBoxX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX11.Location = new System.Drawing.Point(6, 330);
     this.checkBoxX11.Name = "checkBoxX11";
     this.checkBoxX11.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX11.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX11.TabIndex = 61;
     this.checkBoxX11.Text = "连接角模";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DisplayMember = "Text";
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 15;
     this.comboBoxEx7.Items.AddRange(new object[] {
     this.comboItem19,
     this.comboItem20});
     this.comboBoxEx7.Location = new System.Drawing.Point(287, 222);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx7.TabIndex = 60;
     //
     // comboItem19
     //
     this.comboItem19.Text = "50";
     //
     // comboItem20
     //
     this.comboItem20.Text = "100";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(254, 222);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(54, 23);
     this.labelX12.TabIndex = 59;
     this.labelX12.Text = "尺寸:";
     //
     // checkBoxX9
     //
     //
     //
     //
     this.checkBoxX9.BackgroundStyle.Class = "";
     this.checkBoxX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX9.Location = new System.Drawing.Point(255, 180);
     this.checkBoxX9.Name = "checkBoxX9";
     this.checkBoxX9.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX9.TabIndex = 58;
     this.checkBoxX9.Text = "阳角模";
     this.checkBoxX9.CheckedChanged += new System.EventHandler(this.checkBoxX9_CheckedChanged);
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DisplayMember = "Text";
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 15;
     this.comboBoxEx8.Items.AddRange(new object[] {
     this.comboItem17,
     this.comboItem18});
     this.comboBoxEx8.Location = new System.Drawing.Point(287, 151);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx8.TabIndex = 57;
     //
     // comboItem17
     //
     this.comboItem17.Text = "150";
     //
     // comboItem18
     //
     this.comboItem18.Text = "100";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(254, 151);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(55, 23);
     this.labelX13.TabIndex = 56;
     this.labelX13.Text = "尺寸:";
     //
     // checkBoxX10
     //
     //
     //
     //
     this.checkBoxX10.BackgroundStyle.Class = "";
     this.checkBoxX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX10.Location = new System.Drawing.Point(255, 122);
     this.checkBoxX10.Name = "checkBoxX10";
     this.checkBoxX10.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX10.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX10.TabIndex = 55;
     this.checkBoxX10.Text = "阴角模";
     this.checkBoxX10.CheckedChanged += new System.EventHandler(this.checkBoxX10_CheckedChanged);
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DisplayMember = "Text";
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 15;
     this.comboBoxEx5.Items.AddRange(new object[] {
     this.comboItem15,
     this.comboItem16});
     this.comboBoxEx5.Location = new System.Drawing.Point(180, 293);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx5.TabIndex = 54;
     //
     // comboItem15
     //
     this.comboItem15.Text = "50";
     //
     // comboItem16
     //
     this.comboItem16.Text = "100";
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DisplayMember = "Text";
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 15;
     this.comboBoxEx6.Items.AddRange(new object[] {
     this.comboItem13,
     this.comboItem14});
     this.comboBoxEx6.Location = new System.Drawing.Point(180, 260);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx6.TabIndex = 53;
     //
     // comboItem13
     //
     this.comboItem13.Text = "150";
     //
     // comboItem14
     //
     this.comboItem14.Text = "100";
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(140, 293);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(54, 23);
     this.labelX10.TabIndex = 52;
     this.labelX10.Text = "尺寸:";
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(139, 258);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(55, 23);
     this.labelX11.TabIndex = 51;
     this.labelX11.Text = "尺寸:";
     //
     // checkBoxX7
     //
     //
     //
     //
     this.checkBoxX7.BackgroundStyle.Class = "";
     this.checkBoxX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX7.Location = new System.Drawing.Point(83, 291);
     this.checkBoxX7.Name = "checkBoxX7";
     this.checkBoxX7.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX7.TabIndex = 50;
     this.checkBoxX7.Text = "阳角模";
     this.checkBoxX7.CheckedChanged += new System.EventHandler(this.checkBoxX7_CheckedChanged);
     //
     // checkBoxX8
     //
     //
     //
     //
     this.checkBoxX8.BackgroundStyle.Class = "";
     this.checkBoxX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX8.Location = new System.Drawing.Point(83, 258);
     this.checkBoxX8.Name = "checkBoxX8";
     this.checkBoxX8.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX8.TabIndex = 49;
     this.checkBoxX8.Text = "阴角模";
     this.checkBoxX8.CheckedChanged += new System.EventHandler(this.checkBoxX8_CheckedChanged);
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Items.AddRange(new object[] {
     this.comboItem11,
     this.comboItem12});
     this.comboBoxEx4.Location = new System.Drawing.Point(33, 216);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 48;
     //
     // comboItem11
     //
     this.comboItem11.Text = "50";
     //
     // comboItem12
     //
     this.comboItem12.Text = "100";
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(7, 217);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(54, 23);
     this.labelX9.TabIndex = 47;
     this.labelX9.Text = "尺寸:";
     //
     // checkBoxX6
     //
     //
     //
     //
     this.checkBoxX6.BackgroundStyle.Class = "";
     this.checkBoxX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX6.Location = new System.Drawing.Point(6, 178);
     this.checkBoxX6.Name = "checkBoxX6";
     this.checkBoxX6.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX6.TabIndex = 46;
     this.checkBoxX6.Text = "阳角模";
     this.checkBoxX6.CheckedChanged += new System.EventHandler(this.checkBoxX6_CheckedChanged);
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Items.AddRange(new object[] {
     this.comboItem9,
     this.comboItem10});
     this.comboBoxEx3.Location = new System.Drawing.Point(33, 153);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(44, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 45;
     //
     // comboItem9
     //
     this.comboItem9.Text = "150";
     //
     // comboItem10
     //
     this.comboItem10.Text = "100";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(6, 153);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(55, 23);
     this.labelX8.TabIndex = 44;
     this.labelX8.Text = "尺寸:";
     //
     // checkBoxX5
     //
     //
     //
     //
     this.checkBoxX5.BackgroundStyle.Class = "";
     this.checkBoxX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX5.Location = new System.Drawing.Point(6, 124);
     this.checkBoxX5.Name = "checkBoxX5";
     this.checkBoxX5.Size = new System.Drawing.Size(76, 23);
     this.checkBoxX5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX5.TabIndex = 43;
     this.checkBoxX5.Text = "阴角模";
     this.checkBoxX5.CheckedChanged += new System.EventHandler(this.checkBoxX5_CheckedChanged);
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 15;
     this.comboBoxEx2.Items.AddRange(new object[] {
     this.comboItem7,
     this.comboItem8});
     this.comboBoxEx2.Location = new System.Drawing.Point(180, 95);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx2.TabIndex = 42;
     //
     // comboItem7
     //
     this.comboItem7.Text = "50";
     //
     // comboItem8
     //
     this.comboItem8.Text = "100";
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "Text";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 15;
     this.comboBoxEx1.Items.AddRange(new object[] {
     this.comboItem5,
     this.comboItem6});
     this.comboBoxEx1.Location = new System.Drawing.Point(180, 68);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(55, 21);
     this.comboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx1.TabIndex = 41;
     //
     // comboItem5
     //
     this.comboItem5.Text = "150";
     //
     // comboItem6
     //
     this.comboItem6.Text = "100";
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(139, 93);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(54, 23);
     this.labelX7.TabIndex = 40;
     this.labelX7.Text = "尺寸:";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(138, 68);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(55, 23);
     this.labelX6.TabIndex = 39;
     this.labelX6.Text = "尺寸:";
     //
     // checkBoxX4
     //
     //
     //
     //
     this.checkBoxX4.BackgroundStyle.Class = "";
     this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX4.Location = new System.Drawing.Point(83, 93);
     this.checkBoxX4.Name = "checkBoxX4";
     this.checkBoxX4.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX4.TabIndex = 38;
     this.checkBoxX4.Text = "阳角模";
     this.checkBoxX4.CheckedChanged += new System.EventHandler(this.checkBoxX4_CheckedChanged);
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.Class = "";
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Location = new System.Drawing.Point(83, 68);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(104, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 37;
     this.checkBoxX3.Text = "阴角模";
     this.checkBoxX3.CheckedChanged += new System.EventHandler(this.checkBoxX3_CheckedChanged);
     //
     // groupBox1
     //
     this.groupBox1.Location = new System.Drawing.Point(83, 124);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(166, 121);
     this.groupBox1.TabIndex = 36;
     this.groupBox1.TabStop = false;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(19, 23);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(109, 23);
     this.labelX4.TabIndex = 33;
     this.labelX4.Text = "是否选用角模:";
     //
     // checkBoxX12
     //
     //
     //
     //
     this.checkBoxX12.BackgroundStyle.Class = "";
     this.checkBoxX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX12.Location = new System.Drawing.Point(400, 87);
     this.checkBoxX12.Name = "checkBoxX12";
     this.checkBoxX12.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX12.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX12.TabIndex = 34;
     this.checkBoxX12.Text = "选用模板规格:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.checkBox6);
     this.groupBox3.Controls.Add(this.checkBox5);
     this.groupBox3.Controls.Add(this.checkBox4);
     this.groupBox3.Controls.Add(this.checkBox3);
     this.groupBox3.Controls.Add(this.checkBox2);
     this.groupBox3.Controls.Add(this.checkBox1);
     this.groupBox3.Location = new System.Drawing.Point(400, 116);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(200, 80);
     this.groupBox3.TabIndex = 37;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "长l(mm):";
     //
     // checkBox6
     //
     this.checkBox6.AutoSize = true;
     this.checkBox6.Location = new System.Drawing.Point(107, 56);
     this.checkBox6.Name = "checkBox6";
     this.checkBox6.Size = new System.Drawing.Size(48, 16);
     this.checkBox6.TabIndex = 5;
     this.checkBox6.Text = "1500";
     this.checkBox6.UseVisualStyleBackColor = true;
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(107, 37);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(48, 16);
     this.checkBox5.TabIndex = 4;
     this.checkBox5.Text = "1200";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.Location = new System.Drawing.Point(107, 15);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(42, 16);
     this.checkBox4.TabIndex = 3;
     this.checkBox4.Text = "900";
     this.checkBox4.UseVisualStyleBackColor = true;
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.Location = new System.Drawing.Point(22, 56);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(42, 16);
     this.checkBox3.TabIndex = 2;
     this.checkBox3.Text = "750";
     this.checkBox3.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(22, 34);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(42, 16);
     this.checkBox2.TabIndex = 1;
     this.checkBox2.Text = "600";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(22, 18);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(42, 16);
     this.checkBox1.TabIndex = 0;
     this.checkBox1.Text = "450";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox11);
     this.groupBox4.Controls.Add(this.checkBox10);
     this.groupBox4.Controls.Add(this.checkBox9);
     this.groupBox4.Controls.Add(this.checkBox8);
     this.groupBox4.Controls.Add(this.checkBox7);
     this.groupBox4.Location = new System.Drawing.Point(400, 232);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(200, 85);
     this.groupBox4.TabIndex = 38;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "宽b(mm):";
     //
     // checkBox11
     //
     this.checkBox11.AutoSize = true;
     this.checkBox11.Location = new System.Drawing.Point(107, 56);
     this.checkBox11.Name = "checkBox11";
     this.checkBox11.Size = new System.Drawing.Size(42, 16);
     this.checkBox11.TabIndex = 5;
     this.checkBox11.Text = "300";
     this.checkBox11.UseVisualStyleBackColor = true;
     //
     // checkBox10
     //
     this.checkBox10.AutoSize = true;
     this.checkBox10.Location = new System.Drawing.Point(107, 27);
     this.checkBox10.Name = "checkBox10";
     this.checkBox10.Size = new System.Drawing.Size(42, 16);
     this.checkBox10.TabIndex = 4;
     this.checkBox10.Text = "250";
     this.checkBox10.UseVisualStyleBackColor = true;
     //
     // checkBox9
     //
     this.checkBox9.AutoSize = true;
     this.checkBox9.Location = new System.Drawing.Point(22, 62);
     this.checkBox9.Name = "checkBox9";
     this.checkBox9.Size = new System.Drawing.Size(42, 16);
     this.checkBox9.TabIndex = 3;
     this.checkBox9.Text = "200";
     this.checkBox9.UseVisualStyleBackColor = true;
     //
     // checkBox8
     //
     this.checkBox8.AutoSize = true;
     this.checkBox8.Location = new System.Drawing.Point(22, 42);
     this.checkBox8.Name = "checkBox8";
     this.checkBox8.Size = new System.Drawing.Size(42, 16);
     this.checkBox8.TabIndex = 2;
     this.checkBox8.Text = "150";
     this.checkBox8.UseVisualStyleBackColor = true;
     //
     // checkBox7
     //
     this.checkBox7.AutoSize = true;
     this.checkBox7.Location = new System.Drawing.Point(22, 20);
     this.checkBox7.Name = "checkBox7";
     this.checkBox7.Size = new System.Drawing.Size(42, 16);
     this.checkBox7.TabIndex = 1;
     this.checkBox7.Text = "100";
     this.checkBox7.UseVisualStyleBackColor = true;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(422, 334);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(75, 23);
     this.labelX14.TabIndex = 39;
     this.labelX14.Text = "排列方式:";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DisplayMember = "Text";
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 15;
     this.comboBoxEx9.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4});
     this.comboBoxEx9.Location = new System.Drawing.Point(507, 332);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(93, 21);
     this.comboBoxEx9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx9.TabIndex = 40;
     //
     // comboItem1
     //
     this.comboItem1.Text = "全部横向排列";
     //
     // comboItem2
     //
     this.comboItem2.Text = "全部竖向排列";
     //
     // comboItem3
     //
     this.comboItem3.Text = "横竖混合排列";
     //
     // comboItem4
     //
     this.comboItem4.Text = "不固定排列";
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.buttonX1);
     this.panelEx2.Location = new System.Drawing.Point(30, 437);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(594, 33);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 41;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(511, 0);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(80, 30);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "配板设计";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(210, 46);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(80, 21);
     this.integerInput1.TabIndex = 42;
     this.integerInput1.Value = 6000;
     //
     // Frmpeiban
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.ClientSize = new System.Drawing.Size(636, 475);
     this.Controls.Add(this.integerInput1);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.comboBoxEx9);
     this.Controls.Add(this.labelX14);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.checkBoxX12);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "Frmpeiban";
     this.Load += new System.EventHandler(this.Frmpeiban_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.panelEx2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader9 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader10 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader11 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader12 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader13 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader14 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txtMST = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtdienthoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txt_capdo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_codekh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.btnNhomKH = new DevComponents.DotNetBar.ButtonX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmdInDS = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmb_nhom = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.cmdTinhThanh = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.txt_diachi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_tenkh = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.cmb_tinhthanh = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.txtHanNo = new DevComponents.Editors.IntegerInput();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).BeginInit();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(5, 301);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(877, 255);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 75;
     this.groupPanel1.Text = "DANH SÁCH KHÁCH HÀNG";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader9,
     this.columnHeader5,
     this.columnHeader10,
     this.columnHeader3,
     this.columnHeader11,
     this.columnHeader12,
     this.columnHeader13,
     this.columnHeader14,
     this.columnHeader1,
     this.columnHeader4});
     this.lvhanghoa.Font = new System.Drawing.Font("Arial", 11F);
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(864, 226);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 54;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Code KH";
     this.columnHeader2.Width = 80;
     //
     // columnHeader9
     //
     this.columnHeader9.Text = "Tên KH";
     this.columnHeader9.Width = 235;
     //
     // columnHeader5
     //
     this.columnHeader5.Text = "MST";
     this.columnHeader5.Width = 83;
     //
     // columnHeader10
     //
     this.columnHeader10.Text = "Nhóm";
     this.columnHeader10.Width = 77;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Tỉnh thành";
     this.columnHeader3.Width = 100;
     //
     // columnHeader11
     //
     this.columnHeader11.Text = "Địa chỉ";
     this.columnHeader11.Width = 74;
     //
     // columnHeader12
     //
     this.columnHeader12.Text = "Điện thoại";
     this.columnHeader12.Width = 87;
     //
     // columnHeader13
     //
     this.columnHeader13.Text = "Hạn nợ";
     this.columnHeader13.Width = 80;
     //
     // columnHeader14
     //
     this.columnHeader14.Text = "makh";
     this.columnHeader14.Width = 0;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MAnhom";
     this.columnHeader1.Width = 0;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "matinh";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.txtHanNo);
     this.groupPanel2.Controls.Add(this.labelX8);
     this.groupPanel2.Controls.Add(this.labelX7);
     this.groupPanel2.Controls.Add(this.labelX6);
     this.groupPanel2.Controls.Add(this.txtMST);
     this.groupPanel2.Controls.Add(this.txtdienthoai);
     this.groupPanel2.Controls.Add(this.buttonX6);
     this.groupPanel2.Controls.Add(this.buttonX4);
     this.groupPanel2.Controls.Add(this.buttonX5);
     this.groupPanel2.Controls.Add(this.labelX5);
     this.groupPanel2.Controls.Add(this.labelX4);
     this.groupPanel2.Controls.Add(this.txt_capdo);
     this.groupPanel2.Controls.Add(this.txt_codekh);
     this.groupPanel2.Controls.Add(this.labelX3);
     this.groupPanel2.Controls.Add(this.btnNhomKH);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmb_nhom);
     this.groupPanel2.Controls.Add(this.cmdTinhThanh);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.labelX27);
     this.groupPanel2.Controls.Add(this.txt_diachi);
     this.groupPanel2.Controls.Add(this.txt_tenkh);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Controls.Add(this.cmb_tinhthanh);
     this.groupPanel2.Location = new System.Drawing.Point(5, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(880, 252);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "THÔNG TIN KHÁCH HÀNG";
     //
     // labelX6
     //
     this.labelX6.Location = new System.Drawing.Point(20, 151);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(71, 25);
     this.labelX6.TabIndex = 83;
     this.labelX6.Text = "Mã Thuế:";
     //
     // txtMST
     //
     //
     //
     //
     this.txtMST.Border.Class = "TextBoxBorder";
     this.txtMST.FocusHighlightEnabled = true;
     this.txtMST.Location = new System.Drawing.Point(106, 151);
     this.txtMST.Multiline = true;
     this.txtMST.Name = "txtMST";
     this.txtMST.Size = new System.Drawing.Size(193, 24);
     this.txtMST.TabIndex = 4;
     //
     // txtdienthoai
     //
     //
     //
     //
     this.txtdienthoai.Border.Class = "TextBoxBorder";
     this.txtdienthoai.FocusHighlightEnabled = true;
     this.txtdienthoai.Location = new System.Drawing.Point(438, 12);
     this.txtdienthoai.Name = "txtdienthoai";
     this.txtdienthoai.Size = new System.Drawing.Size(374, 24);
     this.txtdienthoai.TabIndex = 5;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(408, 199);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 9;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(490, 199);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 10;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(325, 199);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 8;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // labelX5
     //
     this.labelX5.Location = new System.Drawing.Point(21, 117);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(83, 25);
     this.labelX5.TabIndex = 79;
     this.labelX5.Text = "Tỉnh:";
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(363, 119);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(71, 25);
     this.labelX4.TabIndex = 78;
     this.labelX4.Text = "Cấp độ:";
     //
     // txt_capdo
     //
     //
     //
     //
     this.txt_capdo.Border.Class = "TextBoxBorder";
     this.txt_capdo.FocusHighlightEnabled = true;
     this.txt_capdo.Location = new System.Drawing.Point(438, 121);
     this.txt_capdo.Multiline = true;
     this.txt_capdo.Name = "txt_capdo";
     this.txt_capdo.Size = new System.Drawing.Size(374, 24);
     this.txt_capdo.TabIndex = 7;
     //
     // txt_codekh
     //
     //
     //
     //
     this.txt_codekh.Border.Class = "TextBoxBorder";
     this.txt_codekh.FocusHighlightEnabled = true;
     this.txt_codekh.Location = new System.Drawing.Point(106, 14);
     this.txt_codekh.Name = "txt_codekh";
     this.txt_codekh.Size = new System.Drawing.Size(193, 24);
     this.txt_codekh.TabIndex = 0;
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(21, 10);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(70, 25);
     this.labelX3.TabIndex = 76;
     this.labelX3.Text = "Code KH";
     //
     // btnNhomKH
     //
     this.btnNhomKH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnNhomKH.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.btnNhomKH.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNhomKH.Location = new System.Drawing.Point(302, 83);
     this.btnNhomKH.Name = "btnNhomKH";
     this.btnNhomKH.Size = new System.Drawing.Size(25, 22);
     this.btnNhomKH.TabIndex = 74;
     this.btnNhomKH.Text = "+";
     this.btnNhomKH.Click += new System.EventHandler(this.btnNhomKH_Click);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmdInDS);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 197);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(874, 30);
     this.panel5.TabIndex = 70;
     //
     // cmdInDS
     //
     this.cmdInDS.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdInDS.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdInDS.Location = new System.Drawing.Point(571, 2);
     this.cmdInDS.Margin = new System.Windows.Forms.Padding(0);
     this.cmdInDS.Name = "cmdInDS";
     this.cmdInDS.Size = new System.Drawing.Size(70, 27);
     this.cmdInDS.TabIndex = 54;
     this.cmdInDS.Text = "In DS";
     this.cmdInDS.Click += new System.EventHandler(this.cmdInDS_Click);
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 83);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(83, 25);
     this.labelX2.TabIndex = 72;
     this.labelX2.Text = "Nhóm:";
     //
     // cmb_nhom
     //
     this.cmb_nhom.DisplayMember = "Text";
     this.cmb_nhom.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_nhom.FocusHighlightEnabled = true;
     this.cmb_nhom.FormattingEnabled = true;
     this.cmb_nhom.ItemHeight = 18;
     this.cmb_nhom.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_nhom.Location = new System.Drawing.Point(106, 83);
     this.cmb_nhom.Name = "cmb_nhom";
     this.cmb_nhom.Size = new System.Drawing.Size(193, 24);
     this.cmb_nhom.TabIndex = 2;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // cmdTinhThanh
     //
     this.cmdTinhThanh.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdTinhThanh.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdTinhThanh.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdTinhThanh.Location = new System.Drawing.Point(302, 120);
     this.cmdTinhThanh.Name = "cmdTinhThanh";
     this.cmdTinhThanh.Size = new System.Drawing.Size(25, 22);
     this.cmdTinhThanh.TabIndex = 71;
     this.cmdTinhThanh.Text = "+";
     this.cmdTinhThanh.Click += new System.EventHandler(this.cmdTinhThanh_Click);
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(363, 60);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(53, 25);
     this.labelX1.TabIndex = 70;
     this.labelX1.Text = "Địa chỉ:";
     //
     // labelX27
     //
     this.labelX27.Location = new System.Drawing.Point(363, 12);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(71, 25);
     this.labelX27.TabIndex = 67;
     this.labelX27.Text = "Điện thoại:";
     //
     // txt_diachi
     //
     //
     //
     //
     this.txt_diachi.Border.Class = "TextBoxBorder";
     this.txt_diachi.FocusHighlightEnabled = true;
     this.txt_diachi.Location = new System.Drawing.Point(438, 48);
     this.txt_diachi.Multiline = true;
     this.txt_diachi.Name = "txt_diachi";
     this.txt_diachi.Size = new System.Drawing.Size(374, 57);
     this.txt_diachi.TabIndex = 6;
     //
     // txt_tenkh
     //
     //
     //
     //
     this.txt_tenkh.Border.Class = "TextBoxBorder";
     this.txt_tenkh.FocusHighlightEnabled = true;
     this.txt_tenkh.Location = new System.Drawing.Point(106, 48);
     this.txt_tenkh.Name = "txt_tenkh";
     this.txt_tenkh.Size = new System.Drawing.Size(193, 24);
     this.txt_tenkh.TabIndex = 1;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 45);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên KH:";
     //
     // cmb_tinhthanh
     //
     this.cmb_tinhthanh.DisplayMember = "Text";
     this.cmb_tinhthanh.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_tinhthanh.FocusHighlightEnabled = true;
     this.cmb_tinhthanh.FormattingEnabled = true;
     this.cmb_tinhthanh.ItemHeight = 18;
     this.cmb_tinhthanh.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_tinhthanh.Location = new System.Drawing.Point(106, 120);
     this.cmb_tinhthanh.Name = "cmb_tinhthanh";
     this.cmb_tinhthanh.Size = new System.Drawing.Size(193, 24);
     this.cmb_tinhthanh.TabIndex = 3;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // labelX7
     //
     this.labelX7.Location = new System.Drawing.Point(364, 152);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(71, 25);
     this.labelX7.TabIndex = 84;
     this.labelX7.Text = "Hạn nợ:";
     //
     // labelX8
     //
     this.labelX8.Location = new System.Drawing.Point(520, 154);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(40, 25);
     this.labelX8.TabIndex = 86;
     this.labelX8.Text = "ngày";
     //
     // txtHanNo
     //
     //
     //
     //
     this.txtHanNo.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txtHanNo.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.txtHanNo.Location = new System.Drawing.Point(438, 154);
     this.txtHanNo.Name = "txtHanNo";
     this.txtHanNo.ShowUpDown = true;
     this.txtHanNo.Size = new System.Drawing.Size(80, 24);
     this.txtHanNo.TabIndex = 87;
     //
     // frmKhachHang
     //
     this.ClientSize = new System.Drawing.Size(897, 577);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmKhachHang";
     this.Text = "Quản lý khách hàng";
     this.Load += new System.EventHandler(this.frmKhachHang_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtHanNo)).EndInit();
     this.ResumeLayout(false);
 }
Example #41
0
        private void Form1_Load(object sender, System.EventArgs e)
        {
            ExplorerBarGroupItem group = new ExplorerBarGroupItem("group1", "Search");

            group.SetDefaultAppearance();
            explorerBar1.Groups.Add(group);

            LabelItem label = new LabelItem("searchLabel", "Search by any or all of the criteria below.");

            label.Stretch  = true;
            label.WordWrap = true;
            label.Font     = new Font(explorerBar1.Font, FontStyle.Bold);
            group.SubItems.Add(label);

            label          = new LabelItem("searchLabel1", "All or part of the file name:");
            label.Stretch  = true;
            label.WordWrap = true;
            group.SubItems.Add(label);

            // Hosting Text Box on Explorer Bar
            TextBoxItem textItem = new TextBoxItem("txtFileName");

            textItem.Stretch = true;
            group.SubItems.Add(textItem);

            // Hosting Label on Explorer Bar
            label          = new LabelItem("searchLabel2", "Look in:");
            label.Stretch  = true;
            label.WordWrap = true;
            group.SubItems.Add(label);

            // Hosting Combo Box on Explorer Bar
            ComboBoxItem combo = new ComboBoxItem("cboLookIn");

            combo.Stretch = true;
            DevComponents.Editors.ComboItem cboItem = new DevComponents.Editors.ComboItem();
            cboItem.Text = "My Computer";
            combo.Items.Add(cboItem);
            combo.SelectedIndex = 0;
            group.SubItems.Add(combo);

            group.Expanded = true;

            group = new ExplorerBarGroupItem("group2", "When was it modified?");
            group.SetDefaultAppearance();
            explorerBar1.Groups.Add(group);

            // Hosting any .NET controls on Explorer Bar in this case RadioButton
            // Don't remember Option
            ControlContainerItem cont   = new ControlContainerItem("chk1", "Don't Remember");
            RadioButton          option = new RadioButton();

            option.Name      = "chkDontRemember";
            option.Text      = "Don't Remember";
            option.Font      = new Font(explorerBar1.Font, FontStyle.Bold);
            option.Checked   = true;
            option.BackColor = Color.Transparent;
            cont.Control     = option;
            group.SubItems.Add(cont);

            // Within last week
            cont             = new ControlContainerItem("chk1", "Within last week");
            option           = new RadioButton();
            option.Name      = "chkLastweek";
            option.Text      = "Within last week";
            option.BackColor = Color.Transparent;
            cont.Control     = option;
            group.SubItems.Add(cont);

            // Past month
            cont             = new ControlContainerItem("chk1", "Past month");
            option           = new RadioButton();
            option.Name      = "chkLastMonth";
            option.Text      = "Past month";
            option.BackColor = Color.Transparent;
            cont.Control     = option;
            group.SubItems.Add(cont);

            // Within the past year
            cont             = new ControlContainerItem("chk1", "Within the past year");
            option           = new RadioButton();
            option.Name      = "chkLastYear";
            option.Text      = "Within the past year";
            option.BackColor = Color.Transparent;
            cont.Control     = option;
            group.SubItems.Add(cont);

            group = new ExplorerBarGroupItem("group3", "Additional Options");
            group.SetDefaultAppearance();
            explorerBar1.Groups.Add(group);
            group.Expanded = true;

            // Other Search Options
            ButtonItem btn = new ButtonItem("bSearchOptions", "Other search options");

            btn.HotFontUnderline = true;
            btn.HotTrackingStyle = eHotTrackingStyle.None;
            btn.Image            = new Bitmap(this.GetType(), "Options.png");
            btn.ImagePosition    = eImagePosition.Left;
            btn.ButtonStyle      = eButtonStyle.ImageAndText;
            btn.Cursor           = Cursors.Hand;
            group.SubItems.Add(btn);

            // Change Preferences
            btn = new ButtonItem("bPreferences", "Change Preferences");
            btn.HotFontUnderline = true;
            btn.HotTrackingStyle = eHotTrackingStyle.None;
            btn.Image            = new Bitmap(this.GetType(), "Preferences.png");
            btn.ImagePosition    = eImagePosition.Left;
            btn.ButtonStyle      = eButtonStyle.ImageAndText;
            btn.Cursor           = Cursors.Hand;
            group.SubItems.Add(btn);

            // Applies all layout changes and refreshes display
            explorerBar1.RecalcLayout();
        }
Example #42
0
        public bool SetElementProp()
        {
            try
            {
                //if (txtName.Text.Trim() == "")
                //{
                //    MessageBox.Show("请输入变量名称", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);yjl0616
                //    return false;
                //}
                IElementProperties3 pElementProp = m_pOrgElement as IElementProperties3;

                if (pElementProp != null)
                {
                    pElementProp.Name = txtName.Text;
                }

                //对于FrameElement的情况
                if (m_pOrgElement is IFrameElement)
                {
                    IFrameProperties pFrameProperty      = null;
                    IFrameDecoration pFrameDecoration    = null;
                    DevComponents.Editors.ComboItem item = cmbBorder.SelectedItem as DevComponents.Editors.ComboItem;
                    if (cmbBorder.SelectedIndex != -1 && item != null)
                    {
                        IBorder pBorder = (IBorder)(item.Tag);
                        pFrameDecoration = (IFrameDecoration)pBorder;
                        pFrameDecoration.HorizontalSpacing    = (double)numBorderGapX.Value;
                        pFrameDecoration.VerticalSpacing      = (double)numBorderGapY.Value;
                        pFrameDecoration.CornerRounding       = (short)numBorderRound.Value;
                        ((IFrameElement)m_pOrgElement).Border = pBorder;
                    }
                    else
                    {
                        ((IFrameElement)m_pOrgElement).Border = null;
                    }
                    item = cmbBack.SelectedItem as DevComponents.Editors.ComboItem;
                    if (cmbBack.SelectedIndex != -1 && item != null)
                    {
                        IBackground pBackground = (IBackground)(item.Tag);
                        pFrameDecoration = (IFrameDecoration)pBackground;
                        pFrameDecoration.HorizontalSpacing        = (double)numBackGapX.Value;
                        pFrameDecoration.VerticalSpacing          = (double)numBackGapY.Value;
                        pFrameDecoration.CornerRounding           = (short)numBackRound.Value;
                        ((IFrameElement)m_pOrgElement).Background = pBackground;
                    }
                    else
                    {
                        ((IFrameElement)m_pOrgElement).Background = null;
                    }
                    item = cmbShadow.SelectedItem as DevComponents.Editors.ComboItem;
                    if (cmbShadow.SelectedIndex != -1 && item != null)
                    {
                        IShadow pShadow = (IShadow)(item.Tag);
                        pFrameDecoration = (IFrameDecoration)pShadow;
                        pFrameDecoration.HorizontalSpacing = (double)numShadowGapX.Value;
                        pFrameDecoration.VerticalSpacing   = (double)numShadowGapY.Value;
                        pFrameDecoration.CornerRounding    = (short)numShadowRound.Value;
                        pFrameProperty        = (IFrameProperties)m_pOrgElement;
                        pFrameProperty.Shadow = pShadow;
                    }
                    else
                    {
                        pFrameProperty        = (IFrameProperties)m_pOrgElement;
                        pFrameProperty.Shadow = null;
                    }
                }
                IEnvelope pBounds = new EnvelopeClass();
                m_pOrgElement.QueryBounds(m_pDisplay, pBounds);

                //设置偏移
                double dx, dy;
                IPoint pFromPoint = pBounds.LowerLeft;

                if (chkUseOffDist.Checked)
                {
                    dx = Convert.ToDouble(numLowerLeftX.Text);
                    dy = Convert.ToDouble(numLowerLeftY.Text);
                }
                else
                {
                    dx = Convert.ToDouble(numLowerLeftX.Text) - pFromPoint.X;
                    dy = Convert.ToDouble(numLowerLeftY.Text) - pFromPoint.Y;
                }
                m_pTransform.Move(dx, dy);

                //设置缩放
                pFromPoint = pBounds.LowerLeft;
                if (chkUsePercent.Checked)
                {
                    dx = ((Convert.ToDouble(numWidth.Text) / 100) * pBounds.Width) / pBounds.Width;
                    dy = ((Convert.ToDouble(numHeight.Text) / 100) * pBounds.Width) / pBounds.Height;
                }
                else
                {
                    dx = Convert.ToDouble(numWidth.Text) / pBounds.Width;
                    dy = Convert.ToDouble(numHeight.Text) / pBounds.Height;
                }
                m_pTransform.Scale(pFromPoint, dx, dy);

                //设置符号
                if (m_pOrgElement is IMarkerElement)
                {
                    IMarkerElement pMrkElement = m_pOrgElement as IMarkerElement;
                    IMarkerSymbol  pSymbol     = (IMarkerSymbol)picPoint.Tag;
                    double         dblSize     = pMrkElement.Symbol.Size;
                    pMrkElement.Symbol = (IMarkerSymbol)picPoint.Tag;
                    pSymbol.Size       = dblSize;
                    pMrkElement.Symbol = pSymbol;
                }
                else if (m_pOrgElement is ILineElement)
                {
                    ILineElement pLinElement = m_pOrgElement as ILineElement;
                    pLinElement.Symbol = (ILineSymbol)picLine.Tag;
                }
                else if (m_pOrgElement is IFillShapeElement)
                {
                    IFillShapeElement pFillElement = m_pOrgElement as IFillShapeElement;
                    pFillElement.Symbol = (IFillSymbol)picPoly.Tag;
                }
                else if (m_pOrgElement is ITextElement)
                {
                    ITextElement pTxtElement = m_pOrgElement as ITextElement;
                    pTxtElement.Text   = txtText.Text;
                    pTxtElement.Symbol = (ITextSymbol)picText.Tag;
                }

                if (m_pOrgElement is IFrameElement)
                {
                    //判断指北针,比例尺,比例文本
                    IMapSurroundFrame pMapSurroundFrame = m_pOrgElement as IMapSurroundFrame;
                    if (pMapSurroundFrame != null)
                    {
                        IMapSurround pMapSurround = pMapSurroundFrame.MapSurround;
                        if (pMapSurround != null)
                        {
                            if (pMapSurround is INorthArrow)
                            {
                                pMapSurroundFrame.MapSurround      = (IMapSurround)picArrow.Tag;
                                pMapSurroundFrame.MapSurround.Name = "指北针";
                            }
                            else if (pMapSurround is IScaleBar)
                            {
                                pMapSurroundFrame.MapSurround      = (IMapSurround)picScale.Tag;
                                pMapSurroundFrame.MapSurround.Name = "比例尺";
                            }
                            else if (pMapSurround is IScaleText)
                            {
                                pMapSurroundFrame.MapSurround      = (IMapSurround)picScaleText.Tag;
                                pMapSurroundFrame.MapSurround.Name = "比例尺";
                            }
                        }
                    }
                }

                m_pGraphicCtn.UpdateElement(m_pOrgElement);
                m_pActiveView.PartialRefresh(esriViewDrawPhase.esriViewGraphics, null, null);

                if (chkUseOffDist.Checked)
                {
                    numLowerLeftX.Text = "0";
                    numLowerLeftY.Text = "0";
                }
                if (chkUsePercent.Checked)
                {
                    numHeight.Text = "100";
                    numWidth.Text  = "100";
                }
                return(true);
            }
            catch
            {
                //MessageBox.Show("保存属性时出现错误,错误描述为:" + ex.Message, "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return(false);
            }

            //
        }
Example #43
0
        private void ButtonItemFWClick(object sender, EventArgs e)
        {
            if (switchButtonItem_ModeLock.Value)
            {
                MessageBox.Show(Resources.NoSwitchMode);
                return;
            }
            JDSelected = false;
            Program._jdState = false;
            PWSelected = false;
            Program._pwState = false;
            FWSelected = true;
            Program._fwState = true;
            labelItem_ModeImg.Image = Resources.FW2;

            comboBoxEx_Proc.Items.Clear();

            var comboItem0 = new DevComponents.Editors.ComboItem();
            var comboItem1 = new DevComponents.Editors.ComboItem();
            var comboItem2 = new DevComponents.Editors.ComboItem();
            var comboItem3 = new DevComponents.Editors.ComboItem();
            var comboItem4 = new DevComponents.Editors.ComboItem();
            var comboItem5 = new DevComponents.Editors.ComboItem();
            var comboItem6 = new DevComponents.Editors.ComboItem();
            var comboItem7 = new DevComponents.Editors.ComboItem();
            var comboItem8 = new DevComponents.Editors.ComboItem();
            var comboItem9 = new DevComponents.Editors.ComboItem();
            var comboItem10 = new DevComponents.Editors.ComboItem();
            var comboItem11 = new DevComponents.Editors.ComboItem();
            var comboItem12 = new DevComponents.Editors.ComboItem();
            var comboItem13 = new DevComponents.Editors.ComboItem();
            var comboItem14 = new DevComponents.Editors.ComboItem();
            var comboItem15 = new DevComponents.Editors.ComboItem();
            var comboItem16 = new DevComponents.Editors.ComboItem();
            var comboItem17 = new DevComponents.Editors.ComboItem();
            var comboItem18 = new DevComponents.Editors.ComboItem();
            var comboItem19 = new DevComponents.Editors.ComboItem();
            var comboItem20 = new DevComponents.Editors.ComboItem();
            var comboItem21 = new DevComponents.Editors.ComboItem();
            var comboItem22 = new DevComponents.Editors.ComboItem();
            var comboItem23 = new DevComponents.Editors.ComboItem();
            var comboItem24 = new DevComponents.Editors.ComboItem();
            var comboItem25 = new DevComponents.Editors.ComboItem();
            var comboItem26 = new DevComponents.Editors.ComboItem();
            var comboItem27 = new DevComponents.Editors.ComboItem();
            
            comboItem0.Text = Resources.Atk;
            comboItem0.FontStyle = FontStyle.Bold;

            comboItem1.Text = Resources.CastSkill;
            comboItem1.FontStyle = FontStyle.Bold;

            comboItem2.Text = Resources.Broadcast;
            comboItem2.FontStyle = FontStyle.Bold;

            comboItem3.Text = Resources.ResetAggro;
            comboItem3.FontStyle = FontStyle.Bold;

            comboItem4.Text = Resources.Exec_AS;
            comboItem4.FontStyle = FontStyle.Bold;

            comboItem5.Text = Resources.DisableAS;
            comboItem5.FontStyle = FontStyle.Bold;

            comboItem6.Text = Resources.EnableAS;
            comboItem6.FontStyle = FontStyle.Bold;

            comboItem7.Text = Resources.CreateTimer;
            comboItem7.FontStyle = FontStyle.Bold;

            comboItem8.Text = Resources.DelTimer;
            comboItem8.FontStyle = FontStyle.Bold;

            comboItem9.Text = Resources.Flee;
            comboItem9.FontStyle = FontStyle.Bold;

            comboItem10.Text = Resources.BeTaunted;
            comboItem10.FontStyle = FontStyle.Bold;

            comboItem11.Text = Resources.FadeTarget;
            comboItem11.FontStyle = FontStyle.Bold;

            comboItem12.Text = Resources.NA;
            comboItem12.FontStyle = FontStyle.Bold;

            comboItem13.Text = Resources.Unk + Resources.ONE + Resources.THREE;
            comboItem13.FontStyle = FontStyle.Bold;

            comboItem14.Text = Resources.NPCGenerator;
            comboItem14.FontStyle = FontStyle.Bold;

            comboItem15.Text = Resources.SumMob;
            comboItem15.FontStyle = FontStyle.Bold;

            comboItem16.Text = Resources.Unk + Resources.ONE + Resources.THREE;
            comboItem16.FontStyle = FontStyle.Bold;

            comboItem17.Text = Resources.Unk + Resources.ONE + Resources.SEVEN;
            comboItem17.FontStyle = FontStyle.Bold;

            comboItem18.Text = Resources.Disappear;
            comboItem18.FontStyle = FontStyle.Bold;

            comboItem19.Text = Resources.Unk + Resources.ONE + Resources.NINE;
            comboItem19.FontStyle = FontStyle.Bold;

            comboItem20.Text = Resources.NA;
            comboItem20.FontStyle = FontStyle.Bold;

            comboItem21.Text = Resources.SetMobAttr;
            comboItem21.FontStyle = FontStyle.Bold;

            comboItem22.Text = Resources.SetValue;
            comboItem22.FontStyle = FontStyle.Bold;

            comboItem23.Text = Resources.AddValue;
            comboItem23.FontStyle = FontStyle.Bold;

            comboItem24.Text = Resources.Unk + Resources.TWO + Resources.FOUR;
            comboItem24.FontStyle = FontStyle.Bold;

            comboItem25.Text = Resources.Unk + Resources.TWO + Resources.FIVE;
            comboItem25.FontStyle = FontStyle.Bold;

            comboItem26.Text = Resources.Unk + Resources.TWO + Resources.SIX;
            comboItem26.FontStyle = FontStyle.Bold;

            comboItem27.Text = Resources.Unk + Resources.TWO + Resources.SEVEN;
            comboItem27.FontStyle = FontStyle.Bold;

            comboBoxEx_Proc.Items.AddRange(new object[]
            {
                comboItem0,
                comboItem1,
                comboItem2,
                comboItem3,
                comboItem4,
                comboItem5,
                comboItem6,
                comboItem7,
                comboItem8,
                comboItem9,
                comboItem10,
                comboItem11,
                comboItem12,
                comboItem13,
                comboItem14,
                comboItem15,
                comboItem16,
                comboItem17,
                comboItem18,
                comboItem19,
                comboItem20,
                comboItem21,
                comboItem22,
                comboItem23,
                comboItem24,
                comboItem25,
                comboItem26,
                comboItem27
            });

            FWProcList();

            // clear out condition expressions
            comboBoxEx_CondEx.Items.Clear();

            // Dynamically allocate all needed items
            var comboItemx0 = new DevComponents.Editors.ComboItem();
            var comboItemx1 = new DevComponents.Editors.ComboItem();
            var comboItemx2 = new DevComponents.Editors.ComboItem();
            var comboItemx3 = new DevComponents.Editors.ComboItem();
            var comboItemx4 = new DevComponents.Editors.ComboItem();
            var comboItemx5 = new DevComponents.Editors.ComboItem();
            var comboItemx6 = new DevComponents.Editors.ComboItem();
            var comboItemx7 = new DevComponents.Editors.ComboItem();
            var comboItemx8 = new DevComponents.Editors.ComboItem();
            var comboItemx9 = new DevComponents.Editors.ComboItem();
            var comboItemx10 = new DevComponents.Editors.ComboItem();
            var comboItemx11 = new DevComponents.Editors.ComboItem();
            var comboItemx12 = new DevComponents.Editors.ComboItem();
            var comboItemx13 = new DevComponents.Editors.ComboItem();
            var comboItemx14 = new DevComponents.Editors.ComboItem();
            var comboItemx15 = new DevComponents.Editors.ComboItem();
            var comboItemx16 = new DevComponents.Editors.ComboItem();
            var comboItemx17 = new DevComponents.Editors.ComboItem();

            // setup item values
            comboItemx0.Text = Resources.Atk;
            comboItemx0.FontStyle = FontStyle.Bold;

            comboItemx1.Text = Resources.CastSkill;
            comboItemx1.FontStyle = FontStyle.Bold;

            comboItemx2.Text = Resources.Broadcast;
            comboItemx2.FontStyle = FontStyle.Bold;

            comboItemx3.Text = Resources.ResetAggro;
            comboItemx3.FontStyle = FontStyle.Bold;

            comboItemx4.Text = Resources.Exec_AS;
            comboItemx4.FontStyle = FontStyle.Bold;

            comboItemx5.Text = Resources.DisableAS;
            comboItemx5.FontStyle = FontStyle.Bold;

            comboItemx6.Text = Resources.EnableAS;
            comboItemx6.FontStyle = FontStyle.Bold;

            comboItemx7.Text = Resources.CreateTimer;
            comboItemx7.FontStyle = FontStyle.Bold;

            comboItemx8.Text = Resources.DelTimer;
            comboItemx8.FontStyle = FontStyle.Bold;

            comboItemx9.Text = Resources.Flee;
            comboItemx9.FontStyle = FontStyle.Bold;

            comboItemx10.Text = Resources.BeTaunted;
            comboItemx10.FontStyle = FontStyle.Bold;

            comboItemx11.Text = Resources.Unk + Resources.ONE + Resources.ONE;
            comboItemx11.FontStyle = FontStyle.Bold;

            comboItemx12.Text = Resources.FadeAggro;
            comboItemx12.FontStyle = FontStyle.Bold;

            comboItemx13.Text = Resources.Unk + Resources.ONE + Resources.THREE;
            comboItemx13.FontStyle = FontStyle.Bold;

            comboItemx14.Text = Resources.Trigger;
            comboItemx14.FontStyle = FontStyle.Bold;

            comboItemx15.Text = Resources.SumMob;
            comboItemx15.FontStyle = FontStyle.Bold;

            comboItemx16.Text = Resources.Unk + Resources.ONE + Resources.SIX;
            comboItemx16.FontStyle = FontStyle.Bold;

            comboItemx17.Text = Resources.SetPath;
            comboItemx17.FontStyle = FontStyle.Bold;

            // add created range to comboBox
            comboBoxEx_CondEx.Items.AddRange(new object[]
            {
                comboItemx0,
                comboItemx1,
                comboItemx2,
                comboItemx3,
                comboItemx4,
                comboItemx5,
                comboItemx6,
                comboItemx7,
                comboItemx8,
                comboItemx9,
                comboItemx10,
                comboItemx11,
                comboItemx12,
                comboItemx13,
                comboItemx14,
                comboItemx15,
                comboItemx16,
                comboItemx17
            });
        }
Example #44
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.mdiClient1 = new System.Windows.Forms.MdiClient();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.itemContainer9 = new DevComponents.DotNetBar.ItemContainer();
     this.btnText = new DevComponents.DotNetBar.ButtonItem();
     this.btnNavigation = new DevComponents.DotNetBar.ButtonItem();
     this.labelStatus = new DevComponents.DotNetBar.LabelItem();
     this.progressBarItem1 = new DevComponents.DotNetBar.ProgressBarItem();
     this.itemContainer13 = new DevComponents.DotNetBar.ItemContainer();
     this.labelPosition = new DevComponents.DotNetBar.LabelItem();
     this.ribbonControl1 = new DevComponents.DotNetBar.RibbonControl();
     this.ribPnlContext = new DevComponents.DotNetBar.RibbonPanel();
     this.ribGrpMainLoop = new DevComponents.DotNetBar.RibbonBar();
     this.btnParamIn4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.btnCalc4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.btnProcess4MainLoop = new DevComponents.DotNetBar.ButtonItem();
     this.ribPnlWrite = new DevComponents.DotNetBar.RibbonPanel();
     this.ribTagParagraph = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerParagrapg1 = new DevComponents.DotNetBar.ItemContainer();
     this.itemContainerParagrapg2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonAlignLeft = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignCenter = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignRight = new DevComponents.DotNetBar.ButtonItem();
     this.buttonAlignJustify = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerParagrapg4 = new DevComponents.DotNetBar.ItemContainer();
     this.btnSeqNumber = new DevComponents.DotNetBar.ButtonItem();
     this.btnGrade = new DevComponents.DotNetBar.ButtonItem();
     this.btnToRigth = new DevComponents.DotNetBar.ButtonItem();
     this.btnToLeft = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerParagrapg3 = new DevComponents.DotNetBar.ItemContainer();
     this.btnBorders = new DevComponents.DotNetBar.ButtonItem();
     this.btnShading = new DevComponents.DotNetBar.ButtonItem();
     this.ribTagFont = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerFont1 = new DevComponents.DotNetBar.ItemContainer();
     this.comboFont = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboFontSize = new DevComponents.DotNetBar.ComboBoxItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.itemContainerFont2 = new DevComponents.DotNetBar.ItemContainer();
     this.buttonFontBold = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontItalic = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontUnderline = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFontStrike = new DevComponents.DotNetBar.ButtonItem();
     this.buttonTextColor = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.ribTagClipboard = new DevComponents.DotNetBar.RibbonBar();
     this.buttonPaste = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem53 = new DevComponents.DotNetBar.ButtonItem();
     this.btnPasteSpecial = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerClipboard = new DevComponents.DotNetBar.ItemContainer();
     this.buttonCut = new DevComponents.DotNetBar.ButtonItem();
     this.btnFormat = new DevComponents.DotNetBar.ButtonItem();
     this.ribPnlLayout = new DevComponents.DotNetBar.RibbonPanel();
     this.ribBarOptions = new DevComponents.DotNetBar.RibbonBar();
     this.itemContainerOptions1 = new DevComponents.DotNetBar.ItemContainer();
     this.checkBoxItem1 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem3 = new DevComponents.DotNetBar.CheckBoxItem();
     this.itemContainer1Options2 = new DevComponents.DotNetBar.ItemContainer();
     this.checkBoxItem4 = new DevComponents.DotNetBar.CheckBoxItem();
     this.checkBoxItem6 = new DevComponents.DotNetBar.CheckBoxItem();
     this.ribBarFind = new DevComponents.DotNetBar.RibbonBar();
     this.buttonFind = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainerFind = new DevComponents.DotNetBar.ItemContainer();
     this.buttonReplace = new DevComponents.DotNetBar.ButtonItem();
     this.buttonGoto = new DevComponents.DotNetBar.ButtonItem();
     this.ribTagPageSetup = new DevComponents.DotNetBar.RibbonBar();
     this.buttonMargins = new DevComponents.DotNetBar.ButtonItem();
     this.btnOrientation = new DevComponents.DotNetBar.ButtonItem();
     this.btnAuto = new DevComponents.DotNetBar.ButtonItem();
     this.btnHorizontal = new DevComponents.DotNetBar.ButtonItem();
     this.btnVertical = new DevComponents.DotNetBar.ButtonItem();
     this.btnSize = new DevComponents.DotNetBar.ButtonItem();
     this.btnPrintArea = new DevComponents.DotNetBar.ButtonItem();
     this.ribTabPrjManage = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribTabMainDevice = new DevComponents.DotNetBar.RibbonTabItem();
     this.ribTagMainLoop = new DevComponents.DotNetBar.RibbonTabItem();
     this.buttonChangeStyle = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Blue = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandTheme = new DevComponents.DotNetBar.Command(this.components);
     this.buttonStyleOffice2007Silver = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFile = new DevComponents.DotNetBar.Office2007StartButton();
     this.superTabControl1 = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.recentPlacesItemsPanel = new DevComponents.DotNetBar.ItemPanel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.recentDocsItemPane = new DevComponents.DotNetBar.ItemPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem67 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem68 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem69 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem70 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem71 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem72 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.superTabItem3 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel4 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem77 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem73 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem74 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem75 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem76 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem4 = new DevComponents.DotNetBar.SuperTabItem();
     this.buttonItem61 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSave = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem63 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem64 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem65 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem66 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonSave = new DevComponents.DotNetBar.ButtonItem();
     this.buttonUndo = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem17 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem62 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleOffice2007Black = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem60 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem16 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonStyleCustom = new DevComponents.DotNetBar.ColorPickerDropDown();
     this.RibbonStateCommand = new DevComponents.DotNetBar.Command(this.components);
     this.menuFileContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileTwoColumnContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileItems = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFileSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.itemContainer12 = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem56 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileMRU = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileBottomContainer = new DevComponents.DotNetBar.ItemContainer();
     this.buttonOptions = new DevComponents.DotNetBar.ButtonItem();
     this.buttonExit = new DevComponents.DotNetBar.ButtonItem();
     this.progressBarTimer = new System.Windows.Forms.Timer(this.components);
     this.styleManager = new DevComponents.DotNetBar.StyleManager(this.components);
     this.grpBoxTree = new System.Windows.Forms.GroupBox();
     this.treeView1 = new System.Windows.Forms.TreeView();
     this.imageList = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.ribbonControl1.SuspendLayout();
     this.ribPnlContext.SuspendLayout();
     this.ribPnlWrite.SuspendLayout();
     this.ribPnlLayout.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
     this.superTabControl1.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.superTabControlPanel4.SuspendLayout();
     this.grpBoxTree.SuspendLayout();
     this.SuspendLayout();
     //
     // mdiClient1
     //
     this.mdiClient1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mdiClient1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdiClient1.Location = new System.Drawing.Point(5, 148);
     this.mdiClient1.Name = "mdiClient1";
     this.mdiClient1.Size = new System.Drawing.Size(958, 452);
     this.mdiClient1.TabIndex = 5;
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.IsMaximized = false;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer9,
     this.labelStatus,
     this.progressBarItem1,
     this.itemContainer13});
     this.bar1.ItemSpacing = 2;
     this.bar1.Location = new System.Drawing.Point(5, 600);
     this.bar1.Name = "bar1";
     this.bar1.PaddingBottom = 0;
     this.bar1.PaddingTop = 0;
     this.bar1.Size = new System.Drawing.Size(958, 28);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "barStatus";
     //
     // itemContainer9
     //
     //
     //
     //
     this.itemContainer9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer9.BeginGroup = true;
     this.itemContainer9.Name = "itemContainer9";
     this.itemContainer9.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnText,
     this.btnNavigation});
     //
     //
     //
     this.itemContainer9.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnText
     //
     this.btnText.Enabled = false;
     this.btnText.EnableMarkup = false;
     this.btnText.FontBold = true;
     this.btnText.ForeColor = System.Drawing.Color.Black;
     this.btnText.ImagePaddingVertical = 9;
     this.btnText.Name = "btnText";
     this.btnText.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
     this.btnText.RibbonWordWrap = false;
     this.btnText.ShowSubItems = false;
     this.btnText.StopPulseOnMouseOver = false;
     this.btnText.SymbolSize = 10F;
     this.btnText.Text = "当前位置:";
     //
     // btnNavigation
     //
     this.btnNavigation.Enabled = false;
     this.btnNavigation.FontBold = true;
     this.btnNavigation.ImagePaddingVertical = 9;
     this.btnNavigation.Name = "btnNavigation";
     this.btnNavigation.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.None;
     this.btnNavigation.SymbolSize = 10F;
     this.btnNavigation.Tooltip = "Comments";
     //
     // labelStatus
     //
     this.labelStatus.Name = "labelStatus";
     this.labelStatus.PaddingLeft = 2;
     this.labelStatus.PaddingRight = 2;
     this.labelStatus.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelStatus.Stretch = true;
     //
     // progressBarItem1
     //
     //
     //
     //
     this.progressBarItem1.BackStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarItem1.ChunkGradientAngle = 0F;
     this.progressBarItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.progressBarItem1.Name = "progressBarItem1";
     this.progressBarItem1.RecentlyUsed = false;
     //
     // itemContainer13
     //
     //
     //
     //
     this.itemContainer13.BackgroundStyle.Class = "Office2007StatusBarBackground2";
     this.itemContainer13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.Name = "itemContainer13";
     this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelPosition});
     //
     //
     //
     this.itemContainer13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelPosition
     //
     this.labelPosition.Name = "labelPosition";
     this.labelPosition.PaddingLeft = 2;
     this.labelPosition.PaddingRight = 2;
     this.labelPosition.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelPosition.Width = 100;
     //
     // ribbonControl1
     //
     this.ribbonControl1.BackColor = System.Drawing.SystemColors.Control;
     this.ribbonControl1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ribbonControl1.BackgroundImage")));
     //
     //
     //
     this.ribbonControl1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonControl1.CaptionVisible = true;
     this.ribbonControl1.Controls.Add(this.ribPnlContext);
     this.ribbonControl1.Controls.Add(this.ribPnlWrite);
     this.ribbonControl1.Controls.Add(this.ribPnlLayout);
     this.ribbonControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.ribbonControl1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.ForeColor = System.Drawing.Color.Black;
     this.ribbonControl1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ribTabPrjManage,
     this.ribTabMainDevice,
     this.ribTagMainLoop,
     this.buttonChangeStyle});
     this.ribbonControl1.KeyTipsFont = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Location = new System.Drawing.Point(5, 1);
     this.ribbonControl1.Name = "ribbonControl1";
     this.ribbonControl1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 3);
     this.ribbonControl1.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFile,
     this.buttonSave,
     this.buttonUndo});
     this.ribbonControl1.RibbonStripFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribbonControl1.Size = new System.Drawing.Size(958, 147);
     this.ribbonControl1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribbonControl1.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.ribbonControl1.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.ribbonControl1.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.ribbonControl1.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.ribbonControl1.SystemText.QatDialogAddButton = "&Add >>";
     this.ribbonControl1.SystemText.QatDialogCancelButton = "Cancel";
     this.ribbonControl1.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.ribbonControl1.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.ribbonControl1.SystemText.QatDialogOkButton = "OK";
     this.ribbonControl1.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatDialogRemoveButton = "&Remove";
     this.ribbonControl1.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.ribbonControl1.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.ribbonControl1.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.ribbonControl1.TabGroupHeight = 14;
     this.ribbonControl1.TabIndex = 8;
     //
     // ribPnlContext
     //
     this.ribPnlContext.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlContext.Controls.Add(this.ribGrpMainLoop);
     this.ribPnlContext.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlContext.Location = new System.Drawing.Point(0, 58);
     this.ribPnlContext.Name = "ribPnlContext";
     this.ribPnlContext.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlContext.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlContext.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlContext.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlContext.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlContext.TabIndex = 4;
     //
     // ribGrpMainLoop
     //
     this.ribGrpMainLoop.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribGrpMainLoop.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribGrpMainLoop.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribGrpMainLoop.ContainerControlProcessDialogKey = true;
     this.ribGrpMainLoop.DragDropSupport = true;
     this.ribGrpMainLoop.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ribGrpMainLoop.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnParamIn4MainLoop,
     this.btnCalc4MainLoop,
     this.btnProcess4MainLoop});
     this.ribGrpMainLoop.Location = new System.Drawing.Point(3, 0);
     this.ribGrpMainLoop.Name = "ribGrpMainLoop";
     this.ribGrpMainLoop.Size = new System.Drawing.Size(189, 89);
     this.ribGrpMainLoop.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribGrpMainLoop.TabIndex = 0;
     this.ribGrpMainLoop.Text = "主回路状态计算";
     //
     //
     //
     this.ribGrpMainLoop.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribGrpMainLoop.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnParamIn4MainLoop
     //
     this.btnParamIn4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnParamIn4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnParamIn4MainLoop.Image")));
     this.btnParamIn4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnParamIn4MainLoop.Name = "btnParamIn4MainLoop";
     this.btnParamIn4MainLoop.RibbonWordWrap = false;
     this.btnParamIn4MainLoop.Text = "参数录入";
     //
     // btnCalc4MainLoop
     //
     this.btnCalc4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnCalc4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnCalc4MainLoop.Image")));
     this.btnCalc4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnCalc4MainLoop.Name = "btnCalc4MainLoop";
     this.btnCalc4MainLoop.RibbonWordWrap = false;
     this.btnCalc4MainLoop.Text = "工况计算";
     //
     // btnProcess4MainLoop
     //
     this.btnProcess4MainLoop.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnProcess4MainLoop.Image = ((System.Drawing.Image)(resources.GetObject("btnProcess4MainLoop.Image")));
     this.btnProcess4MainLoop.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnProcess4MainLoop.Name = "btnProcess4MainLoop";
     this.btnProcess4MainLoop.RibbonWordWrap = false;
     this.btnProcess4MainLoop.Text = "结果处理";
     //
     // ribPnlWrite
     //
     this.ribPnlWrite.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlWrite.Controls.Add(this.ribTagParagraph);
     this.ribPnlWrite.Controls.Add(this.ribTagFont);
     this.ribPnlWrite.Controls.Add(this.ribTagClipboard);
     this.ribPnlWrite.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlWrite.Location = new System.Drawing.Point(0, 58);
     this.ribPnlWrite.Name = "ribPnlWrite";
     this.ribPnlWrite.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlWrite.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlWrite.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlWrite.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlWrite.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlWrite.TabIndex = 1;
     this.ribPnlWrite.Visible = false;
     //
     // ribTagParagraph
     //
     this.ribTagParagraph.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagParagraph.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagParagraph.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagParagraph.ContainerControlProcessDialogKey = true;
     this.ribTagParagraph.DialogLauncherVisible = true;
     this.ribTagParagraph.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagParagraph.DragDropSupport = true;
     this.ribTagParagraph.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerParagrapg1,
     this.itemContainerParagrapg3});
     this.ribTagParagraph.Location = new System.Drawing.Point(242, 0);
     this.ribTagParagraph.Name = "ribTagParagraph";
     this.ribTagParagraph.Size = new System.Drawing.Size(203, 83);
     this.ribTagParagraph.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagParagraph.TabIndex = 2;
     this.ribTagParagraph.Text = "&Paragraph";
     //
     //
     //
     this.ribTagParagraph.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagParagraph.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagParagraph.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     this.ribTagParagraph.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // itemContainerParagrapg1
     //
     //
     //
     //
     this.itemContainerParagrapg1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg1.ItemSpacing = 3;
     this.itemContainerParagrapg1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerParagrapg1.Name = "itemContainerParagrapg1";
     this.itemContainerParagrapg1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerParagrapg2,
     this.itemContainerParagrapg4});
     //
     //
     //
     this.itemContainerParagrapg1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg1.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // itemContainerParagrapg2
     //
     //
     //
     //
     this.itemContainerParagrapg2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg2.BeginGroup = true;
     this.itemContainerParagrapg2.Name = "itemContainerParagrapg2";
     this.itemContainerParagrapg2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonAlignLeft,
     this.buttonAlignCenter,
     this.buttonAlignRight,
     this.buttonAlignJustify});
     //
     //
     //
     this.itemContainerParagrapg2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonAlignLeft
     //
     this.buttonAlignLeft.Enabled = false;
     this.buttonAlignLeft.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignLeft.Image")));
     this.buttonAlignLeft.Name = "buttonAlignLeft";
     this.buttonAlignLeft.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlL);
     this.buttonAlignLeft.Text = "Align &Left";
     //
     // buttonAlignCenter
     //
     this.buttonAlignCenter.Enabled = false;
     this.buttonAlignCenter.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignCenter.Image")));
     this.buttonAlignCenter.Name = "buttonAlignCenter";
     this.buttonAlignCenter.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlE);
     this.buttonAlignCenter.Text = "Align &Center";
     //
     // buttonAlignRight
     //
     this.buttonAlignRight.Enabled = false;
     this.buttonAlignRight.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignRight.Image")));
     this.buttonAlignRight.Name = "buttonAlignRight";
     this.buttonAlignRight.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlR);
     this.buttonAlignRight.Text = "Align &Right";
     //
     // buttonAlignJustify
     //
     this.buttonAlignJustify.Enabled = false;
     this.buttonAlignJustify.Image = ((System.Drawing.Image)(resources.GetObject("buttonAlignJustify.Image")));
     this.buttonAlignJustify.Name = "buttonAlignJustify";
     this.buttonAlignJustify.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlJ);
     this.buttonAlignJustify.Text = "&Justify";
     //
     // itemContainerParagrapg4
     //
     //
     //
     //
     this.itemContainerParagrapg4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg4.BeginGroup = true;
     this.itemContainerParagrapg4.Name = "itemContainerParagrapg4";
     this.itemContainerParagrapg4.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnSeqNumber,
     this.btnGrade,
     this.btnToRigth,
     this.btnToLeft});
     //
     //
     //
     this.itemContainerParagrapg4.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // btnSeqNumber
     //
     this.btnSeqNumber.Image = ((System.Drawing.Image)(resources.GetObject("btnSeqNumber.Image")));
     this.btnSeqNumber.Name = "btnSeqNumber";
     this.btnSeqNumber.Text = "&Numbered Bullets";
     //
     // btnGrade
     //
     this.btnGrade.Image = ((System.Drawing.Image)(resources.GetObject("btnGrade.Image")));
     this.btnGrade.Name = "btnGrade";
     this.btnGrade.Text = "&Bullets";
     //
     // btnToRigth
     //
     this.btnToRigth.Image = ((System.Drawing.Image)(resources.GetObject("btnToRigth.Image")));
     this.btnToRigth.Name = "btnToRigth";
     this.btnToRigth.Text = "&Indent";
     //
     // btnToLeft
     //
     this.btnToLeft.Image = ((System.Drawing.Image)(resources.GetObject("btnToLeft.Image")));
     this.btnToLeft.Name = "btnToLeft";
     this.btnToLeft.Text = "&Outdent";
     //
     // itemContainerParagrapg3
     //
     //
     //
     //
     this.itemContainerParagrapg3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg3.ItemSpacing = 3;
     this.itemContainerParagrapg3.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerParagrapg3.Name = "itemContainerParagrapg3";
     this.itemContainerParagrapg3.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnBorders,
     this.btnShading});
     //
     //
     //
     this.itemContainerParagrapg3.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerParagrapg3.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     //
     // btnBorders
     //
     this.btnBorders.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnBorders.Image = ((System.Drawing.Image)(resources.GetObject("btnBorders.Image")));
     this.btnBorders.Name = "btnBorders";
     this.btnBorders.NotificationMarkText = "4";
     this.btnBorders.Text = "&Borders";
     this.btnBorders.Click += new System.EventHandler(this.buttonItem6_Click);
     //
     // btnShading
     //
     this.btnShading.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnShading.Image = ((System.Drawing.Image)(resources.GetObject("btnShading.Image")));
     this.btnShading.Name = "btnShading";
     this.btnShading.Text = "&Shading";
     //
     // ribTagFont
     //
     this.ribTagFont.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagFont.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagFont.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagFont.ContainerControlProcessDialogKey = true;
     this.ribTagFont.DialogLauncherVisible = true;
     this.ribTagFont.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagFont.DragDropSupport = true;
     this.ribTagFont.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerFont1,
     this.itemContainerFont2});
     this.ribTagFont.ItemSpacing = 5;
     this.ribTagFont.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.ribTagFont.Location = new System.Drawing.Point(76, 0);
     this.ribTagFont.Name = "ribTagFont";
     this.ribTagFont.ResizeItemsToFit = false;
     this.ribTagFont.Size = new System.Drawing.Size(166, 83);
     this.ribTagFont.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagFont.TabIndex = 1;
     this.ribTagFont.Text = "F&ont";
     //
     //
     //
     this.ribTagFont.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagFont.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagFont.VerticalItemAlignment = DevComponents.DotNetBar.eVerticalItemsAlignment.Middle;
     this.ribTagFont.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // itemContainerFont1
     //
     //
     //
     //
     this.itemContainerFont1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFont1.Name = "itemContainerFont1";
     this.itemContainerFont1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.comboFont,
     this.comboFontSize});
     //
     //
     //
     this.itemContainerFont1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // comboFont
     //
     this.comboFont.ComboWidth = 96;
     this.comboFont.DropDownHeight = 106;
     this.comboFont.DropDownWidth = 242;
     this.comboFont.Enabled = false;
     this.comboFont.FontCombo = true;
     this.comboFont.ItemHeight = 14;
     this.comboFont.Name = "comboFont";
     //
     // comboFontSize
     //
     this.comboFontSize.ComboWidth = 40;
     this.comboFontSize.DropDownHeight = 106;
     this.comboFontSize.ItemHeight = 16;
     this.comboFontSize.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5});
     this.comboFontSize.Name = "comboFontSize";
     //
     // comboItem1
     //
     this.comboItem1.Text = "6";
     //
     // comboItem2
     //
     this.comboItem2.Text = "7";
     //
     // comboItem3
     //
     this.comboItem3.Text = "8";
     //
     // comboItem4
     //
     this.comboItem4.Text = "9";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10";
     //
     // itemContainerFont2
     //
     //
     //
     //
     this.itemContainerFont2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFont2.BeginGroup = true;
     this.itemContainerFont2.Name = "itemContainerFont2";
     this.itemContainerFont2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFontBold,
     this.buttonFontItalic,
     this.buttonFontUnderline,
     this.buttonFontStrike,
     this.buttonTextColor});
     //
     //
     //
     this.itemContainerFont2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonFontBold
     //
     this.buttonFontBold.Enabled = false;
     this.buttonFontBold.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontBold.Image")));
     this.buttonFontBold.Name = "buttonFontBold";
     this.buttonFontBold.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlB);
     this.buttonFontBold.Text = "&Bold";
     //
     // buttonFontItalic
     //
     this.buttonFontItalic.Enabled = false;
     this.buttonFontItalic.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontItalic.Image")));
     this.buttonFontItalic.Name = "buttonFontItalic";
     this.buttonFontItalic.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlI);
     this.buttonFontItalic.Text = "&Italic";
     //
     // buttonFontUnderline
     //
     this.buttonFontUnderline.Enabled = false;
     this.buttonFontUnderline.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontUnderline.Image")));
     this.buttonFontUnderline.Name = "buttonFontUnderline";
     this.buttonFontUnderline.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlU);
     this.buttonFontUnderline.Text = "&Underline";
     //
     // buttonFontStrike
     //
     this.buttonFontStrike.Enabled = false;
     this.buttonFontStrike.Image = ((System.Drawing.Image)(resources.GetObject("buttonFontStrike.Image")));
     this.buttonFontStrike.Name = "buttonFontStrike";
     this.buttonFontStrike.Text = "&Strike";
     //
     // buttonTextColor
     //
     this.buttonTextColor.Enabled = false;
     this.buttonTextColor.Image = ((System.Drawing.Image)(resources.GetObject("buttonTextColor.Image")));
     this.buttonTextColor.Name = "buttonTextColor";
     this.buttonTextColor.SelectedColorImageRectangle = new System.Drawing.Rectangle(0, 13, 16, 3);
     this.buttonTextColor.Text = "Text &Color";
     //
     // ribTagClipboard
     //
     this.ribTagClipboard.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagClipboard.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagClipboard.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagClipboard.ContainerControlProcessDialogKey = true;
     this.ribTagClipboard.DialogLauncherVisible = true;
     this.ribTagClipboard.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagClipboard.DragDropSupport = true;
     this.ribTagClipboard.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonPaste,
     this.itemContainerClipboard});
     this.ribTagClipboard.Location = new System.Drawing.Point(3, 0);
     this.ribTagClipboard.Name = "ribTagClipboard";
     this.ribTagClipboard.Size = new System.Drawing.Size(73, 83);
     this.ribTagClipboard.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagClipboard.TabIndex = 0;
     this.ribTagClipboard.Text = "&Clipboard";
     //
     //
     //
     this.ribTagClipboard.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagClipboard.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagClipboard.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonPaste
     //
     this.buttonPaste.Image = ((System.Drawing.Image)(resources.GetObject("buttonPaste.Image")));
     this.buttonPaste.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonPaste.Name = "buttonPaste";
     this.buttonPaste.SplitButton = true;
     this.buttonPaste.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem53,
     this.btnPasteSpecial});
     this.buttonPaste.Text = "&Paste";
     //
     // buttonItem53
     //
     this.buttonItem53.Enabled = false;
     this.buttonItem53.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem53.Image")));
     this.buttonItem53.Name = "buttonItem53";
     this.buttonItem53.Text = "&Paste";
     //
     // btnPasteSpecial
     //
     this.btnPasteSpecial.Image = ((System.Drawing.Image)(resources.GetObject("btnPasteSpecial.Image")));
     this.btnPasteSpecial.Name = "btnPasteSpecial";
     this.btnPasteSpecial.Text = "Paste &Special...";
     //
     // itemContainerClipboard
     //
     //
     //
     //
     this.itemContainerClipboard.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerClipboard.ItemSpacing = 0;
     this.itemContainerClipboard.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerClipboard.Name = "itemContainerClipboard";
     this.itemContainerClipboard.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonCut,
     this.btnFormat});
     //
     //
     //
     this.itemContainerClipboard.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonCut
     //
     this.buttonCut.Enabled = false;
     this.buttonCut.Image = ((System.Drawing.Image)(resources.GetObject("buttonCut.Image")));
     this.buttonCut.Name = "buttonCut";
     this.buttonCut.Text = "Cu&t";
     //
     // btnFormat
     //
     this.btnFormat.Image = ((System.Drawing.Image)(resources.GetObject("btnFormat.Image")));
     this.btnFormat.Name = "btnFormat";
     this.btnFormat.Text = "Format Painter";
     //
     // ribPnlLayout
     //
     this.ribPnlLayout.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribPnlLayout.Controls.Add(this.ribBarOptions);
     this.ribPnlLayout.Controls.Add(this.ribBarFind);
     this.ribPnlLayout.Controls.Add(this.ribTagPageSetup);
     this.ribPnlLayout.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ribPnlLayout.Location = new System.Drawing.Point(0, 58);
     this.ribPnlLayout.Name = "ribPnlLayout";
     this.ribPnlLayout.Padding = new System.Windows.Forms.Padding(3, 0, 3, 3);
     this.ribPnlLayout.Size = new System.Drawing.Size(958, 86);
     //
     //
     //
     this.ribPnlLayout.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlLayout.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribPnlLayout.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribPnlLayout.TabIndex = 3;
     this.ribPnlLayout.Visible = false;
     //
     // ribBarOptions
     //
     this.ribBarOptions.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribBarOptions.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarOptions.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarOptions.ContainerControlProcessDialogKey = true;
     this.ribBarOptions.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribBarOptions.DragDropSupport = true;
     this.ribBarOptions.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainerOptions1,
     this.itemContainer1Options2});
     this.ribBarOptions.ItemSpacing = 4;
     this.ribBarOptions.Location = new System.Drawing.Point(375, 0);
     this.ribBarOptions.Name = "ribBarOptions";
     this.ribBarOptions.Size = new System.Drawing.Size(200, 83);
     this.ribBarOptions.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribBarOptions.TabIndex = 4;
     this.ribBarOptions.Text = "Options";
     //
     //
     //
     this.ribBarOptions.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarOptions.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // itemContainerOptions1
     //
     //
     //
     //
     this.itemContainerOptions1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerOptions1.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerOptions1.Name = "itemContainerOptions1";
     this.itemContainerOptions1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.checkBoxItem1,
     this.checkBoxItem3});
     //
     //
     //
     this.itemContainerOptions1.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // checkBoxItem1
     //
     this.checkBoxItem1.Checked = true;
     this.checkBoxItem1.CheckState = System.Windows.Forms.CheckState.Indeterminate;
     this.checkBoxItem1.Name = "checkBoxItem1";
     this.checkBoxItem1.Text = "Header";
     this.checkBoxItem1.ThreeState = true;
     //
     // checkBoxItem3
     //
     this.checkBoxItem3.Checked = true;
     this.checkBoxItem3.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem3.Name = "checkBoxItem3";
     this.checkBoxItem3.Text = "Margins";
     //
     // itemContainer1Options2
     //
     //
     //
     //
     this.itemContainer1Options2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer1Options2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer1Options2.Name = "itemContainer1Options2";
     this.itemContainer1Options2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.checkBoxItem4,
     this.checkBoxItem6});
     //
     //
     //
     this.itemContainer1Options2.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // checkBoxItem4
     //
     this.checkBoxItem4.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem4.Name = "checkBoxItem4";
     this.checkBoxItem4.Text = "Horizontal Layout";
     //
     // checkBoxItem6
     //
     this.checkBoxItem6.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxItem6.Checked = true;
     this.checkBoxItem6.CheckState = System.Windows.Forms.CheckState.Checked;
     this.checkBoxItem6.Name = "checkBoxItem6";
     this.checkBoxItem6.Text = "Automatic Layout";
     //
     // ribBarFind
     //
     this.ribBarFind.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribBarFind.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarFind.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarFind.ContainerControlProcessDialogKey = true;
     this.ribBarFind.DialogLauncherVisible = true;
     this.ribBarFind.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribBarFind.DragDropSupport = true;
     this.ribBarFind.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFind,
     this.itemContainerFind});
     this.ribBarFind.Location = new System.Drawing.Point(231, 0);
     this.ribBarFind.Name = "ribBarFind";
     this.ribBarFind.Size = new System.Drawing.Size(144, 83);
     this.ribBarFind.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribBarFind.TabIndex = 3;
     this.ribBarFind.Text = "Fi&nd";
     //
     //
     //
     this.ribBarFind.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribBarFind.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribBarFind.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonFind
     //
     this.buttonFind.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFind.Enabled = false;
     this.buttonFind.Image = ((System.Drawing.Image)(resources.GetObject("buttonFind.Image")));
     this.buttonFind.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonFind.Name = "buttonFind";
     this.buttonFind.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlF);
     this.buttonFind.Text = "&Find";
     //
     // itemContainerFind
     //
     //
     //
     //
     this.itemContainerFind.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainerFind.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainerFind.Name = "itemContainerFind";
     this.itemContainerFind.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonReplace,
     this.buttonGoto});
     //
     //
     //
     this.itemContainerFind.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonReplace
     //
     this.buttonReplace.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonReplace.Enabled = false;
     this.buttonReplace.Image = ((System.Drawing.Image)(resources.GetObject("buttonReplace.Image")));
     this.buttonReplace.Name = "buttonReplace";
     this.buttonReplace.Text = "&Replace";
     //
     // buttonGoto
     //
     this.buttonGoto.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonGoto.Enabled = false;
     this.buttonGoto.Image = ((System.Drawing.Image)(resources.GetObject("buttonGoto.Image")));
     this.buttonGoto.Name = "buttonGoto";
     this.buttonGoto.Text = "&Goto";
     //
     // ribTagPageSetup
     //
     this.ribTagPageSetup.AutoOverflowEnabled = true;
     //
     //
     //
     this.ribTagPageSetup.BackgroundMouseOverStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagPageSetup.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagPageSetup.ContainerControlProcessDialogKey = true;
     this.ribTagPageSetup.DialogLauncherVisible = true;
     this.ribTagPageSetup.Dock = System.Windows.Forms.DockStyle.Left;
     this.ribTagPageSetup.DragDropSupport = true;
     this.ribTagPageSetup.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonMargins,
     this.btnOrientation,
     this.btnSize,
     this.btnPrintArea});
     this.ribTagPageSetup.Location = new System.Drawing.Point(3, 0);
     this.ribTagPageSetup.Name = "ribTagPageSetup";
     this.ribTagPageSetup.Size = new System.Drawing.Size(228, 83);
     this.ribTagPageSetup.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ribTagPageSetup.TabIndex = 1;
     this.ribTagPageSetup.Text = "Page Setup";
     //
     //
     //
     this.ribTagPageSetup.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.ribTagPageSetup.TitleStyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribTagPageSetup.LaunchDialog += new System.EventHandler(this.LaunchRibbonDialog);
     //
     // buttonMargins
     //
     this.buttonMargins.Image = ((System.Drawing.Image)(resources.GetObject("buttonMargins.Image")));
     this.buttonMargins.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonMargins.Name = "buttonMargins";
     this.buttonMargins.Text = "Margins";
     //
     // btnOrientation
     //
     this.btnOrientation.AutoExpandOnClick = true;
     this.btnOrientation.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnOrientation.Image = ((System.Drawing.Image)(resources.GetObject("btnOrientation.Image")));
     this.btnOrientation.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnOrientation.Name = "btnOrientation";
     this.btnOrientation.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.btnAuto,
     this.btnHorizontal,
     this.btnVertical});
     this.btnOrientation.Text = "Orientation <expand/>";
     //
     // btnAuto
     //
     this.btnAuto.Checked = true;
     this.btnAuto.Name = "btnAuto";
     this.btnAuto.OptionGroup = "orientation";
     this.btnAuto.Text = "Auto";
     //
     // btnHorizontal
     //
     this.btnHorizontal.Name = "btnHorizontal";
     this.btnHorizontal.OptionGroup = "orientation";
     this.btnHorizontal.Text = "Horizontal";
     //
     // btnVertical
     //
     this.btnVertical.Name = "btnVertical";
     this.btnVertical.OptionGroup = "orientation";
     this.btnVertical.Text = "Vertical";
     //
     // btnSize
     //
     this.btnSize.Image = ((System.Drawing.Image)(resources.GetObject("btnSize.Image")));
     this.btnSize.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnSize.Name = "btnSize";
     this.btnSize.Text = "Size";
     //
     // btnPrintArea
     //
     this.btnPrintArea.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.btnPrintArea.Image = ((System.Drawing.Image)(resources.GetObject("btnPrintArea.Image")));
     this.btnPrintArea.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.btnPrintArea.Name = "btnPrintArea";
     this.btnPrintArea.Text = "Print Area";
     //
     // ribTabPrjManage
     //
     this.ribTabPrjManage.Name = "ribTabPrjManage";
     this.ribTabPrjManage.Panel = this.ribPnlWrite;
     this.ribTabPrjManage.Text = "工程管理";
     //
     // ribTabMainDevice
     //
     this.ribTabMainDevice.Name = "ribTabMainDevice";
     this.ribTabMainDevice.Panel = this.ribPnlLayout;
     this.ribTabMainDevice.Text = "主设备参数选择";
     //
     // ribTagMainLoop
     //
     this.ribTagMainLoop.Checked = true;
     this.ribTagMainLoop.ColorTable = DevComponents.DotNetBar.eRibbonTabColor.Orange;
     this.ribTagMainLoop.Name = "ribTagMainLoop";
     this.ribTagMainLoop.Panel = this.ribPnlContext;
     this.ribTagMainLoop.Text = "主回路状态计算";
     //
     // buttonChangeStyle
     //
     this.buttonChangeStyle.AutoExpandOnClick = true;
     this.buttonChangeStyle.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.buttonChangeStyle.Name = "buttonChangeStyle";
     this.buttonChangeStyle.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonStyleOffice2007Blue,
     this.buttonStyleOffice2007Silver});
     this.buttonChangeStyle.Text = "Style";
     //
     // buttonStyleOffice2007Blue
     //
     this.buttonStyleOffice2007Blue.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Blue.CommandParameter = "Office2007Blue";
     this.buttonStyleOffice2007Blue.Name = "buttonStyleOffice2007Blue";
     this.buttonStyleOffice2007Blue.OptionGroup = "style";
     this.buttonStyleOffice2007Blue.Text = "Office 2007 <font color=\"Blue\"><b>Blue</b></font>";
     //
     // AppCommandTheme
     //
     this.AppCommandTheme.Name = "AppCommandTheme";
     this.AppCommandTheme.Executed += new System.EventHandler(this.AppCommandTheme_Executed);
     //
     // buttonStyleOffice2007Silver
     //
     this.buttonStyleOffice2007Silver.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Silver.CommandParameter = "Office2007Silver";
     this.buttonStyleOffice2007Silver.Name = "buttonStyleOffice2007Silver";
     this.buttonStyleOffice2007Silver.OptionGroup = "style";
     this.buttonStyleOffice2007Silver.Text = "Office 2007 <font color=\"Silver\"><b>Silver</b></font>";
     //
     // buttonFile
     //
     this.buttonFile.BackstageTab = this.superTabControl1;
     this.buttonFile.CanCustomize = false;
     this.buttonFile.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.buttonFile.Image = ((System.Drawing.Image)(resources.GetObject("buttonFile.Image")));
     this.buttonFile.ImagePaddingHorizontal = 2;
     this.buttonFile.ImagePaddingVertical = 2;
     this.buttonFile.Name = "buttonFile";
     this.buttonFile.ShowSubItems = false;
     this.buttonFile.Text = "&FILE";
     //
     // superTabControl1
     //
     this.superTabControl1.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.superTabControl1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     //
     //
     //
     this.superTabControl1.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl1.ControlBox.MenuBox.Name = "";
     this.superTabControl1.ControlBox.Name = "";
     this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl1.ControlBox.MenuBox,
     this.superTabControl1.ControlBox.CloseBox});
     this.superTabControl1.ControlBox.Visible = false;
     this.superTabControl1.Controls.Add(this.superTabControlPanel1);
     this.superTabControl1.Controls.Add(this.superTabControlPanel2);
     this.superTabControl1.Controls.Add(this.superTabControlPanel3);
     this.superTabControl1.Controls.Add(this.superTabControlPanel4);
     this.superTabControl1.ForeColor = System.Drawing.Color.Black;
     this.superTabControl1.ItemPadding.Left = 6;
     this.superTabControl1.ItemPadding.Right = 4;
     this.superTabControl1.ItemPadding.Top = 4;
     this.superTabControl1.Location = new System.Drawing.Point(6, 47);
     this.superTabControl1.Name = "superTabControl1";
     this.superTabControl1.ReorderTabsEnabled = false;
     this.superTabControl1.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9.75F);
     this.superTabControl1.SelectedTabIndex = 0;
     this.superTabControl1.Size = new System.Drawing.Size(958, 578);
     this.superTabControl1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.superTabControl1.TabFont = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl1.TabHorizontalSpacing = 16;
     this.superTabControl1.TabIndex = 14;
     this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem61,
     this.buttonItem63,
     this.buttonItem64,
     this.superTabItem1,
     this.superTabItem2,
     this.superTabItem3,
     this.superTabItem4,
     this.buttonItem65,
     this.buttonItem66});
     this.superTabControl1.TabVerticalSpacing = 8;
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel1.Controls.Add(this.panelEx2);
     this.superTabControlPanel1.Controls.Add(this.panelEx1);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.superTabItem1;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.recentPlacesItemsPanel);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx2.Location = new System.Drawing.Point(314, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx2.Size = new System.Drawing.Size(408, 578);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // recentPlacesItemsPanel
     //
     this.recentPlacesItemsPanel.AutoScroll = true;
     //
     //
     //
     this.recentPlacesItemsPanel.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentPlacesItemsPanel.ContainerControlProcessDialogKey = true;
     this.recentPlacesItemsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentPlacesItemsPanel.DragDropSupport = true;
     this.recentPlacesItemsPanel.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentPlacesItemsPanel.Location = new System.Drawing.Point(12, 35);
     this.recentPlacesItemsPanel.Name = "recentPlacesItemsPanel";
     this.recentPlacesItemsPanel.Size = new System.Drawing.Size(384, 531);
     this.recentPlacesItemsPanel.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX2.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX2.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.DimGray;
     this.labelX2.Location = new System.Drawing.Point(12, 12);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(384, 23);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "Recent Places";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.recentDocsItemPane);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx1.Size = new System.Drawing.Size(314, 578);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // recentDocsItemPane
     //
     this.recentDocsItemPane.AutoScroll = true;
     //
     //
     //
     this.recentDocsItemPane.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentDocsItemPane.ContainerControlProcessDialogKey = true;
     this.recentDocsItemPane.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentDocsItemPane.DragDropSupport = true;
     this.recentDocsItemPane.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentDocsItemPane.Location = new System.Drawing.Point(12, 35);
     this.recentDocsItemPane.Name = "recentDocsItemPane";
     this.recentDocsItemPane.Size = new System.Drawing.Size(290, 531);
     this.recentDocsItemPane.TabIndex = 1;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX1.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX1.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.DimGray;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(290, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Recent Documents";
     //
     // superTabItem1
     //
     this.superTabItem1.AttachedControl = this.superTabControlPanel1;
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.KeyTips = "R";
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Recent";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel2.Controls.Add(this.itemPanel1);
     this.superTabControlPanel2.Controls.Add(this.labelX3);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel2.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel2.TabIndex = 2;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.DragDropSupport = true;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem67,
     this.buttonItem68,
     this.buttonItem69,
     this.buttonItem70,
     this.buttonItem71,
     this.buttonItem72});
     this.itemPanel1.Location = new System.Drawing.Point(12, 35);
     this.itemPanel1.MultiLine = true;
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(698, 531);
     this.itemPanel1.TabIndex = 3;
     //
     // buttonItem67
     //
     this.buttonItem67.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem67.ForeColor = System.Drawing.Color.Black;
     this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
     this.buttonItem67.ImagePaddingVertical = 12;
     this.buttonItem67.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem67.Name = "buttonItem67";
     this.buttonItem67.Text = "<span align=\"center\">Blank<br/>document</span>";
     //
     // buttonItem68
     //
     this.buttonItem68.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem68.ForeColor = System.Drawing.Color.Black;
     this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
     this.buttonItem68.ImagePaddingVertical = 12;
     this.buttonItem68.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem68.Name = "buttonItem68";
     this.buttonItem68.Text = "Blog post";
     //
     // buttonItem69
     //
     this.buttonItem69.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem69.ForeColor = System.Drawing.Color.Black;
     this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
     this.buttonItem69.ImagePaddingHorizontal = 12;
     this.buttonItem69.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem69.Name = "buttonItem69";
     this.buttonItem69.Text = "<span align=\"center\">Recent<br/>templates</span>";
     //
     // buttonItem70
     //
     this.buttonItem70.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem70.ForeColor = System.Drawing.Color.Black;
     this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
     this.buttonItem70.ImagePaddingHorizontal = 12;
     this.buttonItem70.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem70.Name = "buttonItem70";
     this.buttonItem70.Text = "<span align=\"center\">Sample<br/>templates</span>";
     //
     // buttonItem71
     //
     this.buttonItem71.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem71.ForeColor = System.Drawing.Color.Black;
     this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
     this.buttonItem71.ImagePaddingHorizontal = 12;
     this.buttonItem71.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem71.Name = "buttonItem71";
     this.buttonItem71.Text = "My templates";
     //
     // buttonItem72
     //
     this.buttonItem72.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem72.ForeColor = System.Drawing.Color.Black;
     this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
     this.buttonItem72.ImagePaddingHorizontal = 12;
     this.buttonItem72.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem72.Name = "buttonItem72";
     this.buttonItem72.Text = "<span align=\"center\">New from<br/>existing</span>";
     //
     // labelX3
     //
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX3.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX3.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.ForeColor = System.Drawing.Color.DimGray;
     this.labelX3.Location = new System.Drawing.Point(12, 12);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(698, 23);
     this.labelX3.TabIndex = 1;
     this.labelX3.Text = "Available Templates";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.KeyTips = "N";
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "New";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel3.Controls.Add(this.panelEx3);
     this.superTabControlPanel3.Controls.Add(this.labelX5);
     this.superTabControlPanel3.Controls.Add(this.integerInput1);
     this.superTabControlPanel3.Controls.Add(this.labelX4);
     this.superTabControlPanel3.Controls.Add(this.buttonX1);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel3.TabIndex = 3;
     this.superTabControlPanel3.TabItem = this.superTabItem3;
     //
     // panelEx3
     //
     this.panelEx3.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.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.DisabledBackColor = System.Drawing.Color.Empty;
     this.panelEx3.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx3.Location = new System.Drawing.Point(292, 4);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(427, 571);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.White;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Silver;
     this.panelEx3.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx3.Style.ForeColor.Color = System.Drawing.Color.Gray;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 5;
     this.panelEx3.Text = "Print Preview Goes Here...";
     //
     // labelX5
     //
     this.labelX5.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.ForeColor = System.Drawing.Color.Black;
     this.labelX5.Location = new System.Drawing.Point(143, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 19);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text = "Copies:";
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(198, 53);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(66, 22);
     this.integerInput1.TabIndex = 3;
     this.integerInput1.Value = 1;
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX4.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX4.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.ForeColor = System.Drawing.Color.DimGray;
     this.labelX4.Location = new System.Drawing.Point(144, 16);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(120, 23);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "Print";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonX1.Location = new System.Drawing.Point(21, 21);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(109, 101);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "Print";
     //
     // superTabItem3
     //
     this.superTabItem3.AttachedControl = this.superTabControlPanel3;
     this.superTabItem3.GlobalItem = false;
     this.superTabItem3.KeyTips = "P";
     this.superTabItem3.Name = "superTabItem3";
     this.superTabItem3.Text = "Print";
     //
     // superTabControlPanel4
     //
     this.superTabControlPanel4.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel4.Controls.Add(this.itemPanel2);
     this.superTabControlPanel4.Controls.Add(this.labelX6);
     this.superTabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel4.Location = new System.Drawing.Point(236, 0);
     this.superTabControlPanel4.Name = "superTabControlPanel4";
     this.superTabControlPanel4.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel4.Size = new System.Drawing.Size(722, 578);
     this.superTabControlPanel4.TabIndex = 4;
     this.superTabControlPanel4.TabItem = this.superTabItem4;
     //
     // itemPanel2
     //
     this.itemPanel2.AutoScroll = true;
     this.itemPanel2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.DragDropSupport = true;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem77,
     this.buttonItem73,
     this.buttonItem74,
     this.buttonItem75,
     this.buttonItem76});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(12, 35);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(698, 531);
     this.itemPanel2.TabIndex = 3;
     //
     // buttonItem77
     //
     this.buttonItem77.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem77.CommandParameter = "http://www.devcomponents.com/kb/questions.php?questionid=127";
     this.buttonItem77.ForeColor = System.Drawing.Color.Black;
     this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
     this.buttonItem77.Name = "buttonItem77";
     this.buttonItem77.Text = "Backstage<br/>\r\n<font color=\"Gray\">How to build Office 2010 style Backstage with " +
     "DotNetBar</font>";
     //
     // buttonItem73
     //
     this.buttonItem73.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem73.CommandParameter = "http://www.devcomponents.com/kb/";
     this.buttonItem73.ForeColor = System.Drawing.Color.Black;
     this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
     this.buttonItem73.Name = "buttonItem73";
     this.buttonItem73.Text = "DotNetBar Knowledge Base<br/>\r\n<font color=\"Gray\">Browse our online Knowledge Bas" +
     "e.</font>";
     //
     // buttonItem74
     //
     this.buttonItem74.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem74.CommandParameter = "http://www.devcomponents.com/dotnetbar/movies.aspx";
     this.buttonItem74.ForeColor = System.Drawing.Color.Black;
     this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
     this.buttonItem74.Name = "buttonItem74";
     this.buttonItem74.Text = "Movie Tutorials<br/>\r\n<font color=\"Gray\">Watch getting started online movie tutor" +
     "ials</font>";
     //
     // buttonItem75
     //
     this.buttonItem75.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem75.CommandParameter = "http://www.devcomponents.com/support.aspx";
     this.buttonItem75.ForeColor = System.Drawing.Color.Black;
     this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
     this.buttonItem75.Name = "buttonItem75";
     this.buttonItem75.Text = "Contact Us<br/>\r\n<font color=\"Gray\">Let us know if you need help or how we can ma" +
     "ke DotNetBar even better.</font>";
     //
     // buttonItem76
     //
     this.buttonItem76.BeginGroup = true;
     this.buttonItem76.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem76.CommandParameter = "http://www.devcomponents.com/dotnetbar/applicationgallery/";
     this.buttonItem76.ForeColor = System.Drawing.Color.Black;
     this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
     this.buttonItem76.Name = "buttonItem76";
     this.buttonItem76.Text = "Application Gallery<br/>\r\n<font color=\"Gray\">See how other developers are using D" +
     "otNetBar in our application gallery</font>";
     //
     // labelX6
     //
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX6.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX6.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX6.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.ForeColor = System.Drawing.Color.DimGray;
     this.labelX6.Location = new System.Drawing.Point(12, 12);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(698, 23);
     this.labelX6.TabIndex = 2;
     this.labelX6.Text = "Support";
     //
     // superTabItem4
     //
     this.superTabItem4.AttachedControl = this.superTabControlPanel4;
     this.superTabItem4.GlobalItem = false;
     this.superTabItem4.KeyTips = "H";
     this.superTabItem4.Name = "superTabItem4";
     this.superTabItem4.Text = "Help";
     //
     // buttonItem61
     //
     this.buttonItem61.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem61.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem61.Command = this.AppCommandSave;
     this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
     this.buttonItem61.ImagePaddingHorizontal = 18;
     this.buttonItem61.ImagePaddingVertical = 10;
     this.buttonItem61.KeyTips = "S";
     this.buttonItem61.Name = "buttonItem61";
     this.buttonItem61.Stretch = true;
     this.buttonItem61.Text = "Save";
     //
     // AppCommandSave
     //
     this.AppCommandSave.Name = "AppCommandSave";
     //
     // buttonItem63
     //
     this.buttonItem63.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem63.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
     this.buttonItem63.ImagePaddingHorizontal = 18;
     this.buttonItem63.ImagePaddingVertical = 10;
     this.buttonItem63.KeyTips = "O";
     this.buttonItem63.Name = "buttonItem63";
     this.buttonItem63.Stretch = true;
     this.buttonItem63.Text = "Open";
     //
     // buttonItem64
     //
     this.buttonItem64.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem64.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
     this.buttonItem64.ImagePaddingHorizontal = 18;
     this.buttonItem64.ImagePaddingVertical = 10;
     this.buttonItem64.KeyTips = "C";
     this.buttonItem64.Name = "buttonItem64";
     this.buttonItem64.Stretch = true;
     this.buttonItem64.Text = "Close";
     //
     // buttonItem65
     //
     this.buttonItem65.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem65.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
     this.buttonItem65.ImagePaddingHorizontal = 18;
     this.buttonItem65.ImagePaddingVertical = 10;
     this.buttonItem65.KeyTips = "T";
     this.buttonItem65.Name = "buttonItem65";
     this.buttonItem65.Stretch = true;
     this.buttonItem65.Text = "Options";
     //
     // buttonItem66
     //
     this.buttonItem66.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem66.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
     this.buttonItem66.ImagePaddingHorizontal = 18;
     this.buttonItem66.ImagePaddingVertical = 10;
     this.buttonItem66.KeyTips = "X";
     this.buttonItem66.Name = "buttonItem66";
     this.buttonItem66.Stretch = true;
     this.buttonItem66.Text = "Exit";
     //
     // buttonSave
     //
     this.buttonSave.Command = this.AppCommandSave;
     this.buttonSave.Enabled = false;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Text = "buttonItem2";
     //
     // buttonUndo
     //
     this.buttonUndo.Enabled = false;
     this.buttonUndo.Name = "buttonUndo";
     this.buttonUndo.Text = "Undo";
     //
     // buttonItem47
     //
     this.buttonItem47.BeginGroup = true;
     this.buttonItem47.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem47.Image")));
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Text = "Search for Templates Online...";
     //
     // buttonItem48
     //
     this.buttonItem48.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem48.Image")));
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.Text = "Browse for Templates...";
     //
     // buttonItem49
     //
     this.buttonItem49.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem49.Image")));
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Text = "Save Current Template...";
     //
     // buttonItem17
     //
     this.buttonItem17.Name = "buttonItem17";
     //
     // buttonStyleMetro
     //
     this.buttonStyleMetro.Name = "buttonStyleMetro";
     //
     // buttonItem62
     //
     this.buttonItem62.Name = "buttonItem62";
     //
     // buttonStyleOffice2007Black
     //
     this.buttonStyleOffice2007Black.Command = this.AppCommandTheme;
     this.buttonStyleOffice2007Black.CommandParameter = "Office2007Black";
     this.buttonStyleOffice2007Black.Name = "buttonStyleOffice2007Black";
     this.buttonStyleOffice2007Black.OptionGroup = "style";
     this.buttonStyleOffice2007Black.Text = "Office 2007 <font color=\"black\"><b>Black</b></font>";
     //
     // buttonItem60
     //
     this.buttonItem60.Name = "buttonItem60";
     //
     // buttonItem16
     //
     this.buttonItem16.Name = "buttonItem16";
     //
     // buttonStyleCustom
     //
     this.buttonStyleCustom.BeginGroup = true;
     this.buttonStyleCustom.Command = this.AppCommandTheme;
     this.buttonStyleCustom.Name = "buttonStyleCustom";
     this.buttonStyleCustom.Text = "Custom scheme";
     this.buttonStyleCustom.Tooltip = "Custom color scheme is created based on currently selected color table. Try selec" +
     "ting Silver or Blue color table and then creating custom color scheme.";
     this.buttonStyleCustom.SelectedColorChanged += new System.EventHandler(this.buttonStyleCustom_SelectedColorChanged);
     this.buttonStyleCustom.ColorPreview += new DevComponents.DotNetBar.ColorPreviewEventHandler(this.buttonStyleCustom_ColorPreview);
     this.buttonStyleCustom.ExpandChange += new System.EventHandler(this.buttonStyleCustom_ExpandChange);
     //
     // RibbonStateCommand
     //
     this.RibbonStateCommand.Name = "RibbonStateCommand";
     this.RibbonStateCommand.Executed += new System.EventHandler(this.RibbonStateCommand_Executed);
     //
     // menuFileContainer
     //
     //
     //
     //
     this.menuFileContainer.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.menuFileContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileContainer.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileContainer.Name = "menuFileContainer";
     this.menuFileContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileTwoColumnContainer,
     this.menuFileBottomContainer});
     //
     //
     //
     this.menuFileContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileTwoColumnContainer
     //
     //
     //
     //
     this.menuFileTwoColumnContainer.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.menuFileTwoColumnContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingBottom = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingLeft = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingRight = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingTop = 2;
     this.menuFileTwoColumnContainer.ItemSpacing = 0;
     this.menuFileTwoColumnContainer.Name = "menuFileTwoColumnContainer";
     this.menuFileTwoColumnContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileItems,
     this.menuFileMRU});
     //
     //
     //
     this.menuFileTwoColumnContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileItems
     //
     //
     //
     //
     this.menuFileItems.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.menuFileItems.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileItems.ItemSpacing = 5;
     this.menuFileItems.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileItems.MinimumSize = new System.Drawing.Size(120, 0);
     this.menuFileItems.Name = "menuFileItems";
     this.menuFileItems.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem20,
     this.buttonItem21,
     this.buttonFileSaveAs,
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25});
     //
     //
     //
     this.menuFileItems.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem20.ImageSmall")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.SubItemsExpandWidth = 24;
     this.buttonItem20.Text = "&New";
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.SubItemsExpandWidth = 24;
     this.buttonItem21.Text = "&Open...";
     //
     // buttonFileSaveAs
     //
     this.buttonFileSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFileSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.Image")));
     this.buttonFileSaveAs.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.ImageSmall")));
     this.buttonFileSaveAs.Name = "buttonFileSaveAs";
     this.buttonFileSaveAs.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer12});
     this.buttonFileSaveAs.SubItemsExpandWidth = 24;
     this.buttonFileSaveAs.Text = "&Save As...";
     //
     // itemContainer12
     //
     //
     //
     //
     this.itemContainer12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.ItemSpacing = 4;
     this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer12.MinimumSize = new System.Drawing.Size(210, 256);
     this.itemContainer12.Name = "itemContainer12";
     this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem56,
     this.buttonItem57,
     this.buttonItem58,
     this.buttonItem59});
     //
     //
     //
     this.itemContainer12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 5;
     this.labelItem1.PaddingLeft = 5;
     this.labelItem1.PaddingRight = 5;
     this.labelItem1.PaddingTop = 5;
     this.labelItem1.Text = "<b>Save a copy of the document</b>";
     //
     // buttonItem56
     //
     this.buttonItem56.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
     this.buttonItem56.Name = "buttonItem56";
     this.buttonItem56.Text = "<b>&Rich Text Document</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save the document " +
     "in the default file format.</div>";
     //
     // buttonItem57
     //
     this.buttonItem57.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Text = "<b>Document &Template</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save as a template " +
     "that can be used to format future documents.</div>";
     //
     // buttonItem58
     //
     this.buttonItem58.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.Text = "<b>&Find add-ins for other formats</b>\r\n<div padding=\"0,0,4,0\" width=\"180\">Learn " +
     "about add-ins to save to other formats such as PDF or XPS.</div>";
     //
     // buttonItem59
     //
     this.buttonItem59.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "<b>&Other Formats</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Open the Save As dialog" +
     " box to select from all possible file types.</div>";
     //
     // buttonItem23
     //
     this.buttonItem23.BeginGroup = true;
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.SubItemsExpandWidth = 24;
     this.buttonItem23.Text = "S&hare...";
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.SubItemsExpandWidth = 24;
     this.buttonItem24.Text = "&Print...";
     //
     // buttonItem25
     //
     this.buttonItem25.BeginGroup = true;
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.SubItemsExpandWidth = 24;
     this.buttonItem25.Text = "&Close";
     //
     // menuFileMRU
     //
     //
     //
     //
     this.menuFileMRU.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.menuFileMRU.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileMRU.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileMRU.MinimumSize = new System.Drawing.Size(225, 0);
     this.menuFileMRU.Name = "menuFileMRU";
     this.menuFileMRU.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem26,
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     //
     //
     //
     this.menuFileMRU.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem26
     //
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem27
     //
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem28
     //
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "&3. Customer Email.rtf";
     //
     // buttonItem29
     //
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "&4. example.rtf";
     //
     // menuFileBottomContainer
     //
     //
     //
     //
     this.menuFileBottomContainer.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.menuFileBottomContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileBottomContainer.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.menuFileBottomContainer.Name = "menuFileBottomContainer";
     this.menuFileBottomContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonOptions,
     this.buttonExit});
     //
     //
     //
     this.menuFileBottomContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonOptions
     //
     this.buttonOptions.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonOptions.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonOptions.Image = ((System.Drawing.Image)(resources.GetObject("buttonOptions.Image")));
     this.buttonOptions.Name = "buttonOptions";
     this.buttonOptions.SubItemsExpandWidth = 24;
     this.buttonOptions.Text = "RibbonPad Opt&ions";
     //
     // buttonExit
     //
     this.buttonExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image")));
     this.buttonExit.Name = "buttonExit";
     this.buttonExit.SubItemsExpandWidth = 24;
     this.buttonExit.Text = "E&xit RibbonPad";
     //
     // progressBarTimer
     //
     this.progressBarTimer.Enabled = true;
     this.progressBarTimer.Interval = 800;
     this.progressBarTimer.Tick += new System.EventHandler(this.progressBarTimer_Tick);
     //
     // styleManager
     //
     this.styleManager.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Silver;
     this.styleManager.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255))))), System.Drawing.Color.FromArgb(((int)(((byte)(1)))), ((int)(((byte)(115)))), ((int)(((byte)(199))))));
     //
     // grpBoxTree
     //
     this.grpBoxTree.Controls.Add(this.treeView1);
     this.grpBoxTree.Location = new System.Drawing.Point(8, 154);
     this.grpBoxTree.Name = "grpBoxTree";
     this.grpBoxTree.Size = new System.Drawing.Size(210, 443);
     this.grpBoxTree.TabIndex = 15;
     this.grpBoxTree.TabStop = false;
     //
     // treeView1
     //
     this.treeView1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.treeView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeView1.Font = new System.Drawing.Font("Segoe UI", 7.9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.treeView1.ImageIndex = 0;
     this.treeView1.ImageList = this.imageList;
     this.treeView1.Indent = 23;
     this.treeView1.ItemHeight = 18;
     this.treeView1.Location = new System.Drawing.Point(3, 18);
     this.treeView1.Name = "treeView1";
     this.treeView1.SelectedImageIndex = 0;
     this.treeView1.Size = new System.Drawing.Size(204, 422);
     this.treeView1.TabIndex = 0;
     this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect);
     //
     // imageList
     //
     this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
     this.imageList.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList.Images.SetKeyName(0, "node.png");
     this.imageList.Images.SetKeyName(1, "leaf.png");
     //
     // frmMain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.ClientSize = new System.Drawing.Size(968, 630);
     this.Controls.Add(this.grpBoxTree);
     this.Controls.Add(this.superTabControl1);
     this.Controls.Add(this.ribbonControl1);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.mdiClient1);
     this.EnableGlass = false;
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.HelpButton = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Text = "DPCP SOFTWAVE";
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ribbonControl1.ResumeLayout(false);
     this.ribbonControl1.PerformLayout();
     this.ribPnlContext.ResumeLayout(false);
     this.ribPnlWrite.ResumeLayout(false);
     this.ribPnlLayout.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
     this.superTabControl1.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.superTabControlPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.superTabControlPanel4.ResumeLayout(false);
     this.grpBoxTree.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #45
0
        private void ButtonItemPWClick(object sender, EventArgs e)
        {
            if (switchButtonItem_ModeLock.Value)
            {
                MessageBox.Show(Resources.NoSwitchMode);
                return;
            }
            JDSelected = false;
            Program._jdState = false;
            PWSelected = true;
            Program._pwState = true;
            FWSelected = false;
            Program._fwState = false;
            labelItem_ModeImg.Image = Resources.PW1;

            comboBoxEx_Proc.Items.Clear();

            var comboItem0 = new DevComponents.Editors.ComboItem();
            var comboItem1 = new DevComponents.Editors.ComboItem();
            var comboItem2 = new DevComponents.Editors.ComboItem();
            var comboItem3 = new DevComponents.Editors.ComboItem();
            var comboItem4 = new DevComponents.Editors.ComboItem();
            var comboItem5 = new DevComponents.Editors.ComboItem();
            var comboItem6 = new DevComponents.Editors.ComboItem();
            var comboItem7 = new DevComponents.Editors.ComboItem();
            var comboItem8 = new DevComponents.Editors.ComboItem();
            var comboItem9 = new DevComponents.Editors.ComboItem();
            var comboItem10 = new DevComponents.Editors.ComboItem();
            var comboItem11 = new DevComponents.Editors.ComboItem();
            var comboItem12 = new DevComponents.Editors.ComboItem();
            var comboItem13 = new DevComponents.Editors.ComboItem();
            var comboItem14 = new DevComponents.Editors.ComboItem();
            var comboItem15 = new DevComponents.Editors.ComboItem();
            var comboItem16 = new DevComponents.Editors.ComboItem();
            var comboItem17 = new DevComponents.Editors.ComboItem();
            var comboItem18 = new DevComponents.Editors.ComboItem();
            var comboItem19 = new DevComponents.Editors.ComboItem();
            var comboItem20 = new DevComponents.Editors.ComboItem();
            
            comboItem0.Text = Resources.Atk;
            comboItem0.FontStyle = FontStyle.Bold;
            comboItem1.Text = Resources.CastSkill;
            comboItem1.FontStyle = FontStyle.Bold;
            comboItem2.Text = Resources.Broadcast;
            comboItem2.FontStyle = FontStyle.Bold;
            comboItem3.Text = Resources.ResetAggro;
            comboItem3.FontStyle = FontStyle.Bold;
            comboItem4.Text = Resources.Exec_AS;
            comboItem4.FontStyle = FontStyle.Bold;
            comboItem5.Text = Resources.DisableAS;
            comboItem5.FontStyle = FontStyle.Bold;
            comboItem6.Text = Resources.EnableAS;
            comboItem6.FontStyle = FontStyle.Bold;
            comboItem7.Text = Resources.CreateTimer;
            comboItem7.FontStyle = FontStyle.Bold;
            comboItem8.Text = Resources.DelTimer;
            comboItem8.FontStyle = FontStyle.Bold;
            comboItem9.Text = Resources.Flee;
            comboItem9.FontStyle = FontStyle.Bold;
            comboItem10.Text = Resources.BeTaunted;
            comboItem10.FontStyle = FontStyle.Bold;
            comboItem11.Text = Resources.FadeTarget;
            comboItem11.FontStyle = FontStyle.Bold;
            comboItem12.Text = Resources.FadeAggro;
            comboItem12.FontStyle = FontStyle.Bold;
            comboItem13.Text = Resources.Break;
            comboItem13.FontStyle = FontStyle.Bold;
            comboItem14.Text = Resources.NPCGenerator;
            comboItem14.FontStyle = FontStyle.Bold;
            comboItem15.Text = Resources.InitPubCount;
            comboItem15.FontStyle = FontStyle.Bold;
            comboItem16.Text = Resources.IncPubCount;
            comboItem16.FontStyle = FontStyle.Bold;
            comboItem17.Text = Resources.NPCSpawn;
            comboItem17.FontStyle = FontStyle.Bold;
            comboItem18.Text = Resources.ChangePath;
            comboItem18.FontStyle = FontStyle.Bold;
            comboItem19.Text = Resources.PlayAction;
            comboItem19.FontStyle = FontStyle.Bold;
            comboItem20.Text = Resources.Broadcast;
            comboItem20.FontStyle = FontStyle.Bold;

            comboBoxEx_Proc.Items.AddRange(new object[]
            {
                comboItem0,
                comboItem1,
                comboItem2,
                comboItem3,
                comboItem4,
                comboItem5,
                comboItem6,
                comboItem7,
                comboItem8,
                comboItem9,
                comboItem10,
                comboItem11,
                comboItem12,
                comboItem13,
                comboItem14,
                comboItem15,
                comboItem16,
                comboItem17,
                comboItem18,
                comboItem19,
                comboItem20
            });

            PWProcList();

            // clear out condition expressions
            comboBoxEx_CondEx.Items.Clear();

            // Dynamically allocate all needed items
            var comboItemx0 = new DevComponents.Editors.ComboItem();   // <BLANK>
            var comboItemx1 = new DevComponents.Editors.ComboItem();   // Is_Timer_Ticking[0]
            var comboItemx2 = new DevComponents.Editors.ComboItem();   // Is_HP_Less[0.00]
            var comboItemx3 = new DevComponents.Editors.ComboItem();   // Is_Combat_Started[]
            var comboItemx4 = new DevComponents.Editors.ComboItem();   // Randomize[0.00]
            var comboItemx5 = new DevComponents.Editors.ComboItem();   // Is_Target_Dead[]
            var comboItemx6 = new DevComponents.Editors.ComboItem();   // Is_Dead[]
            var comboItemx7 = new DevComponents.Editors.ComboItem();   // Public_Counter[0]
            var comboItemx8 = new DevComponents.Editors.ComboItem();   // Value[0]
            var comboItemx9 = new DevComponents.Editors.ComboItem();   // Is_Event?
            
            // setup item values
            comboItemx0.Text = "";                         // <BLANK>
            comboItemx0.FontStyle = FontStyle.Bold;
            comboItemx1.Text = Resources.IsTimerTicking;   // Is_Timer_Ticking[0]
            comboItemx1.FontStyle = FontStyle.Bold;
            comboItemx2.Text = Resources.IsHPLess;         // Is_HP_Less[0.00]
            comboItemx2.FontStyle = FontStyle.Bold;
            comboItemx3.Text = Resources.IsCombatStarted;  // Is_Combat_Started[]
            comboItemx3.FontStyle = FontStyle.Bold;
            comboItemx4.Text = Resources.Randomize;        // Randomize[0.00]
            comboItemx4.FontStyle = FontStyle.Bold;
            comboItemx5.Text = Resources.IsTargetDead;     // Is_Target_Dead[]
            comboItemx5.FontStyle = FontStyle.Bold;
            comboItemx6.Text = Resources.IsDead;           // Is_Dead[]
            comboItemx6.FontStyle = FontStyle.Bold;
            comboItemx7.Text = Resources.PubCtr;           // Public_Counter[0]
            comboItemx7.FontStyle = FontStyle.Bold;
            comboItemx8.Text = Resources.Value;            // Value[0]
            comboItemx8.FontStyle = FontStyle.Bold;
            comboItemx9.Text = Resources.IsEvent;          // Is_Event?
            comboItemx9.FontStyle = FontStyle.Bold;
            
            // add created range to comboBox
            comboBoxEx_CondEx.Items.AddRange(new object[]
            {
                comboItemx0,
                comboItemx1,
                comboItemx2,
                comboItemx3,
                comboItemx4,
                comboItemx5,
                comboItemx6,
                comboItemx7,
                comboItemx8,
                comboItemx9
            });
        }
Example #46
0
        private void LoadLocations()
        {
            DataSet ds;
            string  query = "";

            cbxSite.Items.Clear();
            cbxArea.Items.Clear();
            cbxVessel.Items.Clear();
            cbxFloor.Items.Clear();
            cbxGrid.Items.Clear();

            ds = Program.SQL.SelectAll("SELECT id,name FROM locations_sites;");
            if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
            {
                int iSelected = 0;
                foreach (DataRow dr in ds.Tables[0].Rows)
                {
                    DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                    i.Value = Convert.ToInt32(dr["id"]);
                    i.Text  = dr["name"].ToString();
                    cbxSite.Items.Add(i);
                    if (SharedData.iLocationSite > 0 && Convert.ToInt32(dr["id"]) == SharedData.iLocationSite)
                    {
                        iSelected = cbxSite.Items.Count - 1;
                    }
                }
                if (iSelected > -1)
                {
                    cbxSite.SelectedIndex = iSelected;
                }
            }

            if (SharedData.iLocationSite > 0)
            {
                query = " WHERE site=@site";
                Program.SQL.AddParameter("site", SharedData.iLocationSite);
                ds = Program.SQL.SelectAll("SELECT id,name FROM locations_areas" + (query != " WHERE " ? query : "") + ";");
                if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
                {
                    int iSelected = 0;
                    foreach (DataRow dr in ds.Tables[0].Rows)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Value = Convert.ToInt32(dr["id"]);
                        i.Text  = dr["name"].ToString();
                        cbxArea.Items.Add(i);
                        if (SharedData.iLocationArea > 0 && Convert.ToInt32(dr["id"]) == SharedData.iLocationArea)
                        {
                            iSelected = cbxArea.Items.Count - 1;
                        }
                    }
                    if (iSelected > -1)
                    {
                        cbxArea.SelectedIndex = iSelected;
                    }
                }
            }

            if (SharedData.iLocationSite > 0 && SharedData.iLocationArea > 0)
            {
                query = " WHERE site=@site AND area=@area";
                Program.SQL.AddParameter("site", SharedData.iLocationSite);
                Program.SQL.AddParameter("area", SharedData.iLocationArea);
                ds = Program.SQL.SelectAll("SELECT id,name FROM locations_vessels" + (query != " WHERE " ? query : "") + ";");
                if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
                {
                    int iSelected = 0;
                    foreach (DataRow dr in ds.Tables[0].Rows)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Value = Convert.ToInt32(dr["id"]);
                        i.Text  = dr["name"].ToString();
                        cbxVessel.Items.Add(i);
                        if (SharedData.iLocationVessel > 0 && Convert.ToInt32(dr["id"]) == SharedData.iLocationVessel)
                        {
                            iSelected = cbxVessel.Items.Count - 1;
                        }
                    }
                    if (iSelected > -1)
                    {
                        cbxVessel.SelectedIndex = iSelected;
                    }
                }
            }

            if (SharedData.iLocationSite > 0 && SharedData.iLocationArea > 0 && SharedData.iLocationVessel > 0)
            {
                query = " WHERE site=@site AND area=@area AND vessel=@vessel";
                Program.SQL.AddParameter("site", SharedData.iLocationSite);
                Program.SQL.AddParameter("area", SharedData.iLocationArea);
                Program.SQL.AddParameter("vessel", SharedData.iLocationVessel);
                ds = Program.SQL.SelectAll("SELECT id,name FROM locations_floors" + (query != " WHERE " ? query : "") + ";");
                if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
                {
                    int iSelected = 0;
                    foreach (DataRow dr in ds.Tables[0].Rows)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Value = Convert.ToInt32(dr["id"]);
                        i.Text  = dr["name"].ToString();
                        cbxFloor.Items.Add(i);
                        if (SharedData.iLocationFloor > 0 && Convert.ToInt32(dr["id"]) == SharedData.iLocationFloor)
                        {
                            iSelected = cbxFloor.Items.Count - 1;
                        }
                    }
                    if (iSelected > -1)
                    {
                        cbxFloor.SelectedIndex = iSelected;
                    }
                }
            }

            if (SharedData.iLocationSite > 0 && SharedData.iLocationArea > 0 && SharedData.iLocationVessel > 0 && SharedData.iLocationFloor > 0)
            {
                query = " WHERE site=@site AND area=@area AND vessel=@vessel AND floor=@floor";
                Program.SQL.AddParameter("site", SharedData.iLocationSite);
                Program.SQL.AddParameter("area", SharedData.iLocationArea);
                Program.SQL.AddParameter("vessel", SharedData.iLocationVessel);
                Program.SQL.AddParameter("floor", SharedData.iLocationFloor);
                ds = Program.SQL.SelectAll("SELECT id,name FROM locations_grids" + (query != " WHERE " ? query : "") + ";");
                if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
                {
                    int iSelected = 0;
                    foreach (DataRow dr in ds.Tables[0].Rows)
                    {
                        DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                        i.Value = Convert.ToInt32(dr["id"]);
                        i.Text  = dr["name"].ToString();
                        cbxGrid.Items.Add(i);
                        if (SharedData.iLocationGrid > 0 && Convert.ToInt32(dr["id"]) == SharedData.iLocationGrid)
                        {
                            iSelected = cbxGrid.Items.Count - 1;
                        }
                    }
                    if (iSelected > -1)
                    {
                        cbxGrid.SelectedIndex = iSelected;
                    }
                }
            }
        }
Example #47
0
        private void tv_NodeClick(object sender, DevComponents.AdvTree.TreeNodeMouseEventArgs e)
        {
            if (tv.SelectedNode.Tag != null)
            {
                iID = Convert.ToInt32(tv.SelectedNode.Tag);

                Program.SQL.AddParameter("@id", iID);
                DataSet d = Program.SQL.SelectAll("SELECT * FROM users WHERE id=@id;");
                if (d.Tables.Count > 0 && d.Tables[0].Rows.Count > 0)
                {
                    DataRow r = d.Tables[0].Rows[0];

                    txtUsername.Text  = r["username"].ToString();
                    txtNameFirst.Text = r["name_first"].ToString();
                    txtNameLast.Text  = r["name_last"].ToString();
                    txtNotes.Text     = r["notes"].ToString();
                    txtSuperCode.Text = r["supercode"].ToString();

                    foreach (DevComponents.Editors.ComboItem i in cbxGroup.Items)
                    {
                        if (i.Value.Equals(r["usergroup"].ToString()))
                        {
                            cbxGroup.SelectedItem = i;
                            break;
                        }
                    }

                    foreach (DevComponents.Editors.ComboItem i in cbxStatus.Items)
                    {
                        if (i.Value.Equals(r["status"].ToString()))
                        {
                            cbxStatus.SelectedItem = i;
                            break;
                        }
                    }

                    foreach (DevComponents.Editors.ComboItem i in cbxLocation.Items)
                    {
                        if (i.Value.Equals(r["location"].ToString()))
                        {
                            cbxLocation.SelectedItem = i;
                            break;
                        }
                    }

                    cbxEmail.Items.Clear();
                    string[] sEmails = r["emails"].ToString().TrimStart('{').TrimEnd('}').Split(new char[] { '}', '{' }, StringSplitOptions.RemoveEmptyEntries);
                    if (sEmails.Length > 0)
                    {
                        foreach (string sEmail in sEmails)
                        {
                            cbxEmail.Items.Add(sEmail);
                        }
                        if (cbxEmail.Items.Count > 0)
                        {
                            cbxEmail.SelectedIndex = 0;
                        }
                    }

                    cbxPhone.Items.Clear();
                    string[] sPhones = r["phones"].ToString().TrimStart('{').TrimEnd('}').Split(new char[] { '}', '{' }, StringSplitOptions.RemoveEmptyEntries);
                    if (sPhones.Length > 0)
                    {
                        foreach (string sPhone in sPhones)
                        {
                            cbxPhone.Items.Add(sPhone);
                        }
                        if (cbxPhone.Items.Count > 0)
                        {
                            cbxPhone.SelectedIndex = 0;
                        }
                    }

                    cbxPostal.Items.Clear();
                    string[] sAddresses = r["addresses"].ToString().TrimStart('{').TrimEnd('}').Split(new char[] { '}', '{' }, StringSplitOptions.RemoveEmptyEntries);
                    if (sAddresses.Length > 0)
                    {
                        foreach (string sAddress in sAddresses)
                        {
                            string[] sPostal = sAddress.Split(new char[] { '|' });
                            DevComponents.Editors.ComboItem i = new DevComponents.Editors.ComboItem();
                            i.Value = sAddress;
                            i.Text  = sPostal[0].Trim() + (sPostal[5].Trim() != "" ? ", " + sPostal[5].Trim() : "") + ", " + sPostal[6].Trim();
                            cbxPostal.Items.Add(i);
                        }
                        if (cbxPostal.Items.Count > 0)
                        {
                            cbxPostal.SelectedIndex = 0;
                        }
                    }
                }
            }
        }
Example #48
0
        private void ButtonItemJDClick(object sender, EventArgs e)
        {
            if (switchButtonItem_ModeLock.Value)
            {
                MessageBox.Show(Resources.NoSwitchMode);
                return;
            }
            JDSelected = true;
            Program._jdState = true;
            PWSelected = false;
            Program._pwState = false;
            FWSelected = false;
            Program._fwState = false;
            labelItem_ModeImg.Image = Resources.JD2;

            // Clear out the comboBox
            comboBoxEx_Proc.Items.Clear();

            // Dynamically allocate all needed items
            var comboItem0 = new DevComponents.Editors.ComboItem();
            var comboItem1 = new DevComponents.Editors.ComboItem();
            var comboItem2 = new DevComponents.Editors.ComboItem();
            var comboItem3 = new DevComponents.Editors.ComboItem();
            var comboItem4 = new DevComponents.Editors.ComboItem();
            var comboItem5 = new DevComponents.Editors.ComboItem();
            var comboItem6 = new DevComponents.Editors.ComboItem();
            var comboItem7 = new DevComponents.Editors.ComboItem();
            var comboItem8 = new DevComponents.Editors.ComboItem();
            var comboItem9 = new DevComponents.Editors.ComboItem();
            var comboItem10 = new DevComponents.Editors.ComboItem();
            var comboItem11 = new DevComponents.Editors.ComboItem();
            var comboItem12 = new DevComponents.Editors.ComboItem();
            var comboItem13 = new DevComponents.Editors.ComboItem();
            var comboItem14 = new DevComponents.Editors.ComboItem();
            var comboItem15 = new DevComponents.Editors.ComboItem();
            var comboItem16 = new DevComponents.Editors.ComboItem();
            var comboItem17 = new DevComponents.Editors.ComboItem();
            var comboItem18 = new DevComponents.Editors.ComboItem();
            var comboItem19 = new DevComponents.Editors.ComboItem();
            var comboItem20 = new DevComponents.Editors.ComboItem();
            var comboItem21 = new DevComponents.Editors.ComboItem();
            var comboItem22 = new DevComponents.Editors.ComboItem();
            var comboItem23 = new DevComponents.Editors.ComboItem();
            var comboItem24 = new DevComponents.Editors.ComboItem();
            var comboItem25 = new DevComponents.Editors.ComboItem();
            var comboItem26 = new DevComponents.Editors.ComboItem();

            // setup item values
            comboItem0.Text = Resources.Atk;
            comboItem0.FontStyle = FontStyle.Bold;

            comboItem1.Text = Resources.CastSkill;
            comboItem1.FontStyle = FontStyle.Bold;

            comboItem2.Text = Resources.Broadcast;
            comboItem2.FontStyle = FontStyle.Bold;

            comboItem3.Text = Resources.ResetAggro;
            comboItem3.FontStyle = FontStyle.Bold;

            comboItem4.Text = Resources.Exec_AS;
            comboItem4.FontStyle = FontStyle.Bold;

            comboItem5.Text = Resources.DisableAS;
            comboItem5.FontStyle = FontStyle.Bold;

            comboItem6.Text = Resources.EnableAS;
            comboItem6.FontStyle = FontStyle.Bold;

            comboItem7.Text = Resources.CreateTimer;
            comboItem7.FontStyle = FontStyle.Bold;

            comboItem8.Text = Resources.DelTimer;
            comboItem8.FontStyle = FontStyle.Bold;

            comboItem9.Text = Resources.Flee;
            comboItem9.FontStyle = FontStyle.Bold;

            comboItem10.Text = Resources.BeTaunted;
            comboItem10.FontStyle = FontStyle.Bold;

            comboItem11.Text = Resources.Unk + Resources.ONE + Resources.ONE;
            comboItem11.FontStyle = FontStyle.Bold;

            comboItem12.Text = Resources.FadeAggro;
            comboItem12.FontStyle = FontStyle.Bold;

            comboItem13.Text = Resources.Unk + Resources.ONE + Resources.THREE;
            comboItem13.FontStyle = FontStyle.Bold;

            comboItem14.Text = Resources.Trigger;
            comboItem14.FontStyle = FontStyle.Bold;

            comboItem15.Text = Resources.SumMob;
            comboItem15.FontStyle = FontStyle.Bold;

            comboItem16.Text = Resources.Unk + Resources.ONE + Resources.SIX;
            comboItem16.FontStyle = FontStyle.Bold;

            comboItem17.Text = Resources.SetPath;
            comboItem17.FontStyle = FontStyle.Bold;

            comboItem18.Text = Resources.Disappear;
            comboItem18.FontStyle = FontStyle.Bold;

            comboItem19.Text = Resources.NA;
            comboItem19.FontStyle = FontStyle.Bold;

            comboItem20.Text = Resources.NA;
            comboItem20.FontStyle = FontStyle.Bold;

            comboItem21.Text = Resources.Respawn;
            comboItem21.FontStyle = FontStyle.Bold;

            comboItem22.Text = Resources.SetValue;
            comboItem22.FontStyle = FontStyle.Bold;

            comboItem23.Text = Resources.AddValue;
            comboItem23.FontStyle = FontStyle.Bold;

            comboItem24.Text = Resources.NA;
            comboItem24.FontStyle = FontStyle.Bold;

            comboItem25.Text = Resources.SetMobAttr;
            comboItem25.FontStyle = FontStyle.Bold;

            comboItem26.Text = Resources.Warsoul;
            comboItem26.FontStyle = FontStyle.Bold;

            // add created range to comboBox
            comboBoxEx_Proc.Items.AddRange(new object[]
            {
                comboItem0,
                comboItem1,
                comboItem2,
                comboItem3,
                comboItem4,
                comboItem5,
                comboItem6,
                comboItem7,
                comboItem8,
                comboItem9,
                comboItem10,
                comboItem11,
                comboItem12,
                comboItem13,
                comboItem14,
                comboItem15,
                comboItem16,
                comboItem17,
                comboItem18,
                comboItem19,
                comboItem20,
                comboItem21,
                comboItem22,
                comboItem23,
                comboItem24,
                comboItem25,
                comboItem26
            });
            // list procedures
            JDProcList();

            // clear out condition expressions
            comboBoxEx_CondEx.Items.Clear();

            // Dynamically allocate all needed items
            var comboItemx0 = new DevComponents.Editors.ComboItem();   // <BLANK>
            var comboItemx1 = new DevComponents.Editors.ComboItem();   // Is_Timer_Ticking[0]
            var comboItemx2 = new DevComponents.Editors.ComboItem();   // Is_HP_Less[0.00]
            var comboItemx3 = new DevComponents.Editors.ComboItem();   // Is_Combat_Started[]
            var comboItemx4 = new DevComponents.Editors.ComboItem();   // Randomize[0]
            var comboItemx5 = new DevComponents.Editors.ComboItem();   // Is_Target_Dead[]
            var comboItemx6 = new DevComponents.Editors.ComboItem();   // Is_Dead[]
            var comboItemx7 = new DevComponents.Editors.ComboItem();   // Path_To[0]
            var comboItemx8 = new DevComponents.Editors.ComboItem();   // More_Than[0]
            var comboItemx9 = new DevComponents.Editors.ComboItem();   // Distance_To[0.00]
            var comboItemx10 = new DevComponents.Editors.ComboItem();  // Unknown12[]
            var comboItemx11 = new DevComponents.Editors.ComboItem();  // Unknown13[]
            var comboItemx12 = new DevComponents.Editors.ComboItem();  // Unknown14[]
            var comboItemx13 = new DevComponents.Editors.ComboItem();  // Unknown15[]
            var comboItemx14 = new DevComponents.Editors.ComboItem();  // Variable[0]
            var comboItemx15 = new DevComponents.Editors.ComboItem();  // Variable_Value[0]
            var comboItemx16 = new DevComponents.Editors.ComboItem();  // Rank[0]
            var comboItemx17 = new DevComponents.Editors.ComboItem();  // NPC_Vent[]
            var comboItemx18 = new DevComponents.Editors.ComboItem();  // Cast_Skill[0]

            // setup item values
            comboItemx0.Text = "";                          // <BLANK>
            comboItemx0.FontStyle = FontStyle.Bold;
            comboItemx1.Text = Resources.IsTimerTicking;    // Is_Timer_Ticking[0]
            comboItemx1.FontStyle = FontStyle.Bold;
            comboItemx2.Text = Resources.IsHPLess;          // Is_HP_Less[0.00]
            comboItemx2.FontStyle = FontStyle.Bold;
            comboItemx3.Text = Resources.IsCombatStarted;   // Is_Combat_Started[]
            comboItemx3.FontStyle = FontStyle.Bold;
            comboItemx4.Text = Resources.Randomize;         // Randomize[0]
            comboItemx4.FontStyle = FontStyle.Bold;
            comboItemx5.Text = Resources.IsTargetDead;      // Is_Target_Dead[]
            comboItemx5.FontStyle = FontStyle.Bold;
            comboItemx6.Text = Resources.IsDead;            // Is_Dead[]
            comboItemx6.FontStyle = FontStyle.Bold;
            comboItemx7.Text = Resources.PathTo;            // Path_To[0]
            comboItemx7.FontStyle = FontStyle.Bold;
            comboItemx8.Text = Resources.MoreThan;          // More_Than[0]
            comboItemx8.FontStyle = FontStyle.Bold;
            comboItemx9.Text = Resources.DistanceTo;        // Distance_To[0.00]
            comboItemx9.FontStyle = FontStyle.Bold;
            comboItemx10.Text = Resources.Unk + Resources.ONE + Resources.TWO;    // Unknown12[]
            comboItemx10.FontStyle = FontStyle.Bold;
            comboItemx11.Text = Resources.Unk + Resources.ONE + Resources.THREE;  // Unknown13[]
            comboItemx11.FontStyle = FontStyle.Bold;
            comboItemx12.Text = Resources.Unk + Resources.ONE + Resources.FOUR;   // Unknown14[]
            comboItemx12.FontStyle = FontStyle.Bold;
            comboItemx13.Text = Resources.Unk + Resources.ONE + Resources.FIVE;   // Unknown15[]
            comboItemx13.FontStyle = FontStyle.Bold;
            comboItemx14.Text = Resources.Variable;         // Variable[0]
            comboItemx14.FontStyle = FontStyle.Bold;
            comboItemx15.Text = Resources.VariableValue;    // Variable_Value[0]
            comboItemx15.FontStyle = FontStyle.Bold;
            comboItemx16.Text = Resources.Rank;             // Rank[0]
            comboItemx16.FontStyle = FontStyle.Bold;
            comboItemx17.Text = Resources.NPCVent;          // NPC_Vent[]
            comboItemx17.FontStyle = FontStyle.Bold;
            comboItemx18.Text = Resources.CastSkill;        // Cast_Skill[0]
            comboItemx18.FontStyle = FontStyle.Bold;

            // add created range to comboBox
            comboBoxEx_CondEx.Items.AddRange(new object[]
            {
                comboItemx0,
                comboItemx1,
                comboItemx2,
                comboItemx3,
                comboItemx4,
                comboItemx5,
                comboItemx6,
                comboItemx7,
                comboItemx8,
                comboItemx9,
                comboItemx10,
                comboItemx11,
                comboItemx12,
                comboItemx13,
                comboItemx14,
                comboItemx15,
                comboItemx16,
                comboItemx17,
                comboItemx18
            });
        }
Example #49
0
        /// <summary>
        /// Lighted all Lines based on the Equal's state
        /// <para><see cref="Color.LightCyan"/> if one Side is null or the other Side has not enoght Rows</para>
        /// <para><see cref="Color.LightSalmon"/> if the do not match</para>
        /// </summary>
        private void ParseGrids()
        {
            int changedGrid = 0;

            comboChanges.Items.Clear();

            if (ConfGridExtern.RowCount == 0)              // no conf loaded yet
            {
                return;
            }

            // firsr check my Settings
            Color col = Color.Empty;

            DevComponents.Editors.ComboItem item;
            for (int i = 0; i < ConfGridMy.RowCount; i++)
            {
                changedGrid = MergeHelper.Compare(ref ConfGridMy, ref ConfGridExtern, i, 1, ref col);
                if (col == Color.Empty)                  // nothing lighted
                {
                    continue;
                }

                item           = new DevComponents.Editors.ComboItem();
                item.BackColor = col;
                if (changedGrid == 1)
                {
                    item.TextAlignment = StringAlignment.Near;
                    item.Text          = (string)ConfGridMy.Rows[i].Cells[0].Value;
                    comboChanges.Items.Add(item);
                }
                else if (changedGrid == 2)
                {
                    item.TextAlignment = StringAlignment.Far;
                    item.Text          = (string)ConfGridExtern.Rows[i].Cells[0].Value;
                    comboChanges.Items.Add(item);
                }
                else if (changedGrid == 3)
                {
                    item.TextAlignment = StringAlignment.Center;
                    item.Text          = (string)ConfGridMy.Rows[i].Cells[0].Value;
                    comboChanges.Items.Add(item);
                }
            }

            // has the Target more Settings? Light them
            if (ConfGridExtern.RowCount > ConfGridMy.RowCount)
            {
                for (int i = ConfGridMy.RowCount; i < ConfGridExtern.RowCount; i++)
                {
                    if (ConfGridExtern.Rows[i].Cells[1] == null)                          // comment
                    {
                        continue;
                    }
                    ConfGridExtern.Rows[i].DefaultCellStyle.BackColor = Color.LightCyan;

                    item               = new DevComponents.Editors.ComboItem();
                    item.BackColor     = Color.LightCyan;
                    item.TextAlignment = StringAlignment.Far;
                    item.Text          = (string)ConfGridExtern.Rows[i].Cells[0].Value;
                    comboChanges.Items.Add(item);
                }
            }
        }
Example #50
0
		/// <summary>
		///		Required method for Designer support - do not modify
		///		the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.chkShowScreenTips = new System.Windows.Forms.CheckBox();
			this.tabCtrl = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.cmdReset = new System.Windows.Forms.Button();
			this.cmdRename = new System.Windows.Forms.Button();
			this.cmdDelete = new System.Windows.Forms.Button();
			this.cmdNew = new System.Windows.Forms.Button();
			this.label1 = new System.Windows.Forms.Label();
			this.lstBars = new System.Windows.Forms.CheckedListBox();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.lstCommands = new DevComponents.DotNetBar.ItemsListBox();
			this.lstCategories = new System.Windows.Forms.ListBox();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.tabPage3 = new System.Windows.Forms.TabPage();
            this.cboAnimations = new Controls.ComboBoxEx();
			this.comboItem1 = new DevComponents.Editors.ComboItem();
			this.comboItem6 = new DevComponents.Editors.ComboItem();
			this.comboItem2 = new DevComponents.Editors.ComboItem();
			this.comboItem3 = new DevComponents.Editors.ComboItem();
			this.comboItem4 = new DevComponents.Editors.ComboItem();
			this.comboItem5 = new DevComponents.Editors.ComboItem();
			this.label7 = new System.Windows.Forms.Label();
			this.chkTipsShowShortcuts = new System.Windows.Forms.CheckBox();
			this.button1 = new System.Windows.Forms.Button();
			this.label6 = new System.Windows.Forms.Label();
			this.chkFullAfterDelay = new System.Windows.Forms.CheckBox();
			this.chkShowFullMenus = new System.Windows.Forms.CheckBox();
			this.label5 = new System.Windows.Forms.Label();
			this.cmdKeyboard = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.tabCtrl.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.tabPage3.SuspendLayout();
			this.SuspendLayout();
			// 
			// chkShowScreenTips
			// 
			this.chkShowScreenTips.Location = new System.Drawing.Point(24, 152);
			this.chkShowScreenTips.Name = "chkShowScreenTips";
			this.chkShowScreenTips.Size = new System.Drawing.Size(320, 16);
			this.chkShowScreenTips.TabIndex = 3;
			this.chkShowScreenTips.Text = "cust_chk_showst";
			// 
			// tabCtrl
			// 
			this.tabCtrl.Controls.AddRange(new System.Windows.Forms.Control[] {
																				  this.tabPage1,
																				  this.tabPage2,
																				  this.tabPage3});
			this.tabCtrl.Location = new System.Drawing.Point(6, 6);
			this.tabCtrl.Name = "tabCtrl";
			this.tabCtrl.SelectedIndex = 0;
			this.tabCtrl.Size = new System.Drawing.Size(354, 303);
			this.tabCtrl.TabIndex = 0;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.cmdReset,
																				   this.cmdRename,
																				   this.cmdDelete,
																				   this.cmdNew,
																				   this.label1,
																				   this.lstBars});
			this.tabPage1.Location = new System.Drawing.Point(4, 22);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(346, 277);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "cust_tab_toolbars";
			this.tabPage1.Visible = false;
			// 
			// cmdReset
			// 
			//this.cmdReset.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdReset.Enabled = true;
			this.cmdReset.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdReset.Location = new System.Drawing.Point(250, 118);
			this.cmdReset.Name = "cmdReset";
			this.cmdReset.Size = new System.Drawing.Size(90, 24);
			this.cmdReset.TabIndex = 4;
			this.cmdReset.Text = "cust_btn_reset";
			this.cmdReset.Visible = false;
			this.cmdReset.Click += new System.EventHandler(this.ResetBar);
			// 
			// cmdRename
			// 
			//this.cmdRename.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdRename.Enabled = false;
			this.cmdRename.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdRename.Location = new System.Drawing.Point(250, 52);
			this.cmdRename.Name = "cmdRename";
			this.cmdRename.Size = new System.Drawing.Size(90, 24);
			this.cmdRename.TabIndex = 2;
			this.cmdRename.Text = "cust_btn_rename";
			this.cmdRename.Click += new System.EventHandler(this.RenameBar);
			// 
			// cmdDelete
			// 
			//this.cmdDelete.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdDelete.Enabled = false;
			this.cmdDelete.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdDelete.Location = new System.Drawing.Point(250, 85);
			this.cmdDelete.Name = "cmdDelete";
			this.cmdDelete.Size = new System.Drawing.Size(90, 24);
			this.cmdDelete.TabIndex = 3;
			this.cmdDelete.Text = "cust_btn_delete";
			this.cmdDelete.Click += new System.EventHandler(this.DeleteBar);
			// 
			// cmdNew
			// 
			//this.cmdNew.Anchor = (System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right);
			this.cmdNew.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdNew.Location = new System.Drawing.Point(250, 19);
			this.cmdNew.Name = "cmdNew";
			this.cmdNew.Size = new System.Drawing.Size(90, 24);
			this.cmdNew.TabIndex = 1;
			this.cmdNew.Text = "cust_btn_new";
			this.cmdNew.Click += new System.EventHandler(this.NewBar);
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(5, 5);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(259, 12);
			this.label1.TabIndex = 0;
			this.label1.Text = "cust_lbl_tlbs";
			// 
			// lstBars
			// 
			//this.lstBars.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
			//	| System.Windows.Forms.AnchorStyles.Left) 
			//	| System.Windows.Forms.AnchorStyles.Right);
			this.lstBars.Location = new System.Drawing.Point(5, 19);
			this.lstBars.Name = "lstBars";
			this.lstBars.IntegralHeight=false;
			this.lstBars.Size = new System.Drawing.Size(239, 249);
			this.lstBars.TabIndex = 0;
			this.lstBars.SelectedIndexChanged += new System.EventHandler(this.BarSelectionChanged);
			this.lstBars.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.BarsCheck);
			// 
			// tabPage2
			// 
			this.tabPage2.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.lstCategories,
																				   this.lstCommands,
																				   this.label4,
																				   this.label3,
																				   this.label2});
			this.tabPage2.Location = new System.Drawing.Point(4, 22);
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Size = new System.Drawing.Size(346, 277);
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "cust_tab_commands";
			this.tabPage2.Visible = false;
			// 
			// lstCommands
			// 
			this.lstCommands.BackColor = System.Drawing.SystemColors.Control;
			this.lstCommands.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
			this.lstCommands.IntegralHeight = false;
			this.lstCommands.Location = new System.Drawing.Point(136, 71);
			this.lstCommands.Name = "lstCommands";
			this.lstCommands.Size = new System.Drawing.Size(200, 197);
			this.lstCommands.TabIndex = 2;
			this.lstCommands.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Commands_OnMouseDown);
			this.lstCommands.MouseMove += new System.Windows.Forms.MouseEventHandler(this.Commands_OnMouseMove);
			// 
			// lstCategories
			// 
			this.lstCategories.Location = new System.Drawing.Point(5, 71);
			this.lstCategories.Name = "lstCategories";
			this.lstCategories.IntegralHeight=false;
			this.lstCategories.Size = new System.Drawing.Size(121, 197);
			this.lstCategories.TabIndex = 2;
			this.lstCategories.SelectedIndexChanged += new System.EventHandler(this.CatSelectedIndexChanged);
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(136, 56);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(197, 13);
			this.label4.TabIndex = 1;
			this.label4.Text = "cust_lbl_cmds";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(5, 56);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(123, 13);
			this.label3.TabIndex = 1;
			this.label3.Text = "cust_lbl_cats";
			// 
			// label2
			// 
			//this.label2.Anchor = ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
			//	| System.Windows.Forms.AnchorStyles.Right);
			this.label2.Location = new System.Drawing.Point(4, 4);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(336, 46);
			this.label2.TabIndex = 0;
			this.label2.Text = "cust_lbl_cmdsins";
			// 
			// tabPage3
			// 
			this.tabPage3.Controls.AddRange(new System.Windows.Forms.Control[] {
																				   this.chkShowFullMenus,
																				   this.chkFullAfterDelay,
																				   this.button1,
																				   this.chkShowScreenTips,
																				   this.chkTipsShowShortcuts,
																				   this.cboAnimations,
																				   this.label7,
																				   this.label6,
																				   this.label5});
			this.tabPage3.Location = new System.Drawing.Point(4, 22);
			this.tabPage3.Name = "tabPage3";
			this.tabPage3.Size = new System.Drawing.Size(346, 277);
			this.tabPage3.TabIndex = 2;
			this.tabPage3.Text = "cust_tab_options";
			this.tabPage3.Visible = false;
			// 
			// cboAnimations
			// 
			this.cboAnimations.DefaultStyle = false;
			this.cboAnimations.DisableInternalDrawing = false;
			this.cboAnimations.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cboAnimations.DropDownWidth = 120;
			this.cboAnimations.Images = null;
			this.cboAnimations.Items.AddRange(new object[] {
															   this.comboItem1,
															   this.comboItem6,
															   this.comboItem2,
															   this.comboItem3,
															   this.comboItem4,
															   this.comboItem5});
			this.cboAnimations.Location = new System.Drawing.Point(24, 224);
			this.cboAnimations.Name = "cboAnimations";
			this.cboAnimations.Size = new System.Drawing.Size(120, 21);
			this.cboAnimations.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
			this.cboAnimations.TabIndex = 5;
			// 
			// comboItem1
			// 
			this.comboItem1.BackColor = System.Drawing.Color.Empty;
			this.comboItem1.FontName = "";
			this.comboItem1.FontSize = 8F;
			this.comboItem1.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem1.ForeColor = System.Drawing.Color.Empty;
			this.comboItem1.Image = null;
			this.comboItem1.ImageIndex = -1;
			this.comboItem1.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem1.Tag = null;
			this.comboItem1.Text = "cust_cbo_none";
			this.comboItem1.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem1.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem6
			// 
			this.comboItem6.BackColor = System.Drawing.Color.Empty;
			this.comboItem6.FontName = "";
			this.comboItem6.FontSize = 8F;
			this.comboItem6.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem6.ForeColor = System.Drawing.Color.Empty;
			this.comboItem6.Image = null;
			this.comboItem6.ImageIndex = -1;
			this.comboItem6.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem6.Tag = null;
			this.comboItem6.Text = "cust_cbo_system";
			this.comboItem6.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem6.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem2
			// 
			this.comboItem2.BackColor = System.Drawing.Color.Empty;
			this.comboItem2.FontName = "";
			this.comboItem2.FontSize = 8F;
			this.comboItem2.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem2.ForeColor = System.Drawing.Color.Empty;
			this.comboItem2.Image = null;
			this.comboItem2.ImageIndex = -1;
			this.comboItem2.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem2.Tag = null;
			this.comboItem2.Text = "cust_cbo_random";
			this.comboItem2.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem2.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem3
			// 
			this.comboItem3.BackColor = System.Drawing.Color.Empty;
			this.comboItem3.FontName = "";
			this.comboItem3.FontSize = 8F;
			this.comboItem3.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem3.ForeColor = System.Drawing.Color.Empty;
			this.comboItem3.Image = null;
			this.comboItem3.ImageIndex = -1;
			this.comboItem3.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem3.Tag = null;
			this.comboItem3.Text = "cust_cbo_unfold";
			this.comboItem3.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem3.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem4
			// 
			this.comboItem4.BackColor = System.Drawing.Color.Empty;
			this.comboItem4.FontName = "";
			this.comboItem4.FontSize = 8F;
			this.comboItem4.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem4.ForeColor = System.Drawing.Color.Empty;
			this.comboItem4.Image = null;
			this.comboItem4.ImageIndex = -1;
			this.comboItem4.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem4.Tag = null;
			this.comboItem4.Text = "cust_cbo_slide";
			this.comboItem4.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem4.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// comboItem5
			// 
			this.comboItem5.BackColor = System.Drawing.Color.Empty;
			this.comboItem5.FontName = "";
			this.comboItem5.FontSize = 8F;
			this.comboItem5.FontStyle = System.Drawing.FontStyle.Regular;
			this.comboItem5.ForeColor = System.Drawing.Color.Empty;
			this.comboItem5.Image = null;
			this.comboItem5.ImageIndex = -1;
			this.comboItem5.ImagePosition = System.Windows.Forms.HorizontalAlignment.Left;
			this.comboItem5.Tag = null;
			this.comboItem5.Text = "cust_cbo_fade";
			this.comboItem5.TextAlignment = System.Drawing.StringAlignment.Near;
			this.comboItem5.TextLineAlignment = System.Drawing.StringAlignment.Near;
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(24, 208);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(320, 16);
			this.label7.TabIndex = 6;
			this.label7.Text = "cust_lbl_menuan";
			// 
			// chkTipsShowShortcuts
			// 
			this.chkTipsShowShortcuts.Location = new System.Drawing.Point(40, 176);
			this.chkTipsShowShortcuts.Name = "chkTipsShowShortcuts";
			this.chkTipsShowShortcuts.Size = new System.Drawing.Size(304, 16);
			this.chkTipsShowShortcuts.TabIndex = 4;
			this.chkTipsShowShortcuts.Text = "cust_chk_showsk";
			// 
			// button1
			// 
			this.button1.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.button1.Location = new System.Drawing.Point(24, 80);
			this.button1.Name = "button1";
			this.button1.Size = new System.Drawing.Size(180, 24);
			this.button1.TabIndex = 2;
			this.button1.Text = "cust_btn_resetusage";
			this.button1.Click += new System.EventHandler(this.ResetUsageData);
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(8, 128);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(336, 16);
			this.label6.TabIndex = 7;
			this.label6.Text = "cust_lbl_other";
			// 
			// chkFullAfterDelay
			// 
			this.chkFullAfterDelay.Location = new System.Drawing.Point(40, 56);
			this.chkFullAfterDelay.Name = "chkFullAfterDelay";
			this.chkFullAfterDelay.Size = new System.Drawing.Size(304, 16);
			this.chkFullAfterDelay.TabIndex = 1;
			this.chkFullAfterDelay.Text = "cust_chk_delay";
			// 
			// chkShowFullMenus
			// 
			this.chkShowFullMenus.Location = new System.Drawing.Point(24, 32);
			this.chkShowFullMenus.Name = "chkShowFullMenus";
			this.chkShowFullMenus.Size = new System.Drawing.Size(320, 16);
			this.chkShowFullMenus.TabIndex = 0;
			this.chkShowFullMenus.Text = "cust_chk_fullmenus";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(8, 8);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(336, 16);
			this.label5.TabIndex = 8;
			this.label5.Text = "cust_lbl_pmt";
			// 
			// cmdKeyboard
			// 
			//this.cmdKeyboard.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.cmdKeyboard.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdKeyboard.Location = new System.Drawing.Point(160, 317);
			this.cmdKeyboard.Name = "cmdKeyboard";
			this.cmdKeyboard.Size = new System.Drawing.Size(96, 24);
			this.cmdKeyboard.TabIndex = 1;
			this.cmdKeyboard.Text = "cust_btn_keyboard";
			// 
			// cmdClose
			// 
			//this.cmdClose.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
			this.cmdClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.cmdClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
			this.cmdClose.Location = new System.Drawing.Point(264, 317);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.Size = new System.Drawing.Size(96, 24);
			this.cmdClose.TabIndex = 2;
			this.cmdClose.Text = "cust_btn_close";
			this.cmdClose.Click += new System.EventHandler(this.Close_Click);
			// 
			// frmCustomize
			// 
			this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
			this.ClientSize = new System.Drawing.Size(368, 347);
			this.Controls.AddRange(new System.Windows.Forms.Control[] {
																		  this.cmdClose,
																		  this.cmdKeyboard,
																		  this.tabCtrl});
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCustomize";
			this.ShowInTaskbar = false;
			this.Text = "cust_caption";
			this.tabCtrl.ResumeLayout(false);
			this.tabPage1.ResumeLayout(false);
			this.tabPage2.ResumeLayout(false);
			this.tabPage3.ResumeLayout(false);
			this.AcceptButton=cmdClose;
			this.CancelButton=cmdClose;
			this.ResumeLayout(false);

		}
 /// <summary> 
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Student_Brief));
     this.label77 = new System.Windows.Forms.Label();
     this.label76 = new System.Windows.Forms.Label();
     this.txtIDNumber = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label78 = new System.Windows.Forms.Label();
     this.label82 = new System.Windows.Forms.Label();
     this.txtName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label81 = new System.Windows.Forms.Label();
     this.txtEngName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label80 = new System.Windows.Forms.Label();
     this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
     this.ctxChange1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem5 = new DevComponents.DotNetBar.ButtonItem();
     this.ctxChange2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem6 = new DevComponents.DotNetBar.ButtonItem();
     this.pic1 = new System.Windows.Forms.PictureBox();
     this.pic2 = new System.Windows.Forms.PictureBox();
     this.od = new System.Windows.Forms.OpenFileDialog();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.txtBirthPlace = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label79 = new System.Windows.Forms.Label();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.txtBirthDate = new Campus.Windows.DateTimeTextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.txtLoginID = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label2 = new System.Windows.Forms.Label();
     this.txtLoginPwd = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.label3 = new System.Windows.Forms.Label();
     this.cboGender = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cboNationality = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cboAccountType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pic1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pic2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // label77
     //
     this.label77.AutoSize = true;
     this.label77.BackColor = System.Drawing.Color.White;
     this.label77.Location = new System.Drawing.Point(294, 21);
     this.label77.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label77.Name = "label77";
     this.label77.Size = new System.Drawing.Size(60, 17);
     this.label77.TabIndex = 205;
     this.label77.Text = "姓  名";
     //
     // label76
     //
     this.label76.AutoSize = true;
     this.label76.BackColor = System.Drawing.Color.PaleGreen;
     this.label76.Location = new System.Drawing.Point(293, 168);
     this.label76.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label76.Name = "label76";
     this.label76.Size = new System.Drawing.Size(60, 17);
     this.label76.TabIndex = 207;
     this.label76.Text = "英文姓名";
     //
     // txtIDNumber
     //
     this.txtIDNumber.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtIDNumber.Border.Class = "TextBoxBorder";
     this.txtIDNumber.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtIDNumber.Location = new System.Drawing.Point(366, 48);
     this.txtIDNumber.Margin = new System.Windows.Forms.Padding(4);
     this.txtIDNumber.MaxLength = 20;
     this.txtIDNumber.Name = "txtIDNumber";
     this.txtIDNumber.Size = new System.Drawing.Size(138, 25);
     this.txtIDNumber.TabIndex = 2;
     //
     // label78
     //
     this.label78.AutoSize = true;
     this.label78.BackColor = System.Drawing.Color.PaleGreen;
     this.label78.Location = new System.Drawing.Point(294, 83);
     this.label78.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label78.Name = "label78";
     this.label78.Size = new System.Drawing.Size(60, 17);
     this.label78.TabIndex = 195;
     this.label78.Text = "生  日";
     this.label78.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // label82
     //
     this.label82.AutoSize = true;
     this.label82.BackColor = System.Drawing.Color.PaleGreen;
     this.label82.Location = new System.Drawing.Point(294, 112);
     this.label82.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label82.Name = "label82";
     this.label82.Size = new System.Drawing.Size(60, 17);
     this.label82.TabIndex = 194;
     this.label82.Text = "性  別";
     this.label82.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtName
     //
     //
     //
     //
     this.txtName.Border.Class = "TextBoxBorder";
     this.txtName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtName.Location = new System.Drawing.Point(366, 17);
     this.txtName.Margin = new System.Windows.Forms.Padding(4);
     this.txtName.MaxLength = 10;
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(138, 25);
     this.txtName.TabIndex = 1;
     //
     // label81
     //
     this.label81.AutoSize = true;
     this.label81.BackColor = System.Drawing.Color.White;
     this.label81.Location = new System.Drawing.Point(294, 51);
     this.label81.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label81.Name = "label81";
     this.label81.Size = new System.Drawing.Size(60, 17);
     this.label81.TabIndex = 192;
     this.label81.Text = "身分證號";
     this.label81.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtEngName
     //
     //
     //
     //
     this.txtEngName.Border.Class = "TextBoxBorder";
     this.txtEngName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEngName.Enabled = false;
     this.txtEngName.Location = new System.Drawing.Point(366, 166);
     this.txtEngName.Margin = new System.Windows.Forms.Padding(4);
     this.txtEngName.MaxLength = 30;
     this.txtEngName.Name = "txtEngName";
     this.txtEngName.ReadOnly = true;
     this.txtEngName.Size = new System.Drawing.Size(138, 25);
     this.txtEngName.TabIndex = 8;
     //
     // label80
     //
     this.label80.AutoSize = true;
     this.label80.BackColor = System.Drawing.Color.Transparent;
     this.label80.Location = new System.Drawing.Point(293, 203);
     this.label80.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label80.Name = "label80";
     this.label80.Size = new System.Drawing.Size(59, 17);
     this.label80.TabIndex = 191;
     this.label80.Text = "出  生  地";
     this.label80.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label80.Visible = false;
     //
     // contextMenuBar1
     //
     this.contextMenuBar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.ctxChange1,
     this.ctxChange2});
     this.contextMenuBar1.Location = new System.Drawing.Point(65, 69);
     this.contextMenuBar1.Margin = new System.Windows.Forms.Padding(4);
     this.contextMenuBar1.Name = "contextMenuBar1";
     this.contextMenuBar1.Size = new System.Drawing.Size(239, 26);
     this.contextMenuBar1.Stretch = true;
     this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
     this.contextMenuBar1.TabIndex = 210;
     this.contextMenuBar1.TabStop = false;
     this.contextMenuBar1.Text = "contextMenuBar1";
     //
     // ctxChange1
     //
     this.ctxChange1.AutoExpandOnClick = true;
     this.ctxChange1.Name = "ctxChange1";
     this.ctxChange1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.buttonItem2,
     this.buttonItem5});
     this.ctxChange1.Text = "Change 1";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "變更照片";
     this.buttonItem1.Click += new System.EventHandler(this.buttonItem1_Click);
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.Text = "另存照片";
     this.buttonItem2.Click += new System.EventHandler(this.buttonItem2_Click);
     //
     // buttonItem5
     //
     this.buttonItem5.Name = "buttonItem5";
     this.buttonItem5.Text = "清除照片";
     this.buttonItem5.Click += new System.EventHandler(this.buttonItem5_Click);
     //
     // ctxChange2
     //
     this.ctxChange2.AutoExpandOnClick = true;
     this.ctxChange2.Name = "ctxChange2";
     this.ctxChange2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3,
     this.buttonItem4,
     this.buttonItem6});
     this.ctxChange2.Text = "Change 2";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "變更照片";
     this.buttonItem3.Click += new System.EventHandler(this.buttonItem3_Click);
     //
     // buttonItem4
     //
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "另存照片";
     this.buttonItem4.Click += new System.EventHandler(this.buttonItem4_Click);
     //
     // buttonItem6
     //
     this.buttonItem6.Name = "buttonItem6";
     this.buttonItem6.Text = "清除照片";
     this.buttonItem6.Click += new System.EventHandler(this.buttonItem6_Click);
     //
     // pic1
     //
     this.contextMenuBar1.SetContextMenuEx(this.pic1, this.ctxChange1);
     this.pic1.Image = ((System.Drawing.Image)(resources.GetObject("pic1.Image")));
     this.pic1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pic1.InitialImage")));
     this.pic1.Location = new System.Drawing.Point(58, 21);
     this.pic1.Margin = new System.Windows.Forms.Padding(4);
     this.pic1.Name = "pic1";
     this.pic1.Size = new System.Drawing.Size(90, 100);
     this.pic1.TabIndex = 208;
     this.pic1.TabStop = false;
     //
     // pic2
     //
     this.contextMenuBar1.SetContextMenuEx(this.pic2, this.ctxChange2);
     this.pic2.Image = ((System.Drawing.Image)(resources.GetObject("pic2.Image")));
     this.pic2.InitialImage = ((System.Drawing.Image)(resources.GetObject("pic2.InitialImage")));
     this.pic2.Location = new System.Drawing.Point(156, 21);
     this.pic2.Margin = new System.Windows.Forms.Padding(4);
     this.pic2.Name = "pic2";
     this.pic2.Size = new System.Drawing.Size(90, 100);
     this.pic2.TabIndex = 209;
     this.pic2.TabStop = false;
     //
     // comboItem1
     //
     this.comboItem1.Text = "comboItem1";
     //
     // comboItem2
     //
     this.comboItem2.Text = "comboItem2";
     //
     // comboItem3
     //
     this.comboItem3.Text = "comboItem3";
     //
     // txtBirthPlace
     //
     //
     //
     //
     this.txtBirthPlace.Border.Class = "TextBoxBorder";
     this.txtBirthPlace.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtBirthPlace.Location = new System.Drawing.Point(365, 200);
     this.txtBirthPlace.Margin = new System.Windows.Forms.Padding(4);
     this.txtBirthPlace.MaxLength = 30;
     this.txtBirthPlace.Name = "txtBirthPlace";
     this.txtBirthPlace.Size = new System.Drawing.Size(138, 25);
     this.txtBirthPlace.TabIndex = 5;
     this.txtBirthPlace.Visible = false;
     //
     // label79
     //
     this.label79.AutoSize = true;
     this.label79.BackColor = System.Drawing.Color.PaleGreen;
     this.label79.Location = new System.Drawing.Point(294, 140);
     this.label79.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label79.Name = "label79";
     this.label79.Size = new System.Drawing.Size(61, 17);
     this.label79.TabIndex = 193;
     this.label79.Text = "國         籍";
     this.label79.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     //
     // txtBirthDate
     //
     this.txtBirthDate.AllowNull = true;
     //
     //
     //
     this.txtBirthDate.Border.Class = "TextBoxBorder";
     this.txtBirthDate.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtBirthDate.EmptyString = "";
     this.txtBirthDate.Enabled = false;
     this.txtBirthDate.Location = new System.Drawing.Point(366, 79);
     this.txtBirthDate.Name = "txtBirthDate";
     this.txtBirthDate.ReadOnly = true;
     this.txtBirthDate.Size = new System.Drawing.Size(138, 25);
     this.txtBirthDate.TabIndex = 3;
     this.txtBirthDate.WatermarkText = "yyyy/mm/dd";
     this.txtBirthDate.TextChanged += new System.EventHandler(this.txtBirthDate_TextChanged);
     this.txtBirthDate.Validated += new System.EventHandler(this.txtBirthDate_Validated);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(36, 141);
     this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(60, 17);
     this.label1.TabIndex = 191;
     this.label1.Text = "登入帳號";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtLoginID
     //
     //
     //
     //
     this.txtLoginID.Border.Class = "TextBoxBorder";
     this.txtLoginID.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtLoginID.Location = new System.Drawing.Point(108, 137);
     this.txtLoginID.Margin = new System.Windows.Forms.Padding(4);
     this.txtLoginID.MaxLength = 50;
     this.txtLoginID.Name = "txtLoginID";
     this.txtLoginID.Size = new System.Drawing.Size(138, 25);
     this.txtLoginID.TabIndex = 5;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Location = new System.Drawing.Point(36, 202);
     this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 17);
     this.label2.TabIndex = 191;
     this.label2.Text = "登入密碼";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.label2.Visible = false;
     //
     // txtLoginPwd
     //
     //
     //
     //
     this.txtLoginPwd.Border.Class = "TextBoxBorder";
     this.txtLoginPwd.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtLoginPwd.Location = new System.Drawing.Point(108, 202);
     this.txtLoginPwd.Margin = new System.Windows.Forms.Padding(4);
     this.txtLoginPwd.MaxLength = 50;
     this.txtLoginPwd.Name = "txtLoginPwd";
     this.txtLoginPwd.PasswordChar = '●';
     this.txtLoginPwd.Size = new System.Drawing.Size(138, 25);
     this.txtLoginPwd.TabIndex = 8;
     this.txtLoginPwd.Visible = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Location = new System.Drawing.Point(36, 168);
     this.label3.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(60, 17);
     this.label3.TabIndex = 193;
     this.label3.Text = "帳號類型";
     this.label3.Visible = false;
     //
     // cboGender
     //
     this.cboGender.DisplayMember = "Text";
     this.cboGender.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboGender.Enabled = false;
     this.cboGender.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.cboGender.FormattingEnabled = true;
     this.cboGender.ItemHeight = 16;
     this.cboGender.Location = new System.Drawing.Point(366, 110);
     this.cboGender.Name = "cboGender";
     this.cboGender.Size = new System.Drawing.Size(138, 22);
     this.cboGender.TabIndex = 4;
     this.cboGender.TextChanged += new System.EventHandler(this.cboGender_TextChanged);
     //
     // cboNationality
     //
     this.cboNationality.DisplayMember = "Text";
     this.cboNationality.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboNationality.Enabled = false;
     this.cboNationality.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.cboNationality.FormattingEnabled = true;
     this.cboNationality.ItemHeight = 16;
     this.cboNationality.Location = new System.Drawing.Point(365, 138);
     this.cboNationality.Margin = new System.Windows.Forms.Padding(4);
     this.cboNationality.Name = "cboNationality";
     this.cboNationality.Size = new System.Drawing.Size(139, 22);
     this.cboNationality.TabIndex = 6;
     //
     // cboAccountType
     //
     this.cboAccountType.DisplayMember = "Text";
     this.cboAccountType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboAccountType.FormattingEnabled = true;
     this.cboAccountType.ItemHeight = 19;
     this.cboAccountType.Items.AddRange(new object[] {
     this.comboItem6,
     this.comboItem4,
     this.comboItem5});
     this.cboAccountType.Location = new System.Drawing.Point(108, 168);
     this.cboAccountType.Name = "cboAccountType";
     this.cboAccountType.Size = new System.Drawing.Size(138, 25);
     this.cboAccountType.TabIndex = 7;
     this.cboAccountType.Visible = false;
     //
     // comboItem4
     //
     this.comboItem4.Text = "Greening";
     //
     // comboItem5
     //
     this.comboItem5.Text = "自定帳號";
     //
     // Student_Brief
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.contextMenuBar1);
     this.Controls.Add(this.label76);
     this.Controls.Add(this.txtBirthDate);
     this.Controls.Add(this.cboAccountType);
     this.Controls.Add(this.cboGender);
     this.Controls.Add(this.txtBirthPlace);
     this.Controls.Add(this.txtIDNumber);
     this.Controls.Add(this.label77);
     this.Controls.Add(this.cboNationality);
     this.Controls.Add(this.txtLoginID);
     this.Controls.Add(this.txtName);
     this.Controls.Add(this.pic2);
     this.Controls.Add(this.pic1);
     this.Controls.Add(this.txtEngName);
     this.Controls.Add(this.txtLoginPwd);
     this.Controls.Add(this.label81);
     this.Controls.Add(this.label79);
     this.Controls.Add(this.label78);
     this.Controls.Add(this.label80);
     this.Controls.Add(this.label82);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Margin = new System.Windows.Forms.Padding(5, 6, 5, 6);
     this.Name = "Student_Brief";
     this.Size = new System.Drawing.Size(550, 210);
     this.Load += new System.EventHandler(this.Student_Brief_Load);
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pic1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pic2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #52
0
        private void tv_NodeClick(object sender, DevComponents.AdvTree.TreeNodeMouseEventArgs e)
        {
            if (e.Node.Tag != null)
            {
                iID = Convert.ToInt32(e.Node.Tag);
                Program.SQL.AddParameter("id", iID);

                DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxType.Items[cbxType.SelectedIndex];
                string sTable = "", sListType = i.Value != null?i.Value.ToString() : "";

                switch (sListType)
                {
                case "lists_drawings":
                    sTable = "lists_drawings";
                    break;

                case "lists_drawings_hac":
                    sTable = "lists_drawings_hac";
                    break;

                case "lists_faults":
                    sTable = "lists_faults";
                    break;

                case "lists_manufacturers":
                    sTable = "lists_manufacturers";
                    break;

                case "lists_types_device":
                    sTable = "lists_types_device";
                    break;

                case "lists_types_protection":
                    sTable = "lists_types_protection";
                    break;

                default:
                    sTable = "lists_countries";
                    break;
                }

                DataSet ds = Program.SQL.SelectAll("SELECT * FROM " + sTable + " WHERE id=@id;");
                if (ds.Tables.Count == 1 && ds.Tables[0].Rows.Count > 0)
                {
                    DataRow r = ds.Tables[0].Rows[0];

                    switch (sListType)
                    {
                    case "lists_drawings":
                        txtDrawing.Text     = r["name"].ToString();
                        txtDrawingRev.Text  = r["revision"].ToString();
                        dtDrawingDate.Value = DateTime.Parse(r["date"].ToString());
                        break;

                    case "lists_drawings_hac":
                        txtHacDrawing.Text     = r["name"].ToString();
                        txtHacDrawingRev.Text  = r["revision"].ToString();
                        dtHacDrawingDate.Value = DateTime.Parse(r["date"].ToString());
                        break;

                    case "lists_faults":
                        txtFault.Text = r["fault"].ToString();
                        break;

                    case "lists_manufacturers":
                        txtManufacturer.Text = r["name"].ToString();
                        break;

                    case "lists_types_device":
                        txtTypesDevice.Text = r["name"].ToString();
                        break;

                    case "lists_types_protection":
                        txtTypesProtection.Text = r["name"].ToString();
                        break;

                    default:
                        txtCountry.Text     = r["name"].ToString();
                        txtCountryCode.Text = r["code"].ToString();
                        break;
                    }
                }
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.txtSL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.buttonX2 = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cmbdvQD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.cmb_dvt = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.cmbSua = new DevComponents.DotNetBar.ButtonX();
     this.cmbXoa = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txtten = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(14, 198);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(575, 217);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 79;
     this.groupPanel1.Text = "DANH SÁCH NHÓM CUNG CẤP";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader4,
     this.columnHeader1});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(531, 177);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 55;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên QC";
     this.columnHeader2.Width = 190;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "SLĐVT";
     this.columnHeader4.Width = 150;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "manhom";
     this.columnHeader1.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.txtSL);
     this.groupPanel2.Controls.Add(this.buttonX2);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.cmbdvQD);
     this.groupPanel2.Controls.Add(this.buttonX1);
     this.groupPanel2.Controls.Add(this.labelX23);
     this.groupPanel2.Controls.Add(this.cmb_dvt);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txtten);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(14, 40);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(578, 152);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "THÔNG TIN QUY CÁCH";
     //
     // txtSL
     //
     //
     //
     //
     this.txtSL.Border.Class = "TextBoxBorder";
     this.txtSL.FocusHighlightEnabled = true;
     this.txtSL.Location = new System.Drawing.Point(81, 52);
     this.txtSL.Name = "txtSL";
     this.txtSL.Size = new System.Drawing.Size(134, 24);
     this.txtSL.TabIndex = 1;
     this.txtSL.TextChanged += new System.EventHandler(this.txtSL_TextChanged);
     //
     // buttonX2
     //
     this.buttonX2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX2.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX2.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX2.Location = new System.Drawing.Point(537, 17);
     this.buttonX2.Name = "buttonX2";
     this.buttonX2.Size = new System.Drawing.Size(25, 25);
     this.buttonX2.TabIndex = 78;
     this.buttonX2.Text = "+";
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(250, 16);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(138, 23);
     this.labelX2.TabIndex = 76;
     this.labelX2.Text = "Đơn vị nhập quy đổi:";
     //
     // cmbdvQD
     //
     this.cmbdvQD.DisplayMember = "Text";
     this.cmbdvQD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbdvQD.FocusHighlightEnabled = true;
     this.cmbdvQD.FormattingEnabled = true;
     this.cmbdvQD.ItemHeight = 18;
     this.cmbdvQD.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmbdvQD.Location = new System.Drawing.Point(393, 17);
     this.cmbdvQD.Name = "cmbdvQD";
     this.cmbdvQD.Size = new System.Drawing.Size(142, 24);
     this.cmbdvQD.TabIndex = 2;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonX1.Location = new System.Drawing.Point(217, 17);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(25, 25);
     this.buttonX1.TabIndex = 75;
     this.buttonX1.Text = "+";
     //
     // labelX23
     //
     this.labelX23.Location = new System.Drawing.Point(1, 16);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(80, 23);
     this.labelX23.TabIndex = 73;
     this.labelX23.Text = "Đơn vị tính:";
     //
     // cmb_dvt
     //
     this.cmb_dvt.DisplayMember = "Text";
     this.cmb_dvt.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_dvt.FocusHighlightEnabled = true;
     this.cmb_dvt.FormattingEnabled = true;
     this.cmb_dvt.ItemHeight = 18;
     this.cmb_dvt.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.cmb_dvt.Location = new System.Drawing.Point(81, 17);
     this.cmb_dvt.Name = "cmb_dvt";
     this.cmb_dvt.Size = new System.Drawing.Size(134, 24);
     this.cmb_dvt.TabIndex = 0;
     //
     // comboItem1
     //
     this.comboItem1.Text = "Nhập hàng";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Trả hàng";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(2, 54);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(80, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "SLDVT:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.cmbSua);
     this.panel5.Controls.Add(this.cmbXoa);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 97);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(572, 30);
     this.panel5.TabIndex = 70;
     //
     // cmbSua
     //
     this.cmbSua.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbSua.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbSua.Location = new System.Drawing.Point(223, 2);
     this.cmbSua.Margin = new System.Windows.Forms.Padding(0);
     this.cmbSua.Name = "cmbSua";
     this.cmbSua.Size = new System.Drawing.Size(70, 27);
     this.cmbSua.TabIndex = 1;
     this.cmbSua.Text = "Sửa";
     this.cmbSua.Click += new System.EventHandler(this.cmbSua_Click);
     //
     // cmbXoa
     //
     this.cmbXoa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmbXoa.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmbXoa.Location = new System.Drawing.Point(305, 2);
     this.cmbXoa.Margin = new System.Windows.Forms.Padding(0);
     this.cmbXoa.Name = "cmbXoa";
     this.cmbXoa.Size = new System.Drawing.Size(70, 27);
     this.cmbXoa.TabIndex = 2;
     this.cmbXoa.Text = "Xóa";
     this.cmbXoa.Click += new System.EventHandler(this.cmbXoa_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(140, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txtten
     //
     //
     //
     //
     this.txtten.Border.Class = "TextBoxBorder";
     this.txtten.Enabled = false;
     this.txtten.FocusHighlightEnabled = true;
     this.txtten.Location = new System.Drawing.Point(393, 52);
     this.txtten.Name = "txtten";
     this.txtten.Size = new System.Drawing.Size(142, 24);
     this.txtten.TabIndex = 3;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(285, 52);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(102, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên Quy cách :";
     //
     // frmQuyCach
     //
     this.ClientSize = new System.Drawing.Size(603, 435);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmQuyCach";
     this.Load += new System.EventHandler(this.frmQuyCach_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.labelXTitle = new DevComponents.DotNetBar.LabelX();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.cancelButton = new DevComponents.DotNetBar.ButtonX();
     this.checkBox_sat = new System.Windows.Forms.CheckBox();
     this.checkBox_fri = new System.Windows.Forms.CheckBox();
     this.checkBox_thu = new System.Windows.Forms.CheckBox();
     this.checkBox_wed = new System.Windows.Forms.CheckBox();
     this.checkBox_tue = new System.Windows.Forms.CheckBox();
     this.checkBox_sun = new System.Windows.Forms.CheckBox();
     this.checkBox_mon = new System.Windows.Forms.CheckBox();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.cmbContinuationType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cmbHistoricalPeriod = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem_tick = new DevComponents.Editors.ComboItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.saveButton = new DevComponents.DotNetBar.ButtonX();
     this.labelX_back = new DevComponents.DotNetBar.LabelX();
     this.checkBox_AutoCollec = new System.Windows.Forms.CheckBox();
     this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.comboBoxEx_existigsSessions = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.textBoxX_sessionsName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.buttonX_add = new DevComponents.DotNetBar.ButtonX();
     this.checkBox_sy = new System.Windows.Forms.CheckBox();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.btnRemov = new DevComponents.DotNetBar.ButtonX();
     this.lbSelList = new System.Windows.Forms.ListBox();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.listViewEx_times = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader_No = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_Name1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_TS = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader_Days = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.textBoxXListName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.contextMenuStrip1.SuspendLayout();
     this.panelEx4.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     this.panelEx2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // labelXTitle
     //
     //
     //
     //
     this.labelXTitle.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelXTitle.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelXTitle.Location = new System.Drawing.Point(101, 3);
     this.labelXTitle.Name = "labelXTitle";
     this.labelXTitle.Size = new System.Drawing.Size(239, 34);
     this.labelXTitle.TabIndex = 19;
     this.labelXTitle.Text = "EDIT GROUP";
     //
     // cancelButton
     //
     this.cancelButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cancelButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.cancelButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.cancelButton.Location = new System.Drawing.Point(666, 403);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(105, 31);
     this.cancelButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cancelButton.TabIndex = 91;
     this.cancelButton.Text = "Cancel";
     this.toolTip1.SetToolTip(this.cancelButton, "Return without saving");
     //
     // checkBox_sat
     //
     this.checkBox_sat.AutoSize = true;
     this.checkBox_sat.ForeColor = System.Drawing.Color.Black;
     this.checkBox_sat.Location = new System.Drawing.Point(458, 8);
     this.checkBox_sat.Name = "checkBox_sat";
     this.checkBox_sat.Size = new System.Drawing.Size(32, 19);
     this.checkBox_sat.TabIndex = 110;
     this.checkBox_sat.Text = "S";
     this.toolTip1.SetToolTip(this.checkBox_sat, "Saturday");
     this.checkBox_sat.UseVisualStyleBackColor = true;
     //
     // checkBox_fri
     //
     this.checkBox_fri.AutoSize = true;
     this.checkBox_fri.ForeColor = System.Drawing.Color.Black;
     this.checkBox_fri.Location = new System.Drawing.Point(420, 8);
     this.checkBox_fri.Name = "checkBox_fri";
     this.checkBox_fri.Size = new System.Drawing.Size(32, 19);
     this.checkBox_fri.TabIndex = 109;
     this.checkBox_fri.Text = "F";
     this.toolTip1.SetToolTip(this.checkBox_fri, "Friday");
     this.checkBox_fri.UseVisualStyleBackColor = true;
     //
     // checkBox_thu
     //
     this.checkBox_thu.AutoSize = true;
     this.checkBox_thu.ForeColor = System.Drawing.Color.Black;
     this.checkBox_thu.Location = new System.Drawing.Point(381, 8);
     this.checkBox_thu.Name = "checkBox_thu";
     this.checkBox_thu.Size = new System.Drawing.Size(33, 19);
     this.checkBox_thu.TabIndex = 108;
     this.checkBox_thu.Text = "T";
     this.toolTip1.SetToolTip(this.checkBox_thu, "Thursday");
     this.checkBox_thu.UseVisualStyleBackColor = true;
     //
     // checkBox_wed
     //
     this.checkBox_wed.AutoSize = true;
     this.checkBox_wed.ForeColor = System.Drawing.Color.Black;
     this.checkBox_wed.Location = new System.Drawing.Point(335, 8);
     this.checkBox_wed.Name = "checkBox_wed";
     this.checkBox_wed.Size = new System.Drawing.Size(37, 19);
     this.checkBox_wed.TabIndex = 107;
     this.checkBox_wed.Text = "W";
     this.toolTip1.SetToolTip(this.checkBox_wed, "Wednesday");
     this.checkBox_wed.UseVisualStyleBackColor = true;
     //
     // checkBox_tue
     //
     this.checkBox_tue.AutoSize = true;
     this.checkBox_tue.ForeColor = System.Drawing.Color.Black;
     this.checkBox_tue.Location = new System.Drawing.Point(296, 8);
     this.checkBox_tue.Name = "checkBox_tue";
     this.checkBox_tue.Size = new System.Drawing.Size(33, 19);
     this.checkBox_tue.TabIndex = 106;
     this.checkBox_tue.Text = "T";
     this.toolTip1.SetToolTip(this.checkBox_tue, "Tuesday");
     this.checkBox_tue.UseVisualStyleBackColor = true;
     //
     // checkBox_sun
     //
     this.checkBox_sun.AutoSize = true;
     this.checkBox_sun.ForeColor = System.Drawing.Color.Black;
     this.checkBox_sun.Location = new System.Drawing.Point(215, 8);
     this.checkBox_sun.Name = "checkBox_sun";
     this.checkBox_sun.Size = new System.Drawing.Size(32, 19);
     this.checkBox_sun.TabIndex = 104;
     this.checkBox_sun.Text = "S";
     this.toolTip1.SetToolTip(this.checkBox_sun, "Sunday");
     this.checkBox_sun.UseVisualStyleBackColor = true;
     //
     // checkBox_mon
     //
     this.checkBox_mon.AutoSize = true;
     this.checkBox_mon.ForeColor = System.Drawing.Color.Black;
     this.checkBox_mon.Location = new System.Drawing.Point(253, 8);
     this.checkBox_mon.Name = "checkBox_mon";
     this.checkBox_mon.Size = new System.Drawing.Size(37, 19);
     this.checkBox_mon.TabIndex = 105;
     this.checkBox_mon.Text = "M";
     this.toolTip1.SetToolTip(this.checkBox_mon, "Monday");
     this.checkBox_mon.UseVisualStyleBackColor = true;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.deleteToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(108, 26);
     //
     // deleteToolStripMenuItem
     //
     this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
     this.deleteToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.deleteToolStripMenuItem.Text = "Delete";
     this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click);
     //
     // cmbContinuationType
     //
     this.cmbContinuationType.DisplayMember = "Text";
     this.cmbContinuationType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbContinuationType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbContinuationType.Enabled = false;
     this.cmbContinuationType.FormattingEnabled = true;
     this.cmbContinuationType.ItemHeight = 17;
     this.cmbContinuationType.Location = new System.Drawing.Point(8, 69);
     this.cmbContinuationType.Name = "cmbContinuationType";
     this.cmbContinuationType.Size = new System.Drawing.Size(162, 23);
     this.cmbContinuationType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbContinuationType.TabIndex = 101;
     //
     // cmbHistoricalPeriod
     //
     this.cmbHistoricalPeriod.DisplayMember = "Text";
     this.cmbHistoricalPeriod.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbHistoricalPeriod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbHistoricalPeriod.Enabled = false;
     this.cmbHistoricalPeriod.FormattingEnabled = true;
     this.cmbHistoricalPeriod.ItemHeight = 17;
     this.cmbHistoricalPeriod.Items.AddRange(new object[] {
     this.comboItem_tick,
     this.comboItem1,
     this.comboItem2,
     this.comboItem3,
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem15});
     this.cmbHistoricalPeriod.Location = new System.Drawing.Point(8, 22);
     this.cmbHistoricalPeriod.Name = "cmbHistoricalPeriod";
     this.cmbHistoricalPeriod.Size = new System.Drawing.Size(162, 23);
     this.cmbHistoricalPeriod.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbHistoricalPeriod.TabIndex = 100;
     //
     // comboItem_tick
     //
     this.comboItem_tick.Text = "tick";
     //
     // comboItem1
     //
     this.comboItem1.Text = "1 minute";
     //
     // comboItem2
     //
     this.comboItem2.Text = "2 minutes";
     //
     // comboItem3
     //
     this.comboItem3.Text = "3 minutes";
     //
     // comboItem4
     //
     this.comboItem4.Text = "5 minutes";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10 minutes";
     //
     // comboItem6
     //
     this.comboItem6.Text = "15 minutes";
     //
     // comboItem7
     //
     this.comboItem7.Text = "30 minutes";
     //
     // comboItem8
     //
     this.comboItem8.Text = "60 minutes";
     //
     // comboItem9
     //
     this.comboItem9.Text = "240 minutes";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Daily";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Weekly";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Monthly";
     //
     // comboItem13
     //
     this.comboItem13.Text = "Quarterly";
     //
     // comboItem14
     //
     this.comboItem14.Text = "Semiannual";
     //
     // comboItem15
     //
     this.comboItem15.Text = "Yearly";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX2.Location = new System.Drawing.Point(8, 2);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(97, 21);
     this.labelX2.TabIndex = 98;
     this.labelX2.Text = "Timeframe:";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX3.Location = new System.Drawing.Point(8, 48);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(116, 21);
     this.labelX3.TabIndex = 99;
     this.labelX3.Text = "Continuation Types:";
     //
     // saveButton
     //
     this.saveButton.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.saveButton.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.saveButton.Location = new System.Drawing.Point(542, 403);
     this.saveButton.Name = "saveButton";
     this.saveButton.Size = new System.Drawing.Size(105, 31);
     this.saveButton.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.saveButton.TabIndex = 94;
     this.saveButton.Text = "Save";
     //
     // labelX_back
     //
     //
     //
     //
     this.labelX_back.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX_back.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX_back.ForeColor = System.Drawing.Color.Black;
     this.labelX_back.Location = new System.Drawing.Point(3, 3);
     this.labelX_back.Name = "labelX_back";
     this.labelX_back.PaddingLeft = 6;
     this.labelX_back.Size = new System.Drawing.Size(68, 64);
     this.labelX_back.Symbol = "";
     this.labelX_back.SymbolColor = System.Drawing.Color.Green;
     this.labelX_back.SymbolSize = 50F;
     this.labelX_back.TabIndex = 104;
     this.labelX_back.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // checkBox_AutoCollec
     //
     this.checkBox_AutoCollec.AutoSize = true;
     this.checkBox_AutoCollec.ForeColor = System.Drawing.Color.Black;
     this.checkBox_AutoCollec.Location = new System.Drawing.Point(619, 55);
     this.checkBox_AutoCollec.Name = "checkBox_AutoCollec";
     this.checkBox_AutoCollec.Size = new System.Drawing.Size(152, 19);
     this.checkBox_AutoCollec.TabIndex = 116;
     this.checkBox_AutoCollec.Text = "Auto collecting enabled";
     this.checkBox_AutoCollec.UseVisualStyleBackColor = true;
     this.checkBox_AutoCollec.CheckedChanged += new System.EventHandler(this.checkBox_AutoCollec_CheckedChanged);
     //
     // panelEx4
     //
     this.panelEx4.CanvasColor = System.Drawing.Color.LightGreen;
     this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx4.Controls.Add(this.buttonX1);
     this.panelEx4.Controls.Add(this.comboBoxEx_existigsSessions);
     this.panelEx4.Enabled = false;
     this.panelEx4.Location = new System.Drawing.Point(200, 331);
     this.panelEx4.Name = "panelEx4";
     this.panelEx4.Size = new System.Drawing.Size(572, 64);
     this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(250)))), ((int)(((byte)(220)))));
     this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx4.Style.BorderColor.Color = System.Drawing.Color.Green;
     this.panelEx4.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx4.Style.BorderWidth = 3;
     this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx4.Style.GradientAngle = 90;
     this.panelEx4.TabIndex = 119;
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(496, 3);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(71, 54);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 101;
     this.buttonX1.Text = "Add";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // comboBoxEx_existigsSessions
     //
     this.comboBoxEx_existigsSessions.DisplayMember = "Text";
     this.comboBoxEx_existigsSessions.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx_existigsSessions.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxEx_existigsSessions.FormattingEnabled = true;
     this.comboBoxEx_existigsSessions.ItemHeight = 17;
     this.comboBoxEx_existigsSessions.Location = new System.Drawing.Point(51, 20);
     this.comboBoxEx_existigsSessions.Name = "comboBoxEx_existigsSessions";
     this.comboBoxEx_existigsSessions.Size = new System.Drawing.Size(363, 23);
     this.comboBoxEx_existigsSessions.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx_existigsSessions.TabIndex = 82;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.Color.LightGreen;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.checkBox_sat);
     this.panelEx3.Controls.Add(this.textBoxX_sessionsName);
     this.panelEx3.Controls.Add(this.checkBox_fri);
     this.panelEx3.Controls.Add(this.dateTimeInput1);
     this.panelEx3.Controls.Add(this.checkBox_thu);
     this.panelEx3.Controls.Add(this.buttonX_add);
     this.panelEx3.Controls.Add(this.checkBox_sy);
     this.panelEx3.Controls.Add(this.checkBox_wed);
     this.panelEx3.Controls.Add(this.dateTimeInput2);
     this.panelEx3.Controls.Add(this.checkBox_tue);
     this.panelEx3.Controls.Add(this.checkBox_sun);
     this.panelEx3.Controls.Add(this.checkBox_mon);
     this.panelEx3.Enabled = false;
     this.panelEx3.Location = new System.Drawing.Point(200, 249);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(572, 76);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(250)))), ((int)(((byte)(220)))));
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Green;
     this.panelEx3.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx3.Style.BorderWidth = 3;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 118;
     //
     // textBoxX_sessionsName
     //
     this.textBoxX_sessionsName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxX_sessionsName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxX_sessionsName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxX_sessionsName.Border.BorderLeftWidth = 3;
     this.textBoxX_sessionsName.Border.Class = "TextBoxBorder";
     this.textBoxX_sessionsName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX_sessionsName.ForeColor = System.Drawing.Color.Black;
     this.textBoxX_sessionsName.Location = new System.Drawing.Point(14, 7);
     this.textBoxX_sessionsName.MaxLength = 100;
     this.textBoxX_sessionsName.Name = "textBoxX_sessionsName";
     this.textBoxX_sessionsName.Size = new System.Drawing.Size(183, 23);
     this.textBoxX_sessionsName.TabIndex = 103;
     //
     // dateTimeInput1
     //
     //
     //
     //
     this.dateTimeInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput1.ButtonDropDown.Visible = true;
     this.dateTimeInput1.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(14, 36);
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput1.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput1.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput1.MonthCalendar.Visible = false;
     this.dateTimeInput1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(83, 23);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 98;
     this.dateTimeInput1.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // buttonX_add
     //
     this.buttonX_add.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX_add.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX_add.Location = new System.Drawing.Point(496, 8);
     this.buttonX_add.Name = "buttonX_add";
     this.buttonX_add.Size = new System.Drawing.Size(71, 65);
     this.buttonX_add.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX_add.TabIndex = 100;
     this.buttonX_add.Text = "Add";
     this.buttonX_add.Click += new System.EventHandler(this.buttonX_add_Click_1);
     //
     // checkBox_sy
     //
     this.checkBox_sy.AutoSize = true;
     this.checkBox_sy.ForeColor = System.Drawing.Color.Black;
     this.checkBox_sy.Location = new System.Drawing.Point(296, 36);
     this.checkBox_sy.Name = "checkBox_sy";
     this.checkBox_sy.Size = new System.Drawing.Size(104, 19);
     this.checkBox_sy.TabIndex = 102;
     this.checkBox_sy.Text = "Start Yesterday";
     this.checkBox_sy.UseVisualStyleBackColor = true;
     //
     // dateTimeInput2
     //
     //
     //
     //
     this.dateTimeInput2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInput2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInput2.ButtonDropDown.Visible = true;
     this.dateTimeInput2.Format = DevComponents.Editors.eDateTimePickerFormat.ShortTime;
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(114, 36);
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInput2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInput2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.DisplayMonth = new System.DateTime(2013, 12, 1, 0, 0, 0, 0);
     this.dateTimeInput2.MonthCalendar.FirstDayOfWeek = System.DayOfWeek.Monday;
     this.dateTimeInput2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInput2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInput2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInput2.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInput2.MonthCalendar.Visible = false;
     this.dateTimeInput2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(83, 23);
     this.dateTimeInput2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput2.TabIndex = 99;
     this.dateTimeInput2.Value = new System.DateTime(2013, 12, 17, 0, 0, 0, 0);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.Color.LightGreen;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.btnRemov);
     this.panelEx2.Controls.Add(this.lbSelList);
     this.panelEx2.Controls.Add(this.labelX5);
     this.panelEx2.Controls.Add(this.cmbHistoricalPeriod);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.Controls.Add(this.cmbContinuationType);
     this.panelEx2.Controls.Add(this.labelX3);
     this.panelEx2.Location = new System.Drawing.Point(16, 85);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(177, 310);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(250)))), ((int)(((byte)(220)))));
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.Color = System.Drawing.Color.Green;
     this.panelEx2.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx2.Style.BorderWidth = 3;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 117;
     //
     // btnRemov
     //
     this.btnRemov.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnRemov.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnRemov.Location = new System.Drawing.Point(111, 97);
     this.btnRemov.Name = "btnRemov";
     this.btnRemov.Size = new System.Drawing.Size(59, 24);
     this.btnRemov.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnRemov.TabIndex = 73;
     this.btnRemov.Text = "<";
     this.btnRemov.Click += new System.EventHandler(this.btnRemov_Click);
     //
     // lbSelList
     //
     this.lbSelList.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.lbSelList.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.lbSelList.FormattingEnabled = true;
     this.lbSelList.ItemHeight = 15;
     this.lbSelList.Location = new System.Drawing.Point(8, 134);
     this.lbSelList.Name = "lbSelList";
     this.lbSelList.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
     this.lbSelList.Size = new System.Drawing.Size(162, 169);
     this.lbSelList.TabIndex = 58;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX5.Location = new System.Drawing.Point(8, 97);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(97, 21);
     this.labelX5.TabIndex = 68;
     this.labelX5.Text = "Selected symbols:";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.Color.LightGreen;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.listViewEx_times);
     this.panelEx1.Enabled = false;
     this.panelEx1.Location = new System.Drawing.Point(200, 85);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(571, 158);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(250)))), ((int)(((byte)(220)))));
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.Color = System.Drawing.Color.Green;
     this.panelEx1.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx1.Style.BorderWidth = 3;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 115;
     //
     // listViewEx_times
     //
     this.listViewEx_times.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.listViewEx_times.Border.Class = "ListViewBorder";
     this.listViewEx_times.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listViewEx_times.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader_No,
     this.columnHeader_Name1,
     this.columnHeader_TS,
     this.columnHeader_Days});
     this.listViewEx_times.ContextMenuStrip = this.contextMenuStrip1;
     this.listViewEx_times.ForeColor = System.Drawing.Color.Black;
     this.listViewEx_times.FullRowSelect = true;
     this.listViewEx_times.Location = new System.Drawing.Point(7, 5);
     this.listViewEx_times.MultiSelect = false;
     this.listViewEx_times.Name = "listViewEx_times";
     this.listViewEx_times.Size = new System.Drawing.Size(560, 149);
     this.listViewEx_times.TabIndex = 94;
     this.listViewEx_times.UseCompatibleStateImageBehavior = false;
     this.listViewEx_times.View = System.Windows.Forms.View.Details;
     //
     // columnHeader_No
     //
     this.columnHeader_No.Text = "No";
     this.columnHeader_No.Width = 35;
     //
     // columnHeader_Name1
     //
     this.columnHeader_Name1.Text = "Name";
     this.columnHeader_Name1.Width = 120;
     //
     // columnHeader_TS
     //
     this.columnHeader_TS.Text = "Time Start";
     this.columnHeader_TS.Width = 75;
     //
     // columnHeader_Days
     //
     this.columnHeader_Days.Text = "Days";
     this.columnHeader_Days.Width = 80;
     //
     // textBoxXListName
     //
     this.textBoxXListName.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.textBoxXListName.Border.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.textBoxXListName.Border.BorderLeftColor = System.Drawing.Color.Green;
     this.textBoxXListName.Border.BorderLeftWidth = 3;
     this.textBoxXListName.Border.Class = "TextBoxBorder";
     this.textBoxXListName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxXListName.ForeColor = System.Drawing.Color.Black;
     this.textBoxXListName.Location = new System.Drawing.Point(200, 56);
     this.textBoxXListName.Name = "textBoxXListName";
     this.textBoxXListName.Size = new System.Drawing.Size(277, 23);
     this.textBoxXListName.TabIndex = 113;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelX1.Location = new System.Drawing.Point(116, 55);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 21);
     this.labelX1.TabIndex = 114;
     this.labelX1.Text = "List Name:";
     //
     // EditListControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.White;
     this.Controls.Add(this.checkBox_AutoCollec);
     this.Controls.Add(this.panelEx4);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.textBoxXListName);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.labelX_back);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.saveButton);
     this.Controls.Add(this.labelXTitle);
     this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "EditListControl";
     this.Size = new System.Drawing.Size(800, 482);
     this.Load += new System.EventHandler(this.EditListControl_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     this.panelEx4.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     this.panelEx3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     this.panelEx2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
        private Panel NewStepPanel(String ID)
        {
            DevComponents.Editors.ComboItem comboItem1 = new DevComponents.Editors.ComboItem();
            DevComponents.Editors.ComboItem comboItem2 = new DevComponents.Editors.ComboItem();
            DevComponents.Editors.ComboItem comboItem3 = new DevComponents.Editors.ComboItem();
            DevComponents.Editors.ComboItem comboItem4 = new DevComponents.Editors.ComboItem();
            DevComponents.Editors.ComboItem comboItem5 = new DevComponents.Editors.ComboItem();


            Panel newPnl = new Panel();
            //  newPnl.Width = 438;
            //  newPnl.Height = 200;

            PictureBox Btn_Steps = new PictureBox();

            Btn_Steps.BackColor = System.Drawing.Color.Transparent;
            Btn_Steps.Image     = global::PersianMIS.Properties.Resources.Step0;
            Btn_Steps.Cursor    = Cursors.Hand;
            Btn_Steps.Location  = new System.Drawing.Point(4, 3);
            Btn_Steps.Name      = ID;

            Btn_Steps.Size     = new System.Drawing.Size(431, 80);
            Btn_Steps.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;

            Btn_Steps.Click += new System.EventHandler(this.ShowSetParameterForm);


            DevComponents.DotNetBar.Controls.ComboBoxEx Cmb_SelectOperations = new DevComponents.DotNetBar.Controls.ComboBoxEx();

            if (Convert.ToInt32(ID) != (int)Txt_ParameterCount.Value)
            {
                Cmb_SelectOperations.DisplayMember     = "Text";
                Cmb_SelectOperations.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
                Cmb_SelectOperations.FormattingEnabled = true;
                Cmb_SelectOperations.ItemHeight        = 22;
                Cmb_SelectOperations.Font = new System.Drawing.Font("B zar", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));

                Cmb_SelectOperations.Items.AddRange(new object[] {
                    comboItem1,
                    comboItem2,
                    comboItem3,
                    comboItem4
                });
                Cmb_SelectOperations.Location = new System.Drawing.Point(138, 95);
                //     Cmb_SelectOperations.Top = Btn_Steps.Top + Btn_Steps.Height;

                Cmb_SelectOperations.Name     = "Cmb_SelectOperation" + ID;
                Cmb_SelectOperations.Size     = new System.Drawing.Size(159, 28);
                Cmb_SelectOperations.TabIndex = 45;
                Cmb_SelectOperations.Text     = "عملیات را انتخاب کنید";
                //
                // comboItem1
                //
                comboItem1.Text = "*";
                //
                // comboItem2
                //
                comboItem2.Text = "/";
                //
                // comboItem3
                //
                comboItem3.Text = "+";
                //
                // comboItem4
                //
                comboItem4.Text = "-";
                //
                newPnl.Controls.Add(Cmb_SelectOperations);
            }


            Label Lbl_ParameterNumbers = new Label();

            Lbl_ParameterNumbers.AutoSize  = true;
            Lbl_ParameterNumbers.BackColor = System.Drawing.Color.White;
            Lbl_ParameterNumbers.Font      = new System.Drawing.Font("B Nazanin", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(178)));
            Lbl_ParameterNumbers.Location  = new System.Drawing.Point(41, 22);
            Lbl_ParameterNumbers.Name      = "Lbl_ParameterNumber" + ID;
            Lbl_ParameterNumbers.Tag       = ID;
            Lbl_ParameterNumbers.Size      = new System.Drawing.Size(28, 43);
            Lbl_ParameterNumbers.TabIndex  = 3;
            Lbl_ParameterNumbers.Text      = ID;


            newPnl.Controls.Add(Lbl_ParameterNumbers);
            newPnl.Controls.Add(Btn_Steps);


            newPnl.Location = new System.Drawing.Point(459, 78);
            newPnl.Name     = "Pnl_Step" + ID;
            newPnl.Tag      = ID;
            newPnl.Size     = new System.Drawing.Size(438, 125);
            newPnl.TabIndex = 3;



            return(newPnl);
        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.dockContainerItem1 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockContainerItem2 = new DevComponents.DotNetBar.DockContainerItem();
     this.dockContainerItem3 = new DevComponents.DotNetBar.DockContainerItem();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.BtnSubmit = new DevComponents.DotNetBar.ButtonX();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.LbScaffoldType = new DevComponents.DotNetBar.LabelX();
     this.CbxScaffoldType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem72 = new DevComponents.Editors.ComboItem();
     this.comboItem73 = new DevComponents.Editors.ComboItem();
     this.comboItem74 = new DevComponents.Editors.ComboItem();
     this.comboItem66 = new DevComponents.Editors.ComboItem();
     this.comboItem70 = new DevComponents.Editors.ComboItem();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem2 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem3 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem4 = new DevComponents.DotNetBar.ButtonItem();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.TabScaffloldPower = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.Tb_Item1GGWJ = new System.Windows.Forms.TextBox();
     this.Tb_Item1BH = new System.Windows.Forms.TextBox();
     this.Lb_Item1BH = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item1GGWJ = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1SKJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Item1DKJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item17 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1LQJL = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LQJL = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1DSGD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1DSGD = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1BJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1BJ = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1XHGWSCD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LGZJ = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item1LGHJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Item1LGZJ = new DevComponents.Editors.DoubleInput();
     this.Lb_Item1LGHJ = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel13 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item1S = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1D = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1GD = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item1KJ = new DevComponents.Editors.DoubleInput();
     this.Tb_Lx4Item1BJ = new System.Windows.Forms.TextBox();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.groupBox10 = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item1MF2 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF1 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF4 = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item1MF3 = new System.Windows.Forms.RadioButton();
     this.LX4tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel6 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item6 = new System.Windows.Forms.GroupBox();
     this.Lb_Item6Uz = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item6Uz = new DevComponents.Editors.DoubleInput();
     this.Cb_Item7DMCCD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem214 = new DevComponents.Editors.ComboItem();
     this.comboItem215 = new DevComponents.Editors.ComboItem();
     this.comboItem216 = new DevComponents.Editors.ComboItem();
     this.comboItem217 = new DevComponents.Editors.ComboItem();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item6SF = new System.Windows.Forms.GroupBox();
     this.Cb_Item6SF = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem37 = new DevComponents.Editors.ComboItem();
     this.comboItem38 = new DevComponents.Editors.ComboItem();
     this.comboItem39 = new DevComponents.Editors.ComboItem();
     this.comboItem40 = new DevComponents.Editors.ComboItem();
     this.comboItem41 = new DevComponents.Editors.ComboItem();
     this.comboItem42 = new DevComponents.Editors.ComboItem();
     this.comboItem43 = new DevComponents.Editors.ComboItem();
     this.comboItem44 = new DevComponents.Editors.ComboItem();
     this.comboItem45 = new DevComponents.Editors.ComboItem();
     this.comboItem46 = new DevComponents.Editors.ComboItem();
     this.comboItem47 = new DevComponents.Editors.ComboItem();
     this.comboItem48 = new DevComponents.Editors.ComboItem();
     this.comboItem49 = new DevComponents.Editors.ComboItem();
     this.comboItem50 = new DevComponents.Editors.ComboItem();
     this.comboItem51 = new DevComponents.Editors.ComboItem();
     this.comboItem52 = new DevComponents.Editors.ComboItem();
     this.comboItem53 = new DevComponents.Editors.ComboItem();
     this.comboItem54 = new DevComponents.Editors.ComboItem();
     this.comboItem55 = new DevComponents.Editors.ComboItem();
     this.comboItem56 = new DevComponents.Editors.ComboItem();
     this.comboItem57 = new DevComponents.Editors.ComboItem();
     this.comboItem58 = new DevComponents.Editors.ComboItem();
     this.comboItem59 = new DevComponents.Editors.ComboItem();
     this.comboItem60 = new DevComponents.Editors.ComboItem();
     this.comboItem61 = new DevComponents.Editors.ComboItem();
     this.comboItem62 = new DevComponents.Editors.ComboItem();
     this.comboItem63 = new DevComponents.Editors.ComboItem();
     this.comboItem71 = new DevComponents.Editors.ComboItem();
     this.comboItem75 = new DevComponents.Editors.ComboItem();
     this.comboItem142 = new DevComponents.Editors.ComboItem();
     this.comboItem143 = new DevComponents.Editors.ComboItem();
     this.comboItem144 = new DevComponents.Editors.ComboItem();
     this.comboItem145 = new DevComponents.Editors.ComboItem();
     this.comboItem146 = new DevComponents.Editors.ComboItem();
     this.Lb_Item6SF = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item6SFDQFY = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item6DQ = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item6DQ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.Lb_Item6SFDQFY = new DevComponents.DotNetBar.LabelX();
     this.groupBox9 = new System.Windows.Forms.GroupBox();
     this.Lb_Item6SelfJBFY = new DevComponents.DotNetBar.LabelX();
     this.Chk_Item6Self = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.DbInput_Item6SelfJBFY = new DevComponents.Editors.DoubleInput();
     this.LXtabItem6 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel5 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item5 = new System.Windows.Forms.GroupBox();
     this.DbInput_Item5HZBZ = new DevComponents.Editors.DoubleInput();
     this.IntInput_Item5PSCS = new DevComponents.Editors.IntegerInput();
     this.IntInput_Item5SGCS = new DevComponents.Editors.IntegerInput();
     this.Cb_Item5YT = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem34 = new DevComponents.Editors.ComboItem();
     this.comboItem35 = new DevComponents.Editors.ComboItem();
     this.comboItem36 = new DevComponents.Editors.ComboItem();
     this.Lb_Item5PSCS = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item5YT = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem5 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel4 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox11 = new System.Windows.Forms.GroupBox();
     this.IntInput_Item4PSCS = new DevComponents.Editors.IntegerInput();
     this.Tb_Item4JBZZBZZ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Tb_Item4JSBZZBZZ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Cb_Item4JSBLB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.Lb_Item4JSBLB = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item4AQW = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item4AQW = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item4JBLB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.comboItem10 = new DevComponents.Editors.ComboItem();
     this.Lb_Item4JBZZBZZ = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4JBLB = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4PSCS = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item4JSBZZBZZ = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item4GK = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item2 = new System.Windows.Forms.GroupBox();
     this.Grp_Item2DHG = new System.Windows.Forms.GroupBox();
     this.Cb_Item2DHGGS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem22 = new DevComponents.Editors.ComboItem();
     this.comboItem23 = new DevComponents.Editors.ComboItem();
     this.comboItem24 = new DevComponents.Editors.ComboItem();
     this.comboItem25 = new DevComponents.Editors.ComboItem();
     this.Lb_Item2DHGGS = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item2XHG = new System.Windows.Forms.RadioButton();
     this.Grp_Item2XHG = new System.Windows.Forms.GroupBox();
     this.Tb_Item2XHGJJ = new System.Windows.Forms.TextBox();
     this.Cb_Item2LGZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem20 = new DevComponents.Editors.ComboItem();
     this.comboItem21 = new DevComponents.Editors.ComboItem();
     this.Lb_Item2LGZJ = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item2XHGJJ = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item2DHG = new System.Windows.Forms.RadioButton();
     this.LXtabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel9 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item9 = new System.Windows.Forms.GroupBox();
     this.Cb_Item9DJLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem15 = new DevComponents.Editors.ComboItem();
     this.comboItem16 = new DevComponents.Editors.ComboItem();
     this.Lb_Item9DJLX = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item9ZYCD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item9ZYCD = new DevComponents.DotNetBar.LabelX();
     this.DbIput_Item9DBK = new DevComponents.Editors.DoubleInput();
     this.Lb_Item9DBK = new DevComponents.DotNetBar.LabelX();
     this.Btn_Item9SearchChart = new DevComponents.DotNetBar.ButtonX();
     this.Tb_Item9DJCZL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item9DJCZL = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item9DJTLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem17 = new DevComponents.Editors.ComboItem();
     this.comboItem18 = new DevComponents.Editors.ComboItem();
     this.comboItem19 = new DevComponents.Editors.ComboItem();
     this.comboItem64 = new DevComponents.Editors.ComboItem();
     this.comboItem65 = new DevComponents.Editors.ComboItem();
     this.comboItem67 = new DevComponents.Editors.ComboItem();
     this.comboItem68 = new DevComponents.Editors.ComboItem();
     this.comboItem69 = new DevComponents.Editors.ComboItem();
     this.Lb_Item9DJTLX = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem9 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel17 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.IntInput_Lx5Item1NO = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx5Item1LDX = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx5Item1SPX = new DevComponents.Editors.IntegerInput();
     this.Cbx_Lx5Item1LGJXG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem212 = new DevComponents.Editors.ComboItem();
     this.comboItem213 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1DKJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem201 = new DevComponents.Editors.ComboItem();
     this.comboItem202 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1WXGBZ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem203 = new DevComponents.Editors.ComboItem();
     this.comboItem204 = new DevComponents.Editors.ComboItem();
     this.comboItem205 = new DevComponents.Editors.ComboItem();
     this.comboItem206 = new DevComponents.Editors.ComboItem();
     this.comboItem207 = new DevComponents.Editors.ComboItem();
     this.comboItem208 = new DevComponents.Editors.ComboItem();
     this.labelX48 = new DevComponents.DotNetBar.LabelX();
     this.labelX52 = new DevComponents.DotNetBar.LabelX();
     this.labelX49 = new DevComponents.DotNetBar.LabelX();
     this.labelX62 = new DevComponents.DotNetBar.LabelX();
     this.labelX50 = new DevComponents.DotNetBar.LabelX();
     this.labelX51 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1LDX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem188 = new DevComponents.Editors.ComboItem();
     this.comboItem189 = new DevComponents.Editors.ComboItem();
     this.comboItem190 = new DevComponents.Editors.ComboItem();
     this.comboItem191 = new DevComponents.Editors.ComboItem();
     this.comboItem192 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1SPX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem193 = new DevComponents.Editors.ComboItem();
     this.comboItem194 = new DevComponents.Editors.ComboItem();
     this.comboItem195 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1WXG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem196 = new DevComponents.Editors.ComboItem();
     this.comboItem197 = new DevComponents.Editors.ComboItem();
     this.comboItem198 = new DevComponents.Editors.ComboItem();
     this.comboItem199 = new DevComponents.Editors.ComboItem();
     this.comboItem200 = new DevComponents.Editors.ComboItem();
     this.labelX45 = new DevComponents.DotNetBar.LabelX();
     this.labelX46 = new DevComponents.DotNetBar.LabelX();
     this.labelX47 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1LGG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem184 = new DevComponents.Editors.ComboItem();
     this.comboItem185 = new DevComponents.Editors.ComboItem();
     this.comboItem186 = new DevComponents.Editors.ComboItem();
     this.comboItem187 = new DevComponents.Editors.ComboItem();
     this.labelX44 = new DevComponents.DotNetBar.LabelX();
     this.Cbx_Lx5Item1HJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem168 = new DevComponents.Editors.ComboItem();
     this.comboItem169 = new DevComponents.Editors.ComboItem();
     this.comboItem170 = new DevComponents.Editors.ComboItem();
     this.comboItem171 = new DevComponents.Editors.ComboItem();
     this.comboItem172 = new DevComponents.Editors.ComboItem();
     this.comboItem173 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1JHG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem174 = new DevComponents.Editors.ComboItem();
     this.comboItem175 = new DevComponents.Editors.ComboItem();
     this.comboItem176 = new DevComponents.Editors.ComboItem();
     this.comboItem177 = new DevComponents.Editors.ComboItem();
     this.Cbx_Lx5Item1ZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem178 = new DevComponents.Editors.ComboItem();
     this.comboItem179 = new DevComponents.Editors.ComboItem();
     this.comboItem180 = new DevComponents.Editors.ComboItem();
     this.comboItem181 = new DevComponents.Editors.ComboItem();
     this.comboItem182 = new DevComponents.Editors.ComboItem();
     this.comboItem183 = new DevComponents.Editors.ComboItem();
     this.labelX39 = new DevComponents.DotNetBar.LabelX();
     this.labelX40 = new DevComponents.DotNetBar.LabelX();
     this.labelX41 = new DevComponents.DotNetBar.LabelX();
     this.labelX43 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2GD = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item1BJ = new DevComponents.Editors.DoubleInput();
     this.labelX38 = new DevComponents.DotNetBar.LabelX();
     this.LX5tabItem1 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel16 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox19 = new System.Windows.Forms.GroupBox();
     this.Btn_Lx4Item4Search1 = new DevComponents.DotNetBar.ButtonX();
     this.DbInput_Lx4Item4TZXS = new DevComponents.Editors.DoubleInput();
     this.Btn_Lx4Item4Search2 = new DevComponents.DotNetBar.ButtonX();
     this.Tb_Lx4Item4DJCZL = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX37 = new DevComponents.DotNetBar.LabelX();
     this.labelX33 = new DevComponents.DotNetBar.LabelX();
     this.Cb_Lx4Item4DJTLX = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem160 = new DevComponents.Editors.ComboItem();
     this.comboItem161 = new DevComponents.Editors.ComboItem();
     this.comboItem162 = new DevComponents.Editors.ComboItem();
     this.comboItem163 = new DevComponents.Editors.ComboItem();
     this.comboItem164 = new DevComponents.Editors.ComboItem();
     this.comboItem165 = new DevComponents.Editors.ComboItem();
     this.comboItem166 = new DevComponents.Editors.ComboItem();
     this.comboItem167 = new DevComponents.Editors.ComboItem();
     this.groupBox20 = new System.Windows.Forms.GroupBox();
     this.DbIput_Lx4Item4DBK = new DevComponents.Editors.DoubleInput();
     this.DbIput_Lx4Item4DBC = new DevComponents.Editors.DoubleInput();
     this.labelX36 = new DevComponents.DotNetBar.LabelX();
     this.labelX35 = new DevComponents.DotNetBar.LabelX();
     this.labelX32 = new DevComponents.DotNetBar.LabelX();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.DbIput_Lx4Item4DFMJ = new DevComponents.Editors.DoubleInput();
     this.labelX30 = new DevComponents.DotNetBar.LabelX();
     this.Tb_Lx4Item4YFMJ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX31 = new DevComponents.DotNetBar.LabelX();
     this.groupBox18 = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item4CK = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item4QF = new System.Windows.Forms.RadioButton();
     this.LX4tabItem4 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel15 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox17 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item3SG = new DevComponents.Editors.DoubleInput();
     this.IntInput_Lx4Item3CS = new DevComponents.Editors.IntegerInput();
     this.Cbx_Lx4Item3YT = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem158 = new DevComponents.Editors.ComboItem();
     this.comboItem159 = new DevComponents.Editors.ComboItem();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.labelX28 = new DevComponents.DotNetBar.LabelX();
     this.labelX29 = new DevComponents.DotNetBar.LabelX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.groupBox14 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item3HL = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item3AQW = new DevComponents.Editors.DoubleInput();
     this.Cbx_Lx4Item3JGJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem156 = new DevComponents.Editors.ComboItem();
     this.comboItem157 = new DevComponents.Editors.ComboItem();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupBox16 = new System.Windows.Forms.GroupBox();
     this.Cbx_Lx4Item3JSB = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem151 = new DevComponents.Editors.ComboItem();
     this.comboItem153 = new DevComponents.Editors.ComboItem();
     this.comboItem154 = new DevComponents.Editors.ComboItem();
     this.comboItem155 = new DevComponents.Editors.ComboItem();
     this.IntInput_Lx4Item3SPJ = new DevComponents.Editors.IntegerInput();
     this.IntInput_Lx4Item3JSB = new DevComponents.Editors.IntegerInput();
     this.labelX63 = new DevComponents.DotNetBar.LabelX();
     this.labelX34 = new DevComponents.DotNetBar.LabelX();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.LX4tabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel14 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.DbInput_Lx4Item2SP = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item2SX = new DevComponents.Editors.DoubleInput();
     this.labelX64 = new DevComponents.DotNetBar.LabelX();
     this.labelX65 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Lx4Item2HF = new System.Windows.Forms.GroupBox();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx4Item2DJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx4Item2KJ = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx4Item2S = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx4Item2D = new System.Windows.Forms.RadioButton();
     this.Cbx_Lx4Item2LJFS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem150 = new DevComponents.Editors.ComboItem();
     this.comboItem152 = new DevComponents.Editors.ComboItem();
     this.DbInput_Lx4Item2BJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx4Item2CD = new DevComponents.Editors.DoubleInput();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.LX4tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel11 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item11 = new System.Windows.Forms.GroupBox();
     this.Tb_Item11MGXGJL = new System.Windows.Forms.TextBox();
     this.Lb_Item11LBHNTQD = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item11MGXGJL = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item11ULSZJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem120 = new DevComponents.Editors.ComboItem();
     this.comboItem121 = new DevComponents.Editors.ComboItem();
     this.comboItem122 = new DevComponents.Editors.ComboItem();
     this.comboItem123 = new DevComponents.Editors.ComboItem();
     this.comboItem124 = new DevComponents.Editors.ComboItem();
     this.comboItem125 = new DevComponents.Editors.ComboItem();
     this.comboItem126 = new DevComponents.Editors.ComboItem();
     this.Lb_Item11ULSZJ = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item11LBHNTQD = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem127 = new DevComponents.Editors.ComboItem();
     this.comboItem128 = new DevComponents.Editors.ComboItem();
     this.comboItem129 = new DevComponents.Editors.ComboItem();
     this.comboItem130 = new DevComponents.Editors.ComboItem();
     this.comboItem131 = new DevComponents.Editors.ComboItem();
     this.comboItem132 = new DevComponents.Editors.ComboItem();
     this.comboItem133 = new DevComponents.Editors.ComboItem();
     this.LXtabItem11 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel10 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item10 = new System.Windows.Forms.GroupBox();
     this.Lb_Item10GLXH = new DevComponents.DotNetBar.LabelX();
     this.Cb_Item10GLXH = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem76 = new DevComponents.Editors.ComboItem();
     this.comboItem77 = new DevComponents.Editors.ComboItem();
     this.comboItem78 = new DevComponents.Editors.ComboItem();
     this.comboItem79 = new DevComponents.Editors.ComboItem();
     this.comboItem80 = new DevComponents.Editors.ComboItem();
     this.comboItem81 = new DevComponents.Editors.ComboItem();
     this.comboItem82 = new DevComponents.Editors.ComboItem();
     this.comboItem83 = new DevComponents.Editors.ComboItem();
     this.comboItem84 = new DevComponents.Editors.ComboItem();
     this.comboItem85 = new DevComponents.Editors.ComboItem();
     this.comboItem86 = new DevComponents.Editors.ComboItem();
     this.comboItem87 = new DevComponents.Editors.ComboItem();
     this.comboItem88 = new DevComponents.Editors.ComboItem();
     this.comboItem89 = new DevComponents.Editors.ComboItem();
     this.comboItem90 = new DevComponents.Editors.ComboItem();
     this.comboItem91 = new DevComponents.Editors.ComboItem();
     this.comboItem92 = new DevComponents.Editors.ComboItem();
     this.comboItem93 = new DevComponents.Editors.ComboItem();
     this.comboItem94 = new DevComponents.Editors.ComboItem();
     this.comboItem95 = new DevComponents.Editors.ComboItem();
     this.comboItem96 = new DevComponents.Editors.ComboItem();
     this.comboItem97 = new DevComponents.Editors.ComboItem();
     this.comboItem98 = new DevComponents.Editors.ComboItem();
     this.comboItem99 = new DevComponents.Editors.ComboItem();
     this.comboItem100 = new DevComponents.Editors.ComboItem();
     this.comboItem101 = new DevComponents.Editors.ComboItem();
     this.comboItem102 = new DevComponents.Editors.ComboItem();
     this.comboItem103 = new DevComponents.Editors.ComboItem();
     this.comboItem104 = new DevComponents.Editors.ComboItem();
     this.comboItem105 = new DevComponents.Editors.ComboItem();
     this.comboItem106 = new DevComponents.Editors.ComboItem();
     this.comboItem107 = new DevComponents.Editors.ComboItem();
     this.comboItem108 = new DevComponents.Editors.ComboItem();
     this.comboItem109 = new DevComponents.Editors.ComboItem();
     this.comboItem110 = new DevComponents.Editors.ComboItem();
     this.comboItem111 = new DevComponents.Editors.ComboItem();
     this.comboItem112 = new DevComponents.Editors.ComboItem();
     this.comboItem113 = new DevComponents.Editors.ComboItem();
     this.comboItem114 = new DevComponents.Editors.ComboItem();
     this.comboItem115 = new DevComponents.Editors.ComboItem();
     this.comboItem116 = new DevComponents.Editors.ComboItem();
     this.comboItem117 = new DevComponents.Editors.ComboItem();
     this.Tb_Item10RXND = new System.Windows.Forms.TextBox();
     this.Lb_Item10RXND1 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item10MGD = new DevComponents.Editors.DoubleInput();
     this.Cb_Item10RXND = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem118 = new DevComponents.Editors.ComboItem();
     this.comboItem119 = new DevComponents.Editors.ComboItem();
     this.Lb_Item10MGD = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item10RXND2 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Item10XTD = new DevComponents.Editors.DoubleInput();
     this.Lb_Item10XTD = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem10 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel8 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item8 = new System.Windows.Forms.GroupBox();
     this.Tb_Item8DFXS1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item8DFXS1 = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item8FBS = new System.Windows.Forms.GroupBox();
     this.Grp_Item8ADFMJ = new System.Windows.Forms.GroupBox();
     this.DbIput_Item8DFMJ = new DevComponents.Editors.DoubleInput();
     this.labelX42 = new DevComponents.DotNetBar.LabelX();
     this.Tb_Item8YFMJ = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.Lb_Item8YFMJ = new DevComponents.DotNetBar.LabelX();
     this.Rdo_Item8ADFMJ = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8QMM = new System.Windows.Forms.RadioButton();
     this.groupBox15 = new System.Windows.Forms.GroupBox();
     this.Rdo_Item8FBSK = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8WMMW = new System.Windows.Forms.RadioButton();
     this.Rdo_Item8FBSQ = new System.Windows.Forms.RadioButton();
     this.LXtabItem8 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel12 = new DevComponents.DotNetBar.TabControlPanel();
     this.Cb_Item3FS = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem11 = new DevComponents.Editors.ComboItem();
     this.comboItem12 = new DevComponents.Editors.ComboItem();
     this.comboItem13 = new DevComponents.Editors.ComboItem();
     this.comboItem14 = new DevComponents.Editors.ComboItem();
     this.comboItem134 = new DevComponents.Editors.ComboItem();
     this.Cb_Item3JJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem136 = new DevComponents.Editors.ComboItem();
     this.comboItem137 = new DevComponents.Editors.ComboItem();
     this.Lb_Item3FS = new DevComponents.DotNetBar.LabelX();
     this.Lb_Item3LQJJJ = new DevComponents.DotNetBar.LabelX();
     this.Grp_Item3 = new System.Windows.Forms.GroupBox();
     this.DbInput_Item3ZXL = new DevComponents.Editors.DoubleInput();
     this.Grp_Item3FSKJLJ = new System.Windows.Forms.GroupBox();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.Lb_Item3ZXL = new DevComponents.DotNetBar.LabelX();
     this.LXtabItem3 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel18 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox21 = new System.Windows.Forms.GroupBox();
     this.Grp_Lx5Item2HF = new System.Windows.Forms.GroupBox();
     this.labelX58 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2DJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx5Item2RL = new System.Windows.Forms.GroupBox();
     this.labelX60 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2LJ = new DevComponents.Editors.DoubleInput();
     this.Grp_Lx5Item2KJ = new System.Windows.Forms.GroupBox();
     this.Rdo_Lx5Item2S = new System.Windows.Forms.RadioButton();
     this.Rdo_Lx5Item2D = new System.Windows.Forms.RadioButton();
     this.labelX54 = new DevComponents.DotNetBar.LabelX();
     this.DbInput_Lx5Item2KJ = new DevComponents.Editors.DoubleInput();
     this.Cbx_Lx5Item2LQJ = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem209 = new DevComponents.Editors.ComboItem();
     this.comboItem210 = new DevComponents.Editors.ComboItem();
     this.comboItem211 = new DevComponents.Editors.ComboItem();
     this.DbInput_Lx5Item2MJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2BJ = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2L0 = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2SP = new DevComponents.Editors.DoubleInput();
     this.DbInput_Lx5Item2SX = new DevComponents.Editors.DoubleInput();
     this.labelX59 = new DevComponents.DotNetBar.LabelX();
     this.labelX57 = new DevComponents.DotNetBar.LabelX();
     this.labelX56 = new DevComponents.DotNetBar.LabelX();
     this.labelX53 = new DevComponents.DotNetBar.LabelX();
     this.labelX61 = new DevComponents.DotNetBar.LabelX();
     this.labelX55 = new DevComponents.DotNetBar.LabelX();
     this.LX5tabItem2 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel3 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.checkBoxX4 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.doubleInput8 = new DevComponents.Editors.DoubleInput();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem29 = new DevComponents.Editors.ComboItem();
     this.comboItem30 = new DevComponents.Editors.ComboItem();
     this.comboItem31 = new DevComponents.Editors.ComboItem();
     this.comboItem32 = new DevComponents.Editors.ComboItem();
     this.comboItem33 = new DevComponents.Editors.ComboItem();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem26 = new DevComponents.Editors.ComboItem();
     this.comboItem27 = new DevComponents.Editors.ComboItem();
     this.comboItem28 = new DevComponents.Editors.ComboItem();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TabScaffloldPower)).BeginInit();
     this.TabScaffloldPower.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.Grp_Item1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1SKJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DKJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LQJL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DSGD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1XHGWSCD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGHJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGZJ)).BeginInit();
     this.tabControlPanel13.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1S)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1D)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1GD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1KJ)).BeginInit();
     this.groupBox10.SuspendLayout();
     this.tabControlPanel6.SuspendLayout();
     this.Grp_Item6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6Uz)).BeginInit();
     this.Grp_Item6SF.SuspendLayout();
     this.groupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6SelfJBFY)).BeginInit();
     this.tabControlPanel5.SuspendLayout();
     this.Grp_Item5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item5HZBZ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5PSCS)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5SGCS)).BeginInit();
     this.tabControlPanel4.SuspendLayout();
     this.groupBox11.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item4PSCS)).BeginInit();
     this.tabControlPanel2.SuspendLayout();
     this.Grp_Item2.SuspendLayout();
     this.Grp_Item2DHG.SuspendLayout();
     this.Grp_Item2XHG.SuspendLayout();
     this.tabControlPanel9.SuspendLayout();
     this.Grp_Item9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item9DBK)).BeginInit();
     this.tabControlPanel17.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1NO)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1LDX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1SPX)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2GD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item1BJ)).BeginInit();
     this.tabControlPanel16.SuspendLayout();
     this.groupBox19.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item4TZXS)).BeginInit();
     this.groupBox20.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBK)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBC)).BeginInit();
     this.groupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DFMJ)).BeginInit();
     this.groupBox18.SuspendLayout();
     this.tabControlPanel15.SuspendLayout();
     this.groupBox17.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3SG)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3CS)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.groupBox14.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3HL)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3AQW)).BeginInit();
     this.groupBox16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3SPJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3JSB)).BeginInit();
     this.tabControlPanel14.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SX)).BeginInit();
     this.Grp_Lx4Item2HF.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2DJ)).BeginInit();
     this.Grp_Lx4Item2KJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2CD)).BeginInit();
     this.tabControlPanel11.SuspendLayout();
     this.Grp_Item11.SuspendLayout();
     this.tabControlPanel10.SuspendLayout();
     this.Grp_Item10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10MGD)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10XTD)).BeginInit();
     this.tabControlPanel8.SuspendLayout();
     this.Grp_Item8.SuspendLayout();
     this.Grp_Item8FBS.SuspendLayout();
     this.Grp_Item8ADFMJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item8DFMJ)).BeginInit();
     this.groupBox15.SuspendLayout();
     this.tabControlPanel12.SuspendLayout();
     this.Grp_Item3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item3ZXL)).BeginInit();
     this.Grp_Item3FSKJLJ.SuspendLayout();
     this.tabControlPanel18.SuspendLayout();
     this.groupBox21.SuspendLayout();
     this.Grp_Lx5Item2HF.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2DJ)).BeginInit();
     this.Grp_Lx5Item2RL.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2LJ)).BeginInit();
     this.Grp_Lx5Item2KJ.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2KJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2MJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2BJ)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2L0)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SP)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SX)).BeginInit();
     this.tabControlPanel3.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).BeginInit();
     this.SuspendLayout();
     //
     // dockContainerItem1
     //
     this.dockContainerItem1.Name = "dockContainerItem1";
     this.dockContainerItem1.Text = "dockContainerItem1";
     //
     // dockContainerItem2
     //
     this.dockContainerItem2.Name = "dockContainerItem2";
     this.dockContainerItem2.Text = "dockContainerItem2";
     //
     // dockContainerItem3
     //
     this.dockContainerItem3.Name = "dockContainerItem3";
     this.dockContainerItem3.Text = "dockContainerItem3";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "�͸�������ּ�";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 28);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Size = new System.Drawing.Size(761, 393);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // comboItem1
     //
     this.comboItem1.Text = "��ص��Ž��ּ�";
     //
     // comboItem2
     //
     this.comboItem2.Text = "�͸�������ּ�";
     //
     // comboItem3
     //
     this.comboItem3.Text = "��ص��Ž��ּ�";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.BtnSubmit);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelEx1.Location = new System.Drawing.Point(0, 450);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(638, 32);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx1.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx1.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 20;
     //
     // BtnSubmit
     //
     this.BtnSubmit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.BtnSubmit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.BtnSubmit.Dock = System.Windows.Forms.DockStyle.Right;
     this.BtnSubmit.Location = new System.Drawing.Point(563, 0);
     this.BtnSubmit.Name = "BtnSubmit";
     this.BtnSubmit.Size = new System.Drawing.Size(75, 32);
     this.BtnSubmit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.BtnSubmit.TabIndex = 42;
     this.BtnSubmit.Text = "ȷ ��";
     this.BtnSubmit.Click += new System.EventHandler(this.BtnSubmit_Click);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.LbScaffoldType);
     this.panelEx2.Controls.Add(this.CbxScaffoldType);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelEx2.Location = new System.Drawing.Point(0, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(638, 41);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx2.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 22;
     //
     // LbScaffoldType
     //
     this.LbScaffoldType.AutoSize = true;
     //
     //
     //
     this.LbScaffoldType.BackgroundStyle.Class = "";
     this.LbScaffoldType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.LbScaffoldType.Location = new System.Drawing.Point(18, 9);
     this.LbScaffoldType.Name = "LbScaffoldType";
     this.LbScaffoldType.Size = new System.Drawing.Size(105, 18);
     this.LbScaffoldType.TabIndex = 40;
     this.LbScaffoldType.Text = "ѡ����ּ����ͣ�";
     //
     // CbxScaffoldType
     //
     this.CbxScaffoldType.DisplayMember = "Text";
     this.CbxScaffoldType.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.CbxScaffoldType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.CbxScaffoldType.FormattingEnabled = true;
     this.CbxScaffoldType.ItemHeight = 15;
     this.CbxScaffoldType.Items.AddRange(new object[] {
     this.comboItem72,
     this.comboItem73,
     this.comboItem74,
     this.comboItem66,
     this.comboItem70});
     this.CbxScaffoldType.Location = new System.Drawing.Point(125, 9);
     this.CbxScaffoldType.Name = "CbxScaffoldType";
     this.CbxScaffoldType.Size = new System.Drawing.Size(139, 21);
     this.CbxScaffoldType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.CbxScaffoldType.TabIndex = 41;
     this.CbxScaffoldType.SelectedIndexChanged += new System.EventHandler(this.CbxScaffoldType_SelectedIndexChanged);
     //
     // comboItem72
     //
     this.comboItem72.Text = "���˫�Ž��ּ�";
     //
     // comboItem73
     //
     this.comboItem73.Text = "�͸�������ּ�";
     //
     // comboItem74
     //
     this.comboItem74.Text = "��ص��Ž��ּ�";
     //
     // comboItem66
     //
     this.comboItem66.Text = "��ʽ�ֹܽ��ּ�";
     //
     // comboItem70
     //
     this.comboItem70.Text = "���ʽ���ּ�";
     //
     // buttonItem1
     //
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem2});
     this.buttonItem1.Text = "buttonItem1";
     //
     // buttonItem2
     //
     this.buttonItem2.Name = "buttonItem2";
     this.buttonItem2.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem3,
     this.buttonItem4});
     this.buttonItem2.Text = "buttonItem2";
     //
     // buttonItem3
     //
     this.buttonItem3.Name = "buttonItem3";
     this.buttonItem3.Text = "buttonItem3";
     //
     // buttonItem4
     //
     this.buttonItem4.Name = "buttonItem4";
     this.buttonItem4.Text = "buttonItem4";
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.TabScaffloldPower);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx3.Location = new System.Drawing.Point(0, 41);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(638, 409);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx3.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 23;
     //
     // TabScaffloldPower
     //
     this.TabScaffloldPower.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.TabScaffloldPower.CanReorderTabs = true;
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel1);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel13);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel6);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel5);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel4);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel2);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel9);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel17);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel16);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel15);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel14);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel11);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel10);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel8);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel12);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel18);
     this.TabScaffloldPower.Controls.Add(this.tabControlPanel3);
     this.TabScaffloldPower.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TabScaffloldPower.Location = new System.Drawing.Point(0, 0);
     this.TabScaffloldPower.Name = "TabScaffloldPower";
     this.TabScaffloldPower.SelectedTabFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Bold);
     this.TabScaffloldPower.SelectedTabIndex = 0;
     this.TabScaffloldPower.Size = new System.Drawing.Size(638, 409);
     this.TabScaffloldPower.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.TabScaffloldPower.TabIndex = 46;
     this.TabScaffloldPower.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem2);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem3);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem4);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem5);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem6);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem8);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem9);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem10);
     this.TabScaffloldPower.Tabs.Add(this.LXtabItem11);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem2);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem3);
     this.TabScaffloldPower.Tabs.Add(this.LX4tabItem4);
     this.TabScaffloldPower.Tabs.Add(this.LX5tabItem1);
     this.TabScaffloldPower.Tabs.Add(this.LX5tabItem2);
     this.TabScaffloldPower.Text = "��ǽ������";
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.Grp_Item1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel1.Style.GradientAngle = 90;
     this.tabControlPanel1.TabIndex = 1;
     this.tabControlPanel1.TabItem = this.LXtabItem1;
     //
     // Grp_Item1
     //
     this.Grp_Item1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item1.Controls.Add(this.groupBox2);
     this.Grp_Item1.Controls.Add(this.labelX1);
     this.Grp_Item1.Controls.Add(this.labelX8);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1SKJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1DKJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item17);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LQJL);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LQJL);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1DSGD);
     this.Grp_Item1.Controls.Add(this.Lb_Item1DSGD);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1BJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item1BJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1XHGWSCD);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LGZJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LGHJ);
     this.Grp_Item1.Controls.Add(this.DbInput_Item1LGZJ);
     this.Grp_Item1.Controls.Add(this.Lb_Item1LGHJ);
     this.Grp_Item1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item1.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item1.Name = "Grp_Item1";
     this.Grp_Item1.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item1.TabIndex = 4;
     this.Grp_Item1.TabStop = false;
     this.Grp_Item1.Text = "ѡ�����";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.Tb_Item1GGWJ);
     this.groupBox2.Controls.Add(this.Tb_Item1BH);
     this.groupBox2.Controls.Add(this.Lb_Item1BH);
     this.groupBox2.Controls.Add(this.Lb_Item1GGWJ);
     this.groupBox2.Location = new System.Drawing.Point(3, 209);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(620, 115);
     this.groupBox2.TabIndex = 19;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "�̶�����";
     //
     // Tb_Item1GGWJ
     //
     this.Tb_Item1GGWJ.Location = new System.Drawing.Point(135, 58);
     this.Tb_Item1GGWJ.Name = "Tb_Item1GGWJ";
     this.Tb_Item1GGWJ.ReadOnly = true;
     this.Tb_Item1GGWJ.Size = new System.Drawing.Size(86, 21);
     this.Tb_Item1GGWJ.TabIndex = 20;
     this.Tb_Item1GGWJ.Text = "48.3";
     this.Tb_Item1GGWJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Tb_Item1BH
     //
     this.Tb_Item1BH.Location = new System.Drawing.Point(135, 33);
     this.Tb_Item1BH.Name = "Tb_Item1BH";
     this.Tb_Item1BH.ReadOnly = true;
     this.Tb_Item1BH.Size = new System.Drawing.Size(86, 21);
     this.Tb_Item1BH.TabIndex = 19;
     this.Tb_Item1BH.Text = "3.6";
     this.Tb_Item1BH.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item1BH
     //
     //
     //
     //
     this.Lb_Item1BH.BackgroundStyle.Class = "";
     this.Lb_Item1BH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1BH.Location = new System.Drawing.Point(54, 31);
     this.Lb_Item1BH.Name = "Lb_Item1BH";
     this.Lb_Item1BH.Size = new System.Drawing.Size(75, 21);
     this.Lb_Item1BH.TabIndex = 18;
     this.Lb_Item1BH.Text = " �ں�mm��";
     //
     // Lb_Item1GGWJ
     //
     //
     //
     //
     this.Lb_Item1GGWJ.BackgroundStyle.Class = "";
     this.Lb_Item1GGWJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1GGWJ.Location = new System.Drawing.Point(37, 59);
     this.Lb_Item1GGWJ.Name = "Lb_Item1GGWJ";
     this.Lb_Item1GGWJ.Size = new System.Drawing.Size(92, 20);
     this.Lb_Item1GGWJ.TabIndex = 17;
     this.Lb_Item1GGWJ.Text = "�ֹ��⾶��mm��";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(298, 36);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(162, 20);
     this.labelX1.TabIndex = 20;
     this.labelX1.Text = "С��˼������쳤��a1(m)";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(308, 87);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(117, 20);
     this.labelX8.TabIndex = 16;
     this.labelX8.Text = " ˫�ۼ�����������";
     //
     // DbInput_Item1SKJ
     //
     //
     //
     //
     this.DbInput_Item1SKJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1SKJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1SKJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1SKJ.Increment = 1;
     this.DbInput_Item1SKJ.Location = new System.Drawing.Point(463, 87);
     this.DbInput_Item1SKJ.MaxValue = 16;
     this.DbInput_Item1SKJ.MinValue = 0;
     this.DbInput_Item1SKJ.Name = "DbInput_Item1SKJ";
     this.DbInput_Item1SKJ.ShowUpDown = true;
     this.DbInput_Item1SKJ.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1SKJ.TabIndex = 15;
     this.DbInput_Item1SKJ.Value = 12;
     //
     // DbInput_Item1DKJ
     //
     //
     //
     //
     this.DbInput_Item1DKJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1DKJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1DKJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1DKJ.Increment = 1;
     this.DbInput_Item1DKJ.Location = new System.Drawing.Point(463, 60);
     this.DbInput_Item1DKJ.MaxValue = 8;
     this.DbInput_Item1DKJ.MinValue = 0;
     this.DbInput_Item1DKJ.Name = "DbInput_Item1DKJ";
     this.DbInput_Item1DKJ.ShowUpDown = true;
     this.DbInput_Item1DKJ.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1DKJ.TabIndex = 13;
     this.DbInput_Item1DKJ.Value = 8;
     //
     // Lb_Item17
     //
     //
     //
     //
     this.Lb_Item17.BackgroundStyle.Class = "";
     this.Lb_Item17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item17.Location = new System.Drawing.Point(308, 61);
     this.Lb_Item17.Name = "Lb_Item17";
     this.Lb_Item17.Size = new System.Drawing.Size(117, 20);
     this.Lb_Item17.TabIndex = 12;
     this.Lb_Item17.Text = " ���ۼ�����������";
     //
     // DbInput_Item1LQJL
     //
     //
     //
     //
     this.DbInput_Item1LQJL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LQJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LQJL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LQJL.Increment = 0.1;
     this.DbInput_Item1LQJL.Location = new System.Drawing.Point(158, 144);
     this.DbInput_Item1LQJL.MaxValue = 5;
     this.DbInput_Item1LQJL.MinValue = 0.1;
     this.DbInput_Item1LQJL.Name = "DbInput_Item1LQJL";
     this.DbInput_Item1LQJL.ShowUpDown = true;
     this.DbInput_Item1LQJL.Size = new System.Drawing.Size(63, 21);
     this.DbInput_Item1LQJL.TabIndex = 9;
     this.DbInput_Item1LQJL.Value = 0.3;
     //
     // Lb_Item1LQJL
     //
     //
     //
     //
     this.Lb_Item1LQJL.BackgroundStyle.Class = "";
     this.Lb_Item1LQJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LQJL.Location = new System.Drawing.Point(2, 145);
     this.Lb_Item1LQJL.Name = "Lb_Item1LQJL";
     this.Lb_Item1LQJL.Size = new System.Drawing.Size(152, 20);
     this.Lb_Item1LQJL.TabIndex = 8;
     this.Lb_Item1LQJL.Text = "���ּ����ŵ���ǽ����(m)";
     //
     // DbInput_Item1DSGD
     //
     //
     //
     //
     this.DbInput_Item1DSGD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1DSGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1DSGD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1DSGD.Increment = 1;
     this.DbInput_Item1DSGD.Location = new System.Drawing.Point(158, 117);
     this.DbInput_Item1DSGD.MaxValue = 50;
     this.DbInput_Item1DSGD.MinValue = 0;
     this.DbInput_Item1DSGD.Name = "DbInput_Item1DSGD";
     this.DbInput_Item1DSGD.ShowUpDown = true;
     this.DbInput_Item1DSGD.Size = new System.Drawing.Size(62, 21);
     this.DbInput_Item1DSGD.TabIndex = 7;
     this.DbInput_Item1DSGD.Value = 24;
     //
     // Lb_Item1DSGD
     //
     //
     //
     //
     this.Lb_Item1DSGD.BackgroundStyle.Class = "";
     this.Lb_Item1DSGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1DSGD.Location = new System.Drawing.Point(33, 118);
     this.Lb_Item1DSGD.Name = "Lb_Item1DSGD";
     this.Lb_Item1DSGD.Size = new System.Drawing.Size(121, 20);
     this.Lb_Item1DSGD.TabIndex = 6;
     this.Lb_Item1DSGD.Text = "���ּܴ���߶�H(m)";
     //
     // DbInput_Item1BJ
     //
     //
     //
     //
     this.DbInput_Item1BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1BJ.Increment = 1;
     this.DbInput_Item1BJ.Location = new System.Drawing.Point(159, 90);
     this.DbInput_Item1BJ.MaxValue = 2;
     this.DbInput_Item1BJ.MinValue = 1.2;
     this.DbInput_Item1BJ.Name = "DbInput_Item1BJ";
     this.DbInput_Item1BJ.ShowUpDown = true;
     this.DbInput_Item1BJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1BJ.TabIndex = 5;
     this.DbInput_Item1BJ.Value = 1.8;
     //
     // Lb_Item1BJ
     //
     //
     //
     //
     this.Lb_Item1BJ.BackgroundStyle.Class = "";
     this.Lb_Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1BJ.Location = new System.Drawing.Point(95, 91);
     this.Lb_Item1BJ.Name = "Lb_Item1BJ";
     this.Lb_Item1BJ.Size = new System.Drawing.Size(59, 20);
     this.Lb_Item1BJ.TabIndex = 4;
     this.Lb_Item1BJ.Text = "����h(m)";
     //
     // DbInput_Item1XHGWSCD
     //
     //
     //
     //
     this.DbInput_Item1XHGWSCD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1XHGWSCD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1XHGWSCD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1XHGWSCD.Increment = 0.1;
     this.DbInput_Item1XHGWSCD.Location = new System.Drawing.Point(463, 36);
     this.DbInput_Item1XHGWSCD.MaxValue = 0.5;
     this.DbInput_Item1XHGWSCD.MinValue = 0;
     this.DbInput_Item1XHGWSCD.Name = "DbInput_Item1XHGWSCD";
     this.DbInput_Item1XHGWSCD.ShowUpDown = true;
     this.DbInput_Item1XHGWSCD.Size = new System.Drawing.Size(69, 21);
     this.DbInput_Item1XHGWSCD.TabIndex = 3;
     this.DbInput_Item1XHGWSCD.Value = 0.2;
     //
     // Lb_Item1LGZJ
     //
     //
     //
     //
     this.Lb_Item1LGZJ.BackgroundStyle.Class = "";
     this.Lb_Item1LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LGZJ.Location = new System.Drawing.Point(66, 39);
     this.Lb_Item1LGZJ.Name = "Lb_Item1LGZJ";
     this.Lb_Item1LGZJ.Size = new System.Drawing.Size(88, 20);
     this.Lb_Item1LGZJ.TabIndex = 0;
     this.Lb_Item1LGZJ.Text = "�����ݾ�la(m)";
     //
     // DbInput_Item1LGHJ
     //
     //
     //
     //
     this.DbInput_Item1LGHJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LGHJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LGHJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LGHJ.Increment = 1;
     this.DbInput_Item1LGHJ.Location = new System.Drawing.Point(159, 64);
     this.DbInput_Item1LGHJ.MaxValue = 1.3;
     this.DbInput_Item1LGHJ.MinValue = 0.5;
     this.DbInput_Item1LGHJ.Name = "DbInput_Item1LGHJ";
     this.DbInput_Item1LGHJ.ShowUpDown = true;
     this.DbInput_Item1LGHJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1LGHJ.TabIndex = 3;
     this.DbInput_Item1LGHJ.Value = 1.05;
     //
     // DbInput_Item1LGZJ
     //
     //
     //
     //
     this.DbInput_Item1LGZJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item1LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item1LGZJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item1LGZJ.Increment = 0.1;
     this.DbInput_Item1LGZJ.Location = new System.Drawing.Point(159, 38);
     this.DbInput_Item1LGZJ.MaxValue = 1.8;
     this.DbInput_Item1LGZJ.MinValue = 1.2;
     this.DbInput_Item1LGZJ.Name = "DbInput_Item1LGZJ";
     this.DbInput_Item1LGZJ.ShowUpDown = true;
     this.DbInput_Item1LGZJ.Size = new System.Drawing.Size(61, 21);
     this.DbInput_Item1LGZJ.TabIndex = 1;
     this.DbInput_Item1LGZJ.Value = 1.5;
     //
     // Lb_Item1LGHJ
     //
     //
     //
     //
     this.Lb_Item1LGHJ.BackgroundStyle.Class = "";
     this.Lb_Item1LGHJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1LGHJ.Location = new System.Drawing.Point(66, 64);
     this.Lb_Item1LGHJ.Name = "Lb_Item1LGHJ";
     this.Lb_Item1LGHJ.Size = new System.Drawing.Size(88, 20);
     this.Lb_Item1LGHJ.TabIndex = 2;
     this.Lb_Item1LGHJ.Text = "���˺��lb(m)";
     //
     // LXtabItem1
     //
     this.LXtabItem1.AttachedControl = this.tabControlPanel1;
     this.LXtabItem1.Name = "LXtabItem1";
     this.LXtabItem1.Text = " ���ּܴ������";
     //
     // tabControlPanel13
     //
     this.tabControlPanel13.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.tabControlPanel13.Controls.Add(this.groupBox1);
     this.tabControlPanel13.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel13.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel13.Name = "tabControlPanel13";
     this.tabControlPanel13.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel13.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel13.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel13.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel13.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel13.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel13.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel13.Style.GradientAngle = 90;
     this.tabControlPanel13.TabIndex = 14;
     this.tabControlPanel13.TabItem = this.LX4tabItem1;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1S);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1D);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1GD);
     this.groupBox1.Controls.Add(this.DbInput_Lx4Item1KJ);
     this.groupBox1.Controls.Add(this.Tb_Lx4Item1BJ);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.labelX6);
     this.groupBox1.Controls.Add(this.groupBox10);
     this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Location = new System.Drawing.Point(1, 1);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(636, 338);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     //
     // DbInput_Lx4Item1S
     //
     //
     //
     //
     this.DbInput_Lx4Item1S.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1S.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1S.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1S.Increment = 1;
     this.DbInput_Lx4Item1S.Location = new System.Drawing.Point(374, 217);
     this.DbInput_Lx4Item1S.MaxValue = 16;
     this.DbInput_Lx4Item1S.MinValue = 0;
     this.DbInput_Lx4Item1S.Name = "DbInput_Lx4Item1S";
     this.DbInput_Lx4Item1S.ShowUpDown = true;
     this.DbInput_Lx4Item1S.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1S.TabIndex = 26;
     this.DbInput_Lx4Item1S.Value = 12;
     //
     // DbInput_Lx4Item1D
     //
     //
     //
     //
     this.DbInput_Lx4Item1D.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1D.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1D.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1D.Increment = 1;
     this.DbInput_Lx4Item1D.Location = new System.Drawing.Point(374, 173);
     this.DbInput_Lx4Item1D.MaxValue = 8;
     this.DbInput_Lx4Item1D.MinValue = 0;
     this.DbInput_Lx4Item1D.Name = "DbInput_Lx4Item1D";
     this.DbInput_Lx4Item1D.ShowUpDown = true;
     this.DbInput_Lx4Item1D.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1D.TabIndex = 26;
     this.DbInput_Lx4Item1D.Value = 8;
     //
     // DbInput_Lx4Item1GD
     //
     //
     //
     //
     this.DbInput_Lx4Item1GD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1GD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1GD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1GD.Increment = 1;
     this.DbInput_Lx4Item1GD.Location = new System.Drawing.Point(374, 129);
     this.DbInput_Lx4Item1GD.MaxValue = 55;
     this.DbInput_Lx4Item1GD.MinValue = 0;
     this.DbInput_Lx4Item1GD.Name = "DbInput_Lx4Item1GD";
     this.DbInput_Lx4Item1GD.ShowUpDown = true;
     this.DbInput_Lx4Item1GD.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1GD.TabIndex = 26;
     this.DbInput_Lx4Item1GD.Value = 24;
     //
     // DbInput_Lx4Item1KJ
     //
     //
     //
     //
     this.DbInput_Lx4Item1KJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item1KJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item1KJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item1KJ.Increment = 1;
     this.DbInput_Lx4Item1KJ.Location = new System.Drawing.Point(374, 84);
     this.DbInput_Lx4Item1KJ.MinValue = 0;
     this.DbInput_Lx4Item1KJ.Name = "DbInput_Lx4Item1KJ";
     this.DbInput_Lx4Item1KJ.ShowUpDown = true;
     this.DbInput_Lx4Item1KJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item1KJ.TabIndex = 26;
     this.DbInput_Lx4Item1KJ.Value = 1.2;
     //
     // Tb_Lx4Item1BJ
     //
     this.Tb_Lx4Item1BJ.Location = new System.Drawing.Point(374, 32);
     this.Tb_Lx4Item1BJ.Name = "Tb_Lx4Item1BJ";
     this.Tb_Lx4Item1BJ.ReadOnly = true;
     this.Tb_Lx4Item1BJ.Size = new System.Drawing.Size(80, 21);
     this.Tb_Lx4Item1BJ.TabIndex = 25;
     this.Tb_Lx4Item1BJ.Text = "1980";
     this.Tb_Lx4Item1BJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(236, 218);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(139, 20);
     this.labelX2.TabIndex = 13;
     this.labelX2.Text = "˫�ۼ�������������";
     this.labelX2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(236, 129);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(139, 20);
     this.labelX3.TabIndex = 12;
     this.labelX3.Text = "���ּܴ���߶�H(m)��";
     this.labelX3.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(236, 173);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(139, 20);
     this.labelX4.TabIndex = 11;
     this.labelX4.Text = "���ۼ�������������";
     this.labelX4.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(275, 85);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(100, 20);
     this.labelX5.TabIndex = 9;
     this.labelX5.Text = "�żܿ��l(m)��";
     this.labelX5.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(275, 33);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(100, 20);
     this.labelX6.TabIndex = 10;
     this.labelX6.Text = "�żܲ���h(m)��";
     this.labelX6.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox10
     //
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF2);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF1);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF4);
     this.groupBox10.Controls.Add(this.Rdo_Lx4Item1MF3);
     this.groupBox10.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox10.Location = new System.Drawing.Point(3, 17);
     this.groupBox10.Name = "groupBox10";
     this.groupBox10.Size = new System.Drawing.Size(117, 318);
     this.groupBox10.TabIndex = 8;
     this.groupBox10.TabStop = false;
     this.groupBox10.Text = "�ż�����";
     //
     // Rdo_Lx4Item1MF2
     //
     this.Rdo_Lx4Item1MF2.AutoSize = true;
     this.Rdo_Lx4Item1MF2.Location = new System.Drawing.Point(8, 94);
     this.Rdo_Lx4Item1MF2.Name = "Rdo_Lx4Item1MF2";
     this.Rdo_Lx4Item1MF2.Size = new System.Drawing.Size(89, 16);
     this.Rdo_Lx4Item1MF2.TabIndex = 5;
     this.Rdo_Lx4Item1MF2.Text = "MF1219��2��";
     this.Rdo_Lx4Item1MF2.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF2.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF2_CheckedChanged);
     //
     // Rdo_Lx4Item1MF1
     //
     this.Rdo_Lx4Item1MF1.AutoSize = true;
     this.Rdo_Lx4Item1MF1.Checked = true;
     this.Rdo_Lx4Item1MF1.Location = new System.Drawing.Point(9, 45);
     this.Rdo_Lx4Item1MF1.Name = "Rdo_Lx4Item1MF1";
     this.Rdo_Lx4Item1MF1.Size = new System.Drawing.Size(89, 16);
     this.Rdo_Lx4Item1MF1.TabIndex = 5;
     this.Rdo_Lx4Item1MF1.TabStop = true;
     this.Rdo_Lx4Item1MF1.Text = "MF1219��1��";
     this.Rdo_Lx4Item1MF1.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF1.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF1_CheckedChanged);
     //
     // Rdo_Lx4Item1MF4
     //
     this.Rdo_Lx4Item1MF4.AutoSize = true;
     this.Rdo_Lx4Item1MF4.Location = new System.Drawing.Point(9, 192);
     this.Rdo_Lx4Item1MF4.Name = "Rdo_Lx4Item1MF4";
     this.Rdo_Lx4Item1MF4.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item1MF4.TabIndex = 5;
     this.Rdo_Lx4Item1MF4.Text = "MF1017";
     this.Rdo_Lx4Item1MF4.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF4.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF4_CheckedChanged);
     //
     // Rdo_Lx4Item1MF3
     //
     this.Rdo_Lx4Item1MF3.AutoSize = true;
     this.Rdo_Lx4Item1MF3.Location = new System.Drawing.Point(8, 143);
     this.Rdo_Lx4Item1MF3.Name = "Rdo_Lx4Item1MF3";
     this.Rdo_Lx4Item1MF3.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item1MF3.TabIndex = 5;
     this.Rdo_Lx4Item1MF3.Text = "MF0817";
     this.Rdo_Lx4Item1MF3.UseVisualStyleBackColor = true;
     this.Rdo_Lx4Item1MF3.CheckedChanged += new System.EventHandler(this.Rdo_Lx4Item1MF3_CheckedChanged);
     //
     // LX4tabItem1
     //
     this.LX4tabItem1.AttachedControl = this.tabControlPanel13;
     this.LX4tabItem1.Name = "LX4tabItem1";
     this.LX4tabItem1.Text = "4���ּܲ���";
     this.LX4tabItem1.Visible = false;
     //
     // tabControlPanel6
     //
     this.tabControlPanel6.Controls.Add(this.Grp_Item6);
     this.tabControlPanel6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel6.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel6.Name = "tabControlPanel6";
     this.tabControlPanel6.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel6.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel6.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel6.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel6.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel6.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel6.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel6.Style.GradientAngle = 90;
     this.tabControlPanel6.TabIndex = 6;
     this.tabControlPanel6.TabItem = this.LXtabItem6;
     //
     // Grp_Item6
     //
     this.Grp_Item6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item6.Controls.Add(this.Lb_Item6Uz);
     this.Grp_Item6.Controls.Add(this.DbInput_Item6Uz);
     this.Grp_Item6.Controls.Add(this.Cb_Item7DMCCD);
     this.Grp_Item6.Controls.Add(this.labelX17);
     this.Grp_Item6.Controls.Add(this.Grp_Item6SF);
     this.Grp_Item6.Controls.Add(this.groupBox9);
     this.Grp_Item6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item6.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item6.Name = "Grp_Item6";
     this.Grp_Item6.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item6.TabIndex = 0;
     this.Grp_Item6.TabStop = false;
     //
     // Lb_Item6Uz
     //
     //
     //
     //
     this.Lb_Item6Uz.BackgroundStyle.Class = "";
     this.Lb_Item6Uz.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6Uz.Location = new System.Drawing.Point(265, 233);
     this.Lb_Item6Uz.Name = "Lb_Item6Uz";
     this.Lb_Item6Uz.Size = new System.Drawing.Size(107, 35);
     this.Lb_Item6Uz.TabIndex = 1;
     this.Lb_Item6Uz.Text = "���������ϵ����";
     //
     // DbInput_Item6Uz
     //
     //
     //
     //
     this.DbInput_Item6Uz.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item6Uz.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item6Uz.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item6Uz.Increment = 1;
     this.DbInput_Item6Uz.Location = new System.Drawing.Point(373, 240);
     this.DbInput_Item6Uz.MinValue = 0;
     this.DbInput_Item6Uz.Name = "DbInput_Item6Uz";
     this.DbInput_Item6Uz.ShowUpDown = true;
     this.DbInput_Item6Uz.Size = new System.Drawing.Size(105, 21);
     this.DbInput_Item6Uz.TabIndex = 3;
     this.DbInput_Item6Uz.Value = 1.04;
     //
     // Cb_Item7DMCCD
     //
     this.Cb_Item7DMCCD.DisplayMember = "Text";
     this.Cb_Item7DMCCD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item7DMCCD.FormattingEnabled = true;
     this.Cb_Item7DMCCD.ItemHeight = 15;
     this.Cb_Item7DMCCD.Items.AddRange(new object[] {
     this.comboItem214,
     this.comboItem215,
     this.comboItem216,
     this.comboItem217});
     this.Cb_Item7DMCCD.Location = new System.Drawing.Point(90, 239);
     this.Cb_Item7DMCCD.Name = "Cb_Item7DMCCD";
     this.Cb_Item7DMCCD.Size = new System.Drawing.Size(104, 21);
     this.Cb_Item7DMCCD.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item7DMCCD.TabIndex = 6;
     //
     // comboItem214
     //
     this.comboItem214.Text = "A��";
     //
     // comboItem215
     //
     this.comboItem215.Text = "B��";
     //
     // comboItem216
     //
     this.comboItem216.Text = "C��";
     //
     // comboItem217
     //
     this.comboItem217.Text = "D��";
     //
     // labelX17
     //
     //
     //
     //
     this.labelX17.BackgroundStyle.Class = "";
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Location = new System.Drawing.Point(17, 236);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(80, 32);
     this.labelX17.TabIndex = 5;
     this.labelX17.Text = "����ֲڶ�";
     //
     // Grp_Item6SF
     //
     this.Grp_Item6SF.Controls.Add(this.Cb_Item6SF);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6SF);
     this.Grp_Item6SF.Controls.Add(this.Tb_Item6SFDQFY);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6DQ);
     this.Grp_Item6SF.Controls.Add(this.Cb_Item6DQ);
     this.Grp_Item6SF.Controls.Add(this.Lb_Item6SFDQFY);
     this.Grp_Item6SF.Location = new System.Drawing.Point(11, 13);
     this.Grp_Item6SF.Name = "Grp_Item6SF";
     this.Grp_Item6SF.Size = new System.Drawing.Size(559, 92);
     this.Grp_Item6SF.TabIndex = 0;
     this.Grp_Item6SF.TabStop = false;
     this.Grp_Item6SF.Text = "��ʡ�ݲ�ѯ��ѹ";
     //
     // Cb_Item6SF
     //
     this.Cb_Item6SF.DisplayMember = "Text";
     this.Cb_Item6SF.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item6SF.FormattingEnabled = true;
     this.Cb_Item6SF.ItemHeight = 15;
     this.Cb_Item6SF.Items.AddRange(new object[] {
     this.comboItem37,
     this.comboItem38,
     this.comboItem39,
     this.comboItem40,
     this.comboItem41,
     this.comboItem42,
     this.comboItem43,
     this.comboItem44,
     this.comboItem45,
     this.comboItem46,
     this.comboItem47,
     this.comboItem48,
     this.comboItem49,
     this.comboItem50,
     this.comboItem51,
     this.comboItem52,
     this.comboItem53,
     this.comboItem54,
     this.comboItem55,
     this.comboItem56,
     this.comboItem57,
     this.comboItem58,
     this.comboItem59,
     this.comboItem60,
     this.comboItem61,
     this.comboItem62,
     this.comboItem63,
     this.comboItem71,
     this.comboItem75,
     this.comboItem142,
     this.comboItem143,
     this.comboItem144,
     this.comboItem145,
     this.comboItem146});
     this.Cb_Item6SF.Location = new System.Drawing.Point(41, 28);
     this.Cb_Item6SF.Name = "Cb_Item6SF";
     this.Cb_Item6SF.Size = new System.Drawing.Size(82, 21);
     this.Cb_Item6SF.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item6SF.TabIndex = 23;
     this.Cb_Item6SF.Text = "����";
     this.Cb_Item6SF.SelectedIndexChanged += new System.EventHandler(this.Cb_Item6SF_SelectedIndexChanged);
     //
     // comboItem37
     //
     this.comboItem37.Text = "����";
     //
     // comboItem38
     //
     this.comboItem38.Text = "���";
     //
     // comboItem39
     //
     this.comboItem39.Text = "�Ϻ�";
     //
     // comboItem40
     //
     this.comboItem40.Text = "����";
     //
     // comboItem41
     //
     this.comboItem41.Text = "�ӱ�";
     //
     // comboItem42
     //
     this.comboItem42.Text = "ɽ��";
     //
     // comboItem43
     //
     this.comboItem43.Text = "���ɹ�";
     //
     // comboItem44
     //
     this.comboItem44.Text = "����";
     //
     // comboItem45
     //
     this.comboItem45.Text = "����";
     //
     // comboItem46
     //
     this.comboItem46.Text = "������";
     //
     // comboItem47
     //
     this.comboItem47.Text = "ɽ��";
     //
     // comboItem48
     //
     this.comboItem48.Text = "����";
     //
     // comboItem49
     //
     this.comboItem49.Text = "�㽭";
     //
     // comboItem50
     //
     this.comboItem50.Text = "����";
     //
     // comboItem51
     //
     this.comboItem51.Text = "����";
     //
     // comboItem52
     //
     this.comboItem52.Text = "����";
     //
     // comboItem53
     //
     this.comboItem53.Text = "����";
     //
     // comboItem54
     //
     this.comboItem54.Text = "����";
     //
     // comboItem55
     //
     this.comboItem55.Text = "����";
     //
     // comboItem56
     //
     this.comboItem56.Text = "�ຣ";
     //
     // comboItem57
     //
     this.comboItem57.Text = "�½�";
     //
     // comboItem58
     //
     this.comboItem58.Text = "����";
     //
     // comboItem59
     //
     this.comboItem59.Text = "����";
     //
     // comboItem60
     //
     this.comboItem60.Text = "����";
     //
     // comboItem61
     //
     this.comboItem61.Text = "�㶫";
     //
     // comboItem62
     //
     this.comboItem62.Text = "����";
     //
     // comboItem63
     //
     this.comboItem63.Text = "����";
     //
     // comboItem71
     //
     this.comboItem71.Text = "�Ĵ�";
     //
     // comboItem75
     //
     this.comboItem75.Text = "����";
     //
     // comboItem142
     //
     this.comboItem142.Text = "����";
     //
     // comboItem143
     //
     this.comboItem143.Text = "����";
     //
     // comboItem144
     //
     this.comboItem144.Text = "̨��";
     //
     // comboItem145
     //
     this.comboItem145.Text = "���";
     //
     // comboItem146
     //
     this.comboItem146.Text = "����";
     //
     // Lb_Item6SF
     //
     //
     //
     //
     this.Lb_Item6SF.BackgroundStyle.Class = "";
     this.Lb_Item6SF.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SF.Location = new System.Drawing.Point(6, 28);
     this.Lb_Item6SF.Name = "Lb_Item6SF";
     this.Lb_Item6SF.Size = new System.Drawing.Size(42, 22);
     this.Lb_Item6SF.TabIndex = 2;
     this.Lb_Item6SF.Text = "ʡ�ݣ�";
     //
     // Tb_Item6SFDQFY
     //
     //
     //
     //
     this.Tb_Item6SFDQFY.Border.Class = "TextBoxBorder";
     this.Tb_Item6SFDQFY.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item6SFDQFY.Location = new System.Drawing.Point(455, 29);
     this.Tb_Item6SFDQFY.Name = "Tb_Item6SFDQFY";
     this.Tb_Item6SFDQFY.ReadOnly = true;
     this.Tb_Item6SFDQFY.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item6SFDQFY.TabIndex = 22;
     this.Tb_Item6SFDQFY.Text = "0.30";
     this.Tb_Item6SFDQFY.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item6DQ
     //
     //
     //
     //
     this.Lb_Item6DQ.BackgroundStyle.Class = "";
     this.Lb_Item6DQ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6DQ.Location = new System.Drawing.Point(148, 29);
     this.Lb_Item6DQ.Name = "Lb_Item6DQ";
     this.Lb_Item6DQ.Size = new System.Drawing.Size(42, 22);
     this.Lb_Item6DQ.TabIndex = 3;
     this.Lb_Item6DQ.Text = "������";
     //
     // Cb_Item6DQ
     //
     this.Cb_Item6DQ.DisplayMember = "Text";
     this.Cb_Item6DQ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item6DQ.FormattingEnabled = true;
     this.Cb_Item6DQ.ItemHeight = 15;
     this.Cb_Item6DQ.Location = new System.Drawing.Point(191, 29);
     this.Cb_Item6DQ.Name = "Cb_Item6DQ";
     this.Cb_Item6DQ.Size = new System.Drawing.Size(95, 21);
     this.Cb_Item6DQ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item6DQ.TabIndex = 5;
     this.Cb_Item6DQ.Text = "����";
     this.Cb_Item6DQ.SelectedIndexChanged += new System.EventHandler(this.Cb_Item6DQ_SelectedIndexChanged);
     //
     // Lb_Item6SFDQFY
     //
     //
     //
     //
     this.Lb_Item6SFDQFY.BackgroundStyle.Class = "";
     this.Lb_Item6SFDQFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SFDQFY.Location = new System.Drawing.Point(293, 29);
     this.Lb_Item6SFDQFY.Name = "Lb_Item6SFDQFY";
     this.Lb_Item6SFDQFY.Size = new System.Drawing.Size(165, 28);
     this.Lb_Item6SFDQFY.TabIndex = 7;
     this.Lb_Item6SFDQFY.Text = "�õ����ķ�ѹ�ǣ�kN/m2����";
     //
     // groupBox9
     //
     this.groupBox9.Controls.Add(this.Lb_Item6SelfJBFY);
     this.groupBox9.Controls.Add(this.Chk_Item6Self);
     this.groupBox9.Controls.Add(this.DbInput_Item6SelfJBFY);
     this.groupBox9.Location = new System.Drawing.Point(11, 121);
     this.groupBox9.Name = "groupBox9";
     this.groupBox9.Size = new System.Drawing.Size(559, 92);
     this.groupBox9.TabIndex = 0;
     this.groupBox9.TabStop = false;
     this.groupBox9.Text = "�û���ѡ";
     //
     // Lb_Item6SelfJBFY
     //
     //
     //
     //
     this.Lb_Item6SelfJBFY.BackgroundStyle.Class = "";
     this.Lb_Item6SelfJBFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item6SelfJBFY.Enabled = false;
     this.Lb_Item6SelfJBFY.Location = new System.Drawing.Point(20, 48);
     this.Lb_Item6SelfJBFY.Name = "Lb_Item6SelfJBFY";
     this.Lb_Item6SelfJBFY.Size = new System.Drawing.Size(139, 35);
     this.Lb_Item6SelfJBFY.TabIndex = 1;
     this.Lb_Item6SelfJBFY.Text = "������ѹWo��kN/m2����";
     //
     // Chk_Item6Self
     //
     //
     //
     //
     this.Chk_Item6Self.BackgroundStyle.Class = "";
     this.Chk_Item6Self.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Chk_Item6Self.Location = new System.Drawing.Point(20, 20);
     this.Chk_Item6Self.Name = "Chk_Item6Self";
     this.Chk_Item6Self.Size = new System.Drawing.Size(168, 31);
     this.Chk_Item6Self.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Chk_Item6Self.TabIndex = 0;
     this.Chk_Item6Self.Text = "Ҫ�Լ��趨������ѹ��";
     this.Chk_Item6Self.CheckedChanged += new System.EventHandler(this.Chk_Item6Self_CheckedChanged);
     //
     // DbInput_Item6SelfJBFY
     //
     //
     //
     //
     this.DbInput_Item6SelfJBFY.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item6SelfJBFY.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item6SelfJBFY.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item6SelfJBFY.Enabled = false;
     this.DbInput_Item6SelfJBFY.Increment = 1;
     this.DbInput_Item6SelfJBFY.Location = new System.Drawing.Point(162, 51);
     this.DbInput_Item6SelfJBFY.Name = "DbInput_Item6SelfJBFY";
     this.DbInput_Item6SelfJBFY.ShowUpDown = true;
     this.DbInput_Item6SelfJBFY.Size = new System.Drawing.Size(105, 21);
     this.DbInput_Item6SelfJBFY.TabIndex = 3;
     //
     // LXtabItem6
     //
     this.LXtabItem6.AttachedControl = this.tabControlPanel6;
     this.LXtabItem6.Name = "LXtabItem6";
     this.LXtabItem6.Text = "����ز���+��ѹ�߶ȱ仯ϵ��";
     //
     // tabControlPanel5
     //
     this.tabControlPanel5.Controls.Add(this.Grp_Item5);
     this.tabControlPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel5.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel5.Name = "tabControlPanel5";
     this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel5.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel5.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel5.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel5.Style.GradientAngle = 90;
     this.tabControlPanel5.TabIndex = 5;
     this.tabControlPanel5.TabItem = this.LXtabItem5;
     //
     // Grp_Item5
     //
     this.Grp_Item5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item5.Controls.Add(this.DbInput_Item5HZBZ);
     this.Grp_Item5.Controls.Add(this.IntInput_Item5PSCS);
     this.Grp_Item5.Controls.Add(this.IntInput_Item5SGCS);
     this.Grp_Item5.Controls.Add(this.Cb_Item5YT);
     this.Grp_Item5.Controls.Add(this.Lb_Item5PSCS);
     this.Grp_Item5.Controls.Add(this.labelX24);
     this.Grp_Item5.Controls.Add(this.labelX23);
     this.Grp_Item5.Controls.Add(this.Lb_Item5YT);
     this.Grp_Item5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item5.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item5.Name = "Grp_Item5";
     this.Grp_Item5.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item5.TabIndex = 0;
     this.Grp_Item5.TabStop = false;
     //
     // DbInput_Item5HZBZ
     //
     //
     //
     //
     this.DbInput_Item5HZBZ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item5HZBZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item5HZBZ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item5HZBZ.Increment = 0.1;
     this.DbInput_Item5HZBZ.Location = new System.Drawing.Point(232, 138);
     this.DbInput_Item5HZBZ.MinValue = 0;
     this.DbInput_Item5HZBZ.Name = "DbInput_Item5HZBZ";
     this.DbInput_Item5HZBZ.ShowUpDown = true;
     this.DbInput_Item5HZBZ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Item5HZBZ.TabIndex = 27;
     this.DbInput_Item5HZBZ.Value = 2;
     //
     // IntInput_Item5PSCS
     //
     //
     //
     //
     this.IntInput_Item5PSCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item5PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item5PSCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item5PSCS.Location = new System.Drawing.Point(234, 179);
     this.IntInput_Item5PSCS.MinValue = 0;
     this.IntInput_Item5PSCS.Name = "IntInput_Item5PSCS";
     this.IntInput_Item5PSCS.ShowUpDown = true;
     this.IntInput_Item5PSCS.Size = new System.Drawing.Size(78, 21);
     this.IntInput_Item5PSCS.TabIndex = 26;
     this.IntInput_Item5PSCS.Value = 1;
     //
     // IntInput_Item5SGCS
     //
     //
     //
     //
     this.IntInput_Item5SGCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item5SGCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item5SGCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item5SGCS.Location = new System.Drawing.Point(152, 95);
     this.IntInput_Item5SGCS.MinValue = 0;
     this.IntInput_Item5SGCS.Name = "IntInput_Item5SGCS";
     this.IntInput_Item5SGCS.ShowUpDown = true;
     this.IntInput_Item5SGCS.Size = new System.Drawing.Size(134, 21);
     this.IntInput_Item5SGCS.TabIndex = 26;
     this.IntInput_Item5SGCS.Value = 1;
     //
     // Cb_Item5YT
     //
     this.Cb_Item5YT.DisplayMember = "Text";
     this.Cb_Item5YT.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item5YT.FormattingEnabled = true;
     this.Cb_Item5YT.ItemHeight = 15;
     this.Cb_Item5YT.Items.AddRange(new object[] {
     this.comboItem34,
     this.comboItem35,
     this.comboItem36});
     this.Cb_Item5YT.Location = new System.Drawing.Point(151, 46);
     this.Cb_Item5YT.Name = "Cb_Item5YT";
     this.Cb_Item5YT.Size = new System.Drawing.Size(135, 21);
     this.Cb_Item5YT.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item5YT.TabIndex = 3;
     this.Cb_Item5YT.Text = "װ��ʩ�����ּ�";
     this.Cb_Item5YT.SelectedIndexChanged += new System.EventHandler(this.Cb_Item5YT_SelectedIndexChanged);
     //
     // comboItem34
     //
     this.comboItem34.Text = "װ��ʩ�����ּ�";
     //
     // comboItem35
     //
     this.comboItem35.Text = "�ṹʩ�����ּ�";
     //
     // comboItem36
     //
     this.comboItem36.Text = "������;���ּ�";
     //
     // Lb_Item5PSCS
     //
     //
     //
     //
     this.Lb_Item5PSCS.BackgroundStyle.Class = "";
     this.Lb_Item5PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item5PSCS.Location = new System.Drawing.Point(52, 178);
     this.Lb_Item5PSCS.Name = "Lb_Item5PSCS";
     this.Lb_Item5PSCS.Size = new System.Drawing.Size(185, 27);
     this.Lb_Item5PSCS.TabIndex = 2;
     this.Lb_Item5PSCS.Text = "���ְ塢���ˡ����Ű��������:";
     //
     // labelX24
     //
     //
     //
     //
     this.labelX24.BackgroundStyle.Class = "";
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.Location = new System.Drawing.Point(59, 132);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(178, 41);
     this.labelX24.TabIndex = 2;
     this.labelX24.Text = "ʩ������ر�׼ֵ��kN/m2����";
     //
     // labelX23
     //
     //
     //
     //
     this.labelX23.BackgroundStyle.Class = "";
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.Location = new System.Drawing.Point(59, 85);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(95, 41);
     this.labelX23.TabIndex = 1;
     this.labelX23.Text = "ͬʱʩ��������";
     //
     // Lb_Item5YT
     //
     //
     //
     //
     this.Lb_Item5YT.BackgroundStyle.Class = "";
     this.Lb_Item5YT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item5YT.Location = new System.Drawing.Point(59, 38);
     this.Lb_Item5YT.Name = "Lb_Item5YT";
     this.Lb_Item5YT.Size = new System.Drawing.Size(86, 41);
     this.Lb_Item5YT.TabIndex = 0;
     this.Lb_Item5YT.Text = "���ּ���;��";
     //
     // LXtabItem5
     //
     this.LXtabItem5.AttachedControl = this.tabControlPanel5;
     this.LXtabItem5.Name = "LXtabItem5";
     this.LXtabItem5.Text = "�ɱ���ز���";
     //
     // tabControlPanel4
     //
     this.tabControlPanel4.Controls.Add(this.groupBox11);
     this.tabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel4.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel4.Name = "tabControlPanel4";
     this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel4.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel4.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel4.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel4.Style.GradientAngle = 90;
     this.tabControlPanel4.TabIndex = 4;
     this.tabControlPanel4.TabItem = this.LXtabItem4;
     this.tabControlPanel4.Text = "���ú��ز���";
     //
     // groupBox11
     //
     this.groupBox11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox11.Controls.Add(this.IntInput_Item4PSCS);
     this.groupBox11.Controls.Add(this.Tb_Item4JBZZBZZ);
     this.groupBox11.Controls.Add(this.Tb_Item4JSBZZBZZ);
     this.groupBox11.Controls.Add(this.Cb_Item4JSBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4JSBLB);
     this.groupBox11.Controls.Add(this.Tb_Item4AQW);
     this.groupBox11.Controls.Add(this.Lb_Item4AQW);
     this.groupBox11.Controls.Add(this.Cb_Item4JBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4JBZZBZZ);
     this.groupBox11.Controls.Add(this.Lb_Item4JBLB);
     this.groupBox11.Controls.Add(this.Lb_Item4PSCS);
     this.groupBox11.Controls.Add(this.Lb_Item4JSBZZBZZ);
     this.groupBox11.Controls.Add(this.Tb_Item4GK);
     this.groupBox11.Controls.Add(this.labelX18);
     this.groupBox11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox11.Location = new System.Drawing.Point(1, 1);
     this.groupBox11.Name = "groupBox11";
     this.groupBox11.Size = new System.Drawing.Size(636, 338);
     this.groupBox11.TabIndex = 2;
     this.groupBox11.TabStop = false;
     //
     // IntInput_Item4PSCS
     //
     //
     //
     //
     this.IntInput_Item4PSCS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Item4PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Item4PSCS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Item4PSCS.Location = new System.Drawing.Point(126, 177);
     this.IntInput_Item4PSCS.MaxValue = 3;
     this.IntInput_Item4PSCS.MinValue = 0;
     this.IntInput_Item4PSCS.Name = "IntInput_Item4PSCS";
     this.IntInput_Item4PSCS.ShowUpDown = true;
     this.IntInput_Item4PSCS.Size = new System.Drawing.Size(49, 21);
     this.IntInput_Item4PSCS.TabIndex = 23;
     this.IntInput_Item4PSCS.Value = 3;
     //
     // Tb_Item4JBZZBZZ
     //
     //
     //
     //
     this.Tb_Item4JBZZBZZ.Border.Class = "TextBoxBorder";
     this.Tb_Item4JBZZBZZ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4JBZZBZZ.Location = new System.Drawing.Point(499, 132);
     this.Tb_Item4JBZZBZZ.Name = "Tb_Item4JBZZBZZ";
     this.Tb_Item4JBZZBZZ.ReadOnly = true;
     this.Tb_Item4JBZZBZZ.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item4JBZZBZZ.TabIndex = 22;
     this.Tb_Item4JBZZBZZ.Text = "0.16";
     this.Tb_Item4JBZZBZZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Tb_Item4JSBZZBZZ
     //
     //
     //
     //
     this.Tb_Item4JSBZZBZZ.Border.Class = "TextBoxBorder";
     this.Tb_Item4JSBZZBZZ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4JSBZZBZZ.Location = new System.Drawing.Point(499, 76);
     this.Tb_Item4JSBZZBZZ.Name = "Tb_Item4JSBZZBZZ";
     this.Tb_Item4JSBZZBZZ.ReadOnly = true;
     this.Tb_Item4JSBZZBZZ.Size = new System.Drawing.Size(69, 21);
     this.Tb_Item4JSBZZBZZ.TabIndex = 21;
     this.Tb_Item4JSBZZBZZ.Text = "0.30";
     this.Tb_Item4JSBZZBZZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Cb_Item4JSBLB
     //
     this.Cb_Item4JSBLB.DisplayMember = "Text";
     this.Cb_Item4JSBLB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item4JSBLB.FormattingEnabled = true;
     this.Cb_Item4JSBLB.ItemHeight = 15;
     this.Cb_Item4JSBLB.Items.AddRange(new object[] {
     this.comboItem4,
     this.comboItem5,
     this.comboItem6,
     this.comboItem7});
     this.Cb_Item4JSBLB.Location = new System.Drawing.Point(124, 79);
     this.Cb_Item4JSBLB.Name = "Cb_Item4JSBLB";
     this.Cb_Item4JSBLB.Size = new System.Drawing.Size(161, 21);
     this.Cb_Item4JSBLB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item4JSBLB.TabIndex = 19;
     this.Cb_Item4JSBLB.Text = "��ѹ�ֽ��ְ�";
     this.Cb_Item4JSBLB.SelectedIndexChanged += new System.EventHandler(this.Cb_Item4JSBLB_SelectedIndexChanged_1);
     //
     // comboItem4
     //
     this.comboItem4.Text = "��ѹ�ֽ��ְ�";
     //
     // comboItem5
     //
     this.comboItem5.Text = "��Ƭ���ְ�";
     //
     // comboItem6
     //
     this.comboItem6.Text = "ľ���ְ�";
     //
     // comboItem7
     //
     this.comboItem7.Text = "��Ž��ְ�";
     //
     // Lb_Item4JSBLB
     //
     //
     //
     //
     this.Lb_Item4JSBLB.BackgroundStyle.Class = "";
     this.Lb_Item4JSBLB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JSBLB.Location = new System.Drawing.Point(46, 79);
     this.Lb_Item4JSBLB.Name = "Lb_Item4JSBLB";
     this.Lb_Item4JSBLB.Size = new System.Drawing.Size(82, 23);
     this.Lb_Item4JSBLB.TabIndex = 18;
     this.Lb_Item4JSBLB.Text = "���ְ����";
     //
     // Tb_Item4AQW
     //
     //
     //
     //
     this.Tb_Item4AQW.Border.Class = "TextBoxBorder";
     this.Tb_Item4AQW.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4AQW.Location = new System.Drawing.Point(390, 178);
     this.Tb_Item4AQW.Name = "Tb_Item4AQW";
     this.Tb_Item4AQW.Size = new System.Drawing.Size(56, 21);
     this.Tb_Item4AQW.TabIndex = 16;
     this.Tb_Item4AQW.Text = "0.02";
     this.Tb_Item4AQW.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item4AQW
     //
     //
     //
     //
     this.Lb_Item4AQW.BackgroundStyle.Class = "";
     this.Lb_Item4AQW.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4AQW.Location = new System.Drawing.Point(210, 178);
     this.Lb_Item4AQW.Name = "Lb_Item4AQW";
     this.Lb_Item4AQW.Size = new System.Drawing.Size(179, 23);
     this.Lb_Item4AQW.TabIndex = 15;
     this.Lb_Item4AQW.Text = " ��ȫ�����ر�׼ֵ��kN/m2����";
     //
     // Cb_Item4JBLB
     //
     this.Cb_Item4JBLB.DisplayMember = "Text";
     this.Cb_Item4JBLB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item4JBLB.FormattingEnabled = true;
     this.Cb_Item4JBLB.ItemHeight = 15;
     this.Cb_Item4JBLB.Items.AddRange(new object[] {
     this.comboItem8,
     this.comboItem9,
     this.comboItem10});
     this.Cb_Item4JBLB.Location = new System.Drawing.Point(123, 132);
     this.Cb_Item4JBLB.Name = "Cb_Item4JBLB";
     this.Cb_Item4JBLB.Size = new System.Drawing.Size(162, 21);
     this.Cb_Item4JBLB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item4JBLB.TabIndex = 12;
     this.Cb_Item4JBLB.Text = "���ˡ���ѹ�ֽ��ְ嵲��";
     this.Cb_Item4JBLB.SelectedIndexChanged += new System.EventHandler(this.Cb_Item4JBLB_SelectedIndexChanged_1);
     //
     // comboItem8
     //
     this.comboItem8.Text = "���ˡ���ѹ�ֽ��ְ嵲��";
     //
     // comboItem9
     //
     this.comboItem9.Text = "���ˡ���Ƭ���ְ嵲��";
     //
     // comboItem10
     //
     this.comboItem10.Text = "���ˡ�ľ���ְ嵲��";
     //
     // Lb_Item4JBZZBZZ
     //
     //
     //
     //
     this.Lb_Item4JBZZBZZ.BackgroundStyle.Class = "";
     this.Lb_Item4JBZZBZZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JBZZBZZ.Location = new System.Drawing.Point(299, 131);
     this.Lb_Item4JBZZBZZ.Name = "Lb_Item4JBZZBZZ";
     this.Lb_Item4JBZZBZZ.Size = new System.Drawing.Size(211, 23);
     this.Lb_Item4JBZZBZZ.TabIndex = 11;
     this.Lb_Item4JBZZBZZ.Text = "  ���˵��Ű����ر�׼ֵ��kN/m����";
     //
     // Lb_Item4JBLB
     //
     //
     //
     //
     this.Lb_Item4JBLB.BackgroundStyle.Class = "";
     this.Lb_Item4JBLB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JBLB.Location = new System.Drawing.Point(16, 130);
     this.Lb_Item4JBLB.Name = "Lb_Item4JBLB";
     this.Lb_Item4JBLB.Size = new System.Drawing.Size(112, 23);
     this.Lb_Item4JBLB.TabIndex = 10;
     this.Lb_Item4JBLB.Text = " ���˵��Ű����";
     //
     // Lb_Item4PSCS
     //
     //
     //
     //
     this.Lb_Item4PSCS.BackgroundStyle.Class = "";
     this.Lb_Item4PSCS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4PSCS.Location = new System.Drawing.Point(10, 175);
     this.Lb_Item4PSCS.Name = "Lb_Item4PSCS";
     this.Lb_Item4PSCS.Size = new System.Drawing.Size(121, 23);
     this.Lb_Item4PSCS.TabIndex = 9;
     this.Lb_Item4PSCS.Text = "  ���ְ����������";
     //
     // Lb_Item4JSBZZBZZ
     //
     //
     //
     //
     this.Lb_Item4JSBZZBZZ.BackgroundStyle.Class = "";
     this.Lb_Item4JSBZZBZZ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item4JSBZZBZZ.Location = new System.Drawing.Point(321, 76);
     this.Lb_Item4JSBZZBZZ.Name = "Lb_Item4JSBZZBZZ";
     this.Lb_Item4JSBZZBZZ.Size = new System.Drawing.Size(181, 23);
     this.Lb_Item4JSBZZBZZ.TabIndex = 5;
     this.Lb_Item4JSBZZBZZ.Text = " ���ְ����ر�׼ֵ��kN/m2����";
     //
     // Tb_Item4GK
     //
     //
     //
     //
     this.Tb_Item4GK.Border.Class = "TextBoxBorder";
     this.Tb_Item4GK.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item4GK.Location = new System.Drawing.Point(289, 30);
     this.Tb_Item4GK.Name = "Tb_Item4GK";
     this.Tb_Item4GK.Size = new System.Drawing.Size(96, 21);
     this.Tb_Item4GK.TabIndex = 2;
     //
     // labelX18
     //
     //
     //
     //
     this.labelX18.BackgroundStyle.Class = "";
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Location = new System.Drawing.Point(43, 25);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(245, 34);
     this.labelX18.TabIndex = 1;
     this.labelX18.Text = "ÿ�����˳��ܵĽṹ���ر�׼ֵ��kN/m����";
     //
     // LXtabItem4
     //
     this.LXtabItem4.AttachedControl = this.tabControlPanel4;
     this.LXtabItem4.Name = "LXtabItem4";
     this.LXtabItem4.Text = "���ú��ز���";
     this.LXtabItem4.Click += new System.EventHandler(this.LXtabItem4_Click);
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPanel2.Controls.Add(this.Grp_Item2);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel2.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel2.Style.GradientAngle = 90;
     this.tabControlPanel2.TabIndex = 2;
     this.tabControlPanel2.TabItem = this.LXtabItem2;
     //
     // Grp_Item2
     //
     this.Grp_Item2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2.Controls.Add(this.Grp_Item2DHG);
     this.Grp_Item2.Controls.Add(this.Rdo_Item2XHG);
     this.Grp_Item2.Controls.Add(this.Grp_Item2XHG);
     this.Grp_Item2.Controls.Add(this.Rdo_Item2DHG);
     this.Grp_Item2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item2.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item2.Name = "Grp_Item2";
     this.Grp_Item2.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item2.TabIndex = 24;
     this.Grp_Item2.TabStop = false;
     this.Grp_Item2.Text = "��С��˲���";
     //
     // Grp_Item2DHG
     //
     this.Grp_Item2DHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2DHG.Controls.Add(this.Cb_Item2DHGGS);
     this.Grp_Item2DHG.Controls.Add(this.Lb_Item2DHGGS);
     this.Grp_Item2DHG.Location = new System.Drawing.Point(289, 95);
     this.Grp_Item2DHG.Name = "Grp_Item2DHG";
     this.Grp_Item2DHG.Size = new System.Drawing.Size(317, 81);
     this.Grp_Item2DHG.TabIndex = 5;
     this.Grp_Item2DHG.TabStop = false;
     this.Grp_Item2DHG.Text = "�������ϣ���Ű壩";
     //
     // Cb_Item2DHGGS
     //
     this.Cb_Item2DHGGS.DisplayMember = "Text";
     this.Cb_Item2DHGGS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item2DHGGS.FormattingEnabled = true;
     this.Cb_Item2DHGGS.ItemHeight = 15;
     this.Cb_Item2DHGGS.Items.AddRange(new object[] {
     this.comboItem22,
     this.comboItem23,
     this.comboItem24,
     this.comboItem25});
     this.Cb_Item2DHGGS.Location = new System.Drawing.Point(251, 29);
     this.Cb_Item2DHGGS.Name = "Cb_Item2DHGGS";
     this.Cb_Item2DHGGS.Size = new System.Drawing.Size(52, 21);
     this.Cb_Item2DHGGS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item2DHGGS.TabIndex = 22;
     this.Cb_Item2DHGGS.Text = "3";
     //
     // comboItem22
     //
     this.comboItem22.Text = "0";
     //
     // comboItem23
     //
     this.comboItem23.Text = "1";
     //
     // comboItem24
     //
     this.comboItem24.Text = "2";
     //
     // comboItem25
     //
     this.comboItem25.Text = "3";
     //
     // Lb_Item2DHGGS
     //
     //
     //
     //
     this.Lb_Item2DHGGS.BackgroundStyle.Class = "";
     this.Lb_Item2DHGGS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2DHGGS.Location = new System.Drawing.Point(13, 29);
     this.Lb_Item2DHGGS.Name = "Lb_Item2DHGGS";
     this.Lb_Item2DHGGS.Size = new System.Drawing.Size(243, 23);
     this.Lb_Item2DHGGS.TabIndex = 3;
     this.Lb_Item2DHGGS.Text = "������С����ϵĴ��˸������������ࣩ";
     //
     // Rdo_Item2XHG
     //
     this.Rdo_Item2XHG.AutoSize = true;
     this.Rdo_Item2XHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Item2XHG.Location = new System.Drawing.Point(20, 46);
     this.Rdo_Item2XHG.Name = "Rdo_Item2XHG";
     this.Rdo_Item2XHG.Size = new System.Drawing.Size(83, 16);
     this.Rdo_Item2XHG.TabIndex = 23;
     this.Rdo_Item2XHG.Text = "�������";
     this.Rdo_Item2XHG.UseVisualStyleBackColor = false;
     this.Rdo_Item2XHG.CheckedChanged += new System.EventHandler(this.Rdo_Item2XHG_CheckedChanged);
     //
     // Grp_Item2XHG
     //
     this.Grp_Item2XHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item2XHG.Controls.Add(this.Tb_Item2XHGJJ);
     this.Grp_Item2XHG.Controls.Add(this.Cb_Item2LGZJ);
     this.Grp_Item2XHG.Controls.Add(this.Lb_Item2LGZJ);
     this.Grp_Item2XHG.Controls.Add(this.Lb_Item2XHGJJ);
     this.Grp_Item2XHG.Enabled = false;
     this.Grp_Item2XHG.Location = new System.Drawing.Point(14, 82);
     this.Grp_Item2XHG.Name = "Grp_Item2XHG";
     this.Grp_Item2XHG.Size = new System.Drawing.Size(245, 94);
     this.Grp_Item2XHG.TabIndex = 0;
     this.Grp_Item2XHG.TabStop = false;
     this.Grp_Item2XHG.Text = "�������";
     //
     // Tb_Item2XHGJJ
     //
     this.Tb_Item2XHGJJ.Location = new System.Drawing.Point(121, 62);
     this.Tb_Item2XHGJJ.Name = "Tb_Item2XHGJJ";
     this.Tb_Item2XHGJJ.ReadOnly = true;
     this.Tb_Item2XHGJJ.Size = new System.Drawing.Size(80, 21);
     this.Tb_Item2XHGJJ.TabIndex = 24;
     this.Tb_Item2XHGJJ.Text = "1";
     this.Tb_Item2XHGJJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Cb_Item2LGZJ
     //
     this.Cb_Item2LGZJ.DisplayMember = "Text";
     this.Cb_Item2LGZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item2LGZJ.FormattingEnabled = true;
     this.Cb_Item2LGZJ.ItemHeight = 15;
     this.Cb_Item2LGZJ.Items.AddRange(new object[] {
     this.comboItem20,
     this.comboItem21});
     this.Cb_Item2LGZJ.Location = new System.Drawing.Point(97, 28);
     this.Cb_Item2LGZJ.Name = "Cb_Item2LGZJ";
     this.Cb_Item2LGZJ.Size = new System.Drawing.Size(104, 21);
     this.Cb_Item2LGZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item2LGZJ.TabIndex = 23;
     this.Cb_Item2LGZJ.Text = "�����ݾ�la ";
     this.Cb_Item2LGZJ.SelectedIndexChanged += new System.EventHandler(this.Cb_Item2LGZJ_SelectedIndexChanged);
     //
     // comboItem20
     //
     this.comboItem20.Text = "�����ݾ�la/2 ";
     //
     // comboItem21
     //
     this.comboItem21.Text = "�����ݾ�la ";
     //
     // Lb_Item2LGZJ
     //
     //
     //
     //
     this.Lb_Item2LGZJ.BackgroundStyle.Class = "";
     this.Lb_Item2LGZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2LGZJ.Location = new System.Drawing.Point(15, 29);
     this.Lb_Item2LGZJ.Name = "Lb_Item2LGZJ";
     this.Lb_Item2LGZJ.Size = new System.Drawing.Size(91, 20);
     this.Lb_Item2LGZJ.TabIndex = 22;
     this.Lb_Item2LGZJ.Text = "�����ݾ�ѡ��";
     //
     // Lb_Item2XHGJJ
     //
     //
     //
     //
     this.Lb_Item2XHGJJ.BackgroundStyle.Class = "";
     this.Lb_Item2XHGJJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item2XHGJJ.Location = new System.Drawing.Point(10, 63);
     this.Lb_Item2XHGJJ.Name = "Lb_Item2XHGJJ";
     this.Lb_Item2XHGJJ.Size = new System.Drawing.Size(121, 20);
     this.Lb_Item2XHGJJ.TabIndex = 22;
     this.Lb_Item2XHGJJ.Text = " С��˼��S��m��:";
     //
     // Rdo_Item2DHG
     //
     this.Rdo_Item2DHG.AutoSize = true;
     this.Rdo_Item2DHG.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Item2DHG.Checked = true;
     this.Rdo_Item2DHG.Location = new System.Drawing.Point(292, 50);
     this.Rdo_Item2DHG.Name = "Rdo_Item2DHG";
     this.Rdo_Item2DHG.Size = new System.Drawing.Size(143, 16);
     this.Rdo_Item2DHG.TabIndex = 23;
     this.Rdo_Item2DHG.TabStop = true;
     this.Rdo_Item2DHG.Text = "�������ϣ���Ű壩";
     this.Rdo_Item2DHG.UseVisualStyleBackColor = false;
     //
     // LXtabItem2
     //
     this.LXtabItem2.AttachedControl = this.tabControlPanel2;
     this.LXtabItem2.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem2.Name = "LXtabItem2";
     this.LXtabItem2.Text = "��С��˲���";
     //
     // tabControlPanel9
     //
     this.tabControlPanel9.Controls.Add(this.Grp_Item9);
     this.tabControlPanel9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel9.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel9.Name = "tabControlPanel9";
     this.tabControlPanel9.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel9.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel9.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel9.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel9.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel9.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel9.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel9.Style.GradientAngle = 90;
     this.tabControlPanel9.TabIndex = 9;
     this.tabControlPanel9.TabItem = this.LXtabItem9;
     //
     // Grp_Item9
     //
     this.Grp_Item9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item9.Controls.Add(this.Cb_Item9DJLX);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJLX);
     this.Grp_Item9.Controls.Add(this.Tb_Item9ZYCD);
     this.Grp_Item9.Controls.Add(this.Lb_Item9ZYCD);
     this.Grp_Item9.Controls.Add(this.DbIput_Item9DBK);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DBK);
     this.Grp_Item9.Controls.Add(this.Btn_Item9SearchChart);
     this.Grp_Item9.Controls.Add(this.Tb_Item9DJCZL);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJCZL);
     this.Grp_Item9.Controls.Add(this.Cb_Item9DJTLX);
     this.Grp_Item9.Controls.Add(this.Lb_Item9DJTLX);
     this.Grp_Item9.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item9.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item9.Name = "Grp_Item9";
     this.Grp_Item9.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item9.TabIndex = 0;
     this.Grp_Item9.TabStop = false;
     this.Grp_Item9.Text = "���˵ػ�����������";
     //
     // Cb_Item9DJLX
     //
     this.Cb_Item9DJLX.DisplayMember = "Text";
     this.Cb_Item9DJLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item9DJLX.FormattingEnabled = true;
     this.Cb_Item9DJLX.ItemHeight = 15;
     this.Cb_Item9DJLX.Items.AddRange(new object[] {
     this.comboItem15,
     this.comboItem16});
     this.Cb_Item9DJLX.Location = new System.Drawing.Point(152, 156);
     this.Cb_Item9DJLX.Name = "Cb_Item9DJLX";
     this.Cb_Item9DJLX.Size = new System.Drawing.Size(136, 21);
     this.Cb_Item9DJLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item9DJLX.TabIndex = 20;
     //
     // comboItem15
     //
     this.comboItem15.Text = "��Ȼ�ػ�";
     //
     // comboItem16
     //
     this.comboItem16.Text = "�������ػ�";
     //
     // Lb_Item9DJLX
     //
     //
     //
     //
     this.Lb_Item9DJLX.BackgroundStyle.Class = "";
     this.Lb_Item9DJLX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJLX.Location = new System.Drawing.Point(31, 156);
     this.Lb_Item9DJLX.Name = "Lb_Item9DJLX";
     this.Lb_Item9DJLX.Size = new System.Drawing.Size(117, 23);
     this.Lb_Item9DJLX.TabIndex = 19;
     this.Lb_Item9DJLX.Text = "�ػ����ͣ�";
     this.Lb_Item9DJLX.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Tb_Item9ZYCD
     //
     //
     //
     //
     this.Tb_Item9ZYCD.Border.Class = "TextBoxBorder";
     this.Tb_Item9ZYCD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item9ZYCD.Location = new System.Drawing.Point(154, 125);
     this.Tb_Item9ZYCD.Name = "Tb_Item9ZYCD";
     this.Tb_Item9ZYCD.ReadOnly = true;
     this.Tb_Item9ZYCD.Size = new System.Drawing.Size(137, 21);
     this.Tb_Item9ZYCD.TabIndex = 18;
     this.Tb_Item9ZYCD.Text = "1.50";
     //
     // Lb_Item9ZYCD
     //
     //
     //
     //
     this.Lb_Item9ZYCD.BackgroundStyle.Class = "";
     this.Lb_Item9ZYCD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9ZYCD.Location = new System.Drawing.Point(26, 124);
     this.Lb_Item9ZYCD.Name = "Lb_Item9ZYCD";
     this.Lb_Item9ZYCD.Size = new System.Drawing.Size(128, 23);
     this.Lb_Item9ZYCD.TabIndex = 17;
     this.Lb_Item9ZYCD.Text = "�� �� �� �� ��m����";
     //
     // DbIput_Item9DBK
     //
     //
     //
     //
     this.DbIput_Item9DBK.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Item9DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Item9DBK.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Item9DBK.Increment = 0.1;
     this.DbIput_Item9DBK.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Item9DBK.Location = new System.Drawing.Point(153, 82);
     this.DbIput_Item9DBK.MinValue = 0;
     this.DbIput_Item9DBK.Name = "DbIput_Item9DBK";
     this.DbIput_Item9DBK.ShowUpDown = true;
     this.DbIput_Item9DBK.Size = new System.Drawing.Size(137, 21);
     this.DbIput_Item9DBK.TabIndex = 16;
     this.DbIput_Item9DBK.Value = 0.3;
     //
     // Lb_Item9DBK
     //
     //
     //
     //
     this.Lb_Item9DBK.BackgroundStyle.Class = "";
     this.Lb_Item9DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DBK.Location = new System.Drawing.Point(20, 82);
     this.Lb_Item9DBK.Name = "Lb_Item9DBK";
     this.Lb_Item9DBK.Size = new System.Drawing.Size(146, 23);
     this.Lb_Item9DBK.TabIndex = 7;
     this.Lb_Item9DBK.Text = " ���ּܵ�����ף���";
     //
     // Btn_Item9SearchChart
     //
     this.Btn_Item9SearchChart.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Item9SearchChart.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Item9SearchChart.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Item9SearchChart.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Item9SearchChart.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Item9SearchChart.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Item9SearchChart.Location = new System.Drawing.Point(498, 28);
     this.Btn_Item9SearchChart.Name = "Btn_Item9SearchChart";
     this.Btn_Item9SearchChart.Size = new System.Drawing.Size(53, 50);
     this.Btn_Item9SearchChart.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Item9SearchChart.TabIndex = 6;
     this.Btn_Item9SearchChart.Text = "��ѯͼ��";
     this.Btn_Item9SearchChart.Click += new System.EventHandler(this.Btn_Item9SearchChart_Click);
     //
     // Tb_Item9DJCZL
     //
     //
     //
     //
     this.Tb_Item9DJCZL.Border.Class = "TextBoxBorder";
     this.Tb_Item9DJCZL.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item9DJCZL.Location = new System.Drawing.Point(399, 39);
     this.Tb_Item9DJCZL.Name = "Tb_Item9DJCZL";
     this.Tb_Item9DJCZL.ReadOnly = true;
     this.Tb_Item9DJCZL.Size = new System.Drawing.Size(84, 21);
     this.Tb_Item9DJCZL.TabIndex = 5;
     this.Tb_Item9DJCZL.Text = "200";
     //
     // Lb_Item9DJCZL
     //
     //
     //
     //
     this.Lb_Item9DJCZL.BackgroundStyle.Class = "";
     this.Lb_Item9DJCZL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJCZL.Location = new System.Drawing.Point(224, 37);
     this.Lb_Item9DJCZL.Name = "Lb_Item9DJCZL";
     this.Lb_Item9DJCZL.Size = new System.Drawing.Size(180, 23);
     this.Lb_Item9DJCZL.TabIndex = 4;
     this.Lb_Item9DJCZL.Text = " �ػ���������׼ֵ��kN/m2����";
     //
     // Cb_Item9DJTLX
     //
     this.Cb_Item9DJTLX.DisplayMember = "Text";
     this.Cb_Item9DJTLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item9DJTLX.FormattingEnabled = true;
     this.Cb_Item9DJTLX.ItemHeight = 15;
     this.Cb_Item9DJTLX.Items.AddRange(new object[] {
     this.comboItem17,
     this.comboItem18,
     this.comboItem19,
     this.comboItem64,
     this.comboItem65,
     this.comboItem67,
     this.comboItem68,
     this.comboItem69});
     this.Cb_Item9DJTLX.Location = new System.Drawing.Point(104, 36);
     this.Cb_Item9DJTLX.Name = "Cb_Item9DJTLX";
     this.Cb_Item9DJTLX.Size = new System.Drawing.Size(111, 21);
     this.Cb_Item9DJTLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item9DJTLX.TabIndex = 3;
     this.Cb_Item9DJTLX.SelectedIndexChanged += new System.EventHandler(this.Cb_Item9DJTLX_SelectedIndexChanged);
     //
     // comboItem17
     //
     this.comboItem17.Text = "��ʯ";
     //
     // comboItem18
     //
     this.comboItem18.Text = "��ʯ��";
     //
     // comboItem19
     //
     this.comboItem19.Text = "ɰ��";
     //
     // comboItem64
     //
     this.comboItem64.Text = "����";
     //
     // comboItem65
     //
     this.comboItem65.Text = "������";
     //
     // comboItem67
     //
     this.comboItem67.Text = "��ճ��";
     //
     // comboItem68
     //
     this.comboItem68.Text = "ճ����";
     //
     // comboItem69
     //
     this.comboItem69.Text = "��������";
     //
     // Lb_Item9DJTLX
     //
     //
     //
     //
     this.Lb_Item9DJTLX.BackgroundStyle.Class = "";
     this.Lb_Item9DJTLX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item9DJTLX.Location = new System.Drawing.Point(29, 36);
     this.Lb_Item9DJTLX.Name = "Lb_Item9DJTLX";
     this.Lb_Item9DJTLX.Size = new System.Drawing.Size(91, 23);
     this.Lb_Item9DJTLX.TabIndex = 2;
     this.Lb_Item9DJTLX.Text = "�ػ������ͣ�";
     //
     // LXtabItem9
     //
     this.LXtabItem9.AttachedControl = this.tabControlPanel9;
     this.LXtabItem9.Name = "LXtabItem9";
     this.LXtabItem9.Text = "���˵ػ�������";
     //
     // tabControlPanel17
     //
     this.tabControlPanel17.Controls.Add(this.groupBox8);
     this.tabControlPanel17.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel17.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel17.Name = "tabControlPanel17";
     this.tabControlPanel17.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel17.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel17.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel17.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel17.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel17.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel17.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel17.Style.GradientAngle = 90;
     this.tabControlPanel17.TabIndex = 18;
     this.tabControlPanel17.TabItem = this.LX5tabItem1;
     //
     // groupBox8
     //
     this.groupBox8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1NO);
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1LDX);
     this.groupBox8.Controls.Add(this.IntInput_Lx5Item1SPX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LGJXG);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1DKJ);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1WXGBZ);
     this.groupBox8.Controls.Add(this.labelX48);
     this.groupBox8.Controls.Add(this.labelX52);
     this.groupBox8.Controls.Add(this.labelX49);
     this.groupBox8.Controls.Add(this.labelX62);
     this.groupBox8.Controls.Add(this.labelX50);
     this.groupBox8.Controls.Add(this.labelX51);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LDX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1SPX);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1WXG);
     this.groupBox8.Controls.Add(this.labelX45);
     this.groupBox8.Controls.Add(this.labelX46);
     this.groupBox8.Controls.Add(this.labelX47);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1LGG);
     this.groupBox8.Controls.Add(this.labelX44);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1HJ);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1JHG);
     this.groupBox8.Controls.Add(this.Cbx_Lx5Item1ZJ);
     this.groupBox8.Controls.Add(this.labelX39);
     this.groupBox8.Controls.Add(this.labelX40);
     this.groupBox8.Controls.Add(this.labelX41);
     this.groupBox8.Controls.Add(this.labelX43);
     this.groupBox8.Controls.Add(this.DbInput_Lx5Item2GD);
     this.groupBox8.Controls.Add(this.DbInput_Lx5Item1BJ);
     this.groupBox8.Controls.Add(this.labelX38);
     this.groupBox8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox8.Location = new System.Drawing.Point(1, 1);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(636, 338);
     this.groupBox8.TabIndex = 3;
     this.groupBox8.TabStop = false;
     //
     // IntInput_Lx5Item1NO
     //
     //
     //
     //
     this.IntInput_Lx5Item1NO.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1NO.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1NO.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1NO.Location = new System.Drawing.Point(465, 211);
     this.IntInput_Lx5Item1NO.MinValue = 0;
     this.IntInput_Lx5Item1NO.Name = "IntInput_Lx5Item1NO";
     this.IntInput_Lx5Item1NO.ShowUpDown = true;
     this.IntInput_Lx5Item1NO.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1NO.TabIndex = 99;
     this.IntInput_Lx5Item1NO.Value = 30;
     //
     // IntInput_Lx5Item1LDX
     //
     //
     //
     //
     this.IntInput_Lx5Item1LDX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1LDX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1LDX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1LDX.Location = new System.Drawing.Point(465, 168);
     this.IntInput_Lx5Item1LDX.MinValue = 1;
     this.IntInput_Lx5Item1LDX.Name = "IntInput_Lx5Item1LDX";
     this.IntInput_Lx5Item1LDX.ShowUpDown = true;
     this.IntInput_Lx5Item1LDX.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1LDX.TabIndex = 99;
     this.IntInput_Lx5Item1LDX.Value = 1;
     //
     // IntInput_Lx5Item1SPX
     //
     //
     //
     //
     this.IntInput_Lx5Item1SPX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx5Item1SPX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx5Item1SPX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx5Item1SPX.Location = new System.Drawing.Point(465, 125);
     this.IntInput_Lx5Item1SPX.MinValue = 1;
     this.IntInput_Lx5Item1SPX.Name = "IntInput_Lx5Item1SPX";
     this.IntInput_Lx5Item1SPX.ShowUpDown = true;
     this.IntInput_Lx5Item1SPX.Size = new System.Drawing.Size(80, 21);
     this.IntInput_Lx5Item1SPX.TabIndex = 100;
     this.IntInput_Lx5Item1SPX.Value = 1;
     //
     // Cbx_Lx5Item1LGJXG
     //
     this.Cbx_Lx5Item1LGJXG.DisplayMember = "Text";
     this.Cbx_Lx5Item1LGJXG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LGJXG.FormattingEnabled = true;
     this.Cbx_Lx5Item1LGJXG.ItemHeight = 15;
     this.Cbx_Lx5Item1LGJXG.Items.AddRange(new object[] {
     this.comboItem212,
     this.comboItem213});
     this.Cbx_Lx5Item1LGJXG.Location = new System.Drawing.Point(465, 254);
     this.Cbx_Lx5Item1LGJXG.Name = "Cbx_Lx5Item1LGJXG";
     this.Cbx_Lx5Item1LGJXG.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1LGJXG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LGJXG.TabIndex = 97;
     //
     // comboItem212
     //
     this.comboItem212.Text = "���˼���б��";
     //
     // comboItem213
     //
     this.comboItem213.Text = "���˼���б��";
     //
     // Cbx_Lx5Item1DKJ
     //
     this.Cbx_Lx5Item1DKJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1DKJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1DKJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1DKJ.ItemHeight = 15;
     this.Cbx_Lx5Item1DKJ.Items.AddRange(new object[] {
     this.comboItem201,
     this.comboItem202});
     this.Cbx_Lx5Item1DKJ.Location = new System.Drawing.Point(465, 39);
     this.Cbx_Lx5Item1DKJ.Name = "Cbx_Lx5Item1DKJ";
     this.Cbx_Lx5Item1DKJ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1DKJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1DKJ.TabIndex = 97;
     //
     // comboItem201
     //
     this.comboItem201.Text = "1";
     //
     // comboItem202
     //
     this.comboItem202.Text = "2";
     //
     // Cbx_Lx5Item1WXGBZ
     //
     this.Cbx_Lx5Item1WXGBZ.DisplayMember = "Text";
     this.Cbx_Lx5Item1WXGBZ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1WXGBZ.FormattingEnabled = true;
     this.Cbx_Lx5Item1WXGBZ.ItemHeight = 15;
     this.Cbx_Lx5Item1WXGBZ.Items.AddRange(new object[] {
     this.comboItem203,
     this.comboItem204,
     this.comboItem205,
     this.comboItem206,
     this.comboItem207,
     this.comboItem208});
     this.Cbx_Lx5Item1WXGBZ.Location = new System.Drawing.Point(465, 82);
     this.Cbx_Lx5Item1WXGBZ.Name = "Cbx_Lx5Item1WXGBZ";
     this.Cbx_Lx5Item1WXGBZ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item1WXGBZ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1WXGBZ.TabIndex = 98;
     //
     // comboItem203
     //
     this.comboItem203.Text = "1";
     //
     // comboItem204
     //
     this.comboItem204.Text = "2";
     //
     // comboItem205
     //
     this.comboItem205.Text = "3";
     //
     // comboItem206
     //
     this.comboItem206.Text = "4";
     //
     // comboItem207
     //
     this.comboItem207.Text = "5";
     //
     // comboItem208
     //
     this.comboItem208.Text = "6";
     //
     // labelX48
     //
     this.labelX48.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX48.BackgroundStyle.Class = "";
     this.labelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX48.Location = new System.Drawing.Point(292, 126);
     this.labelX48.Name = "labelX48";
     this.labelX48.Size = new System.Drawing.Size(171, 20);
     this.labelX48.TabIndex = 95;
     this.labelX48.Text = "ˮƽб�˲���(����һ��)";
     this.labelX48.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX52
     //
     this.labelX52.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX52.BackgroundStyle.Class = "";
     this.labelX52.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX52.Location = new System.Drawing.Point(292, 212);
     this.labelX52.Name = "labelX52";
     this.labelX52.Size = new System.Drawing.Size(171, 20);
     this.labelX52.TabIndex = 96;
     this.labelX52.Text = "�ɵ���������������ֵN0(kN)";
     this.labelX52.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX49
     //
     this.labelX49.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX49.BackgroundStyle.Class = "";
     this.labelX49.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX49.Location = new System.Drawing.Point(292, 169);
     this.labelX49.Name = "labelX49";
     this.labelX49.Size = new System.Drawing.Size(171, 20);
     this.labelX49.TabIndex = 96;
     this.labelX49.Text = "�ȵ�б�˲���(����һ��)";
     this.labelX49.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX62
     //
     this.labelX62.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX62.BackgroundStyle.Class = "";
     this.labelX62.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX62.Location = new System.Drawing.Point(292, 255);
     this.labelX62.Name = "labelX62";
     this.labelX62.Size = new System.Drawing.Size(171, 20);
     this.labelX62.TabIndex = 93;
     this.labelX62.Text = "���˼�б������";
     this.labelX62.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX50
     //
     this.labelX50.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX50.BackgroundStyle.Class = "";
     this.labelX50.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX50.Location = new System.Drawing.Point(292, 40);
     this.labelX50.Name = "labelX50";
     this.labelX50.Size = new System.Drawing.Size(171, 20);
     this.labelX50.TabIndex = 93;
     this.labelX50.Text = "������˸���njg";
     this.labelX50.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX51
     //
     this.labelX51.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX51.BackgroundStyle.Class = "";
     this.labelX51.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX51.Location = new System.Drawing.Point(292, 83);
     this.labelX51.Name = "labelX51";
     this.labelX51.Size = new System.Drawing.Size(171, 20);
     this.labelX51.TabIndex = 94;
     this.labelX51.Text = "��б�˲���(����һ��)";
     this.labelX51.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1LDX
     //
     this.Cbx_Lx5Item1LDX.DisplayMember = "Text";
     this.Cbx_Lx5Item1LDX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LDX.FormattingEnabled = true;
     this.Cbx_Lx5Item1LDX.ItemHeight = 15;
     this.Cbx_Lx5Item1LDX.Items.AddRange(new object[] {
     this.comboItem188,
     this.comboItem189,
     this.comboItem190,
     this.comboItem191,
     this.comboItem192});
     this.Cbx_Lx5Item1LDX.Location = new System.Drawing.Point(147, 297);
     this.Cbx_Lx5Item1LDX.Name = "Cbx_Lx5Item1LDX";
     this.Cbx_Lx5Item1LDX.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1LDX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LDX.TabIndex = 90;
     //
     // comboItem188
     //
     this.comboItem188.Text = "XG-0912";
     //
     // comboItem189
     //
     this.comboItem189.Text = "XG-1212";
     //
     // comboItem190
     //
     this.comboItem190.Text = "XG-1218";
     //
     // comboItem191
     //
     this.comboItem191.Text = "XG-1518";
     //
     // comboItem192
     //
     this.comboItem192.Text = "XG-1818";
     //
     // Cbx_Lx5Item1SPX
     //
     this.Cbx_Lx5Item1SPX.DisplayMember = "Text";
     this.Cbx_Lx5Item1SPX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1SPX.FormattingEnabled = true;
     this.Cbx_Lx5Item1SPX.ItemHeight = 15;
     this.Cbx_Lx5Item1SPX.Items.AddRange(new object[] {
     this.comboItem193,
     this.comboItem194,
     this.comboItem195});
     this.Cbx_Lx5Item1SPX.Location = new System.Drawing.Point(147, 261);
     this.Cbx_Lx5Item1SPX.Name = "Cbx_Lx5Item1SPX";
     this.Cbx_Lx5Item1SPX.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1SPX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1SPX.TabIndex = 91;
     //
     // comboItem193
     //
     this.comboItem193.Text = "ZXG-0912";
     //
     // comboItem194
     //
     this.comboItem194.Text = "ZXG-1212";
     //
     // comboItem195
     //
     this.comboItem195.Text = "ZXG-1218";
     //
     // Cbx_Lx5Item1WXG
     //
     this.Cbx_Lx5Item1WXG.DisplayMember = "Text";
     this.Cbx_Lx5Item1WXG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1WXG.FormattingEnabled = true;
     this.Cbx_Lx5Item1WXG.ItemHeight = 15;
     this.Cbx_Lx5Item1WXG.Items.AddRange(new object[] {
     this.comboItem196,
     this.comboItem197,
     this.comboItem198,
     this.comboItem199,
     this.comboItem200});
     this.Cbx_Lx5Item1WXG.Location = new System.Drawing.Point(147, 225);
     this.Cbx_Lx5Item1WXG.Name = "Cbx_Lx5Item1WXG";
     this.Cbx_Lx5Item1WXG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1WXG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1WXG.TabIndex = 92;
     //
     // comboItem196
     //
     this.comboItem196.Text = "XG-0912";
     //
     // comboItem197
     //
     this.comboItem197.Text = "XG-1212";
     //
     // comboItem198
     //
     this.comboItem198.Text = "XG-1218";
     //
     // comboItem199
     //
     this.comboItem199.Text = "XG-1518";
     //
     // comboItem200
     //
     this.comboItem200.Text = "XG-1818";
     //
     // labelX45
     //
     this.labelX45.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX45.BackgroundStyle.Class = "";
     this.labelX45.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX45.Location = new System.Drawing.Point(16, 296);
     this.labelX45.Name = "labelX45";
     this.labelX45.Size = new System.Drawing.Size(130, 20);
     this.labelX45.TabIndex = 88;
     this.labelX45.Text = "�ȵ�б�˸ֹ�����";
     this.labelX45.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX46
     //
     this.labelX46.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX46.BackgroundStyle.Class = "";
     this.labelX46.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX46.Location = new System.Drawing.Point(16, 260);
     this.labelX46.Name = "labelX46";
     this.labelX46.Size = new System.Drawing.Size(130, 20);
     this.labelX46.TabIndex = 87;
     this.labelX46.Text = "ˮƽб�˸ֹ�����";
     this.labelX46.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX47
     //
     this.labelX47.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX47.BackgroundStyle.Class = "";
     this.labelX47.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX47.Location = new System.Drawing.Point(16, 224);
     this.labelX47.Name = "labelX47";
     this.labelX47.Size = new System.Drawing.Size(130, 20);
     this.labelX47.TabIndex = 89;
     this.labelX47.Text = "��б�˸ֹ�����";
     this.labelX47.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1LGG
     //
     this.Cbx_Lx5Item1LGG.DisplayMember = "Text";
     this.Cbx_Lx5Item1LGG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1LGG.FormattingEnabled = true;
     this.Cbx_Lx5Item1LGG.ItemHeight = 15;
     this.Cbx_Lx5Item1LGG.Items.AddRange(new object[] {
     this.comboItem184,
     this.comboItem185,
     this.comboItem186,
     this.comboItem187});
     this.Cbx_Lx5Item1LGG.Location = new System.Drawing.Point(147, 189);
     this.Cbx_Lx5Item1LGG.Name = "Cbx_Lx5Item1LGG";
     this.Cbx_Lx5Item1LGG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1LGG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1LGG.TabIndex = 86;
     //
     // comboItem184
     //
     this.comboItem184.Text = "LG-120";
     //
     // comboItem185
     //
     this.comboItem185.Text = "LG-180";
     //
     // comboItem186
     //
     this.comboItem186.Text = "LG-240";
     //
     // comboItem187
     //
     this.comboItem187.Text = "LG-300";
     //
     // labelX44
     //
     this.labelX44.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX44.BackgroundStyle.Class = "";
     this.labelX44.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX44.Location = new System.Drawing.Point(16, 188);
     this.labelX44.Name = "labelX44";
     this.labelX44.Size = new System.Drawing.Size(130, 20);
     this.labelX44.TabIndex = 85;
     this.labelX44.Text = "���˸ֹ�����";
     this.labelX44.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cbx_Lx5Item1HJ
     //
     this.Cbx_Lx5Item1HJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1HJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1HJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1HJ.ItemHeight = 15;
     this.Cbx_Lx5Item1HJ.Items.AddRange(new object[] {
     this.comboItem168,
     this.comboItem169,
     this.comboItem170,
     this.comboItem171,
     this.comboItem172,
     this.comboItem173});
     this.Cbx_Lx5Item1HJ.Location = new System.Drawing.Point(147, 117);
     this.Cbx_Lx5Item1HJ.Name = "Cbx_Lx5Item1HJ";
     this.Cbx_Lx5Item1HJ.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1HJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1HJ.TabIndex = 82;
     //
     // comboItem168
     //
     this.comboItem168.Text = "0.3";
     //
     // comboItem169
     //
     this.comboItem169.Text = "0.6";
     //
     // comboItem170
     //
     this.comboItem170.Text = "0.9";
     //
     // comboItem171
     //
     this.comboItem171.Text = "1.2";
     //
     // comboItem172
     //
     this.comboItem172.Text = "1.5";
     //
     // comboItem173
     //
     this.comboItem173.Text = "1.8";
     //
     // Cbx_Lx5Item1JHG
     //
     this.Cbx_Lx5Item1JHG.DisplayMember = "Text";
     this.Cbx_Lx5Item1JHG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1JHG.FormattingEnabled = true;
     this.Cbx_Lx5Item1JHG.ItemHeight = 15;
     this.Cbx_Lx5Item1JHG.Items.AddRange(new object[] {
     this.comboItem174,
     this.comboItem175,
     this.comboItem176,
     this.comboItem177});
     this.Cbx_Lx5Item1JHG.Location = new System.Drawing.Point(147, 153);
     this.Cbx_Lx5Item1JHG.Name = "Cbx_Lx5Item1JHG";
     this.Cbx_Lx5Item1JHG.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1JHG.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1JHG.TabIndex = 83;
     //
     // comboItem174
     //
     this.comboItem174.Text = "JHG-90";
     //
     // comboItem175
     //
     this.comboItem175.Text = "JHG-120";
     //
     // comboItem176
     //
     this.comboItem176.Text = "JHG-120+30";
     //
     // comboItem177
     //
     this.comboItem177.Text = "JHG-120+60";
     //
     // Cbx_Lx5Item1ZJ
     //
     this.Cbx_Lx5Item1ZJ.DisplayMember = "Text";
     this.Cbx_Lx5Item1ZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item1ZJ.FormattingEnabled = true;
     this.Cbx_Lx5Item1ZJ.ItemHeight = 15;
     this.Cbx_Lx5Item1ZJ.Items.AddRange(new object[] {
     this.comboItem178,
     this.comboItem179,
     this.comboItem180,
     this.comboItem181,
     this.comboItem182,
     this.comboItem183});
     this.Cbx_Lx5Item1ZJ.Location = new System.Drawing.Point(148, 81);
     this.Cbx_Lx5Item1ZJ.Name = "Cbx_Lx5Item1ZJ";
     this.Cbx_Lx5Item1ZJ.Size = new System.Drawing.Size(86, 21);
     this.Cbx_Lx5Item1ZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item1ZJ.TabIndex = 84;
     //
     // comboItem178
     //
     this.comboItem178.Text = "0.3";
     //
     // comboItem179
     //
     this.comboItem179.Text = "0.6";
     //
     // comboItem180
     //
     this.comboItem180.Text = "0.9";
     //
     // comboItem181
     //
     this.comboItem181.Text = "1.2";
     //
     // comboItem182
     //
     this.comboItem182.Text = "1.5";
     //
     // comboItem183
     //
     this.comboItem183.Text = "1.8";
     //
     // labelX39
     //
     this.labelX39.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX39.BackgroundStyle.Class = "";
     this.labelX39.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX39.Location = new System.Drawing.Point(16, 152);
     this.labelX39.Name = "labelX39";
     this.labelX39.Size = new System.Drawing.Size(130, 20);
     this.labelX39.TabIndex = 80;
     this.labelX39.Text = "���˸ֹ�����";
     this.labelX39.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX40
     //
     this.labelX40.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX40.BackgroundStyle.Class = "";
     this.labelX40.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX40.Location = new System.Drawing.Point(16, 80);
     this.labelX40.Name = "labelX40";
     this.labelX40.Size = new System.Drawing.Size(130, 20);
     this.labelX40.TabIndex = 79;
     this.labelX40.Text = "�����ݾ�la(m)";
     this.labelX40.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX41
     //
     this.labelX41.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX41.BackgroundStyle.Class = "";
     this.labelX41.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX41.Location = new System.Drawing.Point(16, 116);
     this.labelX41.Name = "labelX41";
     this.labelX41.Size = new System.Drawing.Size(130, 20);
     this.labelX41.TabIndex = 81;
     this.labelX41.Text = "���˺��lb(m)";
     this.labelX41.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX43
     //
     this.labelX43.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX43.BackgroundStyle.Class = "";
     this.labelX43.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX43.Location = new System.Drawing.Point(16, 44);
     this.labelX43.Name = "labelX43";
     this.labelX43.Size = new System.Drawing.Size(130, 20);
     this.labelX43.TabIndex = 77;
     this.labelX43.Text = "���ּܴ���߶�H(m)";
     this.labelX43.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2GD
     //
     //
     //
     //
     this.DbInput_Lx5Item2GD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2GD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2GD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2GD.Increment = 0.1;
     this.DbInput_Lx5Item2GD.Location = new System.Drawing.Point(148, 45);
     this.DbInput_Lx5Item2GD.MaxValue = 50;
     this.DbInput_Lx5Item2GD.MinValue = 0;
     this.DbInput_Lx5Item2GD.Name = "DbInput_Lx5Item2GD";
     this.DbInput_Lx5Item2GD.ShowUpDown = true;
     this.DbInput_Lx5Item2GD.Size = new System.Drawing.Size(87, 21);
     this.DbInput_Lx5Item2GD.TabIndex = 78;
     this.DbInput_Lx5Item2GD.Value = 15;
     //
     // DbInput_Lx5Item1BJ
     //
     //
     //
     //
     this.DbInput_Lx5Item1BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item1BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item1BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item1BJ.Increment = 1;
     this.DbInput_Lx5Item1BJ.Location = new System.Drawing.Point(148, 9);
     this.DbInput_Lx5Item1BJ.MaxValue = 1.8;
     this.DbInput_Lx5Item1BJ.MinValue = 1.2;
     this.DbInput_Lx5Item1BJ.Name = "DbInput_Lx5Item1BJ";
     this.DbInput_Lx5Item1BJ.ShowUpDown = true;
     this.DbInput_Lx5Item1BJ.Size = new System.Drawing.Size(87, 21);
     this.DbInput_Lx5Item1BJ.TabIndex = 74;
     this.DbInput_Lx5Item1BJ.Value = 1.8;
     //
     // labelX38
     //
     this.labelX38.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX38.BackgroundStyle.Class = "";
     this.labelX38.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX38.Location = new System.Drawing.Point(16, 8);
     this.labelX38.Name = "labelX38";
     this.labelX38.Size = new System.Drawing.Size(130, 20);
     this.labelX38.TabIndex = 73;
     this.labelX38.Text = "����h(m)";
     this.labelX38.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX5tabItem1
     //
     this.LX5tabItem1.AttachedControl = this.tabControlPanel17;
     this.LX5tabItem1.Name = "LX5tabItem1";
     this.LX5tabItem1.Text = "5���ּܴ������";
     this.LX5tabItem1.Visible = false;
     //
     // tabControlPanel16
     //
     this.tabControlPanel16.Controls.Add(this.groupBox19);
     this.tabControlPanel16.Controls.Add(this.groupBox7);
     this.tabControlPanel16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel16.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel16.Name = "tabControlPanel16";
     this.tabControlPanel16.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel16.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel16.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel16.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel16.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel16.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel16.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel16.Style.GradientAngle = 90;
     this.tabControlPanel16.TabIndex = 17;
     this.tabControlPanel16.TabItem = this.LX4tabItem4;
     //
     // groupBox19
     //
     this.groupBox19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox19.Controls.Add(this.Btn_Lx4Item4Search1);
     this.groupBox19.Controls.Add(this.DbInput_Lx4Item4TZXS);
     this.groupBox19.Controls.Add(this.Btn_Lx4Item4Search2);
     this.groupBox19.Controls.Add(this.Tb_Lx4Item4DJCZL);
     this.groupBox19.Controls.Add(this.labelX37);
     this.groupBox19.Controls.Add(this.labelX33);
     this.groupBox19.Controls.Add(this.Cb_Lx4Item4DJTLX);
     this.groupBox19.Controls.Add(this.groupBox20);
     this.groupBox19.Controls.Add(this.labelX32);
     this.groupBox19.Dock = System.Windows.Forms.DockStyle.Right;
     this.groupBox19.Location = new System.Drawing.Point(292, 1);
     this.groupBox19.Name = "groupBox19";
     this.groupBox19.Size = new System.Drawing.Size(345, 338);
     this.groupBox19.TabIndex = 2;
     this.groupBox19.TabStop = false;
     this.groupBox19.Text = "�ػ�������";
     //
     // Btn_Lx4Item4Search1
     //
     this.Btn_Lx4Item4Search1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Lx4Item4Search1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Lx4Item4Search1.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Lx4Item4Search1.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Lx4Item4Search1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Lx4Item4Search1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Lx4Item4Search1.Location = new System.Drawing.Point(282, 37);
     this.Btn_Lx4Item4Search1.Name = "Btn_Lx4Item4Search1";
     this.Btn_Lx4Item4Search1.Size = new System.Drawing.Size(57, 52);
     this.Btn_Lx4Item4Search1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Lx4Item4Search1.TabIndex = 10;
     this.Btn_Lx4Item4Search1.Text = "��ѯͼ��";
     this.Btn_Lx4Item4Search1.Click += new System.EventHandler(this.Btn_Lx4Item4Search1_Click);
     //
     // DbInput_Lx4Item4TZXS
     //
     //
     //
     //
     this.DbInput_Lx4Item4TZXS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item4TZXS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item4TZXS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item4TZXS.Increment = 0.1;
     this.DbInput_Lx4Item4TZXS.Location = new System.Drawing.Point(148, 227);
     this.DbInput_Lx4Item4TZXS.MaxValue = 1;
     this.DbInput_Lx4Item4TZXS.MinValue = 0;
     this.DbInput_Lx4Item4TZXS.Name = "DbInput_Lx4Item4TZXS";
     this.DbInput_Lx4Item4TZXS.ShowUpDown = true;
     this.DbInput_Lx4Item4TZXS.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item4TZXS.TabIndex = 9;
     this.DbInput_Lx4Item4TZXS.Value = 1;
     //
     // Btn_Lx4Item4Search2
     //
     this.Btn_Lx4Item4Search2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.Btn_Lx4Item4Search2.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.Btn_Lx4Item4Search2.Font = new System.Drawing.Font("����", 7.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.Btn_Lx4Item4Search2.Image = global::Framework.Properties.Resources.Search;
     this.Btn_Lx4Item4Search2.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.Btn_Lx4Item4Search2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.Btn_Lx4Item4Search2.Location = new System.Drawing.Point(242, 211);
     this.Btn_Lx4Item4Search2.Name = "Btn_Lx4Item4Search2";
     this.Btn_Lx4Item4Search2.Size = new System.Drawing.Size(57, 52);
     this.Btn_Lx4Item4Search2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Btn_Lx4Item4Search2.TabIndex = 8;
     this.Btn_Lx4Item4Search2.Text = "��ѯͼ��";
     this.Btn_Lx4Item4Search2.Click += new System.EventHandler(this.Btn_Lx4Item4Search2_Click);
     //
     // Tb_Lx4Item4DJCZL
     //
     //
     //
     //
     this.Tb_Lx4Item4DJCZL.Border.Class = "TextBoxBorder";
     this.Tb_Lx4Item4DJCZL.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Lx4Item4DJCZL.Location = new System.Drawing.Point(193, 67);
     this.Tb_Lx4Item4DJCZL.Name = "Tb_Lx4Item4DJCZL";
     this.Tb_Lx4Item4DJCZL.ReadOnly = true;
     this.Tb_Lx4Item4DJCZL.Size = new System.Drawing.Size(84, 21);
     this.Tb_Lx4Item4DJCZL.TabIndex = 7;
     this.Tb_Lx4Item4DJCZL.Text = "200";
     //
     // labelX37
     //
     //
     //
     //
     this.labelX37.BackgroundStyle.Class = "";
     this.labelX37.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX37.Location = new System.Drawing.Point(25, 225);
     this.labelX37.Name = "labelX37";
     this.labelX37.Size = new System.Drawing.Size(129, 23);
     this.labelX37.TabIndex = 6;
     this.labelX37.Text = "�ػ�����������ϵ����";
     //
     // labelX33
     //
     //
     //
     //
     this.labelX33.BackgroundStyle.Class = "";
     this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX33.Location = new System.Drawing.Point(18, 65);
     this.labelX33.Name = "labelX33";
     this.labelX33.Size = new System.Drawing.Size(180, 23);
     this.labelX33.TabIndex = 6;
     this.labelX33.Text = " �ػ���������׼ֵ��kN/m2����";
     //
     // Cb_Lx4Item4DJTLX
     //
     this.Cb_Lx4Item4DJTLX.DisplayMember = "Text";
     this.Cb_Lx4Item4DJTLX.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Lx4Item4DJTLX.FormattingEnabled = true;
     this.Cb_Lx4Item4DJTLX.ItemHeight = 15;
     this.Cb_Lx4Item4DJTLX.Items.AddRange(new object[] {
     this.comboItem160,
     this.comboItem161,
     this.comboItem162,
     this.comboItem163,
     this.comboItem164,
     this.comboItem165,
     this.comboItem166,
     this.comboItem167});
     this.Cb_Lx4Item4DJTLX.Location = new System.Drawing.Point(100, 36);
     this.Cb_Lx4Item4DJTLX.Name = "Cb_Lx4Item4DJTLX";
     this.Cb_Lx4Item4DJTLX.Size = new System.Drawing.Size(177, 21);
     this.Cb_Lx4Item4DJTLX.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Lx4Item4DJTLX.TabIndex = 5;
     this.Cb_Lx4Item4DJTLX.SelectedIndexChanged += new System.EventHandler(this.Cb_Lx4Item4DJTLX_SelectedIndexChanged);
     //
     // comboItem160
     //
     this.comboItem160.Text = "��ʯ";
     //
     // comboItem161
     //
     this.comboItem161.Text = "��ʯ��";
     //
     // comboItem162
     //
     this.comboItem162.Text = "ɰ��";
     //
     // comboItem163
     //
     this.comboItem163.Text = "����";
     //
     // comboItem164
     //
     this.comboItem164.Text = "������";
     //
     // comboItem165
     //
     this.comboItem165.Text = "��ճ��";
     //
     // comboItem166
     //
     this.comboItem166.Text = "ճ����";
     //
     // comboItem167
     //
     this.comboItem167.Text = "��������";
     //
     // groupBox20
     //
     this.groupBox20.Controls.Add(this.DbIput_Lx4Item4DBK);
     this.groupBox20.Controls.Add(this.DbIput_Lx4Item4DBC);
     this.groupBox20.Controls.Add(this.labelX36);
     this.groupBox20.Controls.Add(this.labelX35);
     this.groupBox20.Location = new System.Drawing.Point(25, 114);
     this.groupBox20.Name = "groupBox20";
     this.groupBox20.Size = new System.Drawing.Size(219, 85);
     this.groupBox20.TabIndex = 8;
     this.groupBox20.TabStop = false;
     this.groupBox20.Text = "���ּܵ��ߴ�";
     //
     // DbIput_Lx4Item4DBK
     //
     //
     //
     //
     this.DbIput_Lx4Item4DBK.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DBK.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DBK.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DBK.Increment = 1;
     this.DbIput_Lx4Item4DBK.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DBK.Location = new System.Drawing.Point(118, 47);
     this.DbIput_Lx4Item4DBK.MinValue = 0;
     this.DbIput_Lx4Item4DBK.Name = "DbIput_Lx4Item4DBK";
     this.DbIput_Lx4Item4DBK.ShowUpDown = true;
     this.DbIput_Lx4Item4DBK.Size = new System.Drawing.Size(85, 21);
     this.DbIput_Lx4Item4DBK.TabIndex = 22;
     this.DbIput_Lx4Item4DBK.Value = 0.3;
     //
     // DbIput_Lx4Item4DBC
     //
     //
     //
     //
     this.DbIput_Lx4Item4DBC.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DBC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DBC.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DBC.Increment = 1;
     this.DbIput_Lx4Item4DBC.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DBC.Location = new System.Drawing.Point(118, 20);
     this.DbIput_Lx4Item4DBC.MinValue = 0;
     this.DbIput_Lx4Item4DBC.Name = "DbIput_Lx4Item4DBC";
     this.DbIput_Lx4Item4DBC.ShowUpDown = true;
     this.DbIput_Lx4Item4DBC.Size = new System.Drawing.Size(85, 21);
     this.DbIput_Lx4Item4DBC.TabIndex = 22;
     this.DbIput_Lx4Item4DBC.Value = 0.3;
     //
     // labelX36
     //
     //
     //
     //
     this.labelX36.BackgroundStyle.Class = "";
     this.labelX36.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX36.Location = new System.Drawing.Point(58, 20);
     this.labelX36.Name = "labelX36";
     this.labelX36.Size = new System.Drawing.Size(60, 23);
     this.labelX36.TabIndex = 21;
     this.labelX36.Text = "��峤a��";
     //
     // labelX35
     //
     //
     //
     //
     this.labelX35.BackgroundStyle.Class = "";
     this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX35.Location = new System.Drawing.Point(58, 47);
     this.labelX35.Name = "labelX35";
     this.labelX35.Size = new System.Drawing.Size(60, 23);
     this.labelX35.TabIndex = 21;
     this.labelX35.Text = "����b��";
     //
     // labelX32
     //
     //
     //
     //
     this.labelX32.BackgroundStyle.Class = "";
     this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX32.Location = new System.Drawing.Point(25, 36);
     this.labelX32.Name = "labelX32";
     this.labelX32.Size = new System.Drawing.Size(79, 23);
     this.labelX32.TabIndex = 4;
     this.labelX32.Text = "�ػ������ͣ�";
     //
     // groupBox7
     //
     this.groupBox7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox7.Controls.Add(this.DbIput_Lx4Item4DFMJ);
     this.groupBox7.Controls.Add(this.labelX30);
     this.groupBox7.Controls.Add(this.Tb_Lx4Item4YFMJ);
     this.groupBox7.Controls.Add(this.labelX31);
     this.groupBox7.Controls.Add(this.groupBox18);
     this.groupBox7.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox7.Location = new System.Drawing.Point(1, 1);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(290, 338);
     this.groupBox7.TabIndex = 2;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "���������ϵ��";
     //
     // DbIput_Lx4Item4DFMJ
     //
     //
     //
     //
     this.DbIput_Lx4Item4DFMJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Lx4Item4DFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Lx4Item4DFMJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Lx4Item4DFMJ.Increment = 1;
     this.DbIput_Lx4Item4DFMJ.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Lx4Item4DFMJ.Location = new System.Drawing.Point(115, 173);
     this.DbIput_Lx4Item4DFMJ.Name = "DbIput_Lx4Item4DFMJ";
     this.DbIput_Lx4Item4DFMJ.ShowUpDown = true;
     this.DbIput_Lx4Item4DFMJ.Size = new System.Drawing.Size(91, 21);
     this.DbIput_Lx4Item4DFMJ.TabIndex = 22;
     this.DbIput_Lx4Item4DFMJ.Value = 66.67;
     //
     // labelX30
     //
     //
     //
     //
     this.labelX30.BackgroundStyle.Class = "";
     this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX30.Location = new System.Drawing.Point(11, 176);
     this.labelX30.Name = "labelX30";
     this.labelX30.Size = new System.Drawing.Size(104, 23);
     this.labelX30.TabIndex = 21;
     this.labelX30.Text = "�������An(m2)��";
     //
     // Tb_Lx4Item4YFMJ
     //
     //
     //
     //
     this.Tb_Lx4Item4YFMJ.Border.Class = "TextBoxBorder";
     this.Tb_Lx4Item4YFMJ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Lx4Item4YFMJ.Location = new System.Drawing.Point(115, 140);
     this.Tb_Lx4Item4YFMJ.Name = "Tb_Lx4Item4YFMJ";
     this.Tb_Lx4Item4YFMJ.ReadOnly = true;
     this.Tb_Lx4Item4YFMJ.Size = new System.Drawing.Size(91, 21);
     this.Tb_Lx4Item4YFMJ.TabIndex = 20;
     this.Tb_Lx4Item4YFMJ.Text = "100";
     this.Tb_Lx4Item4YFMJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelX31
     //
     //
     //
     //
     this.labelX31.BackgroundStyle.Class = "";
     this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX31.Location = new System.Drawing.Point(36, 140);
     this.labelX31.Name = "labelX31";
     this.labelX31.Size = new System.Drawing.Size(85, 23);
     this.labelX31.TabIndex = 19;
     this.labelX31.Text = "ӭ�����Aw��";
     //
     // groupBox18
     //
     this.groupBox18.Controls.Add(this.Rdo_Lx4Item4CK);
     this.groupBox18.Controls.Add(this.Rdo_Lx4Item4QF);
     this.groupBox18.Location = new System.Drawing.Point(17, 38);
     this.groupBox18.Name = "groupBox18";
     this.groupBox18.Size = new System.Drawing.Size(207, 85);
     this.groupBox18.TabIndex = 8;
     this.groupBox18.TabStop = false;
     this.groupBox18.Text = "���ּܼ�����������״��";
     //
     // Rdo_Lx4Item4CK
     //
     this.Rdo_Lx4Item4CK.AutoSize = true;
     this.Rdo_Lx4Item4CK.Location = new System.Drawing.Point(14, 50);
     this.Rdo_Lx4Item4CK.Name = "Rdo_Lx4Item4CK";
     this.Rdo_Lx4Item4CK.Size = new System.Drawing.Size(131, 16);
     this.Rdo_Lx4Item4CK.TabIndex = 5;
     this.Rdo_Lx4Item4CK.TabStop = true;
     this.Rdo_Lx4Item4CK.Text = "��������ܺͿ���ǽ";
     this.Rdo_Lx4Item4CK.UseVisualStyleBackColor = true;
     //
     // Rdo_Lx4Item4QF
     //
     this.Rdo_Lx4Item4QF.AutoSize = true;
     this.Rdo_Lx4Item4QF.Checked = true;
     this.Rdo_Lx4Item4QF.Location = new System.Drawing.Point(14, 23);
     this.Rdo_Lx4Item4QF.Name = "Rdo_Lx4Item4QF";
     this.Rdo_Lx4Item4QF.Size = new System.Drawing.Size(71, 16);
     this.Rdo_Lx4Item4QF.TabIndex = 5;
     this.Rdo_Lx4Item4QF.TabStop = true;
     this.Rdo_Lx4Item4QF.Text = "ȫ���ǽ";
     this.Rdo_Lx4Item4QF.UseVisualStyleBackColor = true;
     //
     // LX4tabItem4
     //
     this.LX4tabItem4.AttachedControl = this.tabControlPanel16;
     this.LX4tabItem4.Name = "LX4tabItem4";
     this.LX4tabItem4.Text = "4���������ϵ��+�ػ�������";
     this.LX4tabItem4.Visible = false;
     //
     // tabControlPanel15
     //
     this.tabControlPanel15.Controls.Add(this.groupBox17);
     this.tabControlPanel15.Controls.Add(this.groupBox4);
     this.tabControlPanel15.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel15.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel15.Name = "tabControlPanel15";
     this.tabControlPanel15.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel15.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel15.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel15.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel15.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel15.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel15.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel15.Style.GradientAngle = 90;
     this.tabControlPanel15.TabIndex = 16;
     this.tabControlPanel15.TabItem = this.LX4tabItem3;
     //
     // groupBox17
     //
     this.groupBox17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox17.Controls.Add(this.DbInput_Lx4Item3SG);
     this.groupBox17.Controls.Add(this.IntInput_Lx4Item3CS);
     this.groupBox17.Controls.Add(this.Cbx_Lx4Item3YT);
     this.groupBox17.Controls.Add(this.labelX27);
     this.groupBox17.Controls.Add(this.labelX28);
     this.groupBox17.Controls.Add(this.labelX29);
     this.groupBox17.Dock = System.Windows.Forms.DockStyle.Right;
     this.groupBox17.Location = new System.Drawing.Point(308, 1);
     this.groupBox17.Name = "groupBox17";
     this.groupBox17.Size = new System.Drawing.Size(329, 338);
     this.groupBox17.TabIndex = 33;
     this.groupBox17.TabStop = false;
     this.groupBox17.Text = "����ز���";
     //
     // DbInput_Lx4Item3SG
     //
     //
     //
     //
     this.DbInput_Lx4Item3SG.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3SG.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3SG.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3SG.Increment = 0.1;
     this.DbInput_Lx4Item3SG.Location = new System.Drawing.Point(133, 151);
     this.DbInput_Lx4Item3SG.MinValue = 0;
     this.DbInput_Lx4Item3SG.Name = "DbInput_Lx4Item3SG";
     this.DbInput_Lx4Item3SG.ShowUpDown = true;
     this.DbInput_Lx4Item3SG.Size = new System.Drawing.Size(135, 21);
     this.DbInput_Lx4Item3SG.TabIndex = 33;
     this.DbInput_Lx4Item3SG.Value = 3;
     //
     // IntInput_Lx4Item3CS
     //
     //
     //
     //
     this.IntInput_Lx4Item3CS.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3CS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3CS.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3CS.Location = new System.Drawing.Point(134, 101);
     this.IntInput_Lx4Item3CS.MinValue = 0;
     this.IntInput_Lx4Item3CS.Name = "IntInput_Lx4Item3CS";
     this.IntInput_Lx4Item3CS.ShowUpDown = true;
     this.IntInput_Lx4Item3CS.Size = new System.Drawing.Size(134, 21);
     this.IntInput_Lx4Item3CS.TabIndex = 32;
     this.IntInput_Lx4Item3CS.Value = 1;
     //
     // Cbx_Lx4Item3YT
     //
     this.Cbx_Lx4Item3YT.DisplayMember = "Text";
     this.Cbx_Lx4Item3YT.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3YT.FormattingEnabled = true;
     this.Cbx_Lx4Item3YT.ItemHeight = 15;
     this.Cbx_Lx4Item3YT.Items.AddRange(new object[] {
     this.comboItem158,
     this.comboItem159});
     this.Cbx_Lx4Item3YT.Location = new System.Drawing.Point(133, 54);
     this.Cbx_Lx4Item3YT.Name = "Cbx_Lx4Item3YT";
     this.Cbx_Lx4Item3YT.Size = new System.Drawing.Size(135, 21);
     this.Cbx_Lx4Item3YT.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3YT.TabIndex = 31;
     //
     // comboItem158
     //
     this.comboItem158.Text = "װ��ʩ�����ּ�";
     //
     // comboItem159
     //
     this.comboItem159.Text = "�ṹʩ�����ּ�";
     //
     // labelX27
     //
     //
     //
     //
     this.labelX27.BackgroundStyle.Class = "";
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.Location = new System.Drawing.Point(22, 150);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(120, 41);
     this.labelX27.TabIndex = 30;
     this.labelX27.Text = "ʩ������ر�׼ֵ��\r\n   ��kN/m2�� ";
     //
     // labelX28
     //
     //
     //
     //
     this.labelX28.BackgroundStyle.Class = "";
     this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX28.Location = new System.Drawing.Point(46, 89);
     this.labelX28.Name = "labelX28";
     this.labelX28.Size = new System.Drawing.Size(95, 41);
     this.labelX28.TabIndex = 29;
     this.labelX28.Text = "ͬʱʩ��������";
     //
     // labelX29
     //
     //
     //
     //
     this.labelX29.BackgroundStyle.Class = "";
     this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX29.Location = new System.Drawing.Point(49, 43);
     this.labelX29.Name = "labelX29";
     this.labelX29.Size = new System.Drawing.Size(86, 41);
     this.labelX29.TabIndex = 28;
     this.labelX29.Text = "���ּ���;��";
     this.labelX29.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox4
     //
     this.groupBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox4.Controls.Add(this.groupBox14);
     this.groupBox4.Controls.Add(this.groupBox16);
     this.groupBox4.Dock = System.Windows.Forms.DockStyle.Left;
     this.groupBox4.Location = new System.Drawing.Point(1, 1);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(306, 338);
     this.groupBox4.TabIndex = 2;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "���ú���";
     //
     // groupBox14
     //
     this.groupBox14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox14.Controls.Add(this.DbInput_Lx4Item3HL);
     this.groupBox14.Controls.Add(this.DbInput_Lx4Item3AQW);
     this.groupBox14.Controls.Add(this.Cbx_Lx4Item3JGJ);
     this.groupBox14.Controls.Add(this.labelX22);
     this.groupBox14.Controls.Add(this.labelX25);
     this.groupBox14.Controls.Add(this.labelX26);
     this.groupBox14.Location = new System.Drawing.Point(20, 165);
     this.groupBox14.Name = "groupBox14";
     this.groupBox14.Size = new System.Drawing.Size(276, 122);
     this.groupBox14.TabIndex = 33;
     this.groupBox14.TabStop = false;
     this.groupBox14.Text = "ÿ�׸߽��ּܽṹ���ز���";
     //
     // DbInput_Lx4Item3HL
     //
     //
     //
     //
     this.DbInput_Lx4Item3HL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3HL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3HL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3HL.Increment = 1;
     this.DbInput_Lx4Item3HL.Location = new System.Drawing.Point(126, 90);
     this.DbInput_Lx4Item3HL.MinValue = 0;
     this.DbInput_Lx4Item3HL.Name = "DbInput_Lx4Item3HL";
     this.DbInput_Lx4Item3HL.ShowUpDown = true;
     this.DbInput_Lx4Item3HL.Size = new System.Drawing.Size(143, 21);
     this.DbInput_Lx4Item3HL.TabIndex = 21;
     this.DbInput_Lx4Item3HL.Value = 0.2;
     //
     // DbInput_Lx4Item3AQW
     //
     //
     //
     //
     this.DbInput_Lx4Item3AQW.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item3AQW.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item3AQW.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item3AQW.Increment = 1;
     this.DbInput_Lx4Item3AQW.Location = new System.Drawing.Point(126, 56);
     this.DbInput_Lx4Item3AQW.MinValue = 0;
     this.DbInput_Lx4Item3AQW.Name = "DbInput_Lx4Item3AQW";
     this.DbInput_Lx4Item3AQW.ShowUpDown = true;
     this.DbInput_Lx4Item3AQW.Size = new System.Drawing.Size(143, 21);
     this.DbInput_Lx4Item3AQW.TabIndex = 21;
     this.DbInput_Lx4Item3AQW.Value = 0.2;
     //
     // Cbx_Lx4Item3JGJ
     //
     this.Cbx_Lx4Item3JGJ.DisplayMember = "Text";
     this.Cbx_Lx4Item3JGJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3JGJ.FormattingEnabled = true;
     this.Cbx_Lx4Item3JGJ.ItemHeight = 15;
     this.Cbx_Lx4Item3JGJ.Items.AddRange(new object[] {
     this.comboItem156,
     this.comboItem157});
     this.Cbx_Lx4Item3JGJ.Location = new System.Drawing.Point(126, 25);
     this.Cbx_Lx4Item3JGJ.Name = "Cbx_Lx4Item3JGJ";
     this.Cbx_Lx4Item3JGJ.Size = new System.Drawing.Size(143, 21);
     this.Cbx_Lx4Item3JGJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3JGJ.TabIndex = 20;
     //
     // comboItem156
     //
     this.comboItem156.Text = "0.06����42.0��2.5��";
     //
     // comboItem157
     //
     this.comboItem157.Text = "0.04����48.0��3.5��";
     //
     // labelX22
     //
     //
     //
     //
     this.labelX22.BackgroundStyle.Class = "";
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.Location = new System.Drawing.Point(16, 91);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(113, 20);
     this.labelX22.TabIndex = 12;
     this.labelX22.Text = "��������(kN/m)��";
     this.labelX22.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX25
     //
     //
     //
     //
     this.labelX25.BackgroundStyle.Class = "";
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.Location = new System.Drawing.Point(11, 57);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(118, 20);
     this.labelX25.TabIndex = 12;
     this.labelX25.Text = "��ȫ������(kN/m)��";
     this.labelX25.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX26
     //
     //
     //
     //
     this.labelX26.BackgroundStyle.Class = "";
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.Location = new System.Drawing.Point(5, 25);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(125, 20);
     this.labelX26.TabIndex = 12;
     this.labelX26.Text = "�ӹ̼����� (kN/m)��";
     this.labelX26.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // groupBox16
     //
     this.groupBox16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox16.Controls.Add(this.Cbx_Lx4Item3JSB);
     this.groupBox16.Controls.Add(this.IntInput_Lx4Item3SPJ);
     this.groupBox16.Controls.Add(this.IntInput_Lx4Item3JSB);
     this.groupBox16.Controls.Add(this.labelX63);
     this.groupBox16.Controls.Add(this.labelX34);
     this.groupBox16.Controls.Add(this.labelX21);
     this.groupBox16.Controls.Add(this.labelX20);
     this.groupBox16.Controls.Add(this.labelX19);
     this.groupBox16.Location = new System.Drawing.Point(20, 32);
     this.groupBox16.Name = "groupBox16";
     this.groupBox16.Size = new System.Drawing.Size(276, 122);
     this.groupBox16.TabIndex = 32;
     this.groupBox16.TabStop = false;
     this.groupBox16.Text = "ÿ�׸߽��ּܽṹ���ز���";
     //
     // Cbx_Lx4Item3JSB
     //
     this.Cbx_Lx4Item3JSB.DisplayMember = "Text";
     this.Cbx_Lx4Item3JSB.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item3JSB.FormattingEnabled = true;
     this.Cbx_Lx4Item3JSB.ItemHeight = 15;
     this.Cbx_Lx4Item3JSB.Items.AddRange(new object[] {
     this.comboItem151,
     this.comboItem153,
     this.comboItem154,
     this.comboItem155});
     this.Cbx_Lx4Item3JSB.Location = new System.Drawing.Point(118, 91);
     this.Cbx_Lx4Item3JSB.Name = "Cbx_Lx4Item3JSB";
     this.Cbx_Lx4Item3JSB.Size = new System.Drawing.Size(98, 21);
     this.Cbx_Lx4Item3JSB.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item3JSB.TabIndex = 20;
     //
     // comboItem151
     //
     this.comboItem151.Text = "P1803";
     //
     // comboItem153
     //
     this.comboItem153.Text = "P1804";
     //
     // comboItem154
     //
     this.comboItem154.Text = "P1805";
     //
     // comboItem155
     //
     this.comboItem155.Text = "P1806";
     //
     // IntInput_Lx4Item3SPJ
     //
     //
     //
     //
     this.IntInput_Lx4Item3SPJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3SPJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3SPJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3SPJ.Location = new System.Drawing.Point(121, 56);
     this.IntInput_Lx4Item3SPJ.MinValue = 0;
     this.IntInput_Lx4Item3SPJ.Name = "IntInput_Lx4Item3SPJ";
     this.IntInput_Lx4Item3SPJ.ShowUpDown = true;
     this.IntInput_Lx4Item3SPJ.Size = new System.Drawing.Size(55, 21);
     this.IntInput_Lx4Item3SPJ.TabIndex = 13;
     this.IntInput_Lx4Item3SPJ.Value = 1;
     //
     // IntInput_Lx4Item3JSB
     //
     //
     //
     //
     this.IntInput_Lx4Item3JSB.BackgroundStyle.Class = "DateTimeInputBackground";
     this.IntInput_Lx4Item3JSB.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.IntInput_Lx4Item3JSB.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.IntInput_Lx4Item3JSB.Location = new System.Drawing.Point(121, 25);
     this.IntInput_Lx4Item3JSB.MinValue = 0;
     this.IntInput_Lx4Item3JSB.Name = "IntInput_Lx4Item3JSB";
     this.IntInput_Lx4Item3JSB.ShowUpDown = true;
     this.IntInput_Lx4Item3JSB.Size = new System.Drawing.Size(55, 21);
     this.IntInput_Lx4Item3JSB.TabIndex = 13;
     this.IntInput_Lx4Item3JSB.Value = 1;
     //
     // labelX63
     //
     //
     //
     //
     this.labelX63.BackgroundStyle.Class = "";
     this.labelX63.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX63.Location = new System.Drawing.Point(174, 57);
     this.labelX63.Name = "labelX63";
     this.labelX63.Size = new System.Drawing.Size(43, 20);
     this.labelX63.TabIndex = 12;
     this.labelX63.Text = "��һ��";
     this.labelX63.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX34
     //
     //
     //
     //
     this.labelX34.BackgroundStyle.Class = "";
     this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX34.Location = new System.Drawing.Point(173, 25);
     this.labelX34.Name = "labelX34";
     this.labelX34.Size = new System.Drawing.Size(43, 20);
     this.labelX34.TabIndex = 12;
     this.labelX34.Text = "��һ��";
     this.labelX34.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX21
     //
     //
     //
     //
     this.labelX21.BackgroundStyle.Class = "";
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.Location = new System.Drawing.Point(9, 91);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(113, 20);
     this.labelX21.TabIndex = 12;
     this.labelX21.Text = "���ְ����";
     this.labelX21.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.Class = "";
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(12, 57);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(113, 20);
     this.labelX20.TabIndex = 12;
     this.labelX20.Text = "ˮƽ�ܴ��跽ʽ��";
     this.labelX20.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX19
     //
     //
     //
     //
     this.labelX19.BackgroundStyle.Class = "";
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Location = new System.Drawing.Point(12, 25);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(113, 20);
     this.labelX19.TabIndex = 12;
     this.labelX19.Text = "���ְ���跽ʽ��";
     this.labelX19.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX4tabItem3
     //
     this.LX4tabItem3.AttachedControl = this.tabControlPanel15;
     this.LX4tabItem3.Name = "LX4tabItem3";
     this.LX4tabItem3.Text = "4���ú���+�����";
     this.LX4tabItem3.Visible = false;
     //
     // tabControlPanel14
     //
     this.tabControlPanel14.Controls.Add(this.groupBox3);
     this.tabControlPanel14.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel14.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel14.Name = "tabControlPanel14";
     this.tabControlPanel14.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel14.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel14.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel14.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel14.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel14.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel14.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel14.Style.GradientAngle = 90;
     this.tabControlPanel14.TabIndex = 15;
     this.tabControlPanel14.TabItem = this.LX4tabItem2;
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2SP);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2SX);
     this.groupBox3.Controls.Add(this.labelX64);
     this.groupBox3.Controls.Add(this.labelX65);
     this.groupBox3.Controls.Add(this.Grp_Lx4Item2HF);
     this.groupBox3.Controls.Add(this.Grp_Lx4Item2KJ);
     this.groupBox3.Controls.Add(this.Cbx_Lx4Item2LJFS);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2BJ);
     this.groupBox3.Controls.Add(this.DbInput_Lx4Item2CD);
     this.groupBox3.Controls.Add(this.labelX11);
     this.groupBox3.Controls.Add(this.labelX9);
     this.groupBox3.Controls.Add(this.labelX7);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(1, 1);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(636, 338);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop = false;
     //
     // DbInput_Lx4Item2SP
     //
     //
     //
     //
     this.DbInput_Lx4Item2SP.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2SP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2SP.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2SP.Increment = 0.1;
     this.DbInput_Lx4Item2SP.Location = new System.Drawing.Point(178, 158);
     this.DbInput_Lx4Item2SP.MaxValue = 8;
     this.DbInput_Lx4Item2SP.MinValue = 0;
     this.DbInput_Lx4Item2SP.Name = "DbInput_Lx4Item2SP";
     this.DbInput_Lx4Item2SP.ShowUpDown = true;
     this.DbInput_Lx4Item2SP.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2SP.TabIndex = 96;
     this.DbInput_Lx4Item2SP.Value = 1.8;
     //
     // DbInput_Lx4Item2SX
     //
     //
     //
     //
     this.DbInput_Lx4Item2SX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2SX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2SX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2SX.Increment = 0.1;
     this.DbInput_Lx4Item2SX.Location = new System.Drawing.Point(178, 112);
     this.DbInput_Lx4Item2SX.MaxValue = 8;
     this.DbInput_Lx4Item2SX.MinValue = 0;
     this.DbInput_Lx4Item2SX.Name = "DbInput_Lx4Item2SX";
     this.DbInput_Lx4Item2SX.ShowUpDown = true;
     this.DbInput_Lx4Item2SX.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2SX.TabIndex = 97;
     this.DbInput_Lx4Item2SX.Value = 1.8;
     //
     // labelX64
     //
     this.labelX64.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX64.BackgroundStyle.Class = "";
     this.labelX64.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX64.Location = new System.Drawing.Point(19, 158);
     this.labelX64.Name = "labelX64";
     this.labelX64.Size = new System.Drawing.Size(156, 20);
     this.labelX64.TabIndex = 94;
     this.labelX64.Text = "��ǽ��ˮƽ���H1(m):";
     this.labelX64.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX65
     //
     this.labelX65.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX65.BackgroundStyle.Class = "";
     this.labelX65.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX65.Location = new System.Drawing.Point(27, 112);
     this.labelX65.Name = "labelX65";
     this.labelX65.Size = new System.Drawing.Size(156, 20);
     this.labelX65.TabIndex = 95;
     this.labelX65.Text = "��ǽ��������H1(m)��";
     this.labelX65.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Grp_Lx4Item2HF
     //
     this.Grp_Lx4Item2HF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx4Item2HF.Controls.Add(this.labelX12);
     this.Grp_Lx4Item2HF.Controls.Add(this.DbInput_Lx4Item2DJ);
     this.Grp_Lx4Item2HF.Enabled = false;
     this.Grp_Lx4Item2HF.Location = new System.Drawing.Point(323, 176);
     this.Grp_Lx4Item2HF.Name = "Grp_Lx4Item2HF";
     this.Grp_Lx4Item2HF.Size = new System.Drawing.Size(302, 82);
     this.Grp_Lx4Item2HF.TabIndex = 31;
     this.Grp_Lx4Item2HF.TabStop = false;
     this.Grp_Lx4Item2HF.Text = "��ǽ����ʽѡ�񡰺������ӡ�ʱ������д��������";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(5, 34);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(211, 20);
     this.labelX12.TabIndex = 13;
     this.labelX12.Text = "�ԽӺ���Ŀ�����ѹǿ�ȣ�N/mm2����";
     this.labelX12.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx4Item2DJ
     //
     //
     //
     //
     this.DbInput_Lx4Item2DJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2DJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2DJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2DJ.Increment = 1;
     this.DbInput_Lx4Item2DJ.Location = new System.Drawing.Point(217, 33);
     this.DbInput_Lx4Item2DJ.MaxValue = 10000;
     this.DbInput_Lx4Item2DJ.MinValue = 0;
     this.DbInput_Lx4Item2DJ.Name = "DbInput_Lx4Item2DJ";
     this.DbInput_Lx4Item2DJ.ShowUpDown = true;
     this.DbInput_Lx4Item2DJ.Size = new System.Drawing.Size(79, 21);
     this.DbInput_Lx4Item2DJ.TabIndex = 27;
     this.DbInput_Lx4Item2DJ.Value = 205;
     //
     // Grp_Lx4Item2KJ
     //
     this.Grp_Lx4Item2KJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx4Item2KJ.Controls.Add(this.Rdo_Lx4Item2S);
     this.Grp_Lx4Item2KJ.Controls.Add(this.Rdo_Lx4Item2D);
     this.Grp_Lx4Item2KJ.Location = new System.Drawing.Point(321, 63);
     this.Grp_Lx4Item2KJ.Name = "Grp_Lx4Item2KJ";
     this.Grp_Lx4Item2KJ.Size = new System.Drawing.Size(304, 81);
     this.Grp_Lx4Item2KJ.TabIndex = 31;
     this.Grp_Lx4Item2KJ.TabStop = false;
     this.Grp_Lx4Item2KJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ����ѡ��/˫�ۼ�";
     //
     // Rdo_Lx4Item2S
     //
     this.Rdo_Lx4Item2S.AutoSize = true;
     this.Rdo_Lx4Item2S.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx4Item2S.Location = new System.Drawing.Point(141, 45);
     this.Rdo_Lx4Item2S.Name = "Rdo_Lx4Item2S";
     this.Rdo_Lx4Item2S.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item2S.TabIndex = 24;
     this.Rdo_Lx4Item2S.TabStop = true;
     this.Rdo_Lx4Item2S.Text = "˫�ۼ�";
     this.Rdo_Lx4Item2S.UseVisualStyleBackColor = false;
     //
     // Rdo_Lx4Item2D
     //
     this.Rdo_Lx4Item2D.AutoSize = true;
     this.Rdo_Lx4Item2D.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx4Item2D.Checked = true;
     this.Rdo_Lx4Item2D.Location = new System.Drawing.Point(43, 42);
     this.Rdo_Lx4Item2D.Name = "Rdo_Lx4Item2D";
     this.Rdo_Lx4Item2D.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx4Item2D.TabIndex = 24;
     this.Rdo_Lx4Item2D.TabStop = true;
     this.Rdo_Lx4Item2D.Text = "���ۼ�";
     this.Rdo_Lx4Item2D.UseVisualStyleBackColor = false;
     //
     // Cbx_Lx4Item2LJFS
     //
     this.Cbx_Lx4Item2LJFS.DisplayMember = "Text";
     this.Cbx_Lx4Item2LJFS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx4Item2LJFS.FormattingEnabled = true;
     this.Cbx_Lx4Item2LJFS.ItemHeight = 15;
     this.Cbx_Lx4Item2LJFS.Items.AddRange(new object[] {
     this.comboItem150,
     this.comboItem152});
     this.Cbx_Lx4Item2LJFS.Location = new System.Drawing.Point(434, 23);
     this.Cbx_Lx4Item2LJFS.Name = "Cbx_Lx4Item2LJFS";
     this.Cbx_Lx4Item2LJFS.Size = new System.Drawing.Size(82, 21);
     this.Cbx_Lx4Item2LJFS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx4Item2LJFS.TabIndex = 30;
     this.Cbx_Lx4Item2LJFS.Text = " ";
     this.Cbx_Lx4Item2LJFS.SelectedIndexChanged += new System.EventHandler(this.Cbx_Lx4Item2LJFS_SelectedIndexChanged);
     //
     // comboItem150
     //
     this.comboItem150.Text = "�ۼ�����";
     //
     // comboItem152
     //
     this.comboItem152.Text = "��������";
     //
     // DbInput_Lx4Item2BJ
     //
     //
     //
     //
     this.DbInput_Lx4Item2BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2BJ.Increment = 1;
     this.DbInput_Lx4Item2BJ.Location = new System.Drawing.Point(178, 74);
     this.DbInput_Lx4Item2BJ.MinValue = 0;
     this.DbInput_Lx4Item2BJ.Name = "DbInput_Lx4Item2BJ";
     this.DbInput_Lx4Item2BJ.ShowUpDown = true;
     this.DbInput_Lx4Item2BJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2BJ.TabIndex = 28;
     this.DbInput_Lx4Item2BJ.Value = 15.8;
     //
     // DbInput_Lx4Item2CD
     //
     //
     //
     //
     this.DbInput_Lx4Item2CD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx4Item2CD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx4Item2CD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx4Item2CD.Increment = 1;
     this.DbInput_Lx4Item2CD.Location = new System.Drawing.Point(178, 22);
     this.DbInput_Lx4Item2CD.MaxValue = 2000;
     this.DbInput_Lx4Item2CD.MinValue = 0;
     this.DbInput_Lx4Item2CD.Name = "DbInput_Lx4Item2CD";
     this.DbInput_Lx4Item2CD.ShowUpDown = true;
     this.DbInput_Lx4Item2CD.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx4Item2CD.TabIndex = 27;
     this.DbInput_Lx4Item2CD.Value = 600;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(317, 23);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(111, 20);
     this.labelX11.TabIndex = 13;
     this.labelX11.Text = "��ǽ�����ӷ�ʽ��";
     this.labelX11.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(17, 75);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(168, 20);
     this.labelX9.TabIndex = 13;
     this.labelX9.Text = "��ǽ�������ת�뾶i(mm)��";
     this.labelX9.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(28, 23);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(157, 20);
     this.labelX7.TabIndex = 13;
     this.labelX7.Text = "��ǽ�����㳤��l0 (mm)��";
     this.labelX7.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX4tabItem2
     //
     this.LX4tabItem2.AttachedControl = this.tabControlPanel14;
     this.LX4tabItem2.Name = "LX4tabItem2";
     this.LX4tabItem2.Text = "4��ǽ��";
     this.LX4tabItem2.Visible = false;
     //
     // tabControlPanel11
     //
     this.tabControlPanel11.Controls.Add(this.Grp_Item11);
     this.tabControlPanel11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel11.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel11.Name = "tabControlPanel11";
     this.tabControlPanel11.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel11.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel11.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel11.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel11.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel11.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel11.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel11.Style.GradientAngle = 90;
     this.tabControlPanel11.TabIndex = 11;
     this.tabControlPanel11.TabItem = this.LXtabItem11;
     //
     // Grp_Item11
     //
     this.Grp_Item11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item11.Controls.Add(this.Tb_Item11MGXGJL);
     this.Grp_Item11.Controls.Add(this.Lb_Item11LBHNTQD);
     this.Grp_Item11.Controls.Add(this.Lb_Item11MGXGJL);
     this.Grp_Item11.Controls.Add(this.Cb_Item11ULSZJ);
     this.Grp_Item11.Controls.Add(this.Lb_Item11ULSZJ);
     this.Grp_Item11.Controls.Add(this.Cb_Item11LBHNTQD);
     this.Grp_Item11.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item11.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item11.Name = "Grp_Item11";
     this.Grp_Item11.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item11.TabIndex = 29;
     this.Grp_Item11.TabStop = false;
     this.Grp_Item11.Text = "�͸���¥��ê��";
     //
     // Tb_Item11MGXGJL
     //
     this.Tb_Item11MGXGJL.Location = new System.Drawing.Point(205, 82);
     this.Tb_Item11MGXGJL.Name = "Tb_Item11MGXGJL";
     this.Tb_Item11MGXGJL.ReadOnly = true;
     this.Tb_Item11MGXGJL.Size = new System.Drawing.Size(76, 21);
     this.Tb_Item11MGXGJL.TabIndex = 29;
     this.Tb_Item11MGXGJL.Text = "0.2";
     this.Tb_Item11MGXGJL.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item11LBHNTQD
     //
     this.Lb_Item11LBHNTQD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11LBHNTQD.BackgroundStyle.Class = "";
     this.Lb_Item11LBHNTQD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11LBHNTQD.Location = new System.Drawing.Point(71, 131);
     this.Lb_Item11LBHNTQD.Name = "Lb_Item11LBHNTQD";
     this.Lb_Item11LBHNTQD.Size = new System.Drawing.Size(134, 23);
     this.Lb_Item11LBHNTQD.TabIndex = 28;
     this.Lb_Item11LBHNTQD.Text = " ¥�������ǿ�ȵȼ���";
     //
     // Lb_Item11MGXGJL
     //
     this.Lb_Item11MGXGJL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11MGXGJL.BackgroundStyle.Class = "";
     this.Lb_Item11MGXGJL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11MGXGJL.Location = new System.Drawing.Point(35, 81);
     this.Lb_Item11MGXGJL.Name = "Lb_Item11MGXGJL";
     this.Lb_Item11MGXGJL.Size = new System.Drawing.Size(172, 23);
     this.Lb_Item11MGXGJL.TabIndex = 28;
     this.Lb_Item11MGXGJL.Text = "ê��λ�����͸�β������(m)��";
     //
     // Cb_Item11ULSZJ
     //
     this.Cb_Item11ULSZJ.DisplayMember = "Text";
     this.Cb_Item11ULSZJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item11ULSZJ.FormattingEnabled = true;
     this.Cb_Item11ULSZJ.ItemHeight = 15;
     this.Cb_Item11ULSZJ.Items.AddRange(new object[] {
     this.comboItem120,
     this.comboItem121,
     this.comboItem122,
     this.comboItem123,
     this.comboItem124,
     this.comboItem125,
     this.comboItem126});
     this.Cb_Item11ULSZJ.Location = new System.Drawing.Point(205, 34);
     this.Cb_Item11ULSZJ.Name = "Cb_Item11ULSZJ";
     this.Cb_Item11ULSZJ.Size = new System.Drawing.Size(76, 21);
     this.Cb_Item11ULSZJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item11ULSZJ.TabIndex = 27;
     //
     // comboItem120
     //
     this.comboItem120.Text = "12";
     //
     // comboItem121
     //
     this.comboItem121.Text = "14";
     //
     // comboItem122
     //
     this.comboItem122.Text = "16";
     //
     // comboItem123
     //
     this.comboItem123.Text = "18";
     //
     // comboItem124
     //
     this.comboItem124.Text = "20";
     //
     // comboItem125
     //
     this.comboItem125.Text = "22";
     //
     // comboItem126
     //
     this.comboItem126.Text = "24";
     //
     // Lb_Item11ULSZJ
     //
     this.Lb_Item11ULSZJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item11ULSZJ.BackgroundStyle.Class = "";
     this.Lb_Item11ULSZJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item11ULSZJ.Location = new System.Drawing.Point(12, 33);
     this.Lb_Item11ULSZJ.Name = "Lb_Item11ULSZJ";
     this.Lb_Item11ULSZJ.Size = new System.Drawing.Size(190, 23);
     this.Lb_Item11ULSZJ.TabIndex = 28;
     this.Lb_Item11ULSZJ.Text = " U�͸ֽ���������˨ֱ����mm����";
     //
     // Cb_Item11LBHNTQD
     //
     this.Cb_Item11LBHNTQD.DisplayMember = "Text";
     this.Cb_Item11LBHNTQD.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item11LBHNTQD.FormattingEnabled = true;
     this.Cb_Item11LBHNTQD.ItemHeight = 15;
     this.Cb_Item11LBHNTQD.Items.AddRange(new object[] {
     this.comboItem127,
     this.comboItem128,
     this.comboItem129,
     this.comboItem130,
     this.comboItem131,
     this.comboItem132,
     this.comboItem133});
     this.Cb_Item11LBHNTQD.Location = new System.Drawing.Point(205, 130);
     this.Cb_Item11LBHNTQD.Name = "Cb_Item11LBHNTQD";
     this.Cb_Item11LBHNTQD.Size = new System.Drawing.Size(76, 21);
     this.Cb_Item11LBHNTQD.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item11LBHNTQD.TabIndex = 27;
     //
     // comboItem127
     //
     this.comboItem127.Text = "C20";
     //
     // comboItem128
     //
     this.comboItem128.Text = "C25";
     //
     // comboItem129
     //
     this.comboItem129.Text = "C30";
     //
     // comboItem130
     //
     this.comboItem130.Text = "C35";
     //
     // comboItem131
     //
     this.comboItem131.Text = "C40";
     //
     // comboItem132
     //
     this.comboItem132.Text = "C45";
     //
     // comboItem133
     //
     this.comboItem133.Text = "C50";
     //
     // LXtabItem11
     //
     this.LXtabItem11.AttachedControl = this.tabControlPanel11;
     this.LXtabItem11.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem11.Name = "LXtabItem11";
     this.LXtabItem11.Text = "�͸���¥��ê��";
     this.LXtabItem11.Visible = false;
     //
     // tabControlPanel10
     //
     this.tabControlPanel10.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPanel10.Controls.Add(this.Grp_Item10);
     this.tabControlPanel10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel10.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel10.Name = "tabControlPanel10";
     this.tabControlPanel10.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel10.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel10.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel10.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel10.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel10.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel10.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel10.Style.GradientAngle = 90;
     this.tabControlPanel10.TabIndex = 10;
     this.tabControlPanel10.TabItem = this.LXtabItem10;
     //
     // Grp_Item10
     //
     this.Grp_Item10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item10.Controls.Add(this.Lb_Item10GLXH);
     this.Grp_Item10.Controls.Add(this.Cb_Item10GLXH);
     this.Grp_Item10.Controls.Add(this.Tb_Item10RXND);
     this.Grp_Item10.Controls.Add(this.Lb_Item10RXND1);
     this.Grp_Item10.Controls.Add(this.DbInput_Item10MGD);
     this.Grp_Item10.Controls.Add(this.Cb_Item10RXND);
     this.Grp_Item10.Controls.Add(this.Lb_Item10MGD);
     this.Grp_Item10.Controls.Add(this.Lb_Item10RXND2);
     this.Grp_Item10.Controls.Add(this.DbInput_Item10XTD);
     this.Grp_Item10.Controls.Add(this.Lb_Item10XTD);
     this.Grp_Item10.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item10.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item10.Name = "Grp_Item10";
     this.Grp_Item10.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item10.TabIndex = 28;
     this.Grp_Item10.TabStop = false;
     this.Grp_Item10.Text = "�͸�������ּ�";
     //
     // Lb_Item10GLXH
     //
     this.Lb_Item10GLXH.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10GLXH.BackgroundStyle.Class = "";
     this.Lb_Item10GLXH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10GLXH.Location = new System.Drawing.Point(21, 33);
     this.Lb_Item10GLXH.Name = "Lb_Item10GLXH";
     this.Lb_Item10GLXH.Size = new System.Drawing.Size(141, 23);
     this.Lb_Item10GLXH.TabIndex = 1;
     this.Lb_Item10GLXH.Text = "�����ͺţ�";
     this.Lb_Item10GLXH.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Cb_Item10GLXH
     //
     this.Cb_Item10GLXH.DisplayMember = "Text";
     this.Cb_Item10GLXH.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item10GLXH.DropDownHeight = 200;
     this.Cb_Item10GLXH.FormattingEnabled = true;
     this.Cb_Item10GLXH.IntegralHeight = false;
     this.Cb_Item10GLXH.ItemHeight = 15;
     this.Cb_Item10GLXH.Items.AddRange(new object[] {
     this.comboItem76,
     this.comboItem77,
     this.comboItem78,
     this.comboItem79,
     this.comboItem80,
     this.comboItem81,
     this.comboItem82,
     this.comboItem83,
     this.comboItem84,
     this.comboItem85,
     this.comboItem86,
     this.comboItem87,
     this.comboItem88,
     this.comboItem89,
     this.comboItem90,
     this.comboItem91,
     this.comboItem92,
     this.comboItem93,
     this.comboItem94,
     this.comboItem95,
     this.comboItem96,
     this.comboItem97,
     this.comboItem98,
     this.comboItem99,
     this.comboItem100,
     this.comboItem101,
     this.comboItem102,
     this.comboItem103,
     this.comboItem104,
     this.comboItem105,
     this.comboItem106,
     this.comboItem107,
     this.comboItem108,
     this.comboItem109,
     this.comboItem110,
     this.comboItem111,
     this.comboItem112,
     this.comboItem113,
     this.comboItem114,
     this.comboItem115,
     this.comboItem116,
     this.comboItem117});
     this.Cb_Item10GLXH.Location = new System.Drawing.Point(164, 35);
     this.Cb_Item10GLXH.Name = "Cb_Item10GLXH";
     this.Cb_Item10GLXH.Size = new System.Drawing.Size(114, 21);
     this.Cb_Item10GLXH.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item10GLXH.TabIndex = 18;
     //
     // comboItem76
     //
     this.comboItem76.Text = "16�Ź��ָ�";
     //
     // comboItem77
     //
     this.comboItem77.Text = "18�Ź��ָ�";
     //
     // comboItem78
     //
     this.comboItem78.Text = "20a�Ź��ָ�";
     //
     // comboItem79
     //
     this.comboItem79.Text = "20b�Ź��ָ�";
     //
     // comboItem80
     //
     this.comboItem80.Text = "22a�Ź��ָ�";
     //
     // comboItem81
     //
     this.comboItem81.Text = "22b�Ź��ָ�";
     //
     // comboItem82
     //
     this.comboItem82.Text = "24a�Ź��ָ�";
     //
     // comboItem83
     //
     this.comboItem83.Text = "24b�Ź��ָ�";
     //
     // comboItem84
     //
     this.comboItem84.Text = "25a�Ź��ָ�";
     //
     // comboItem85
     //
     this.comboItem85.Text = "25b�Ź��ָ�";
     //
     // comboItem86
     //
     this.comboItem86.Text = "27a�Ź��ָ�";
     //
     // comboItem87
     //
     this.comboItem87.Text = "27b�Ź��ָ�";
     //
     // comboItem88
     //
     this.comboItem88.Text = "28a�Ź��ָ�";
     //
     // comboItem89
     //
     this.comboItem89.Text = "28b�Ź��ָ�";
     //
     // comboItem90
     //
     this.comboItem90.Text = "30a�Ź��ָ�";
     //
     // comboItem91
     //
     this.comboItem91.Text = "30b�Ź��ָ�";
     //
     // comboItem92
     //
     this.comboItem92.Text = "30c�Ź��ָ�";
     //
     // comboItem93
     //
     this.comboItem93.Text = "32a�Ź��ָ�";
     //
     // comboItem94
     //
     this.comboItem94.Text = "32b�Ź��ָ�";
     //
     // comboItem95
     //
     this.comboItem95.Text = "32c�Ź��ָ�";
     //
     // comboItem96
     //
     this.comboItem96.Text = "36a�Ź��ָ�";
     //
     // comboItem97
     //
     this.comboItem97.Text = "36b�Ź��ָ�";
     //
     // comboItem98
     //
     this.comboItem98.Text = "36c�Ź��ָ�";
     //
     // comboItem99
     //
     this.comboItem99.Text = "40a�Ź��ָ�";
     //
     // comboItem100
     //
     this.comboItem100.Text = "40b�Ź��ָ�";
     //
     // comboItem101
     //
     this.comboItem101.Text = "40c�Ź��ָ�";
     //
     // comboItem102
     //
     this.comboItem102.Text = "45a�Ź��ָ�";
     //
     // comboItem103
     //
     this.comboItem103.Text = "45b�Ź��ָ�";
     //
     // comboItem104
     //
     this.comboItem104.Text = "45c�Ź��ָ�";
     //
     // comboItem105
     //
     this.comboItem105.Text = "50a�Ź��ָ�";
     //
     // comboItem106
     //
     this.comboItem106.Text = "50b�Ź��ָ�";
     //
     // comboItem107
     //
     this.comboItem107.Text = "50c�Ź��ָ�";
     //
     // comboItem108
     //
     this.comboItem108.Text = "56a�Ź��ָ�";
     //
     // comboItem109
     //
     this.comboItem109.Text = "56b�Ź��ָ�";
     //
     // comboItem110
     //
     this.comboItem110.Text = "56c�Ź��ָ�";
     //
     // comboItem111
     //
     this.comboItem111.Text = "63a�Ź��ָ�";
     //
     // comboItem112
     //
     this.comboItem112.Text = "63b�Ź��ָ�";
     //
     // comboItem113
     //
     this.comboItem113.Text = "63c�Ź��ָ�";
     //
     // Tb_Item10RXND
     //
     this.Tb_Item10RXND.Location = new System.Drawing.Point(164, 190);
     this.Tb_Item10RXND.Name = "Tb_Item10RXND";
     this.Tb_Item10RXND.ReadOnly = true;
     this.Tb_Item10RXND.Size = new System.Drawing.Size(116, 21);
     this.Tb_Item10RXND.TabIndex = 27;
     this.Tb_Item10RXND.Text = "0.0104";
     this.Tb_Item10RXND.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item10RXND1
     //
     this.Lb_Item10RXND1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10RXND1.BackgroundStyle.Class = "";
     this.Lb_Item10RXND1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10RXND1.Location = new System.Drawing.Point(31, 149);
     this.Lb_Item10RXND1.Name = "Lb_Item10RXND1";
     this.Lb_Item10RXND1.Size = new System.Drawing.Size(133, 23);
     this.Lb_Item10RXND1.TabIndex = 26;
     this.Lb_Item10RXND1.Text = "�����������Ӷ�ѡ��";
     this.Lb_Item10RXND1.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Item10MGD
     //
     this.DbInput_Item10MGD.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
     //
     //
     //
     this.DbInput_Item10MGD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item10MGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item10MGD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item10MGD.Colors.Highlight = System.Drawing.Color.White;
     this.DbInput_Item10MGD.Colors.HighlightText = System.Drawing.Color.White;
     this.DbInput_Item10MGD.Increment = 0.1;
     this.DbInput_Item10MGD.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbInput_Item10MGD.Location = new System.Drawing.Point(166, 66);
     this.DbInput_Item10MGD.Name = "DbInput_Item10MGD";
     this.DbInput_Item10MGD.ShowUpDown = true;
     this.DbInput_Item10MGD.Size = new System.Drawing.Size(112, 21);
     this.DbInput_Item10MGD.TabIndex = 17;
     this.DbInput_Item10MGD.Value = 2;
     //
     // Cb_Item10RXND
     //
     this.Cb_Item10RXND.DisplayMember = "Text";
     this.Cb_Item10RXND.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item10RXND.FormattingEnabled = true;
     this.Cb_Item10RXND.ItemHeight = 15;
     this.Cb_Item10RXND.Items.AddRange(new object[] {
     this.comboItem118,
     this.comboItem119});
     this.Cb_Item10RXND.Location = new System.Drawing.Point(164, 149);
     this.Cb_Item10RXND.Name = "Cb_Item10RXND";
     this.Cb_Item10RXND.Size = new System.Drawing.Size(116, 21);
     this.Cb_Item10RXND.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item10RXND.TabIndex = 24;
     this.Cb_Item10RXND.SelectedIndexChanged += new System.EventHandler(this.Cb_Item10RXND_SelectedIndexChanged);
     //
     // comboItem118
     //
     this.comboItem118.Text = "2���������/250";
     //
     // comboItem119
     //
     this.comboItem119.Text = "2���������/400";
     //
     // Lb_Item10MGD
     //
     this.Lb_Item10MGD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10MGD.BackgroundStyle.Class = "";
     this.Lb_Item10MGD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10MGD.Location = new System.Drawing.Point(11, 68);
     this.Lb_Item10MGD.Name = "Lb_Item10MGD";
     this.Lb_Item10MGD.Size = new System.Drawing.Size(153, 23);
     this.Lb_Item10MGD.TabIndex = 19;
     this.Lb_Item10MGD.Text = "������ê�̶γ��ȣ�m����";
     this.Lb_Item10MGD.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // Lb_Item10RXND2
     //
     this.Lb_Item10RXND2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10RXND2.BackgroundStyle.Class = "";
     this.Lb_Item10RXND2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10RXND2.Location = new System.Drawing.Point(7, 187);
     this.Lb_Item10RXND2.Name = "Lb_Item10RXND2";
     this.Lb_Item10RXND2.Size = new System.Drawing.Size(157, 23);
     this.Lb_Item10RXND2.TabIndex = 23;
     this.Lb_Item10RXND2.Text = "�����������Ӷ� �� m����";
     this.Lb_Item10RXND2.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Item10XTD
     //
     this.DbInput_Item10XTD.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.DbInput_Item10XTD.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item10XTD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item10XTD.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item10XTD.Increment = 0.1;
     this.DbInput_Item10XTD.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbInput_Item10XTD.Location = new System.Drawing.Point(166, 106);
     this.DbInput_Item10XTD.MaxValue = 10;
     this.DbInput_Item10XTD.MinValue = 0.6;
     this.DbInput_Item10XTD.Name = "DbInput_Item10XTD";
     this.DbInput_Item10XTD.ShowUpDown = true;
     this.DbInput_Item10XTD.Size = new System.Drawing.Size(112, 21);
     this.DbInput_Item10XTD.TabIndex = 20;
     this.DbInput_Item10XTD.Value = 1.3;
     //
     // Lb_Item10XTD
     //
     this.Lb_Item10XTD.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item10XTD.BackgroundStyle.Class = "";
     this.Lb_Item10XTD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item10XTD.Location = new System.Drawing.Point(11, 108);
     this.Lb_Item10XTD.Name = "Lb_Item10XTD";
     this.Lb_Item10XTD.Size = new System.Drawing.Size(153, 23);
     this.Lb_Item10XTD.TabIndex = 21;
     this.Lb_Item10XTD.Text = "����������γ��ȣ�m����";
     this.Lb_Item10XTD.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LXtabItem10
     //
     this.LXtabItem10.AttachedControl = this.tabControlPanel10;
     this.LXtabItem10.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.LXtabItem10.Name = "LXtabItem10";
     this.LXtabItem10.Text = "�͸�������ּ�";
     this.LXtabItem10.Visible = false;
     //
     // tabControlPanel8
     //
     this.tabControlPanel8.Controls.Add(this.Grp_Item8);
     this.tabControlPanel8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel8.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel8.Name = "tabControlPanel8";
     this.tabControlPanel8.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel8.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel8.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel8.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel8.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel8.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel8.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel8.Style.GradientAngle = 90;
     this.tabControlPanel8.TabIndex = 8;
     this.tabControlPanel8.TabItem = this.LXtabItem8;
     //
     // Grp_Item8
     //
     this.Grp_Item8.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item8.Controls.Add(this.Tb_Item8DFXS1);
     this.Grp_Item8.Controls.Add(this.Lb_Item8DFXS1);
     this.Grp_Item8.Controls.Add(this.Grp_Item8FBS);
     this.Grp_Item8.Controls.Add(this.groupBox15);
     this.Grp_Item8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item8.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Grp_Item8.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item8.Name = "Grp_Item8";
     this.Grp_Item8.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item8.TabIndex = 0;
     this.Grp_Item8.TabStop = false;
     //
     // Tb_Item8DFXS1
     //
     //
     //
     //
     this.Tb_Item8DFXS1.Border.Class = "TextBoxBorder";
     this.Tb_Item8DFXS1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item8DFXS1.Enabled = false;
     this.Tb_Item8DFXS1.Location = new System.Drawing.Point(434, 254);
     this.Tb_Item8DFXS1.Name = "Tb_Item8DFXS1";
     this.Tb_Item8DFXS1.ReadOnly = true;
     this.Tb_Item8DFXS1.Size = new System.Drawing.Size(71, 21);
     this.Tb_Item8DFXS1.TabIndex = 5;
     this.Tb_Item8DFXS1.Text = "0.8";
     //
     // Lb_Item8DFXS1
     //
     //
     //
     //
     this.Lb_Item8DFXS1.BackgroundStyle.Class = "";
     this.Lb_Item8DFXS1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item8DFXS1.Location = new System.Drawing.Point(328, 256);
     this.Lb_Item8DFXS1.Name = "Lb_Item8DFXS1";
     this.Lb_Item8DFXS1.Size = new System.Drawing.Size(91, 23);
     this.Lb_Item8DFXS1.TabIndex = 4;
     this.Lb_Item8DFXS1.Text = "����ϵ����";
     //
     // Grp_Item8FBS
     //
     this.Grp_Item8FBS.Controls.Add(this.Grp_Item8ADFMJ);
     this.Grp_Item8FBS.Controls.Add(this.Rdo_Item8ADFMJ);
     this.Grp_Item8FBS.Controls.Add(this.Rdo_Item8QMM);
     this.Grp_Item8FBS.Location = new System.Drawing.Point(302, 31);
     this.Grp_Item8FBS.Name = "Grp_Item8FBS";
     this.Grp_Item8FBS.Size = new System.Drawing.Size(317, 199);
     this.Grp_Item8FBS.TabIndex = 4;
     this.Grp_Item8FBS.TabStop = false;
     this.Grp_Item8FBS.Text = "���ʽ���ּ�";
     //
     // Grp_Item8ADFMJ
     //
     this.Grp_Item8ADFMJ.Controls.Add(this.DbIput_Item8DFMJ);
     this.Grp_Item8ADFMJ.Controls.Add(this.labelX42);
     this.Grp_Item8ADFMJ.Controls.Add(this.Tb_Item8YFMJ);
     this.Grp_Item8ADFMJ.Controls.Add(this.Lb_Item8YFMJ);
     this.Grp_Item8ADFMJ.Enabled = false;
     this.Grp_Item8ADFMJ.Location = new System.Drawing.Point(25, 85);
     this.Grp_Item8ADFMJ.Name = "Grp_Item8ADFMJ";
     this.Grp_Item8ADFMJ.Size = new System.Drawing.Size(265, 91);
     this.Grp_Item8ADFMJ.TabIndex = 7;
     this.Grp_Item8ADFMJ.TabStop = false;
     //
     // DbIput_Item8DFMJ
     //
     //
     //
     //
     this.DbIput_Item8DFMJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbIput_Item8DFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbIput_Item8DFMJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbIput_Item8DFMJ.Increment = 1;
     this.DbIput_Item8DFMJ.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.DbIput_Item8DFMJ.Location = new System.Drawing.Point(125, 53);
     this.DbIput_Item8DFMJ.Name = "DbIput_Item8DFMJ";
     this.DbIput_Item8DFMJ.ShowUpDown = true;
     this.DbIput_Item8DFMJ.Size = new System.Drawing.Size(68, 21);
     this.DbIput_Item8DFMJ.TabIndex = 18;
     this.DbIput_Item8DFMJ.Value = 66.67;
     this.DbIput_Item8DFMJ.ValueChanged += new System.EventHandler(this.DbIput_Item8DFMJ_ValueChanged);
     //
     // labelX42
     //
     //
     //
     //
     this.labelX42.BackgroundStyle.Class = "";
     this.labelX42.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX42.Location = new System.Drawing.Point(11, 56);
     this.labelX42.Name = "labelX42";
     this.labelX42.Size = new System.Drawing.Size(86, 23);
     this.labelX42.TabIndex = 17;
     this.labelX42.Text = "�������An��";
     //
     // Tb_Item8YFMJ
     //
     //
     //
     //
     this.Tb_Item8YFMJ.Border.Class = "TextBoxBorder";
     this.Tb_Item8YFMJ.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Tb_Item8YFMJ.Location = new System.Drawing.Point(125, 20);
     this.Tb_Item8YFMJ.Name = "Tb_Item8YFMJ";
     this.Tb_Item8YFMJ.ReadOnly = true;
     this.Tb_Item8YFMJ.Size = new System.Drawing.Size(68, 21);
     this.Tb_Item8YFMJ.TabIndex = 8;
     this.Tb_Item8YFMJ.Text = "100";
     this.Tb_Item8YFMJ.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // Lb_Item8YFMJ
     //
     //
     //
     //
     this.Lb_Item8YFMJ.BackgroundStyle.Class = "";
     this.Lb_Item8YFMJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item8YFMJ.Location = new System.Drawing.Point(12, 20);
     this.Lb_Item8YFMJ.Name = "Lb_Item8YFMJ";
     this.Lb_Item8YFMJ.Size = new System.Drawing.Size(85, 23);
     this.Lb_Item8YFMJ.TabIndex = 2;
     this.Lb_Item8YFMJ.Text = "ӭ�����Aw��";
     //
     // Rdo_Item8ADFMJ
     //
     this.Rdo_Item8ADFMJ.AutoSize = true;
     this.Rdo_Item8ADFMJ.Location = new System.Drawing.Point(5, 62);
     this.Rdo_Item8ADFMJ.Name = "Rdo_Item8ADFMJ";
     this.Rdo_Item8ADFMJ.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8ADFMJ.TabIndex = 0;
     this.Rdo_Item8ADFMJ.Text = "������������� 1.2*An/Aw";
     this.Rdo_Item8ADFMJ.UseVisualStyleBackColor = true;
     this.Rdo_Item8ADFMJ.CheckedChanged += new System.EventHandler(this.Rdo_Item8ADFMJ_CheckedChanged);
     //
     // Rdo_Item8QMM
     //
     this.Rdo_Item8QMM.AutoSize = true;
     this.Rdo_Item8QMM.Checked = true;
     this.Rdo_Item8QMM.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Rdo_Item8QMM.Location = new System.Drawing.Point(6, 28);
     this.Rdo_Item8QMM.Name = "Rdo_Item8QMM";
     this.Rdo_Item8QMM.Size = new System.Drawing.Size(107, 16);
     this.Rdo_Item8QMM.TabIndex = 0;
     this.Rdo_Item8QMM.TabStop = true;
     this.Rdo_Item8QMM.Text = "ȡ��Ŀ��Ĭ��ֵ";
     this.Rdo_Item8QMM.UseVisualStyleBackColor = true;
     //
     // groupBox15
     //
     this.groupBox15.Controls.Add(this.Rdo_Item8FBSK);
     this.groupBox15.Controls.Add(this.Rdo_Item8WMMW);
     this.groupBox15.Controls.Add(this.Rdo_Item8FBSQ);
     this.groupBox15.Location = new System.Drawing.Point(11, 24);
     this.groupBox15.Name = "groupBox15";
     this.groupBox15.Size = new System.Drawing.Size(256, 313);
     this.groupBox15.TabIndex = 7;
     this.groupBox15.TabStop = false;
     this.groupBox15.Text = "���ּܼ�����������״��";
     //
     // Rdo_Item8FBSK
     //
     this.Rdo_Item8FBSK.AutoSize = true;
     this.Rdo_Item8FBSK.Checked = true;
     this.Rdo_Item8FBSK.Location = new System.Drawing.Point(14, 97);
     this.Rdo_Item8FBSK.Name = "Rdo_Item8FBSK";
     this.Rdo_Item8FBSK.Size = new System.Drawing.Size(239, 16);
     this.Rdo_Item8FBSK.TabIndex = 5;
     this.Rdo_Item8FBSK.TabStop = true;
     this.Rdo_Item8FBSK.Text = "���ʽ���ּܱ�����������ܺͿ���ǽ��";
     this.Rdo_Item8FBSK.UseVisualStyleBackColor = true;
     this.Rdo_Item8FBSK.CheckedChanged += new System.EventHandler(this.Rdo_Item8FBSK_CheckedChanged);
     //
     // Rdo_Item8WMMW
     //
     this.Rdo_Item8WMMW.AutoSize = true;
     this.Rdo_Item8WMMW.Location = new System.Drawing.Point(14, 22);
     this.Rdo_Item8WMMW.Name = "Rdo_Item8WMMW";
     this.Rdo_Item8WMMW.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8WMMW.TabIndex = 5;
     this.Rdo_Item8WMMW.Text = "����ʽ���ּܣ�����Ŀ����";
     this.Rdo_Item8WMMW.UseVisualStyleBackColor = true;
     this.Rdo_Item8WMMW.CheckedChanged += new System.EventHandler(this.Rdo_Item8WMMW_CheckedChanged);
     //
     // Rdo_Item8FBSQ
     //
     this.Rdo_Item8FBSQ.AutoSize = true;
     this.Rdo_Item8FBSQ.Location = new System.Drawing.Point(13, 172);
     this.Rdo_Item8FBSQ.Name = "Rdo_Item8FBSQ";
     this.Rdo_Item8FBSQ.Size = new System.Drawing.Size(167, 16);
     this.Rdo_Item8FBSQ.TabIndex = 5;
     this.Rdo_Item8FBSQ.Text = "���ʽ���ּܱ���ȫ���ǽ";
     this.Rdo_Item8FBSQ.UseVisualStyleBackColor = true;
     this.Rdo_Item8FBSQ.CheckedChanged += new System.EventHandler(this.Rdo_Item8FBSQ_CheckedChanged);
     //
     // LXtabItem8
     //
     this.LXtabItem8.AttachedControl = this.tabControlPanel8;
     this.LXtabItem8.Name = "LXtabItem8";
     this.LXtabItem8.Text = "���������ϵ��";
     //
     // tabControlPanel12
     //
     this.tabControlPanel12.Controls.Add(this.Cb_Item3FS);
     this.tabControlPanel12.Controls.Add(this.Cb_Item3JJ);
     this.tabControlPanel12.Controls.Add(this.Lb_Item3FS);
     this.tabControlPanel12.Controls.Add(this.Lb_Item3LQJJJ);
     this.tabControlPanel12.Controls.Add(this.Grp_Item3);
     this.tabControlPanel12.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel12.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel12.Name = "tabControlPanel12";
     this.tabControlPanel12.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel12.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel12.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel12.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel12.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel12.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel12.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel12.Style.GradientAngle = 90;
     this.tabControlPanel12.TabIndex = 13;
     this.tabControlPanel12.TabItem = this.LXtabItem3;
     //
     // Cb_Item3FS
     //
     this.Cb_Item3FS.DisplayMember = "Text";
     this.Cb_Item3FS.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item3FS.FormattingEnabled = true;
     this.Cb_Item3FS.ItemHeight = 15;
     this.Cb_Item3FS.Items.AddRange(new object[] {
     this.comboItem11,
     this.comboItem12,
     this.comboItem13,
     this.comboItem14,
     this.comboItem134});
     this.Cb_Item3FS.Location = new System.Drawing.Point(116, 109);
     this.Cb_Item3FS.Name = "Cb_Item3FS";
     this.Cb_Item3FS.Size = new System.Drawing.Size(121, 21);
     this.Cb_Item3FS.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item3FS.TabIndex = 18;
     this.Cb_Item3FS.SelectedIndexChanged += new System.EventHandler(this.Cb_Item3FS_SelectedIndexChanged);
     //
     // comboItem11
     //
     this.comboItem11.Text = "�ۼ�����";
     //
     // comboItem12
     //
     this.comboItem12.Text = "��˨����";
     //
     // comboItem13
     //
     this.comboItem13.Text = "��������";
     //
     // comboItem14
     //
     this.comboItem14.Text = "����Ӳ��";
     //
     // comboItem134
     //
     this.comboItem134.Text = "������˨";
     //
     // Cb_Item3JJ
     //
     this.Cb_Item3JJ.DisplayMember = "Text";
     this.Cb_Item3JJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cb_Item3JJ.FormattingEnabled = true;
     this.Cb_Item3JJ.ItemHeight = 15;
     this.Cb_Item3JJ.Items.AddRange(new object[] {
     this.comboItem136,
     this.comboItem137});
     this.Cb_Item3JJ.Location = new System.Drawing.Point(116, 63);
     this.Cb_Item3JJ.Name = "Cb_Item3JJ";
     this.Cb_Item3JJ.Size = new System.Drawing.Size(121, 21);
     this.Cb_Item3JJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cb_Item3JJ.TabIndex = 17;
     //
     // comboItem136
     //
     this.comboItem136.Text = "��������";
     //
     // comboItem137
     //
     this.comboItem137.Text = "��������";
     //
     // Lb_Item3FS
     //
     this.Lb_Item3FS.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3FS.BackgroundStyle.Class = "";
     this.Lb_Item3FS.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3FS.Location = new System.Drawing.Point(25, 104);
     this.Lb_Item3FS.Name = "Lb_Item3FS";
     this.Lb_Item3FS.Size = new System.Drawing.Size(85, 26);
     this.Lb_Item3FS.TabIndex = 15;
     this.Lb_Item3FS.Text = "��ǽ����ʽ";
     //
     // Lb_Item3LQJJJ
     //
     this.Lb_Item3LQJJJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3LQJJJ.BackgroundStyle.Class = "";
     this.Lb_Item3LQJJJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3LQJJJ.Location = new System.Drawing.Point(25, 63);
     this.Lb_Item3LQJJJ.Name = "Lb_Item3LQJJJ";
     this.Lb_Item3LQJJJ.Size = new System.Drawing.Size(85, 26);
     this.Lb_Item3LQJJJ.TabIndex = 14;
     this.Lb_Item3LQJJJ.Text = "��ǽ�����";
     //
     // Grp_Item3
     //
     this.Grp_Item3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item3.Controls.Add(this.DbInput_Item3ZXL);
     this.Grp_Item3.Controls.Add(this.Grp_Item3FSKJLJ);
     this.Grp_Item3.Controls.Add(this.Lb_Item3ZXL);
     this.Grp_Item3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.Grp_Item3.Location = new System.Drawing.Point(1, 1);
     this.Grp_Item3.Name = "Grp_Item3";
     this.Grp_Item3.Size = new System.Drawing.Size(636, 338);
     this.Grp_Item3.TabIndex = 21;
     this.Grp_Item3.TabStop = false;
     this.Grp_Item3.Text = "��ǽ����������";
     //
     // DbInput_Item3ZXL
     //
     //
     //
     //
     this.DbInput_Item3ZXL.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Item3ZXL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Item3ZXL.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Item3ZXL.Increment = 0.1;
     this.DbInput_Item3ZXL.Location = new System.Drawing.Point(302, 284);
     this.DbInput_Item3ZXL.MaxValue = 3;
     this.DbInput_Item3ZXL.MinValue = 0;
     this.DbInput_Item3ZXL.Name = "DbInput_Item3ZXL";
     this.DbInput_Item3ZXL.ShowUpDown = true;
     this.DbInput_Item3ZXL.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Item3ZXL.TabIndex = 22;
     this.DbInput_Item3ZXL.Value = 3;
     this.DbInput_Item3ZXL.WatermarkColor = System.Drawing.SystemColors.ControlLightLight;
     //
     // Grp_Item3FSKJLJ
     //
     this.Grp_Item3FSKJLJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Item3FSKJLJ.Controls.Add(this.radioButton2);
     this.Grp_Item3FSKJLJ.Controls.Add(this.radioButton1);
     this.Grp_Item3FSKJLJ.Location = new System.Drawing.Point(20, 153);
     this.Grp_Item3FSKJLJ.Name = "Grp_Item3FSKJLJ";
     this.Grp_Item3FSKJLJ.Size = new System.Drawing.Size(310, 97);
     this.Grp_Item3FSKJLJ.TabIndex = 21;
     this.Grp_Item3FSKJLJ.TabStop = false;
     this.Grp_Item3FSKJLJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ����ѡ��˫�ۼ�";
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.radioButton2.Enabled = false;
     this.radioButton2.Location = new System.Drawing.Point(141, 45);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(59, 16);
     this.radioButton2.TabIndex = 24;
     this.radioButton2.Text = "˫�ۼ�";
     this.radioButton2.UseVisualStyleBackColor = false;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.radioButton1.Checked = true;
     this.radioButton1.Enabled = false;
     this.radioButton1.Location = new System.Drawing.Point(43, 42);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(59, 16);
     this.radioButton1.TabIndex = 24;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "���ۼ�";
     this.radioButton1.UseVisualStyleBackColor = false;
     //
     // Lb_Item3ZXL
     //
     this.Lb_Item3ZXL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     //
     //
     //
     this.Lb_Item3ZXL.BackgroundStyle.Class = "";
     this.Lb_Item3ZXL.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item3ZXL.Location = new System.Drawing.Point(20, 284);
     this.Lb_Item3ZXL.Name = "Lb_Item3ZXL";
     this.Lb_Item3ZXL.Size = new System.Drawing.Size(288, 26);
     this.Lb_Item3ZXL.TabIndex = 16;
     this.Lb_Item3ZXL.Text = "��ǽ��Լ�����ּ�ƽ������β�����������No(kN)";
     //
     // LXtabItem3
     //
     this.LXtabItem3.AttachedControl = this.tabControlPanel12;
     this.LXtabItem3.Name = "LXtabItem3";
     this.LXtabItem3.Text = "��ǽ������";
     //
     // tabControlPanel18
     //
     this.tabControlPanel18.Controls.Add(this.groupBox21);
     this.tabControlPanel18.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel18.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel18.Name = "tabControlPanel18";
     this.tabControlPanel18.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel18.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel18.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel18.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel18.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel18.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel18.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel18.Style.GradientAngle = 90;
     this.tabControlPanel18.TabIndex = 19;
     this.tabControlPanel18.TabItem = this.LX5tabItem2;
     this.tabControlPanel18.Text = "��ǽ��";
     //
     // groupBox21
     //
     this.groupBox21.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2HF);
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2RL);
     this.groupBox21.Controls.Add(this.Grp_Lx5Item2KJ);
     this.groupBox21.Controls.Add(this.Cbx_Lx5Item2LQJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2MJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2BJ);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2L0);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2SP);
     this.groupBox21.Controls.Add(this.DbInput_Lx5Item2SX);
     this.groupBox21.Controls.Add(this.labelX59);
     this.groupBox21.Controls.Add(this.labelX57);
     this.groupBox21.Controls.Add(this.labelX56);
     this.groupBox21.Controls.Add(this.labelX53);
     this.groupBox21.Controls.Add(this.labelX61);
     this.groupBox21.Controls.Add(this.labelX55);
     this.groupBox21.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox21.Location = new System.Drawing.Point(1, 1);
     this.groupBox21.Name = "groupBox21";
     this.groupBox21.Size = new System.Drawing.Size(636, 338);
     this.groupBox21.TabIndex = 4;
     this.groupBox21.TabStop = false;
     //
     // Grp_Lx5Item2HF
     //
     this.Grp_Lx5Item2HF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2HF.Controls.Add(this.labelX58);
     this.Grp_Lx5Item2HF.Controls.Add(this.DbInput_Lx5Item2DJ);
     this.Grp_Lx5Item2HF.Enabled = false;
     this.Grp_Lx5Item2HF.Location = new System.Drawing.Point(330, 121);
     this.Grp_Lx5Item2HF.Name = "Grp_Lx5Item2HF";
     this.Grp_Lx5Item2HF.Size = new System.Drawing.Size(307, 74);
     this.Grp_Lx5Item2HF.TabIndex = 99;
     this.Grp_Lx5Item2HF.TabStop = false;
     this.Grp_Lx5Item2HF.Text = "��ǽ����ʽѡ�񡰺������ӡ�ʱ";
     //
     // labelX58
     //
     //
     //
     //
     this.labelX58.BackgroundStyle.Class = "";
     this.labelX58.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX58.Location = new System.Drawing.Point(9, 34);
     this.labelX58.Name = "labelX58";
     this.labelX58.Size = new System.Drawing.Size(211, 20);
     this.labelX58.TabIndex = 13;
     this.labelX58.Text = "�ԽӺ���Ŀ�����ѹǿ�ȣ�N/mm2����";
     this.labelX58.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2DJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2DJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2DJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2DJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2DJ.Increment = 1;
     this.DbInput_Lx5Item2DJ.Location = new System.Drawing.Point(222, 33);
     this.DbInput_Lx5Item2DJ.MaxValue = 10000;
     this.DbInput_Lx5Item2DJ.MinValue = 0;
     this.DbInput_Lx5Item2DJ.Name = "DbInput_Lx5Item2DJ";
     this.DbInput_Lx5Item2DJ.ShowUpDown = true;
     this.DbInput_Lx5Item2DJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2DJ.TabIndex = 27;
     this.DbInput_Lx5Item2DJ.Value = 205;
     //
     // Grp_Lx5Item2RL
     //
     this.Grp_Lx5Item2RL.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2RL.Controls.Add(this.labelX60);
     this.Grp_Lx5Item2RL.Controls.Add(this.DbInput_Lx5Item2LJ);
     this.Grp_Lx5Item2RL.Enabled = false;
     this.Grp_Lx5Item2RL.Location = new System.Drawing.Point(333, 210);
     this.Grp_Lx5Item2RL.Name = "Grp_Lx5Item2RL";
     this.Grp_Lx5Item2RL.Size = new System.Drawing.Size(300, 74);
     this.Grp_Lx5Item2RL.TabIndex = 98;
     this.Grp_Lx5Item2RL.TabStop = false;
     this.Grp_Lx5Item2RL.Text = "��ǽ����ʽѡ������Ӳ�š�ʱ";
     //
     // labelX60
     //
     //
     //
     //
     this.labelX60.BackgroundStyle.Class = "";
     this.labelX60.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX60.Location = new System.Drawing.Point(7, 34);
     this.labelX60.Name = "labelX60";
     this.labelX60.Size = new System.Drawing.Size(187, 20);
     this.labelX60.TabIndex = 13;
     this.labelX60.Text = "���Ӹֽ�Ŀ���ǿ�ȣ�N/mm2����";
     this.labelX60.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2LJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2LJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2LJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2LJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2LJ.Increment = 1;
     this.DbInput_Lx5Item2LJ.Location = new System.Drawing.Point(197, 33);
     this.DbInput_Lx5Item2LJ.MaxValue = 10000;
     this.DbInput_Lx5Item2LJ.MinValue = 0;
     this.DbInput_Lx5Item2LJ.Name = "DbInput_Lx5Item2LJ";
     this.DbInput_Lx5Item2LJ.ShowUpDown = true;
     this.DbInput_Lx5Item2LJ.Size = new System.Drawing.Size(79, 21);
     this.DbInput_Lx5Item2LJ.TabIndex = 27;
     this.DbInput_Lx5Item2LJ.Value = 205;
     //
     // Grp_Lx5Item2KJ
     //
     this.Grp_Lx5Item2KJ.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Grp_Lx5Item2KJ.Controls.Add(this.Rdo_Lx5Item2S);
     this.Grp_Lx5Item2KJ.Controls.Add(this.Rdo_Lx5Item2D);
     this.Grp_Lx5Item2KJ.Controls.Add(this.labelX54);
     this.Grp_Lx5Item2KJ.Controls.Add(this.DbInput_Lx5Item2KJ);
     this.Grp_Lx5Item2KJ.Location = new System.Drawing.Point(328, 20);
     this.Grp_Lx5Item2KJ.Name = "Grp_Lx5Item2KJ";
     this.Grp_Lx5Item2KJ.Size = new System.Drawing.Size(304, 89);
     this.Grp_Lx5Item2KJ.TabIndex = 97;
     this.Grp_Lx5Item2KJ.TabStop = false;
     this.Grp_Lx5Item2KJ.Text = "��ǽ����ʽѡ�񡰿ۼ����ӡ�ʱ";
     //
     // Rdo_Lx5Item2S
     //
     this.Rdo_Lx5Item2S.AutoSize = true;
     this.Rdo_Lx5Item2S.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx5Item2S.Location = new System.Drawing.Point(122, 28);
     this.Rdo_Lx5Item2S.Name = "Rdo_Lx5Item2S";
     this.Rdo_Lx5Item2S.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx5Item2S.TabIndex = 24;
     this.Rdo_Lx5Item2S.Text = "˫�ۼ�";
     this.Rdo_Lx5Item2S.UseVisualStyleBackColor = false;
     //
     // Rdo_Lx5Item2D
     //
     this.Rdo_Lx5Item2D.AutoSize = true;
     this.Rdo_Lx5Item2D.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.Rdo_Lx5Item2D.Checked = true;
     this.Rdo_Lx5Item2D.Location = new System.Drawing.Point(16, 28);
     this.Rdo_Lx5Item2D.Name = "Rdo_Lx5Item2D";
     this.Rdo_Lx5Item2D.Size = new System.Drawing.Size(59, 16);
     this.Rdo_Lx5Item2D.TabIndex = 24;
     this.Rdo_Lx5Item2D.TabStop = true;
     this.Rdo_Lx5Item2D.Text = "���ۼ�";
     this.Rdo_Lx5Item2D.UseVisualStyleBackColor = false;
     //
     // labelX54
     //
     this.labelX54.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX54.BackgroundStyle.Class = "";
     this.labelX54.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX54.Location = new System.Drawing.Point(13, 53);
     this.labelX54.Name = "labelX54";
     this.labelX54.Size = new System.Drawing.Size(118, 20);
     this.labelX54.TabIndex = 88;
     this.labelX54.Text = "�ۼ��������ۼ�ϵ��";
     this.labelX54.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // DbInput_Lx5Item2KJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2KJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2KJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2KJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2KJ.Increment = 0.1;
     this.DbInput_Lx5Item2KJ.Location = new System.Drawing.Point(131, 52);
     this.DbInput_Lx5Item2KJ.MaxValue = 1;
     this.DbInput_Lx5Item2KJ.MinValue = 0;
     this.DbInput_Lx5Item2KJ.Name = "DbInput_Lx5Item2KJ";
     this.DbInput_Lx5Item2KJ.ShowUpDown = true;
     this.DbInput_Lx5Item2KJ.Size = new System.Drawing.Size(53, 21);
     this.DbInput_Lx5Item2KJ.TabIndex = 92;
     this.DbInput_Lx5Item2KJ.Value = 0.9;
     //
     // Cbx_Lx5Item2LQJ
     //
     this.Cbx_Lx5Item2LQJ.DisplayMember = "Text";
     this.Cbx_Lx5Item2LQJ.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.Cbx_Lx5Item2LQJ.FormattingEnabled = true;
     this.Cbx_Lx5Item2LQJ.ItemHeight = 15;
     this.Cbx_Lx5Item2LQJ.Items.AddRange(new object[] {
     this.comboItem209,
     this.comboItem210,
     this.comboItem211});
     this.Cbx_Lx5Item2LQJ.Location = new System.Drawing.Point(184, 248);
     this.Cbx_Lx5Item2LQJ.Name = "Cbx_Lx5Item2LQJ";
     this.Cbx_Lx5Item2LQJ.Size = new System.Drawing.Size(80, 21);
     this.Cbx_Lx5Item2LQJ.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.Cbx_Lx5Item2LQJ.TabIndex = 96;
     this.Cbx_Lx5Item2LQJ.SelectedIndexChanged += new System.EventHandler(this.Cbx_Lx5Item2LQJ_SelectedIndexChanged);
     //
     // comboItem209
     //
     this.comboItem209.Text = "�ۼ�����";
     //
     // comboItem210
     //
     this.comboItem210.Text = "��������";
     //
     // comboItem211
     //
     this.comboItem211.Text = "����Ӳ��";
     //
     // DbInput_Lx5Item2MJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2MJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2MJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2MJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2MJ.Increment = 1;
     this.DbInput_Lx5Item2MJ.Location = new System.Drawing.Point(184, 207);
     this.DbInput_Lx5Item2MJ.MinValue = 0;
     this.DbInput_Lx5Item2MJ.Name = "DbInput_Lx5Item2MJ";
     this.DbInput_Lx5Item2MJ.ShowUpDown = true;
     this.DbInput_Lx5Item2MJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2MJ.TabIndex = 94;
     this.DbInput_Lx5Item2MJ.Value = 489;
     //
     // DbInput_Lx5Item2BJ
     //
     //
     //
     //
     this.DbInput_Lx5Item2BJ.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2BJ.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2BJ.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2BJ.Increment = 1;
     this.DbInput_Lx5Item2BJ.Location = new System.Drawing.Point(184, 159);
     this.DbInput_Lx5Item2BJ.MinValue = 0;
     this.DbInput_Lx5Item2BJ.Name = "DbInput_Lx5Item2BJ";
     this.DbInput_Lx5Item2BJ.ShowUpDown = true;
     this.DbInput_Lx5Item2BJ.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2BJ.TabIndex = 94;
     this.DbInput_Lx5Item2BJ.Value = 15.8;
     //
     // DbInput_Lx5Item2L0
     //
     //
     //
     //
     this.DbInput_Lx5Item2L0.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2L0.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2L0.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2L0.Increment = 0.1;
     this.DbInput_Lx5Item2L0.Location = new System.Drawing.Point(184, 111);
     this.DbInput_Lx5Item2L0.MaxValue = 2000;
     this.DbInput_Lx5Item2L0.MinValue = 0;
     this.DbInput_Lx5Item2L0.Name = "DbInput_Lx5Item2L0";
     this.DbInput_Lx5Item2L0.ShowUpDown = true;
     this.DbInput_Lx5Item2L0.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2L0.TabIndex = 91;
     this.DbInput_Lx5Item2L0.Value = 600;
     //
     // DbInput_Lx5Item2SP
     //
     //
     //
     //
     this.DbInput_Lx5Item2SP.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2SP.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2SP.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2SP.Increment = 0.1;
     this.DbInput_Lx5Item2SP.Location = new System.Drawing.Point(184, 61);
     this.DbInput_Lx5Item2SP.MaxValue = 8;
     this.DbInput_Lx5Item2SP.MinValue = 0;
     this.DbInput_Lx5Item2SP.Name = "DbInput_Lx5Item2SP";
     this.DbInput_Lx5Item2SP.ShowUpDown = true;
     this.DbInput_Lx5Item2SP.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2SP.TabIndex = 93;
     this.DbInput_Lx5Item2SP.Value = 1.8;
     //
     // DbInput_Lx5Item2SX
     //
     //
     //
     //
     this.DbInput_Lx5Item2SX.BackgroundStyle.Class = "DateTimeInputBackground";
     this.DbInput_Lx5Item2SX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.DbInput_Lx5Item2SX.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.DbInput_Lx5Item2SX.Increment = 0.1;
     this.DbInput_Lx5Item2SX.Location = new System.Drawing.Point(184, 15);
     this.DbInput_Lx5Item2SX.MaxValue = 8;
     this.DbInput_Lx5Item2SX.MinValue = 0;
     this.DbInput_Lx5Item2SX.Name = "DbInput_Lx5Item2SX";
     this.DbInput_Lx5Item2SX.ShowUpDown = true;
     this.DbInput_Lx5Item2SX.Size = new System.Drawing.Size(80, 21);
     this.DbInput_Lx5Item2SX.TabIndex = 93;
     this.DbInput_Lx5Item2SX.Value = 1.8;
     //
     // labelX59
     //
     this.labelX59.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX59.BackgroundStyle.Class = "";
     this.labelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX59.Location = new System.Drawing.Point(23, 248);
     this.labelX59.Name = "labelX59";
     this.labelX59.Size = new System.Drawing.Size(158, 20);
     this.labelX59.TabIndex = 89;
     this.labelX59.Text = "��ǽ�����ӷ�ʽ";
     this.labelX59.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX57
     //
     this.labelX57.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX57.BackgroundStyle.Class = "";
     this.labelX57.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX57.Location = new System.Drawing.Point(25, 207);
     this.labelX57.Name = "labelX57";
     this.labelX57.Size = new System.Drawing.Size(156, 20);
     this.labelX57.TabIndex = 89;
     this.labelX57.Text = "��ǽ���������Ac(mm2)";
     this.labelX57.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX56
     //
     this.labelX56.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX56.BackgroundStyle.Class = "";
     this.labelX56.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX56.Location = new System.Drawing.Point(25, 159);
     this.labelX56.Name = "labelX56";
     this.labelX56.Size = new System.Drawing.Size(156, 20);
     this.labelX56.TabIndex = 89;
     this.labelX56.Text = "��ǽ�������ת�뾶i(mm)";
     this.labelX56.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX53
     //
     this.labelX53.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX53.BackgroundStyle.Class = "";
     this.labelX53.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX53.Location = new System.Drawing.Point(25, 111);
     this.labelX53.Name = "labelX53";
     this.labelX53.Size = new System.Drawing.Size(156, 20);
     this.labelX53.TabIndex = 89;
     this.labelX53.Text = "��ǽ�����㳤��l0 (mm)";
     this.labelX53.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX61
     //
     this.labelX61.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX61.BackgroundStyle.Class = "";
     this.labelX61.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX61.Location = new System.Drawing.Point(25, 61);
     this.labelX61.Name = "labelX61";
     this.labelX61.Size = new System.Drawing.Size(156, 20);
     this.labelX61.TabIndex = 90;
     this.labelX61.Text = "��ǽ��ˮƽ���H1(m)";
     this.labelX61.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // labelX55
     //
     this.labelX55.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.labelX55.BackgroundStyle.Class = "";
     this.labelX55.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX55.Location = new System.Drawing.Point(25, 15);
     this.labelX55.Name = "labelX55";
     this.labelX55.Size = new System.Drawing.Size(156, 20);
     this.labelX55.TabIndex = 90;
     this.labelX55.Text = "��ǽ��������H1(m)";
     this.labelX55.TextAlignment = System.Drawing.StringAlignment.Far;
     //
     // LX5tabItem2
     //
     this.LX5tabItem2.AttachedControl = this.tabControlPanel18;
     this.LX5tabItem2.Name = "LX5tabItem2";
     this.LX5tabItem2.Text = "5��ǽ��";
     this.LX5tabItem2.Visible = false;
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.groupBox5);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 69);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(638, 340);
     this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
     this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
     this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.tabControlPanel3.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
     this.tabControlPanel3.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
                 | DevComponents.DotNetBar.eBorderSide.Bottom)));
     this.tabControlPanel3.Style.GradientAngle = 90;
     this.tabControlPanel3.TabIndex = 3;
     //
     // groupBox5
     //
     this.groupBox5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox5.Controls.Add(this.groupBox6);
     this.groupBox5.Controls.Add(this.doubleInput8);
     this.groupBox5.Controls.Add(this.comboBoxEx3);
     this.groupBox5.Controls.Add(this.comboBoxEx4);
     this.groupBox5.Controls.Add(this.labelX14);
     this.groupBox5.Controls.Add(this.labelX13);
     this.groupBox5.Controls.Add(this.labelX16);
     this.groupBox5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox5.Location = new System.Drawing.Point(1, 1);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(636, 338);
     this.groupBox5.TabIndex = 0;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "��ǽ����������";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.checkBoxX4);
     this.groupBox6.Controls.Add(this.checkBoxX3);
     this.groupBox6.Controls.Add(this.labelX15);
     this.groupBox6.Location = new System.Drawing.Point(29, 122);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(598, 97);
     this.groupBox6.TabIndex = 6;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "��ѡ�ˡ��ۼ����ӡ�";
     //
     // checkBoxX4
     //
     //
     //
     //
     this.checkBoxX4.BackgroundStyle.Class = "";
     this.checkBoxX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX4.Location = new System.Drawing.Point(300, 31);
     this.checkBoxX4.Name = "checkBoxX4";
     this.checkBoxX4.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX4.TabIndex = 2;
     this.checkBoxX4.Text = "˫�ۼ�";
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.Class = "";
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Location = new System.Drawing.Point(183, 31);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 1;
     this.checkBoxX3.Text = "���ۼ�";
     //
     // labelX15
     //
     //
     //
     //
     this.labelX15.BackgroundStyle.Class = "";
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.Location = new System.Drawing.Point(43, 26);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(113, 34);
     this.labelX15.TabIndex = 0;
     this.labelX15.Text = "��ѡ��˫�ۼ�";
     //
     // doubleInput8
     //
     //
     //
     //
     this.doubleInput8.BackgroundStyle.Class = "DateTimeInputBackground";
     this.doubleInput8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.doubleInput8.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.doubleInput8.Increment = 1;
     this.doubleInput8.Location = new System.Drawing.Point(350, 230);
     this.doubleInput8.Name = "doubleInput8";
     this.doubleInput8.ShowUpDown = true;
     this.doubleInput8.Size = new System.Drawing.Size(85, 21);
     this.doubleInput8.TabIndex = 5;
     this.doubleInput8.Value = 3;
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Items.AddRange(new object[] {
     this.comboItem29,
     this.comboItem30,
     this.comboItem31,
     this.comboItem32,
     this.comboItem33});
     this.comboBoxEx3.Location = new System.Drawing.Point(126, 84);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(121, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 4;
     //
     // comboItem29
     //
     this.comboItem29.Text = "�ۼ�����";
     //
     // comboItem30
     //
     this.comboItem30.Text = "��˨����";
     //
     // comboItem31
     //
     this.comboItem31.Text = "��������";
     //
     // comboItem32
     //
     this.comboItem32.Text = "����Ӳ��";
     //
     // comboItem33
     //
     this.comboItem33.Text = "������˨";
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Items.AddRange(new object[] {
     this.comboItem26,
     this.comboItem27,
     this.comboItem28});
     this.comboBoxEx4.Location = new System.Drawing.Point(126, 38);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(121, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 3;
     //
     // comboItem26
     //
     this.comboItem26.Text = "��������";
     //
     // comboItem27
     //
     this.comboItem27.Text = "��������";
     //
     // comboItem28
     //
     this.comboItem28.Text = "��������";
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(35, 230);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(304, 26);
     this.labelX14.TabIndex = 2;
     this.labelX14.Text = "��ǽ��Լ�����ּ�ƽ������β�����������No(kN)";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(35, 79);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(119, 26);
     this.labelX13.TabIndex = 1;
     this.labelX13.Text = "��ǽ����ʽ";
     //
     // labelX16
     //
     //
     //
     //
     this.labelX16.BackgroundStyle.Class = "";
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Location = new System.Drawing.Point(35, 38);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(119, 26);
     this.labelX16.TabIndex = 0;
     this.labelX16.Text = "��ǽ�����";
     //
     // FrmScaffoldPowerCalculate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize = new System.Drawing.Size(638, 482);
     this.Controls.Add(this.panelEx3);
     this.Controls.Add(this.panelEx2);
     this.Controls.Add(this.panelEx1);
     this.DoubleBuffered = true;
     this.Name = "FrmScaffoldPowerCalculate";
     this.Text = "���ּܼ���-��ѧ����";
     //this.Load += new System.EventHandler(this.FrmScaffoldPowerCalculate_Load);
     this.panelEx1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx2.PerformLayout();
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TabScaffloldPower)).EndInit();
     this.TabScaffloldPower.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.Grp_Item1.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1SKJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DKJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LQJL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1DSGD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1XHGWSCD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGHJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item1LGZJ)).EndInit();
     this.tabControlPanel13.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1S)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1D)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1GD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item1KJ)).EndInit();
     this.groupBox10.ResumeLayout(false);
     this.groupBox10.PerformLayout();
     this.tabControlPanel6.ResumeLayout(false);
     this.Grp_Item6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6Uz)).EndInit();
     this.Grp_Item6SF.ResumeLayout(false);
     this.groupBox9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item6SelfJBFY)).EndInit();
     this.tabControlPanel5.ResumeLayout(false);
     this.Grp_Item5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item5HZBZ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5PSCS)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item5SGCS)).EndInit();
     this.tabControlPanel4.ResumeLayout(false);
     this.groupBox11.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Item4PSCS)).EndInit();
     this.tabControlPanel2.ResumeLayout(false);
     this.Grp_Item2.ResumeLayout(false);
     this.Grp_Item2.PerformLayout();
     this.Grp_Item2DHG.ResumeLayout(false);
     this.Grp_Item2XHG.ResumeLayout(false);
     this.Grp_Item2XHG.PerformLayout();
     this.tabControlPanel9.ResumeLayout(false);
     this.Grp_Item9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item9DBK)).EndInit();
     this.tabControlPanel17.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1NO)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1LDX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx5Item1SPX)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2GD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item1BJ)).EndInit();
     this.tabControlPanel16.ResumeLayout(false);
     this.groupBox19.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item4TZXS)).EndInit();
     this.groupBox20.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBK)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DBC)).EndInit();
     this.groupBox7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Lx4Item4DFMJ)).EndInit();
     this.groupBox18.ResumeLayout(false);
     this.groupBox18.PerformLayout();
     this.tabControlPanel15.ResumeLayout(false);
     this.groupBox17.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3SG)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3CS)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox14.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3HL)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item3AQW)).EndInit();
     this.groupBox16.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3SPJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IntInput_Lx4Item3JSB)).EndInit();
     this.tabControlPanel14.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2SX)).EndInit();
     this.Grp_Lx4Item2HF.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2DJ)).EndInit();
     this.Grp_Lx4Item2KJ.ResumeLayout(false);
     this.Grp_Lx4Item2KJ.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx4Item2CD)).EndInit();
     this.tabControlPanel11.ResumeLayout(false);
     this.Grp_Item11.ResumeLayout(false);
     this.Grp_Item11.PerformLayout();
     this.tabControlPanel10.ResumeLayout(false);
     this.Grp_Item10.ResumeLayout(false);
     this.Grp_Item10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10MGD)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item10XTD)).EndInit();
     this.tabControlPanel8.ResumeLayout(false);
     this.Grp_Item8.ResumeLayout(false);
     this.Grp_Item8FBS.ResumeLayout(false);
     this.Grp_Item8FBS.PerformLayout();
     this.Grp_Item8ADFMJ.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbIput_Item8DFMJ)).EndInit();
     this.groupBox15.ResumeLayout(false);
     this.groupBox15.PerformLayout();
     this.tabControlPanel12.ResumeLayout(false);
     this.Grp_Item3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Item3ZXL)).EndInit();
     this.Grp_Item3FSKJLJ.ResumeLayout(false);
     this.Grp_Item3FSKJLJ.PerformLayout();
     this.tabControlPanel18.ResumeLayout(false);
     this.groupBox21.ResumeLayout(false);
     this.Grp_Lx5Item2HF.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2DJ)).EndInit();
     this.Grp_Lx5Item2RL.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2LJ)).EndInit();
     this.Grp_Lx5Item2KJ.ResumeLayout(false);
     this.Grp_Lx5Item2KJ.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2KJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2MJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2BJ)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2L0)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SP)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DbInput_Lx5Item2SX)).EndInit();
     this.tabControlPanel3.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.lvhanghoa = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cmb_QG = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.txtDienThoai = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.panel5 = new System.Windows.Forms.Panel();
     this.buttonX6 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX4 = new DevComponents.DotNetBar.ButtonX();
     this.buttonX5 = new DevComponents.DotNetBar.ButtonX();
     this.txttennsx = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel1.SuspendLayout();
     this.groupPanel2.SuspendLayout();
     this.panel5.SuspendLayout();
     this.SuspendLayout();
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel1.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel1.Controls.Add(this.lvhanghoa);
     this.groupPanel1.Location = new System.Drawing.Point(34, 214);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(555, 217);
     //
     //
     //
     this.groupPanel1.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel1.Style.BackColorGradientAngle = 90;
     this.groupPanel1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderBottomWidth = 1;
     this.groupPanel1.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderLeftWidth = 1;
     this.groupPanel1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderRightWidth = 1;
     this.groupPanel1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel1.Style.BorderTopWidth = 1;
     this.groupPanel1.Style.CornerDiameter = 4;
     this.groupPanel1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel1.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel1.TabIndex = 75;
     this.groupPanel1.Text = "DANH SÁCH NHÀ SẢN XUẤT";
     //
     // lvhanghoa
     //
     //
     //
     //
     this.lvhanghoa.Border.Class = "ListViewBorder";
     this.lvhanghoa.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader7,
     this.columnHeader2,
     this.columnHeader1,
     this.columnHeader3,
     this.columnHeader4});
     this.lvhanghoa.FullRowSelect = true;
     this.lvhanghoa.GridLines = true;
     this.lvhanghoa.Location = new System.Drawing.Point(7, 3);
     this.lvhanghoa.Name = "lvhanghoa";
     this.lvhanghoa.Size = new System.Drawing.Size(531, 177);
     this.lvhanghoa.TabIndex = 71;
     this.lvhanghoa.UseCompatibleStateImageBehavior = false;
     this.lvhanghoa.View = System.Windows.Forms.View.Details;
     this.lvhanghoa.SelectedIndexChanged += new System.EventHandler(this.lvhanghoa_SelectedIndexChanged);
     //
     // columnHeader7
     //
     this.columnHeader7.Text = "STT";
     this.columnHeader7.Width = 46;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Tên NSX";
     this.columnHeader2.Width = 190;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "MÃ QG";
     this.columnHeader1.Width = 106;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Điện Thoại";
     this.columnHeader3.Width = 111;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "masx";
     this.columnHeader4.Width = 0;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = System.Windows.Forms.AnchorStyles.Top;
     this.groupPanel2.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
     this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.groupPanel2.Controls.Add(this.cmb_QG);
     this.groupPanel2.Controls.Add(this.txtDienThoai);
     this.groupPanel2.Controls.Add(this.labelX2);
     this.groupPanel2.Controls.Add(this.labelX1);
     this.groupPanel2.Controls.Add(this.panel5);
     this.groupPanel2.Controls.Add(this.txttennsx);
     this.groupPanel2.Controls.Add(this.labelX26);
     this.groupPanel2.Location = new System.Drawing.Point(34, 41);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(555, 171);
     //
     //
     //
     this.groupPanel2.Style.BackColor = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.groupPanel2.Style.BackColorGradientAngle = 90;
     this.groupPanel2.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderBottomWidth = 1;
     this.groupPanel2.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.groupPanel2.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderLeftWidth = 1;
     this.groupPanel2.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderRightWidth = 1;
     this.groupPanel2.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.groupPanel2.Style.BorderTopWidth = 1;
     this.groupPanel2.Style.CornerDiameter = 4;
     this.groupPanel2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.groupPanel2.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.groupPanel2.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.groupPanel2.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "THÔNG TIN NHÀ SẢN XUẤT";
     //
     // cmb_QG
     //
     this.cmb_QG.DisplayMember = "Text";
     this.cmb_QG.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_QG.FocusHighlightEnabled = true;
     this.cmb_QG.FormattingEnabled = true;
     this.cmb_QG.ItemHeight = 18;
     this.cmb_QG.Items.AddRange(new object[] {
     this.comboItem3,
     this.comboItem4});
     this.cmb_QG.Location = new System.Drawing.Point(106, 51);
     this.cmb_QG.Name = "cmb_QG";
     this.cmb_QG.Size = new System.Drawing.Size(193, 24);
     this.cmb_QG.TabIndex = 1;
     //
     // comboItem3
     //
     this.comboItem3.Text = "Nhập hàng";
     //
     // comboItem4
     //
     this.comboItem4.Text = "Trả hàng";
     //
     // txtDienThoai
     //
     //
     //
     //
     this.txtDienThoai.Border.Class = "TextBoxBorder";
     this.txtDienThoai.FocusHighlightEnabled = true;
     this.txtDienThoai.Location = new System.Drawing.Point(106, 83);
     this.txtDienThoai.Name = "txtDienThoai";
     this.txtDienThoai.Size = new System.Drawing.Size(193, 24);
     this.txtDienThoai.TabIndex = 2;
     //
     // labelX2
     //
     this.labelX2.Location = new System.Drawing.Point(21, 79);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(79, 25);
     this.labelX2.TabIndex = 74;
     this.labelX2.Text = "Điện thoại:";
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(21, 48);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(70, 25);
     this.labelX1.TabIndex = 72;
     this.labelX1.Text = "Quốc gia:";
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.SteelBlue;
     this.panel5.Controls.Add(this.buttonX6);
     this.panel5.Controls.Add(this.buttonX4);
     this.panel5.Controls.Add(this.buttonX5);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(0, 116);
     this.panel5.Margin = new System.Windows.Forms.Padding(0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(549, 30);
     this.panel5.TabIndex = 3;
     //
     // buttonX6
     //
     this.buttonX6.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX6.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX6.Location = new System.Drawing.Point(223, 2);
     this.buttonX6.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX6.Name = "buttonX6";
     this.buttonX6.Size = new System.Drawing.Size(70, 27);
     this.buttonX6.TabIndex = 1;
     this.buttonX6.Text = "Sửa";
     this.buttonX6.Click += new System.EventHandler(this.buttonX6_Click);
     //
     // buttonX4
     //
     this.buttonX4.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX4.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX4.Location = new System.Drawing.Point(305, 2);
     this.buttonX4.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX4.Name = "buttonX4";
     this.buttonX4.Size = new System.Drawing.Size(70, 27);
     this.buttonX4.TabIndex = 2;
     this.buttonX4.Text = "Xóa";
     this.buttonX4.Click += new System.EventHandler(this.buttonX4_Click);
     //
     // buttonX5
     //
     this.buttonX5.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX5.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX5.Location = new System.Drawing.Point(140, 2);
     this.buttonX5.Margin = new System.Windows.Forms.Padding(0);
     this.buttonX5.Name = "buttonX5";
     this.buttonX5.Size = new System.Drawing.Size(70, 27);
     this.buttonX5.TabIndex = 0;
     this.buttonX5.Text = "Thêm";
     this.buttonX5.Click += new System.EventHandler(this.buttonX5_Click);
     //
     // txttennsx
     //
     //
     //
     //
     this.txttennsx.Border.Class = "TextBoxBorder";
     this.txttennsx.FocusHighlightEnabled = true;
     this.txttennsx.Location = new System.Drawing.Point(106, 16);
     this.txttennsx.Name = "txttennsx";
     this.txttennsx.Size = new System.Drawing.Size(193, 24);
     this.txttennsx.TabIndex = 0;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(21, 12);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(70, 25);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tên NSX:";
     //
     // frmNSX
     //
     this.ClientSize = new System.Drawing.Size(627, 450);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.groupPanel2);
     this.Name = "frmNSX";
     this.Text = "Nhà sản xuất";
     this.Load += new System.EventHandler(this.frmNSX_Load);
     this.Controls.SetChildIndex(this.groupPanel2, 0);
     this.Controls.SetChildIndex(this.groupPanel1, 0);
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel2.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #58
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain));
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.mdiClient1 = new System.Windows.Forms.MdiClient();
     this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
     this.tabStrip1 = new DevComponents.DotNetBar.TabStrip();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.labelStatus = new DevComponents.DotNetBar.LabelItem();
     this.progressBarItem1 = new DevComponents.DotNetBar.ProgressBarItem();
     this.itemContainer13 = new DevComponents.DotNetBar.ItemContainer();
     this.labelPosition = new DevComponents.DotNetBar.LabelItem();
     this.mainRibbonControl = new DevComponents.DotNetBar.RibbonControl();
     this.contextMenuBar = new DevComponents.DotNetBar.ContextMenuBar();
     this.bEditPopup = new DevComponents.DotNetBar.ButtonItem();
     this.bCut = new DevComponents.DotNetBar.ButtonItem();
     this.bCopy = new DevComponents.DotNetBar.ButtonItem();
     this.bPaste = new DevComponents.DotNetBar.ButtonItem();
     this.bSelectAll = new DevComponents.DotNetBar.ButtonItem();
     this.switchButtonItem1 = new DevComponents.DotNetBar.SwitchButtonItem();
     this.RibbonStateCommand = new DevComponents.DotNetBar.Command(this.components);
     this.buttonFile = new DevComponents.DotNetBar.Office2007StartButton();
     this.superTabControl1 = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel1 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.recentPlacesItemsPanel = new DevComponents.DotNetBar.ItemPanel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.recentDocsItemPane = new DevComponents.DotNetBar.ItemPanel();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem1 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel1 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem67 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandNew = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem68 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem69 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem70 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem71 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem72 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem2 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel4 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.itemPanel2 = new DevComponents.DotNetBar.ItemPanel();
     this.buttonItem77 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandGoToUrl = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem73 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem74 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem75 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem76 = new DevComponents.DotNetBar.ButtonItem();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.superTabItem4 = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanel3 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.integerInput1 = new DevComponents.Editors.IntegerInput();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.superTabItem3 = new DevComponents.DotNetBar.SuperTabItem();
     this.buttonItem61 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSave = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem63 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandOpen = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem64 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem65 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem66 = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandExit = new DevComponents.DotNetBar.Command(this.components);
     this.menuFileContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileTwoColumnContainer = new DevComponents.DotNetBar.ItemContainer();
     this.menuFileItems = new DevComponents.DotNetBar.ItemContainer();
     this.buttonItem20 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem21 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonFileSaveAs = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandSaveAs = new DevComponents.DotNetBar.Command(this.components);
     this.itemContainer12 = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem1 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem56 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem57 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem58 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem59 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem23 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem24 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem25 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileMRU = new DevComponents.DotNetBar.ItemContainer();
     this.labelItem8 = new DevComponents.DotNetBar.LabelItem();
     this.buttonItem26 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem27 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem28 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem29 = new DevComponents.DotNetBar.ButtonItem();
     this.menuFileBottomContainer = new DevComponents.DotNetBar.ItemContainer();
     this.buttonOptions = new DevComponents.DotNetBar.ButtonItem();
     this.buttonExit = new DevComponents.DotNetBar.ButtonItem();
     this.buttonNew = new DevComponents.DotNetBar.ButtonItem();
     this.buttonSave = new DevComponents.DotNetBar.ButtonItem();
     this.buttonUndo = new DevComponents.DotNetBar.ButtonItem();
     this.qatCustomizeItem1 = new DevComponents.DotNetBar.QatCustomizeItem();
     this.ribbonTabItemGroup1 = new DevComponents.DotNetBar.RibbonTabItemGroup();
     this.buttonStyleMetro = new DevComponents.DotNetBar.ButtonItem();
     this.AppCommandTheme = new DevComponents.DotNetBar.Command(this.components);
     this.buttonItem47 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem48 = new DevComponents.DotNetBar.ButtonItem();
     this.buttonItem49 = new DevComponents.DotNetBar.ButtonItem();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.comboItem4 = new DevComponents.Editors.ComboItem();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.comboItem6 = new DevComponents.Editors.ComboItem();
     this.comboItem7 = new DevComponents.Editors.ComboItem();
     this.comboItem8 = new DevComponents.Editors.ComboItem();
     this.comboItem9 = new DevComponents.Editors.ComboItem();
     this.superTooltip1 = new DevComponents.DotNetBar.SuperTooltip();
     this.progressBarTimer = new System.Windows.Forms.Timer(this.components);
     this.styleManager1 = new DevComponents.DotNetBar.StyleManager(this.components);
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).BeginInit();
     this.superTabControl1.SuspendLayout();
     this.superTabControlPanel1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     this.panelEx1.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.superTabControlPanel4.SuspendLayout();
     this.superTabControlPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).BeginInit();
     this.SuspendLayout();
     //
     // openFileDialog1
     //
     this.openFileDialog1.DefaultExt = "*.rtf";
     this.openFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
     this.openFileDialog1.FilterIndex = 2;
     this.openFileDialog1.Title = "Open File";
     //
     // mdiClient1
     //
     this.mdiClient1.BackColor = System.Drawing.Color.White;
     this.mdiClient1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.mdiClient1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mdiClient1.Location = new System.Drawing.Point(5, 178);
     this.mdiClient1.Name = "mdiClient1";
     this.mdiClient1.Size = new System.Drawing.Size(766, 301);
     this.mdiClient1.TabIndex = 5;
     //
     // saveFileDialog1
     //
     this.saveFileDialog1.DefaultExt = "*.rtf";
     this.saveFileDialog1.FileName = "doc1";
     this.saveFileDialog1.Filter = "Text Files (*.txt)|*.txt|RTF Files (*.rtf)|*.rtf|All Files(*.*)|*.*";
     this.saveFileDialog1.FilterIndex = 2;
     this.saveFileDialog1.Title = "Save File";
     //
     // tabStrip1
     //
     this.tabStrip1.AutoSelectAttachedControl = true;
     this.tabStrip1.CanReorderTabs = true;
     this.tabStrip1.CloseButtonOnTabsVisible = true;
     this.tabStrip1.CloseButtonVisible = false;
     this.tabStrip1.Dock = System.Windows.Forms.DockStyle.Top;
     this.tabStrip1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.ForeColor = System.Drawing.Color.Black;
     this.tabStrip1.Location = new System.Drawing.Point(5, 152);
     this.tabStrip1.MdiForm = this;
     this.tabStrip1.MdiTabbedDocuments = true;
     this.tabStrip1.Name = "tabStrip1";
     this.tabStrip1.SelectedTab = null;
     this.tabStrip1.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tabStrip1.Size = new System.Drawing.Size(766, 26);
     this.tabStrip1.Style = DevComponents.DotNetBar.eTabStripStyle.Metro;
     this.tabStrip1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Top;
     this.tabStrip1.TabIndex = 6;
     this.tabStrip1.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
     this.tabStrip1.Text = "tabStrip1";
     //
     // bar1
     //
     this.bar1.AccessibleDescription = "DotNetBar Bar (bar1)";
     this.bar1.AccessibleName = "DotNetBar Bar";
     this.bar1.AccessibleRole = System.Windows.Forms.AccessibleRole.StatusBar;
     this.bar1.AntiAlias = true;
     this.bar1.BarType = DevComponents.DotNetBar.eBarType.StatusBar;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.bar1.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bar1.GrabHandleStyle = DevComponents.DotNetBar.eGrabHandleStyle.ResizeHandle;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelStatus,
     this.progressBarItem1,
     this.itemContainer13});
     this.bar1.ItemSpacing = 2;
     this.bar1.Location = new System.Drawing.Point(5, 479);
     this.bar1.Name = "bar1";
     this.bar1.PaddingBottom = 0;
     this.bar1.PaddingTop = 0;
     this.bar1.Size = new System.Drawing.Size(766, 19);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 7;
     this.bar1.TabStop = false;
     this.bar1.Text = "barStatus";
     //
     // labelStatus
     //
     this.labelStatus.Name = "labelStatus";
     this.labelStatus.PaddingLeft = 2;
     this.labelStatus.PaddingRight = 2;
     this.labelStatus.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelStatus.Stretch = true;
     //
     // progressBarItem1
     //
     //
     //
     //
     this.progressBarItem1.BackStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarItem1.ChunkGradientAngle = 0F;
     this.progressBarItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
     this.progressBarItem1.Name = "progressBarItem1";
     this.progressBarItem1.RecentlyUsed = false;
     //
     // itemContainer13
     //
     //
     //
     //
     this.itemContainer13.BackgroundStyle.Class = "Office2007StatusBarBackground2";
     this.itemContainer13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer13.Name = "itemContainer13";
     this.itemContainer13.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelPosition});
     //
     //
     //
     this.itemContainer13.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelPosition
     //
     this.labelPosition.Name = "labelPosition";
     this.labelPosition.PaddingLeft = 2;
     this.labelPosition.PaddingRight = 2;
     this.labelPosition.SingleLineColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.labelPosition.Stretch = true;
     this.labelPosition.Text = "����˹̹�Ƽ����޹�˾ ��Ȩ����";
     this.labelPosition.Width = 180;
     //
     // mainRibbonControl
     //
     this.mainRibbonControl.BackColor = System.Drawing.SystemColors.Control;
     //
     //
     //
     this.mainRibbonControl.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.mainRibbonControl.CaptionVisible = true;
     this.mainRibbonControl.Dock = System.Windows.Forms.DockStyle.Top;
     this.mainRibbonControl.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.ForeColor = System.Drawing.Color.Black;
     this.mainRibbonControl.GlobalContextMenuBar = this.contextMenuBar;
     this.mainRibbonControl.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.switchButtonItem1});
     this.mainRibbonControl.KeyTipsFont = new System.Drawing.Font("Tahoma", 6.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.Location = new System.Drawing.Point(5, 1);
     this.mainRibbonControl.MdiSystemItemVisible = false;
     this.mainRibbonControl.Name = "mainRibbonControl";
     this.mainRibbonControl.Padding = new System.Windows.Forms.Padding(0, 0, 0, 2);
     this.mainRibbonControl.QuickToolbarItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonFile,
     this.buttonNew,
     this.buttonSave,
     this.buttonUndo,
     this.qatCustomizeItem1});
     this.mainRibbonControl.RibbonStripFont = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mainRibbonControl.Size = new System.Drawing.Size(766, 151);
     this.mainRibbonControl.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.mainRibbonControl.SystemText.MaximizeRibbonText = "&Maximize the Ribbon";
     this.mainRibbonControl.SystemText.MinimizeRibbonText = "Mi&nimize the Ribbon";
     this.mainRibbonControl.SystemText.QatAddItemText = "&Add to Quick Access Toolbar";
     this.mainRibbonControl.SystemText.QatCustomizeMenuLabel = "<b>Customize Quick Access Toolbar</b>";
     this.mainRibbonControl.SystemText.QatCustomizeText = "&Customize Quick Access Toolbar...";
     this.mainRibbonControl.SystemText.QatDialogAddButton = "&Add >>";
     this.mainRibbonControl.SystemText.QatDialogCancelButton = "Cancel";
     this.mainRibbonControl.SystemText.QatDialogCaption = "Customize Quick Access Toolbar";
     this.mainRibbonControl.SystemText.QatDialogCategoriesLabel = "&Choose commands from:";
     this.mainRibbonControl.SystemText.QatDialogOkButton = "OK";
     this.mainRibbonControl.SystemText.QatDialogPlacementCheckbox = "&Place Quick Access Toolbar below the Ribbon";
     this.mainRibbonControl.SystemText.QatDialogRemoveButton = "&Remove";
     this.mainRibbonControl.SystemText.QatPlaceAboveRibbonText = "&Place Quick Access Toolbar above the Ribbon";
     this.mainRibbonControl.SystemText.QatPlaceBelowRibbonText = "&Place Quick Access Toolbar below the Ribbon";
     this.mainRibbonControl.SystemText.QatRemoveItemText = "&Remove from Quick Access Toolbar";
     this.mainRibbonControl.TabGroupHeight = 14;
     this.mainRibbonControl.TabGroups.AddRange(new DevComponents.DotNetBar.RibbonTabItemGroup[] {
     this.ribbonTabItemGroup1});
     this.mainRibbonControl.TabGroupsVisible = true;
     this.mainRibbonControl.TabIndex = 8;
     this.mainRibbonControl.BeforeRibbonPanelPopupClose += new DevComponents.DotNetBar.RibbonPopupCloseEventHandler(this.ribbonControl1_BeforeRibbonPanelPopupClose);
     //
     // contextMenuBar
     //
     this.contextMenuBar.AntiAlias = true;
     this.contextMenuBar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contextMenuBar.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.bEditPopup});
     this.contextMenuBar.Location = new System.Drawing.Point(352, 309);
     this.contextMenuBar.Name = "contextMenuBar";
     this.contextMenuBar.Size = new System.Drawing.Size(150, 25);
     this.contextMenuBar.Stretch = true;
     this.contextMenuBar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.contextMenuBar.TabIndex = 13;
     this.contextMenuBar.TabStop = false;
     //
     // bEditPopup
     //
     this.bEditPopup.AutoExpandOnClick = true;
     this.bEditPopup.GlobalName = "bEditPopup";
     this.bEditPopup.Name = "bEditPopup";
     this.bEditPopup.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bEditPopup.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.bCut,
     this.bCopy,
     this.bPaste,
     this.bSelectAll});
     this.bEditPopup.Text = "bEditPopup";
     //
     // bCut
     //
     this.bCut.BeginGroup = true;
     this.bCut.GlobalName = "bCut";
     this.bCut.ImageIndex = 5;
     this.bCut.Name = "bCut";
     this.bCut.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCut.Text = "Cu&t";
     //
     // bCopy
     //
     this.bCopy.GlobalName = "bCopy";
     this.bCopy.ImageIndex = 4;
     this.bCopy.Name = "bCopy";
     this.bCopy.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bCopy.Text = "&Copy";
     //
     // bPaste
     //
     this.bPaste.GlobalName = "bPaste";
     this.bPaste.ImageIndex = 12;
     this.bPaste.Name = "bPaste";
     this.bPaste.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bPaste.Text = "&Paste";
     //
     // bSelectAll
     //
     this.bSelectAll.BeginGroup = true;
     this.bSelectAll.GlobalName = "bSelectAll";
     this.bSelectAll.Name = "bSelectAll";
     this.bSelectAll.PopupAnimation = DevComponents.DotNetBar.ePopupAnimation.SystemDefault;
     this.bSelectAll.Text = "Select &All";
     //
     // switchButtonItem1
     //
     this.switchButtonItem1.ButtonHeight = 20;
     this.switchButtonItem1.ButtonWidth = 62;
     this.switchButtonItem1.Command = this.RibbonStateCommand;
     this.switchButtonItem1.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
     this.switchButtonItem1.Margin.Bottom = 2;
     this.switchButtonItem1.Margin.Left = 4;
     this.switchButtonItem1.Name = "switchButtonItem1";
     this.switchButtonItem1.OffText = "MAX";
     this.switchButtonItem1.OnText = "MIN";
     this.switchButtonItem1.Tooltip = "Minimizes/Maximizes the Ribbon";
     //
     // RibbonStateCommand
     //
     this.RibbonStateCommand.Name = "RibbonStateCommand";
     this.RibbonStateCommand.Executed += new System.EventHandler(this.RibbonStateCommand_Executed);
     //
     // buttonFile
     //
     this.buttonFile.AutoExpandOnClick = true;
     this.buttonFile.BackstageTab = this.superTabControl1;
     this.buttonFile.CanCustomize = false;
     this.buttonFile.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
     this.buttonFile.Image = ((System.Drawing.Image)(resources.GetObject("buttonFile.Image")));
     this.buttonFile.ImagePaddingHorizontal = 2;
     this.buttonFile.ImagePaddingVertical = 2;
     this.buttonFile.Name = "buttonFile";
     this.buttonFile.ShowSubItems = false;
     this.buttonFile.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileContainer});
     this.buttonFile.Text = "&File";
     //
     // superTabControl1
     //
     this.superTabControl1.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.superTabControl1.BackColor = System.Drawing.Color.White;
     //
     //
     //
     //
     //
     //
     this.superTabControl1.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControl1.ControlBox.MenuBox.Name = "";
     this.superTabControl1.ControlBox.Name = "";
     this.superTabControl1.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControl1.ControlBox.MenuBox,
     this.superTabControl1.ControlBox.CloseBox});
     this.superTabControl1.ControlBox.Visible = false;
     this.superTabControl1.Controls.Add(this.superTabControlPanel1);
     this.superTabControl1.Controls.Add(this.superTabControlPanel2);
     this.superTabControl1.Controls.Add(this.superTabControlPanel4);
     this.superTabControl1.Controls.Add(this.superTabControlPanel3);
     this.superTabControl1.ForeColor = System.Drawing.Color.Black;
     this.superTabControl1.ItemPadding.Left = 6;
     this.superTabControl1.ItemPadding.Right = 4;
     this.superTabControl1.ItemPadding.Top = 4;
     this.superTabControl1.Location = new System.Drawing.Point(6, 47);
     this.superTabControl1.Name = "superTabControl1";
     this.superTabControl1.ReorderTabsEnabled = false;
     this.superTabControl1.SelectedTabFont = new System.Drawing.Font("Segoe UI", 9.75F);
     this.superTabControl1.SelectedTabIndex = 0;
     this.superTabControl1.Size = new System.Drawing.Size(766, 448);
     this.superTabControl1.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Left;
     this.superTabControl1.TabFont = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControl1.TabHorizontalSpacing = 16;
     this.superTabControl1.TabIndex = 14;
     this.superTabControl1.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem61,
     this.buttonItem63,
     this.buttonItem64,
     this.superTabItem1,
     this.superTabItem2,
     this.superTabItem3,
     this.superTabItem4,
     this.buttonItem65,
     this.buttonItem66});
     this.superTabControl1.TabStyle = DevComponents.DotNetBar.eSuperTabStyle.Office2010BackstageBlue;
     this.superTabControl1.TabVerticalSpacing = 8;
     //
     // superTabControlPanel1
     //
     this.superTabControlPanel1.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel1.Controls.Add(this.panelEx2);
     this.superTabControlPanel1.Controls.Add(this.panelEx1);
     this.superTabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel1.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel1.Name = "superTabControlPanel1";
     this.superTabControlPanel1.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel1.TabIndex = 1;
     this.superTabControlPanel1.TabItem = this.superTabItem1;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Controls.Add(this.recentPlacesItemsPanel);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx2.Location = new System.Drawing.Point(314, 0);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx2.Size = new System.Drawing.Size(352, 448);
     this.panelEx2.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx2.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx2.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx2.Style.GradientAngle = 90;
     this.panelEx2.TabIndex = 1;
     this.panelEx2.Text = "panelEx2";
     //
     // recentPlacesItemsPanel
     //
     this.recentPlacesItemsPanel.AutoScroll = true;
     //
     //
     //
     this.recentPlacesItemsPanel.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.recentPlacesItemsPanel.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentPlacesItemsPanel.ContainerControlProcessDialogKey = true;
     this.recentPlacesItemsPanel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentPlacesItemsPanel.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentPlacesItemsPanel.Location = new System.Drawing.Point(12, 35);
     this.recentPlacesItemsPanel.Name = "recentPlacesItemsPanel";
     this.recentPlacesItemsPanel.Size = new System.Drawing.Size(328, 401);
     this.recentPlacesItemsPanel.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX2.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX2.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX2.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.ForeColor = System.Drawing.Color.DimGray;
     this.labelX2.Location = new System.Drawing.Point(12, 12);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(328, 23);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "Recent Places";
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.recentDocsItemPane);
     this.panelEx1.Controls.Add(this.labelX1);
     this.panelEx1.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Padding = new System.Windows.Forms.Padding(12);
     this.panelEx1.Size = new System.Drawing.Size(314, 448);
     this.panelEx1.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx1.Style.BackColor1.Color = System.Drawing.Color.Transparent;
     this.panelEx1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx1.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Right;
     this.panelEx1.Style.GradientAngle = 90;
     this.panelEx1.TabIndex = 0;
     this.panelEx1.Text = "panelEx1";
     //
     // recentDocsItemPane
     //
     this.recentDocsItemPane.AutoScroll = true;
     //
     //
     //
     this.recentDocsItemPane.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.recentDocsItemPane.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recentDocsItemPane.ContainerControlProcessDialogKey = true;
     this.recentDocsItemPane.Dock = System.Windows.Forms.DockStyle.Fill;
     this.recentDocsItemPane.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.recentDocsItemPane.Location = new System.Drawing.Point(12, 35);
     this.recentDocsItemPane.Name = "recentDocsItemPane";
     this.recentDocsItemPane.Size = new System.Drawing.Size(290, 401);
     this.recentDocsItemPane.TabIndex = 1;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX1.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX1.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.ForeColor = System.Drawing.Color.DimGray;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(290, 23);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "Recent Documents";
     //
     // superTabItem1
     //
     this.superTabItem1.AttachedControl = this.superTabControlPanel1;
     this.superTabItem1.GlobalItem = false;
     this.superTabItem1.KeyTips = "R";
     this.superTabItem1.Name = "superTabItem1";
     this.superTabItem1.Text = "Recent";
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel2.Controls.Add(this.itemPanel1);
     this.superTabControlPanel2.Controls.Add(this.labelX3);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     this.superTabControlPanel2.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel2.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel2.TabIndex = 2;
     this.superTabControlPanel2.TabItem = this.superTabItem2;
     //
     // itemPanel1
     //
     this.itemPanel1.AutoScroll = true;
     this.itemPanel1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel1.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.itemPanel1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel1.ContainerControlProcessDialogKey = true;
     this.itemPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem67,
     this.buttonItem68,
     this.buttonItem69,
     this.buttonItem70,
     this.buttonItem71,
     this.buttonItem72});
     this.itemPanel1.Location = new System.Drawing.Point(12, 35);
     this.itemPanel1.MultiLine = true;
     this.itemPanel1.Name = "itemPanel1";
     this.itemPanel1.Size = new System.Drawing.Size(642, 401);
     this.itemPanel1.TabIndex = 3;
     //
     // buttonItem67
     //
     this.buttonItem67.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem67.Command = this.AppCommandNew;
     this.buttonItem67.ForeColor = System.Drawing.Color.Black;
     this.buttonItem67.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem67.Image")));
     this.buttonItem67.ImagePaddingVertical = 12;
     this.buttonItem67.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem67.Name = "buttonItem67";
     this.buttonItem67.Text = "<span align=\"center\">Blank<br/>document</span>";
     //
     // AppCommandNew
     //
     this.AppCommandNew.Name = "AppCommandNew";
     this.AppCommandNew.Executed += new System.EventHandler(this.AppCommandNew_Executed);
     //
     // buttonItem68
     //
     this.buttonItem68.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem68.ForeColor = System.Drawing.Color.Black;
     this.buttonItem68.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem68.Image")));
     this.buttonItem68.ImagePaddingVertical = 12;
     this.buttonItem68.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem68.Name = "buttonItem68";
     this.buttonItem68.Text = "Blog post";
     //
     // buttonItem69
     //
     this.buttonItem69.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem69.ForeColor = System.Drawing.Color.Black;
     this.buttonItem69.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem69.Image")));
     this.buttonItem69.ImagePaddingHorizontal = 12;
     this.buttonItem69.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem69.Name = "buttonItem69";
     this.buttonItem69.Text = "<span align=\"center\">Recent<br/>templates</span>";
     //
     // buttonItem70
     //
     this.buttonItem70.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem70.ForeColor = System.Drawing.Color.Black;
     this.buttonItem70.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem70.Image")));
     this.buttonItem70.ImagePaddingHorizontal = 12;
     this.buttonItem70.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem70.Name = "buttonItem70";
     this.buttonItem70.Text = "<span align=\"center\">Sample<br/>templates</span>";
     //
     // buttonItem71
     //
     this.buttonItem71.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem71.ForeColor = System.Drawing.Color.Black;
     this.buttonItem71.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem71.Image")));
     this.buttonItem71.ImagePaddingHorizontal = 12;
     this.buttonItem71.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem71.Name = "buttonItem71";
     this.buttonItem71.Text = "My templates";
     //
     // buttonItem72
     //
     this.buttonItem72.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem72.ForeColor = System.Drawing.Color.Black;
     this.buttonItem72.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem72.Image")));
     this.buttonItem72.ImagePaddingHorizontal = 12;
     this.buttonItem72.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonItem72.Name = "buttonItem72";
     this.buttonItem72.Text = "<span align=\"center\">New from<br/>existing</span>";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX3.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX3.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.ForeColor = System.Drawing.Color.DimGray;
     this.labelX3.Location = new System.Drawing.Point(12, 12);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(642, 23);
     this.labelX3.TabIndex = 1;
     this.labelX3.Text = "Available Templates";
     //
     // superTabItem2
     //
     this.superTabItem2.AttachedControl = this.superTabControlPanel2;
     this.superTabItem2.GlobalItem = false;
     this.superTabItem2.KeyTips = "N";
     this.superTabItem2.Name = "superTabItem2";
     this.superTabItem2.Text = "New";
     //
     // superTabControlPanel4
     //
     this.superTabControlPanel4.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel4.Controls.Add(this.itemPanel2);
     this.superTabControlPanel4.Controls.Add(this.labelX6);
     this.superTabControlPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel4.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel4.Name = "superTabControlPanel4";
     this.superTabControlPanel4.Padding = new System.Windows.Forms.Padding(12);
     this.superTabControlPanel4.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel4.TabIndex = 4;
     this.superTabControlPanel4.TabItem = this.superTabItem4;
     //
     // itemPanel2
     //
     this.itemPanel2.AutoScroll = true;
     this.itemPanel2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.itemPanel2.BackgroundStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(175)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.itemPanel2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemPanel2.ContainerControlProcessDialogKey = true;
     this.itemPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.itemPanel2.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem77,
     this.buttonItem73,
     this.buttonItem74,
     this.buttonItem75,
     this.buttonItem76});
     this.itemPanel2.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemPanel2.Location = new System.Drawing.Point(12, 35);
     this.itemPanel2.Name = "itemPanel2";
     this.itemPanel2.Size = new System.Drawing.Size(642, 401);
     this.itemPanel2.TabIndex = 3;
     //
     // buttonItem77
     //
     this.buttonItem77.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem77.Command = this.AppCommandGoToUrl;
     this.buttonItem77.CommandParameter = "http://www.devcomponents.com/kb/questions.php?questionid=127";
     this.buttonItem77.ForeColor = System.Drawing.Color.Black;
     this.buttonItem77.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem77.Image")));
     this.buttonItem77.Name = "buttonItem77";
     this.buttonItem77.Text = "Backstage<br/>\r\n<font color=\"Gray\">How to build Office 2010 style Backstage with " +
         "DotNetBar</font>";
     //
     // AppCommandGoToUrl
     //
     this.AppCommandGoToUrl.Name = "AppCommandGoToUrl";
     this.AppCommandGoToUrl.Executed += new System.EventHandler(this.AppCommandGoToUrl_Executed);
     //
     // buttonItem73
     //
     this.buttonItem73.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem73.Command = this.AppCommandGoToUrl;
     this.buttonItem73.CommandParameter = "http://www.devcomponents.com/kb/";
     this.buttonItem73.ForeColor = System.Drawing.Color.Black;
     this.buttonItem73.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem73.Image")));
     this.buttonItem73.Name = "buttonItem73";
     this.buttonItem73.Text = "DotNetBar Knowledge Base<br/>\r\n<font color=\"Gray\">Browse our online Knowledge Bas" +
         "e.</font>";
     //
     // buttonItem74
     //
     this.buttonItem74.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem74.Command = this.AppCommandGoToUrl;
     this.buttonItem74.CommandParameter = "http://www.devcomponents.com/dotnetbar/movies.aspx";
     this.buttonItem74.ForeColor = System.Drawing.Color.Black;
     this.buttonItem74.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem74.Image")));
     this.buttonItem74.Name = "buttonItem74";
     this.buttonItem74.Text = "Movie Tutorials<br/>\r\n<font color=\"Gray\">Watch getting started online movie tutor" +
         "ials</font>";
     //
     // buttonItem75
     //
     this.buttonItem75.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem75.Command = this.AppCommandGoToUrl;
     this.buttonItem75.CommandParameter = "http://www.devcomponents.com/support.aspx";
     this.buttonItem75.ForeColor = System.Drawing.Color.Black;
     this.buttonItem75.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem75.Image")));
     this.buttonItem75.Name = "buttonItem75";
     this.buttonItem75.Text = "Contact Us<br/>\r\n<font color=\"Gray\">Let us know if you need help or how we can ma" +
         "ke DotNetBar even better.</font>";
     //
     // buttonItem76
     //
     this.buttonItem76.BeginGroup = true;
     this.buttonItem76.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem76.Command = this.AppCommandGoToUrl;
     this.buttonItem76.CommandParameter = "http://www.devcomponents.com/dotnetbar/applicationgallery/";
     this.buttonItem76.ForeColor = System.Drawing.Color.Black;
     this.buttonItem76.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem76.Image")));
     this.buttonItem76.Name = "buttonItem76";
     this.buttonItem76.Text = "Application Gallery<br/>\r\n<font color=\"Gray\">See how other developers are using D" +
         "otNetBar in our application gallery</font>";
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX6.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX6.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Dock = System.Windows.Forms.DockStyle.Top;
     this.labelX6.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.ForeColor = System.Drawing.Color.DimGray;
     this.labelX6.Location = new System.Drawing.Point(12, 12);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(642, 23);
     this.labelX6.TabIndex = 2;
     this.labelX6.Text = "Support";
     //
     // superTabItem4
     //
     this.superTabItem4.AttachedControl = this.superTabControlPanel4;
     this.superTabItem4.GlobalItem = false;
     this.superTabItem4.KeyTips = "H";
     this.superTabItem4.Name = "superTabItem4";
     this.superTabItem4.Text = "Help";
     //
     // superTabControlPanel3
     //
     this.superTabControlPanel3.BackgroundImagePosition = DevComponents.DotNetBar.eStyleBackgroundImage.BottomRight;
     this.superTabControlPanel3.Controls.Add(this.panelEx3);
     this.superTabControlPanel3.Controls.Add(this.labelX5);
     this.superTabControlPanel3.Controls.Add(this.integerInput1);
     this.superTabControlPanel3.Controls.Add(this.labelX4);
     this.superTabControlPanel3.Controls.Add(this.buttonX1);
     this.superTabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel3.Location = new System.Drawing.Point(100, 0);
     this.superTabControlPanel3.Name = "superTabControlPanel3";
     this.superTabControlPanel3.Size = new System.Drawing.Size(666, 448);
     this.superTabControlPanel3.TabIndex = 3;
     this.superTabControlPanel3.TabItem = this.superTabItem3;
     //
     // panelEx3
     //
     this.panelEx3.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.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.panelEx3.Location = new System.Drawing.Point(292, 4);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(371, 441);
     this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.White;
     this.panelEx3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx3.Style.BorderColor.Color = System.Drawing.Color.Silver;
     this.panelEx3.Style.BorderSide = DevComponents.DotNetBar.eBorderSide.Left;
     this.panelEx3.Style.ForeColor.Color = System.Drawing.Color.Gray;
     this.panelEx3.Style.GradientAngle = 90;
     this.panelEx3.TabIndex = 5;
     this.panelEx3.Text = "Print Preview Goes Here...";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.ForeColor = System.Drawing.Color.Black;
     this.labelX5.Location = new System.Drawing.Point(143, 54);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(48, 19);
     this.labelX5.TabIndex = 4;
     this.labelX5.Text = "Copies:";
     //
     // integerInput1
     //
     //
     //
     //
     this.integerInput1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInput1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInput1.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInput1.Location = new System.Drawing.Point(198, 53);
     this.integerInput1.Name = "integerInput1";
     this.integerInput1.ShowUpDown = true;
     this.integerInput1.Size = new System.Drawing.Size(66, 22);
     this.integerInput1.TabIndex = 3;
     this.integerInput1.Value = 1;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Dash;
     this.labelX4.BackgroundStyle.BorderBottomColor = System.Drawing.Color.Gray;
     this.labelX4.BackgroundStyle.BorderBottomWidth = 1;
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.ForeColor = System.Drawing.Color.DimGray;
     this.labelX4.Location = new System.Drawing.Point(144, 16);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(120, 23);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "Print";
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImagePosition = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonX1.Location = new System.Drawing.Point(21, 21);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(109, 101);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 0;
     this.buttonX1.Text = "Print";
     //
     // superTabItem3
     //
     this.superTabItem3.AttachedControl = this.superTabControlPanel3;
     this.superTabItem3.GlobalItem = false;
     this.superTabItem3.KeyTips = "P";
     this.superTabItem3.Name = "superTabItem3";
     this.superTabItem3.Text = "Print";
     //
     // buttonItem61
     //
     this.buttonItem61.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem61.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem61.Command = this.AppCommandSave;
     this.buttonItem61.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem61.Image")));
     this.buttonItem61.ImagePaddingHorizontal = 18;
     this.buttonItem61.ImagePaddingVertical = 10;
     this.buttonItem61.KeyTips = "S";
     this.buttonItem61.Name = "buttonItem61";
     this.buttonItem61.Stretch = true;
     this.buttonItem61.Text = "Save";
     //
     // AppCommandSave
     //
     this.AppCommandSave.Name = "AppCommandSave";
     this.AppCommandSave.Executed += new System.EventHandler(this.AppCommandSave_Executed);
     //
     // buttonItem63
     //
     this.buttonItem63.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem63.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem63.Command = this.AppCommandOpen;
     this.buttonItem63.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem63.Image")));
     this.buttonItem63.ImagePaddingHorizontal = 18;
     this.buttonItem63.ImagePaddingVertical = 10;
     this.buttonItem63.KeyTips = "O";
     this.buttonItem63.Name = "buttonItem63";
     this.buttonItem63.Stretch = true;
     this.buttonItem63.Text = "Open";
     //
     // AppCommandOpen
     //
     this.AppCommandOpen.Name = "AppCommandOpen";
     this.AppCommandOpen.Executed += new System.EventHandler(this.AppCommandOpen_Executed);
     //
     // buttonItem64
     //
     this.buttonItem64.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem64.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem64.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem64.Image")));
     this.buttonItem64.ImagePaddingHorizontal = 18;
     this.buttonItem64.ImagePaddingVertical = 10;
     this.buttonItem64.KeyTips = "C";
     this.buttonItem64.Name = "buttonItem64";
     this.buttonItem64.Stretch = true;
     this.buttonItem64.Text = "Close";
     //
     // buttonItem65
     //
     this.buttonItem65.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem65.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem65.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem65.Image")));
     this.buttonItem65.ImagePaddingHorizontal = 18;
     this.buttonItem65.ImagePaddingVertical = 10;
     this.buttonItem65.KeyTips = "T";
     this.buttonItem65.Name = "buttonItem65";
     this.buttonItem65.Stretch = true;
     this.buttonItem65.Text = "Options";
     //
     // buttonItem66
     //
     this.buttonItem66.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem66.ColorTable = DevComponents.DotNetBar.eButtonColor.Blue;
     this.buttonItem66.Command = this.AppCommandExit;
     this.buttonItem66.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem66.Image")));
     this.buttonItem66.ImagePaddingHorizontal = 18;
     this.buttonItem66.ImagePaddingVertical = 10;
     this.buttonItem66.KeyTips = "X";
     this.buttonItem66.Name = "buttonItem66";
     this.buttonItem66.Stretch = true;
     this.buttonItem66.Text = "Exit";
     //
     // AppCommandExit
     //
     this.AppCommandExit.Name = "AppCommandExit";
     this.AppCommandExit.Executed += new System.EventHandler(this.AppCommandExit_Executed);
     //
     // menuFileContainer
     //
     //
     //
     //
     this.menuFileContainer.BackgroundStyle.Class = "RibbonFileMenuContainer";
     this.menuFileContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileContainer.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileContainer.Name = "menuFileContainer";
     this.menuFileContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileTwoColumnContainer,
     this.menuFileBottomContainer});
     //
     //
     //
     this.menuFileContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileTwoColumnContainer
     //
     //
     //
     //
     this.menuFileTwoColumnContainer.BackgroundStyle.Class = "RibbonFileMenuTwoColumnContainer";
     this.menuFileTwoColumnContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingBottom = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingLeft = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingRight = 2;
     this.menuFileTwoColumnContainer.BackgroundStyle.PaddingTop = 2;
     this.menuFileTwoColumnContainer.ItemSpacing = 0;
     this.menuFileTwoColumnContainer.Name = "menuFileTwoColumnContainer";
     this.menuFileTwoColumnContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.menuFileItems,
     this.menuFileMRU});
     //
     //
     //
     this.menuFileTwoColumnContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // menuFileItems
     //
     //
     //
     //
     this.menuFileItems.BackgroundStyle.Class = "RibbonFileMenuColumnOneContainer";
     this.menuFileItems.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileItems.ItemSpacing = 5;
     this.menuFileItems.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileItems.MinimumSize = new System.Drawing.Size(120, 0);
     this.menuFileItems.Name = "menuFileItems";
     this.menuFileItems.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem20,
     this.buttonItem21,
     this.buttonFileSaveAs,
     this.buttonItem23,
     this.buttonItem24,
     this.buttonItem25});
     //
     //
     //
     this.menuFileItems.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonItem20
     //
     this.buttonItem20.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem20.Command = this.AppCommandNew;
     this.buttonItem20.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem20.Image")));
     this.buttonItem20.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonItem20.ImageSmall")));
     this.buttonItem20.Name = "buttonItem20";
     this.buttonItem20.SubItemsExpandWidth = 24;
     this.buttonItem20.Text = "&New";
     //
     // buttonItem21
     //
     this.buttonItem21.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem21.Command = this.AppCommandOpen;
     this.buttonItem21.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem21.Image")));
     this.buttonItem21.Name = "buttonItem21";
     this.buttonItem21.SubItemsExpandWidth = 24;
     this.buttonItem21.Text = "&Open...";
     //
     // buttonFileSaveAs
     //
     this.buttonFileSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonFileSaveAs.Command = this.AppCommandSaveAs;
     this.buttonFileSaveAs.Image = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.Image")));
     this.buttonFileSaveAs.ImageSmall = ((System.Drawing.Image)(resources.GetObject("buttonFileSaveAs.ImageSmall")));
     this.buttonFileSaveAs.Name = "buttonFileSaveAs";
     this.buttonFileSaveAs.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.itemContainer12});
     this.buttonFileSaveAs.SubItemsExpandWidth = 24;
     this.buttonFileSaveAs.Text = "&Save As...";
     this.buttonFileSaveAs.ExpandChange += new System.EventHandler(this.buttonFileSaveAs_ExpandChange);
     //
     // AppCommandSaveAs
     //
     this.AppCommandSaveAs.Name = "AppCommandSaveAs";
     this.AppCommandSaveAs.Executed += new System.EventHandler(this.AppCommandSaveAs_Executed);
     //
     // itemContainer12
     //
     //
     //
     //
     this.itemContainer12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.itemContainer12.ItemSpacing = 4;
     this.itemContainer12.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.itemContainer12.MinimumSize = new System.Drawing.Size(210, 256);
     this.itemContainer12.Name = "itemContainer12";
     this.itemContainer12.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem1,
     this.buttonItem56,
     this.buttonItem57,
     this.buttonItem58,
     this.buttonItem59});
     //
     //
     //
     this.itemContainer12.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem1
     //
     this.labelItem1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
     this.labelItem1.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem1.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem1.Name = "labelItem1";
     this.labelItem1.PaddingBottom = 5;
     this.labelItem1.PaddingLeft = 5;
     this.labelItem1.PaddingRight = 5;
     this.labelItem1.PaddingTop = 5;
     this.labelItem1.Text = "<b>Save a copy of the document</b>";
     //
     // buttonItem56
     //
     this.buttonItem56.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem56.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem56.Image")));
     this.buttonItem56.Name = "buttonItem56";
     this.buttonItem56.Text = "<b>&Rich Text Document</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save the document " +
         "in the default file format.</div>";
     //
     // buttonItem57
     //
     this.buttonItem57.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem57.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem57.Image")));
     this.buttonItem57.Name = "buttonItem57";
     this.buttonItem57.Text = "<b>Document &Template</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Save as a template " +
         "that can be used to format future documents.</div>";
     //
     // buttonItem58
     //
     this.buttonItem58.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem58.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem58.Image")));
     this.buttonItem58.Name = "buttonItem58";
     this.buttonItem58.Text = "<b>&Find add-ins for other formats</b>\r\n<div padding=\"0,0,4,0\" width=\"180\">Learn " +
         "about add-ins to save to other formats such as PDF or XPS.</div>";
     //
     // buttonItem59
     //
     this.buttonItem59.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem59.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem59.Image")));
     this.buttonItem59.Name = "buttonItem59";
     this.buttonItem59.Text = "<b>&Other Formats</b>\r\n<div padding=\"0,0,4,0\" width=\"170\">Open the Save As dialog" +
         " box to select from all possible file types.</div>";
     //
     // buttonItem23
     //
     this.buttonItem23.BeginGroup = true;
     this.buttonItem23.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem23.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem23.Image")));
     this.buttonItem23.Name = "buttonItem23";
     this.buttonItem23.SubItemsExpandWidth = 24;
     this.buttonItem23.Text = "S&hare...";
     //
     // buttonItem24
     //
     this.buttonItem24.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem24.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem24.Image")));
     this.buttonItem24.Name = "buttonItem24";
     this.buttonItem24.SubItemsExpandWidth = 24;
     this.buttonItem24.Text = "&Print...";
     //
     // buttonItem25
     //
     this.buttonItem25.BeginGroup = true;
     this.buttonItem25.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonItem25.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem25.Image")));
     this.buttonItem25.Name = "buttonItem25";
     this.buttonItem25.SubItemsExpandWidth = 24;
     this.buttonItem25.Text = "&Close";
     //
     // menuFileMRU
     //
     //
     //
     //
     this.menuFileMRU.BackgroundStyle.Class = "RibbonFileMenuColumnTwoContainer";
     this.menuFileMRU.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileMRU.LayoutOrientation = DevComponents.DotNetBar.eOrientation.Vertical;
     this.menuFileMRU.MinimumSize = new System.Drawing.Size(225, 0);
     this.menuFileMRU.Name = "menuFileMRU";
     this.menuFileMRU.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.labelItem8,
     this.buttonItem26,
     this.buttonItem27,
     this.buttonItem28,
     this.buttonItem29});
     //
     //
     //
     this.menuFileMRU.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // labelItem8
     //
     this.labelItem8.BorderSide = DevComponents.DotNetBar.eBorderSide.Bottom;
     this.labelItem8.BorderType = DevComponents.DotNetBar.eBorderType.Etched;
     this.labelItem8.Name = "labelItem8";
     this.labelItem8.PaddingBottom = 2;
     this.labelItem8.PaddingTop = 2;
     this.labelItem8.Stretch = true;
     this.labelItem8.Text = "Recent Documents";
     //
     // buttonItem26
     //
     this.buttonItem26.Name = "buttonItem26";
     this.buttonItem26.Text = "&1. Short News 5-7.rtf";
     //
     // buttonItem27
     //
     this.buttonItem27.Name = "buttonItem27";
     this.buttonItem27.Text = "&2. Prospect Email.rtf";
     //
     // buttonItem28
     //
     this.buttonItem28.Name = "buttonItem28";
     this.buttonItem28.Text = "&3. Customer Email.rtf";
     //
     // buttonItem29
     //
     this.buttonItem29.Name = "buttonItem29";
     this.buttonItem29.Text = "&4. example.rtf";
     //
     // menuFileBottomContainer
     //
     //
     //
     //
     this.menuFileBottomContainer.BackgroundStyle.Class = "RibbonFileMenuBottomContainer";
     this.menuFileBottomContainer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.menuFileBottomContainer.HorizontalItemAlignment = DevComponents.DotNetBar.eHorizontalItemsAlignment.Right;
     this.menuFileBottomContainer.Name = "menuFileBottomContainer";
     this.menuFileBottomContainer.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonOptions,
     this.buttonExit});
     //
     //
     //
     this.menuFileBottomContainer.TitleStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     // buttonOptions
     //
     this.buttonOptions.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonOptions.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonOptions.Image = ((System.Drawing.Image)(resources.GetObject("buttonOptions.Image")));
     this.buttonOptions.Name = "buttonOptions";
     this.buttonOptions.SubItemsExpandWidth = 24;
     this.buttonOptions.Text = "RibbonPad Opt&ions";
     //
     // buttonExit
     //
     this.buttonExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
     this.buttonExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonExit.Command = this.AppCommandExit;
     this.buttonExit.Image = ((System.Drawing.Image)(resources.GetObject("buttonExit.Image")));
     this.buttonExit.Name = "buttonExit";
     this.buttonExit.SubItemsExpandWidth = 24;
     this.buttonExit.Text = "E&xit RibbonPad";
     //
     // buttonNew
     //
     this.buttonNew.Command = this.AppCommandNew;
     this.buttonNew.Image = ((System.Drawing.Image)(resources.GetObject("buttonNew.Image")));
     this.buttonNew.Name = "buttonNew";
     this.buttonNew.Shortcuts.Add(DevComponents.DotNetBar.eShortcut.CtrlN);
     this.buttonNew.Text = "New Document";
     //
     // buttonSave
     //
     this.buttonSave.Command = this.AppCommandSave;
     this.buttonSave.Enabled = false;
     this.buttonSave.Image = ((System.Drawing.Image)(resources.GetObject("buttonSave.Image")));
     this.buttonSave.Name = "buttonSave";
     this.buttonSave.Text = "buttonItem2";
     //
     // buttonUndo
     //
     this.buttonUndo.Enabled = false;
     this.buttonUndo.Image = ((System.Drawing.Image)(resources.GetObject("buttonUndo.Image")));
     this.buttonUndo.Name = "buttonUndo";
     this.buttonUndo.Text = "Undo";
     //
     // qatCustomizeItem1
     //
     this.qatCustomizeItem1.Name = "qatCustomizeItem1";
     //
     // ribbonTabItemGroup1
     //
     this.ribbonTabItemGroup1.Color = DevComponents.DotNetBar.eRibbonTabGroupColor.Orange;
     this.ribbonTabItemGroup1.GroupTitle = "Tab Group";
     this.ribbonTabItemGroup1.Name = "ribbonTabItemGroup1";
     //
     //
     //
     this.ribbonTabItemGroup1.Style.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(240)))), ((int)(((byte)(158)))), ((int)(((byte)(159)))));
     this.ribbonTabItemGroup1.Style.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(225)))), ((int)(((byte)(226)))));
     this.ribbonTabItemGroup1.Style.BackColorGradientAngle = 90;
     this.ribbonTabItemGroup1.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderBottomWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(58)))), ((int)(((byte)(59)))));
     this.ribbonTabItemGroup1.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderLeftWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderRightWidth = 1;
     this.ribbonTabItemGroup1.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ribbonTabItemGroup1.Style.BorderTopWidth = 1;
     this.ribbonTabItemGroup1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ribbonTabItemGroup1.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.ribbonTabItemGroup1.Style.TextColor = System.Drawing.Color.Black;
     this.ribbonTabItemGroup1.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     //
     // buttonStyleMetro
     //
     this.buttonStyleMetro.Checked = true;
     this.buttonStyleMetro.Command = this.AppCommandTheme;
     this.buttonStyleMetro.CommandParameter = "Metro";
     this.buttonStyleMetro.Name = "buttonStyleMetro";
     this.buttonStyleMetro.OptionGroup = "style";
     this.buttonStyleMetro.Text = "Metro/Office 2013";
     //
     // AppCommandTheme
     //
     this.AppCommandTheme.Name = "AppCommandTheme";
     this.AppCommandTheme.Executed += new System.EventHandler(this.AppCommandTheme_Executed);
     //
     // buttonItem47
     //
     this.buttonItem47.BeginGroup = true;
     this.buttonItem47.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem47.Image")));
     this.buttonItem47.Name = "buttonItem47";
     this.buttonItem47.Text = "Search for Templates Online...";
     //
     // buttonItem48
     //
     this.buttonItem48.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem48.Image")));
     this.buttonItem48.Name = "buttonItem48";
     this.buttonItem48.Text = "Browse for Templates...";
     //
     // buttonItem49
     //
     this.buttonItem49.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem49.Image")));
     this.buttonItem49.Name = "buttonItem49";
     this.buttonItem49.Text = "Save Current Template...";
     //
     // comboItem1
     //
     this.comboItem1.Text = "6";
     //
     // comboItem2
     //
     this.comboItem2.Text = "7";
     //
     // comboItem3
     //
     this.comboItem3.Text = "8";
     //
     // comboItem4
     //
     this.comboItem4.Text = "9";
     //
     // comboItem5
     //
     this.comboItem5.Text = "10";
     //
     // comboItem6
     //
     this.comboItem6.Text = "11";
     //
     // comboItem7
     //
     this.comboItem7.Text = "12";
     //
     // comboItem8
     //
     this.comboItem8.Text = "13";
     //
     // comboItem9
     //
     this.comboItem9.Text = "14";
     //
     // superTooltip1
     //
     this.superTooltip1.DefaultFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTooltip1.MinimumTooltipSize = new System.Drawing.Size(150, 50);
     //
     // progressBarTimer
     //
     this.progressBarTimer.Enabled = true;
     this.progressBarTimer.Interval = 800;
     this.progressBarTimer.Tick += new System.EventHandler(this.progressBarTimer_Tick);
     //
     // styleManager1
     //
     this.styleManager1.ManagerStyle = DevComponents.DotNetBar.eStyle.Office2007Blue;
     this.styleManager1.MetroColorParameters = new DevComponents.DotNetBar.Metro.ColorTables.MetroColorGeneratorParameters(System.Drawing.Color.White, System.Drawing.Color.FromArgb(((int)(((byte)(43)))), ((int)(((byte)(87)))), ((int)(((byte)(154))))));
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "OpenExistingPlace.png");
     //
     // frmMain
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.ClientSize = new System.Drawing.Size(776, 500);
     this.Controls.Add(this.superTabControl1);
     this.Controls.Add(this.contextMenuBar);
     this.Controls.Add(this.tabStrip1);
     this.Controls.Add(this.mainRibbonControl);
     this.Controls.Add(this.bar1);
     this.Controls.Add(this.mdiClient1);
     this.EnableGlass = false;
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.IsMdiContainer = true;
     this.Name = "frmMain";
     this.Text = "����˹̹ƽ̨";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Closing += new System.ComponentModel.CancelEventHandler(this.frmMain_Closing);
     this.Load += new System.EventHandler(this.frmMain_Load);
     this.MdiChildActivate += new System.EventHandler(this.MdiChildActivated);
     this.Move += new System.EventHandler(this.frmMain_Move);
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.contextMenuBar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControl1)).EndInit();
     this.superTabControl1.ResumeLayout(false);
     this.superTabControlPanel1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx1.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.superTabControlPanel4.ResumeLayout(false);
     this.superTabControlPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.integerInput1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Example #60
0
        private void btnSave_Click(object sender, EventArgs e)
        {
            if (txtName.Text.Trim() == "")
            {
                MessageBox.Show("A name must be provided to continue.", "Name", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                return;
            }

            if (cbxGrade.SelectedIndex < 0)
            {
                MessageBox.Show("A grade must be provided to continue.", "Grade", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                return;
            }

            List <string> lQuestions = new List <string>();
            List <string> lNotes     = new List <string>();

            foreach (GridRow r in gQ.PrimaryGrid.Rows)
            {
                if (r.Checked)
                {
                    if (r.Tag != null && r.Tag.ToString().Length > 0)
                    {
                        lQuestions.Add(r.Tag.ToString());
                    }
                }
            }

            foreach (GridRow r in gN.PrimaryGrid.Rows)
            {
                if (r.Checked)
                {
                    if (r.Tag != null && r.Tag.ToString().Length > 0)
                    {
                        lNotes.Add(r.Tag.ToString());
                    }
                }
            }

            DevComponents.Editors.ComboItem i = (DevComponents.Editors.ComboItem)cbxGrade.Items[cbxGrade.SelectedIndex];
            string sGrade = i.Value.ToString();

            Program.SQL.AddParameter("name", txtName.Text.ToString());
            Program.SQL.AddParameter("type", sGrade);
            Program.SQL.AddParameter("questions", string.Join(",", lQuestions));
            Program.SQL.AddParameter("notes", string.Join(",", lNotes));
            Program.SQL.AddParameter("mod", DateTime.Now);

            if (iID > 0)
            {
                Program.SQL.AddParameter("id", iID);
                int iRes = Program.SQL.Update("UPDATE schedules SET name=@name,type=@type,questions=@questions,notes=@notes,modified=@mod WHERE id=@id;");
                if (iRes < 1)
                {
                    MessageBox.Show("The update failed. Please try again.", "Update", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                else
                {
                    MessageBox.Show("The update was successful.", "Update", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }
            else
            {
                Program.SQL.AddParameter("ent", DateTime.Now);
                int iRes = Program.SQL.Insert("INSERT INTO schedules (name,type,questions,notes,entered,modified) VALUES (@name,@type,@questions,@notes,@ent,@mod)");
                if (iRes < 1)
                {
                    MessageBox.Show("The addition failed. Please try again.", "Insert", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
                    return;
                }
                else
                {
                    MessageBox.Show("The addition was successful.", "Insert", MessageBoxButtons.OK, MessageBoxIcon.Information);
                }
            }

            Enable(false);
            LoadSchedules();
        }