コード例 #1
1
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.chkSelect = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.listView = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnPrint = new DevComponents.DotNetBar.ButtonX();
     this.SuspendLayout();
     //
     // chkSelect
     //
     this.chkSelect.AutoSize = true;
     this.chkSelect.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelect.BackgroundStyle.Class = "";
     this.chkSelect.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelect.Checked = true;
     this.chkSelect.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelect.CheckValue = "Y";
     this.chkSelect.Location = new System.Drawing.Point(34, 317);
     this.chkSelect.Name = "chkSelect";
     this.chkSelect.Size = new System.Drawing.Size(54, 21);
     this.chkSelect.TabIndex = 3;
     this.chkSelect.Text = "全選";
     this.chkSelect.Click += new System.EventHandler(this.chkSelect_CheckedChanged);
     //
     // listView
     //
     //
     //
     //
     this.listView.Border.Class = "ListViewBorder";
     this.listView.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.listView.CheckBoxes = true;
     this.listView.FullRowSelect = true;
     this.listView.Location = new System.Drawing.Point(34, 53);
     this.listView.Name = "listView";
     this.listView.ShowItemToolTips = true;
     this.listView.Size = new System.Drawing.Size(424, 258);
     this.listView.TabIndex = 2;
     this.listView.UseCompatibleStateImageBehavior = false;
     this.listView.View = System.Windows.Forms.View.List;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(23, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(141, 21);
     this.labelX1.TabIndex = 31;
     this.labelX1.Text = "請勾選報表顯示欄位。";
     //
     // btnPrint
     //
     this.btnPrint.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.AutoSize = true;
     this.btnPrint.BackColor = System.Drawing.Color.Transparent;
     this.btnPrint.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrint.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnPrint.Location = new System.Drawing.Point(383, 329);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(75, 25);
     this.btnPrint.TabIndex = 32;
     this.btnPrint.Text = "列 印";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click_1);
     //
     // Student_CourseList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(492, 366);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.chkSelect);
     this.Controls.Add(this.listView);
     this.DoubleBuffered = true;
     this.Name = "Student_CourseList";
     this.Text = "";
     this.TitleText = "選課名單";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #2
0
ファイル: ObjectInstanceEditor.cs プロジェクト: xnum/hasuite
 private void SetOptionalInt(DevComponents.Editors.IntegerInput intinput, DevComponents.DotNetBar.Controls.CheckBoxX checkbox, int?num)
 {
     if (num != null)
     {
         checkbox.Checked = true; intinput.Value = (int)num;
     }
 }
コード例 #3
0
        private List <Control> CreateFilterControl()
        {
            List <Control> clist = new List <Control>();

            foreach (E_VDA_TASK_STATUS item in Enum.GetValues(typeof(E_VDA_TASK_STATUS)))
            {
                if (item == E_VDA_TASK_STATUS.E_TASK_STATUS_BEEN_DELETE)
                {
                    continue;
                }
                if (item == E_VDA_TASK_STATUS.E_TASK_STATUS_ANALYSE_SUSPEND)
                {
                    continue;
                }
                DevComponents.DotNetBar.Controls.CheckBoxX c = new DevComponents.DotNetBar.Controls.CheckBoxX();
                c.Text = DataModel.Constant.TaskStatusInfos.Single(it => it.Status == item).Name;
                if (item == E_VDA_TASK_STATUS.E_TASK_STATUS_NOUSE)
                {
                    c.Text    = "全部";
                    c.Checked = true;
                }
                c.AutoSize      = true;
                c.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
                c.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                c.Style           = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                c.CheckedChanged += checkBoxStatus_CheckedChanged;
                c.Tag             = item;
                clist.Add(c);
            }
            return(clist);
        }
コード例 #4
0
 private void checkBoxStatus_CheckedChanged(object sender, EventArgs e)
 {
     //TaskShowStatus s = TaskShowStatus.None;
     //if (checkBoxAnalyse.Checked)
     //    s = TaskShowStatus.Analyse | s;
     //if(checkBoxFailed.Checked)
     //    s = TaskShowStatus.Failed | s;
     DevComponents.DotNetBar.Controls.CheckBoxX c = sender as DevComponents.DotNetBar.Controls.CheckBoxX;
     if (c != null && c.Checked)
     {
         if (m_viewModel != null)
         {
             m_viewModel.CurrentPageIndex = 1;
             m_viewModel.TaskShowStatus   = (E_VDA_TASK_STATUS)c.Tag;
             var list = m_viewModel.FrashPage();
             if (list != null)
             {
                 for (int i = 0; i < list.Count; i++)
                 {
                     m_viewModel_UpdateTaskProgress(i, list[i].TaskId, list[i].Status, list[i].Progress);
                 }
                 //m_viewModel.FrashProgress();
                 for (int i = list.Count; i < m_maxTaskCountPerPage; i++)
                 {
                     m_viewModel_UpdateTaskProgress(i, 0, E_VDA_TASK_STATUS.E_TASK_STATUS_NOUSE, 0);
                 }
                 PageNavigatorChanged();
             }
         }
     }
 }
コード例 #5
0
        private void advTree1_BeforeCellEdit(object sender, DevComponents.AdvTree.CellEditEventArgs e)
        {
            if (e.Cell.TagString == "BlackListLibs")
            {
                t                    = DateTime.Now;
                e.Cancel             = true;
                groupPanel2.Location = e.Cell.Bounds.Location;
                string camid = (e.Cell.Parent.DataKey as DataRowView).Row.ItemArray[1].ToString();
                List <SubscribeInfo> list = (e.Cell.Parent.DataKey as DataRowView).Row.ItemArray[3] as List <SubscribeInfo>;
                foreach (Control c in flowLayoutPanel1.Controls)
                {
                    DevComponents.DotNetBar.Controls.CheckBoxX checkBoxX = c as DevComponents.DotNetBar.Controls.CheckBoxX;
                    uint blackhandle = (checkBoxX.Tag as Tuple <uint, uint>).Item1;
                    var  info        = list.FirstOrDefault(item => item.BlackListHandle.ToString() == blackhandle.ToString());

                    if (info != null)
                    {
                        checkBoxX.Checked = true;
                        checkBoxX.Tag     = new Tuple <uint, uint>(blackhandle, info.SubscribeHandle);
                    }
                }
                groupPanel2.Tag = camid;
                groupPanel2.Show();
            }
        }
コード例 #6
0
        private void FormLogin_Load(object sender, EventArgs e)
        {
            if (DesignMode)
            {
                return;
            }

            m_viewModel            = new SubscribeViewModel();
            m_viewModel.UserName   = Framework.Environment.CurUserInfo.UserName;
            m_viewModel.ClientIP   = Framework.Environment.LocalCommIP;
            m_viewModel.ClientPort = Framework.Environment.AlarmReceivePort;

            foreach (var item in m_viewModel.BlackListLibs)
            {
                DevComponents.DotNetBar.Controls.CheckBoxX checkBoxX = new DevComponents.DotNetBar.Controls.CheckBoxX();

                checkBoxX.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                checkBoxX.AutoSize          = true;
                checkBoxX.Style             = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                checkBoxX.TabIndex          = 0;
                checkBoxX.Text              = item.Name + "[" + item.PicCount + "]";
                checkBoxX.Tag               = new Tuple <uint, uint>(item.Handel, 0);
                checkBoxX.CheckedChangedEx += checkBoxX_CheckedChangedEx;
                flowLayoutPanel1.Controls.Add(checkBoxX);
            }

            advTree1.DataSource = m_viewModel.FaceSubscribe;
        }
コード例 #7
0
 void checkCheckBoxAvisos(DevComponents.DotNetBar.Controls.CheckBoxX checkBoxAviso)
 {
     if (!checkBoxVisual.Checked && !checkBoxSonoro.Checked)
     {
         MsgBox("Al menos uno de los dos tipos de avisos debe estar seleccionado", "INFORMACIÓN", MessageBoxIcon.Information);;
         checkBoxAviso.Checked = true;
     }
 }
コード例 #8
0
 Task <int> Bubbleit(DevComponents.DotNetBar.Controls.CheckBoxX lbl, string msg)
 {
     System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
     ToolTip1.SetToolTip(lbl, msg);
     ToolTip1.ToolTipIcon = ToolTipIcon.Info;
     ToolTip1.IsBalloon   = true;
     ToolTip1.ShowAlways  = true;
     return(Task.FromResult(0));
 }
コード例 #9
0
        private void checkbox_CheckedChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.CheckBoxX checkbox = (DevComponents.DotNetBar.Controls.CheckBoxX)sender;
            VirtualCheckItem item = (VirtualCheckItem)checkbox.Tag;

            if (item.Checked != checkbox.Checked)
            {
                item.Checked = checkbox.Checked;
            }
        }
コード例 #10
0
 private void checkBoxStatus_CheckedChanged(object sender, EventArgs e)
 {
     DevComponents.DotNetBar.Controls.CheckBoxX c = sender as DevComponents.DotNetBar.Controls.CheckBoxX;
     if (c != null && c.Checked)
     {
         if (m_viewModel != null)
         {
             m_viewModel.BehaviourFilterType = (BehaviorType)c.Tag;
         }
     }
 }
コード例 #11
0
        private void checkBoxStatus_CheckedChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.CheckBoxX c = sender as DevComponents.DotNetBar.Controls.CheckBoxX;
            if (c != null && c.Checked)
            {
                if (m_viewModel != null)
                {
                    m_viewModel.TrafficFilterType = (E_TRAFFIC_EVENT_TYPE)c.Tag;
                }

            }
        }
コード例 #12
0
 private void groupPanel2_VisibleChanged(object sender, EventArgs e)
 {
     if (!groupPanel2.Visible)
     {
         foreach (Control c in flowLayoutPanel1.Controls)
         {
             DevComponents.DotNetBar.Controls.CheckBoxX checkBoxX = c as DevComponents.DotNetBar.Controls.CheckBoxX;
             checkBoxX.Checked = false;
             uint blackhandle = (checkBoxX.Tag as Tuple <uint, uint>).Item1;
             checkBoxX.Tag = new Tuple <uint, uint>(blackhandle, 0);
         }
         groupPanel2.Tag = null;
     }
 }
コード例 #13
0
 private void checkBoxStatus_CheckedChanged(object sender, EventArgs e)
 {
     DevComponents.DotNetBar.Controls.CheckBoxX c = sender as DevComponents.DotNetBar.Controls.CheckBoxX;
     if (c != null && c.Checked)
     {
         foreach (DevComponents.AdvTree.Node item in advTree1.Nodes)
         {
             var visible = (item.Cells[4].Text == DataModel.Constant.TaskStatusInfos.Single(it => it.Status == (E_VDA_TASK_STATUS)c.Tag).Name);
             if ((E_VDA_TASK_STATUS)c.Tag == E_VDA_TASK_STATUS.E_TASK_STATUS_NOUSE)
             {
                 visible = true;
             }
             item.Visible = visible;
         }
     }
 }
コード例 #14
0
        /// <summary>
        /// 实现 全选或反选
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        public void CheckAll(DevComponents.DotNetBar.Controls.CheckBoxX ckbAll, TreeView tvInfo)
        {
            bool isckb = true;

            if (ckbAll.Checked)
            {
                isckb = false;
            }
            else
            {
                isckb = true;
            }
            foreach (TreeNode node in tvInfo.Nodes)
            {
                GetSubNode(node, isckb);
            }
        }
コード例 #15
0
        private void syncCheckBox(object sender, EventArgs e)
        {
            VirtualCheckBox item = (VirtualCheckBox)sender;

            if (!_CheckBoxs.ContainsKey(item))
            {
                return;
            }
            DevComponents.DotNetBar.Controls.CheckBoxX checkbox = _CheckBoxs[item];
            checkbox.Text    = item.Text;
            checkbox.Enabled = item.Enabled;
            if (item.Checked != checkbox.Checked)
            {
                checkbox.Checked = item.Checked;
            }
            if (checkbox.PreferredSize.Width + 25 > _OptionsContainer.Width)
            {
                _OptionsContainer.Width = checkbox.PreferredSize.Width + 25;
            }
        }
コード例 #16
0
        private List <Control> CreateFilterControl()
        {
            List <Control> clist = new List <Control>();

            foreach (BehaviorType item in Enum.GetValues(typeof(BehaviorType)))
            {
                DevComponents.DotNetBar.Controls.CheckBoxX c = new DevComponents.DotNetBar.Controls.CheckBoxX();
                c.Text = DataModel.Constant.BehaviorTypeInfo.Single(it => it.Type == item).Name;
                if (item == BehaviorType.None)
                {
                    c.Text    = "全部";
                    c.Checked = true;
                }
                if (item == BehaviorType.AlarmCountBreakIn)
                {
                    continue;
                }
                if (item == BehaviorType.AlarmCountBreakOut)
                {
                    continue;
                }
                if (item == BehaviorType.AlarmCountPasslineNeg)
                {
                    continue;
                }
                if (item == BehaviorType.AlarmCountPasslinePos)
                {
                    continue;
                }

                c.AutoSize      = true;
                c.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
                c.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                c.Style           = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                c.CheckedChanged += checkBoxStatus_CheckedChanged;
                c.Tag             = item;
                clist.Add(c);
            }
            return(clist);
        }
コード例 #17
0
        private void ValueChanged(DevComponents.DotNetBar.Controls.CheckBoxX useCheckBox, Control valueControl, SetOptionValue del)
        {
            if (_options == null)
            {
                return;
            }

            if (!useCheckBox.Checked)
            {
                del(null);
            }
            else
            {
                Type t = valueControl.GetType();

                switch (t.Name)
                {
                case "CheckBoxX":
                    del(((DevComponents.DotNetBar.Controls.CheckBoxX)valueControl).Checked);
                    break;

                case "TextBox":
                    del(((TextBox)valueControl).Text);
                    break;

                case "IntegerInput":
                    del(((DevComponents.Editors.IntegerInput)valueControl).Value);
                    break;

                case "DoubleInput":
                    del(((DevComponents.Editors.DoubleInput)valueControl).Value);
                    break;

                default:
                    throw new NotImplementedException("Type of control not handled yet: " + t.Name);
                }
            }
        }
コード例 #18
0
        private List<Control> CreateFilterControl()
        {
            List<Control> clist = new List<Control>();

            foreach (E_TRAFFIC_EVENT_TYPE item in Enum.GetValues(typeof(E_TRAFFIC_EVENT_TYPE)))
            {
                DevComponents.DotNetBar.Controls.CheckBoxX c = new DevComponents.DotNetBar.Controls.CheckBoxX();
                c.Text = DataModel.Constant.TrafficEventTypeInfos.Single(it => it.Type == item).Name;
                if (item == E_TRAFFIC_EVENT_TYPE.E_TRAFFIC_EVENT_TYPE_None)
                {
                    c.Text = "全部";
                    c.Checked = true;
                }
                c.AutoSize = true;
                c.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
                c.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
                c.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
                c.CheckedChanged += checkBoxStatus_CheckedChanged;
                c.Tag = item;
                clist.Add(c);
            }
            return clist;
        }
コード例 #19
0
        private void radioButton1_CheckedChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.CheckBoxX cb = (DevComponents.DotNetBar.Controls.CheckBoxX)sender;
            switch (cb.Name)
            {
            case "check_default":    //"使用預設樣板":
                if (cb.Checked)
                {
                    Template = null;
                }
                break;

            case "check_custom":    //使用自訂樣板
                if (cb.Checked && Template == null)
                {
                    try
                    {
                        OpenFileDialog ofd = new OpenFileDialog();
                        ofd.Filter = "Word (*.doc)|*.doc|所有檔案 (*.*)|*.*";

                        if (ofd.ShowDialog() == DialogResult.OK)
                        {
                            Template = new Aspose.Words.Document(ofd.FileName);
                        }
                        else
                        {
                            check_default.Checked = true;
                        }
                    }
                    catch
                    {
                        FISCA.Presentation.Controls.MsgBox.Show("檔案開啟錯誤,請檢查檔案是否開啟中!!");
                    }
                }
                break;
            }
        }
コード例 #20
0
ファイル: ObjectInstanceEditor.cs プロジェクト: xnum/hasuite
        private void enablingCheckBox_CheckChanged(object sender, EventArgs e)
        {
            DevComponents.DotNetBar.Controls.CheckBoxX cbx = (DevComponents.DotNetBar.Controls.CheckBoxX)sender;
            bool featureActivated = cbx.Checked && cbx.Enabled;

            if (cbx.Tag is Control)
            {
                ((Control)cbx.Tag).Enabled = featureActivated;
            }
            else
            {
                foreach (Control control in (Control[])cbx.Tag)
                {
                    control.Enabled = featureActivated;
                }
                foreach (Control control in (Control[])cbx.Tag)
                {
                    if (control is DevComponents.DotNetBar.Controls.CheckBoxX)
                    {
                        enablingCheckBox_CheckChanged(control, e);
                    }
                }
            }
        }
コード例 #21
0
ファイル: Caso.designer.cs プロジェクト: eduardo-salazar/sag
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Caso));
     this.txCod_resp = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.txcod_Caso = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.ipFech_solu = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.txResp_Caso = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.txObservaciones = new System.Windows.Forms.TextBox();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.sliderNiv_solu = new DevComponents.DotNetBar.Controls.Slider();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.ckbCaso_cerr = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.txDesc_solu = new System.Windows.Forms.TextBox();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txDesc_prob = new System.Windows.Forms.TextBox();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.txCargo = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txNomb_solic = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txCod_empr = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.ipFech_soli = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnEliminarAct = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator4 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Your error message here.");
     this.requiredFieldValidator3 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.requiredFieldValidator2 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.txNE = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.chkbAdm = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btBuscarEmpresa = new DevComponents.DotNetBar.ButtonX();
     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();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_solu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_soli)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // txCod_resp
     //
     this.txCod_resp.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCod_resp.Border.Class = "TextBoxBorder";
     this.txCod_resp.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCod_resp.ForeColor = System.Drawing.Color.Black;
     this.txCod_resp.Location = new System.Drawing.Point(157, 495);
     this.txCod_resp.Name = "txCod_resp";
     this.txCod_resp.ReadOnly = true;
     this.txCod_resp.Size = new System.Drawing.Size(95, 20);
     this.txCod_resp.TabIndex = 65;
     //
     // labelX19
     //
     //
     //
     //
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Location = new System.Drawing.Point(19, 492);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(132, 23);
     this.labelX19.TabIndex = 64;
     this.labelX19.Text = "Codigo del Responsable :";
     //
     // labelX18
     //
     //
     //
     //
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Location = new System.Drawing.Point(9, 9);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(96, 23);
     this.labelX18.TabIndex = 63;
     this.labelX18.Text = "Codigo de Caso :";
     //
     // txcod_Caso
     //
     this.txcod_Caso.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txcod_Caso.Border.Class = "TextBoxBorder";
     this.txcod_Caso.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txcod_Caso.Enabled = false;
     this.txcod_Caso.ForeColor = System.Drawing.Color.Black;
     this.txcod_Caso.Location = new System.Drawing.Point(111, 12);
     this.txcod_Caso.Name = "txcod_Caso";
     this.txcod_Caso.ReadOnly = true;
     this.txcod_Caso.Size = new System.Drawing.Size(100, 20);
     this.txcod_Caso.TabIndex = 62;
     //
     // labelX17
     //
     //
     //
     //
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Location = new System.Drawing.Point(656, 347);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(17, 23);
     this.labelX17.TabIndex = 61;
     this.labelX17.Text = "5";
     this.labelX17.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX16
     //
     //
     //
     //
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Location = new System.Drawing.Point(627, 347);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(17, 23);
     this.labelX16.TabIndex = 60;
     this.labelX16.Text = "4";
     this.labelX16.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX15
     //
     //
     //
     //
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.Location = new System.Drawing.Point(600, 347);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(17, 23);
     this.labelX15.TabIndex = 59;
     this.labelX15.Text = "3";
     this.labelX15.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(568, 347);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(17, 23);
     this.labelX14.TabIndex = 58;
     this.labelX14.Text = "2";
     this.labelX14.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(540, 347);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(17, 23);
     this.labelX13.TabIndex = 57;
     this.labelX13.Text = "1";
     this.labelX13.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(515, 347);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(17, 23);
     this.labelX12.TabIndex = 56;
     this.labelX12.Text = "0";
     this.labelX12.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // ipFech_solu
     //
     //
     //
     //
     this.ipFech_solu.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFech_solu.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFech_solu.ButtonDropDown.Visible = true;
     this.ipFech_solu.IsPopupCalendarOpen = false;
     this.ipFech_solu.Location = new System.Drawing.Point(487, 463);
     //
     //
     //
     this.ipFech_solu.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_solu.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFech_solu.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFech_solu.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.DisplayMonth = new System.DateTime(2012, 5, 1, 0, 0, 0, 0);
     this.ipFech_solu.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFech_solu.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFech_solu.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_solu.MonthCalendar.TodayButtonVisible = true;
     this.ipFech_solu.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFech_solu.Name = "ipFech_solu";
     this.ipFech_solu.Size = new System.Drawing.Size(200, 20);
     this.ipFech_solu.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFech_solu.TabIndex = 55;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(373, 463);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(99, 23);
     this.labelX11.TabIndex = 54;
     this.labelX11.Text = "Fecha de Solucion :";
     //
     // txResp_Caso
     //
     this.txResp_Caso.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txResp_Caso.Border.Class = "TextBoxBorder";
     this.txResp_Caso.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txResp_Caso.ForeColor = System.Drawing.Color.Black;
     this.txResp_Caso.Location = new System.Drawing.Point(157, 466);
     this.txResp_Caso.Name = "txResp_Caso";
     this.txResp_Caso.ReadOnly = true;
     this.txResp_Caso.Size = new System.Drawing.Size(193, 20);
     this.txResp_Caso.TabIndex = 53;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(19, 463);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(132, 23);
     this.labelX10.TabIndex = 52;
     this.labelX10.Text = "Responsable del Caso :";
     //
     // txObservaciones
     //
     this.txObservaciones.Location = new System.Drawing.Point(19, 319);
     this.txObservaciones.Multiline = true;
     this.txObservaciones.Name = "txObservaciones";
     this.txObservaciones.ReadOnly = true;
     this.txObservaciones.Size = new System.Drawing.Size(331, 131);
     this.txObservaciones.TabIndex = 51;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(19, 299);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(132, 23);
     this.labelX9.TabIndex = 50;
     this.labelX9.Text = "Observaciones :";
     //
     // sliderNiv_solu
     //
     //
     //
     //
     this.sliderNiv_solu.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sliderNiv_solu.Enabled = false;
     this.sliderNiv_solu.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.sliderNiv_solu.Location = new System.Drawing.Point(462, 329);
     this.sliderNiv_solu.Maximum = 5;
     this.sliderNiv_solu.Name = "sliderNiv_solu";
     this.sliderNiv_solu.Size = new System.Drawing.Size(225, 23);
     this.sliderNiv_solu.Style = DevComponents.DotNetBar.eDotNetBarStyle.Metro;
     this.sliderNiv_solu.TabIndex = 49;
     this.sliderNiv_solu.Tag = "0 1 2 3 4 5 6 ";
     this.sliderNiv_solu.Text = " ";
     this.sliderNiv_solu.Value = 0;
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(373, 328);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(98, 23);
     this.labelX8.TabIndex = 48;
     this.labelX8.Text = "Nivel de Solucion :";
     //
     // ckbCaso_cerr
     //
     //
     //
     //
     this.ckbCaso_cerr.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ckbCaso_cerr.Enabled = false;
     this.ckbCaso_cerr.Location = new System.Drawing.Point(451, 299);
     this.ckbCaso_cerr.Name = "ckbCaso_cerr";
     this.ckbCaso_cerr.Size = new System.Drawing.Size(20, 24);
     this.ckbCaso_cerr.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ckbCaso_cerr.TabIndex = 47;
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(373, 299);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(81, 23);
     this.labelX7.TabIndex = 46;
     this.labelX7.Text = "Caso Cerrado :";
     //
     // txDesc_solu
     //
     this.txDesc_solu.Location = new System.Drawing.Point(373, 162);
     this.txDesc_solu.Multiline = true;
     this.txDesc_solu.Name = "txDesc_solu";
     this.txDesc_solu.ReadOnly = true;
     this.txDesc_solu.Size = new System.Drawing.Size(331, 131);
     this.txDesc_solu.TabIndex = 45;
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(373, 132);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(132, 23);
     this.labelX6.TabIndex = 44;
     this.labelX6.Text = "Descripcion de Solucion :";
     //
     // txDesc_prob
     //
     this.txDesc_prob.Location = new System.Drawing.Point(19, 162);
     this.txDesc_prob.Multiline = true;
     this.txDesc_prob.Name = "txDesc_prob";
     this.txDesc_prob.ReadOnly = true;
     this.txDesc_prob.Size = new System.Drawing.Size(331, 131);
     this.txDesc_prob.TabIndex = 43;
     this.superValidator1.SetValidator1(this.txDesc_prob, this.requiredFieldValidator4);
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(19, 132);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(149, 23);
     this.labelX5.TabIndex = 42;
     this.labelX5.Text = "Descripcion de la Solicitud :";
     //
     // txCargo
     //
     this.txCargo.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCargo.Border.Class = "TextBoxBorder";
     this.txCargo.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCargo.ForeColor = System.Drawing.Color.Black;
     this.txCargo.Location = new System.Drawing.Point(497, 106);
     this.txCargo.Name = "txCargo";
     this.txCargo.ReadOnly = true;
     this.txCargo.Size = new System.Drawing.Size(185, 20);
     this.txCargo.TabIndex = 41;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(451, 103);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(40, 23);
     this.labelX4.TabIndex = 40;
     this.labelX4.Text = "Cargo :";
     //
     // txNomb_solic
     //
     this.txNomb_solic.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txNomb_solic.Border.Class = "TextBoxBorder";
     this.txNomb_solic.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txNomb_solic.ForeColor = System.Drawing.Color.Black;
     this.txNomb_solic.Location = new System.Drawing.Point(157, 106);
     this.txNomb_solic.MaxLength = 50;
     this.txNomb_solic.Name = "txNomb_solic";
     this.txNomb_solic.ReadOnly = true;
     this.txNomb_solic.Size = new System.Drawing.Size(183, 20);
     this.txNomb_solic.TabIndex = 39;
     this.superValidator1.SetValidator1(this.txNomb_solic, this.requiredFieldValidator3);
     //
     // txCod_empr
     //
     this.txCod_empr.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txCod_empr.Border.Class = "TextBoxBorder";
     this.txCod_empr.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txCod_empr.ForeColor = System.Drawing.Color.Black;
     this.txCod_empr.Location = new System.Drawing.Point(568, 77);
     this.txCod_empr.Name = "txCod_empr";
     this.txCod_empr.ReadOnly = true;
     this.txCod_empr.Size = new System.Drawing.Size(114, 20);
     this.txCod_empr.TabIndex = 38;
     this.superValidator1.SetValidator1(this.txCod_empr, this.requiredFieldValidator2);
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(19, 103);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(132, 23);
     this.labelX3.TabIndex = 37;
     this.labelX3.Text = "Nombre del Solicitante :";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(451, 77);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(111, 23);
     this.labelX2.TabIndex = 36;
     this.labelX2.Text = "Codigo de Empresa :";
     //
     // ipFech_soli
     //
     //
     //
     //
     this.ipFech_soli.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFech_soli.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFech_soli.ButtonDropDown.Visible = true;
     this.ipFech_soli.IsPopupCalendarOpen = false;
     this.ipFech_soli.Location = new System.Drawing.Point(478, 44);
     //
     //
     //
     this.ipFech_soli.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_soli.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFech_soli.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFech_soli.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.DisplayMonth = new System.DateTime(2012, 5, 1, 0, 0, 0, 0);
     this.ipFech_soli.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFech_soli.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFech_soli.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFech_soli.MonthCalendar.TodayButtonVisible = true;
     this.ipFech_soli.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFech_soli.Name = "ipFech_soli";
     this.ipFech_soli.Size = new System.Drawing.Size(200, 20);
     this.ipFech_soli.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFech_soli.TabIndex = 35;
     this.superValidator1.SetValidator1(this.ipFech_soli, this.requiredFieldValidator1);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(373, 44);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(99, 23);
     this.labelX1.TabIndex = 34;
     this.labelX1.Text = "Fecha de Solicitud :";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnEliminarAct);
     this.groupBox1.Controls.Add(this.buttonX1);
     this.groupBox1.Controls.Add(this.dataGridViewX1);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(3, 521);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(721, 296);
     this.groupBox1.TabIndex = 66;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Actividades";
     //
     // btnEliminarAct
     //
     this.btnEliminarAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnEliminarAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnEliminarAct.Location = new System.Drawing.Point(599, 263);
     this.btnEliminarAct.Name = "btnEliminarAct";
     this.btnEliminarAct.Size = new System.Drawing.Size(102, 23);
     this.btnEliminarAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnEliminarAct.TabIndex = 32;
     this.btnEliminarAct.Text = "Eliminar Actividad";
     this.btnEliminarAct.Click += new System.EventHandler(this.buttonX2_Click);
     //
     // buttonX1
     //
     this.buttonX1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(475, 263);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(107, 23);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 31;
     this.buttonX1.Text = "Crear Actividad";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AccessibleDescription = "";
     this.dataGridViewX1.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.Color.White;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(107)))), ((int)(((byte)(114)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(6, 19);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dataGridViewX1.Size = new System.Drawing.Size(709, 234);
     this.dataGridViewX1.TabIndex = 30;
     this.dataGridViewX1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewX1_CellDoubleClick);
     this.dataGridViewX1.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridViewX1_CellFormatting);
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator4
     //
     this.requiredFieldValidator4.ErrorMessage = "Your error message here.";
     this.requiredFieldValidator4.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator3
     //
     this.requiredFieldValidator3.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator3.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator2
     //
     this.requiredFieldValidator2.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator2.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // txNE
     //
     this.txNE.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txNE.Border.Class = "TextBoxBorder";
     this.txNE.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txNE.ForeColor = System.Drawing.Color.Black;
     this.txNE.Location = new System.Drawing.Point(157, 80);
     this.txNE.Name = "txNE";
     this.txNE.ReadOnly = true;
     this.txNE.Size = new System.Drawing.Size(183, 20);
     this.txNE.TabIndex = 68;
     this.superValidator1.SetValidator1(this.txNE, this.requiredFieldValidator2);
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(19, 77);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(111, 23);
     this.labelX20.TabIndex = 67;
     this.labelX20.Text = "Nombre de Empresa :";
     //
     // chkbAdm
     //
     //
     //
     //
     this.chkbAdm.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbAdm.Location = new System.Drawing.Point(546, 299);
     this.chkbAdm.Name = "chkbAdm";
     this.chkbAdm.Size = new System.Drawing.Size(158, 23);
     this.chkbAdm.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbAdm.TabIndex = 69;
     this.chkbAdm.Text = "Cerrado por Administrador";
     this.chkbAdm.Visible = false;
     //
     // btBuscarEmpresa
     //
     this.btBuscarEmpresa.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btBuscarEmpresa.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btBuscarEmpresa.Location = new System.Drawing.Point(357, 79);
     this.btBuscarEmpresa.Name = "btBuscarEmpresa";
     this.btBuscarEmpresa.Size = new System.Drawing.Size(75, 23);
     this.btBuscarEmpresa.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btBuscarEmpresa.TabIndex = 70;
     this.btBuscarEmpresa.Text = "Buscar";
     this.btBuscarEmpresa.Click += new System.EventHandler(this.btBuscarEmpresa_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label1.Location = new System.Drawing.Point(340, 87);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(11, 13);
     this.label1.TabIndex = 71;
     this.label1.Text = "*";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label2.Location = new System.Drawing.Point(340, 113);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(11, 13);
     this.label2.TabIndex = 72;
     this.label2.Text = "*";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label3.Location = new System.Drawing.Point(686, 83);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(11, 13);
     this.label3.TabIndex = 73;
     this.label3.Text = "*";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label4.Location = new System.Drawing.Point(684, 49);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(11, 13);
     this.label4.TabIndex = 74;
     this.label4.Text = "*";
     //
     // Caso
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btBuscarEmpresa);
     this.Controls.Add(this.chkbAdm);
     this.Controls.Add(this.txNE);
     this.Controls.Add(this.labelX20);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.txCod_resp);
     this.Controls.Add(this.labelX19);
     this.Controls.Add(this.labelX18);
     this.Controls.Add(this.txcod_Caso);
     this.Controls.Add(this.labelX17);
     this.Controls.Add(this.labelX16);
     this.Controls.Add(this.labelX15);
     this.Controls.Add(this.labelX14);
     this.Controls.Add(this.labelX13);
     this.Controls.Add(this.labelX12);
     this.Controls.Add(this.ipFech_solu);
     this.Controls.Add(this.labelX11);
     this.Controls.Add(this.txResp_Caso);
     this.Controls.Add(this.labelX10);
     this.Controls.Add(this.txObservaciones);
     this.Controls.Add(this.labelX9);
     this.Controls.Add(this.sliderNiv_solu);
     this.Controls.Add(this.labelX8);
     this.Controls.Add(this.ckbCaso_cerr);
     this.Controls.Add(this.labelX7);
     this.Controls.Add(this.txDesc_solu);
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.txDesc_prob);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.txCargo);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.txNomb_solic);
     this.Controls.Add(this.txCod_empr);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.ipFech_soli);
     this.Controls.Add(this.labelX1);
     this.Name = "Caso";
     this.Size = new System.Drawing.Size(756, 820);
     this.Load += new System.EventHandler(this.Caso_Load_1);
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_solu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFech_soli)).EndInit();
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #22
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmStretchColorRampRenderer));
     this.panelEx1              = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2              = new DevComponents.DotNetBar.PanelEx();
     this.labelX4               = new DevComponents.DotNetBar.LabelX();
     this.checkReverse          = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.pBoxColorRamp         = new System.Windows.Forms.PictureBox();
     this.dbBackgrdVal          = new DevComponents.Editors.DoubleInput();
     this.labelX1               = new DevComponents.DotNetBar.LabelX();
     this.colorPickerNoData     = new DevComponents.DotNetBar.ColorPickerButton();
     this.labelNoData           = new DevComponents.DotNetBar.LabelX();
     this.colorPickerBackGround = new DevComponents.DotNetBar.ColorPickerButton();
     this.checkBackgroundColor  = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cmbColorRamp          = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.maxValueInput         = new DevComponents.Editors.DoubleInput();
     this.minValueInput         = new DevComponents.Editors.DoubleInput();
     this.labelX2               = new DevComponents.DotNetBar.LabelX();
     this.labelX3               = new DevComponents.DotNetBar.LabelX();
     this.labelX5               = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pBoxColorRamp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbBackgrdVal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.maxValueInput)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.minValueInput)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panelEx2);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(425, 350);
     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            = 0;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx2.Controls.Add(this.labelX4);
     this.panelEx2.Controls.Add(this.checkReverse);
     this.panelEx2.Controls.Add(this.pBoxColorRamp);
     this.panelEx2.Controls.Add(this.dbBackgrdVal);
     this.panelEx2.Controls.Add(this.labelX1);
     this.panelEx2.Controls.Add(this.colorPickerNoData);
     this.panelEx2.Controls.Add(this.labelNoData);
     this.panelEx2.Controls.Add(this.colorPickerBackGround);
     this.panelEx2.Controls.Add(this.checkBackgroundColor);
     this.panelEx2.Controls.Add(this.cmbColorRamp);
     this.panelEx2.Controls.Add(this.maxValueInput);
     this.panelEx2.Controls.Add(this.minValueInput);
     this.panelEx2.Controls.Add(this.labelX2);
     this.panelEx2.Controls.Add(this.labelX3);
     this.panelEx2.Controls.Add(this.labelX5);
     this.panelEx2.Location        = new System.Drawing.Point(3, 2);
     this.panelEx2.Name            = "panelEx2";
     this.panelEx2.Size            = new System.Drawing.Size(419, 347);
     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            = 46;
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     this.labelX4.Location = new System.Drawing.Point(16, 14);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(44, 18);
     this.labelX4.TabIndex = 22;
     this.labelX4.Text     = "颜色:";
     //
     // checkReverse
     //
     this.checkReverse.Location        = new System.Drawing.Point(317, 181);
     this.checkReverse.Name            = "checkReverse";
     this.checkReverse.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.checkReverse.Size            = new System.Drawing.Size(99, 30);
     this.checkReverse.TabIndex        = 21;
     this.checkReverse.Text            = "色带反向";
     this.checkReverse.CheckedChanged += new System.EventHandler(this.checkReverse_CheckedChanged);
     //
     // pBoxColorRamp
     //
     this.pBoxColorRamp.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pBoxColorRamp.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pBoxColorRamp.Location = new System.Drawing.Point(71, 14);
     this.pBoxColorRamp.Name     = "pBoxColorRamp";
     this.pBoxColorRamp.Size     = new System.Drawing.Size(25, 75);
     this.pBoxColorRamp.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pBoxColorRamp.TabIndex = 20;
     this.pBoxColorRamp.TabStop  = false;
     //
     // dbBackgrdVal
     //
     //
     //
     //
     this.dbBackgrdVal.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.dbBackgrdVal.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.dbBackgrdVal.Increment = 1;
     this.dbBackgrdVal.Location  = new System.Drawing.Point(129, 144);
     this.dbBackgrdVal.Name      = "dbBackgrdVal";
     this.dbBackgrdVal.Size      = new System.Drawing.Size(62, 21);
     this.dbBackgrdVal.TabIndex  = 19;
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(230, 149);
     this.labelX1.Name     = "labelX1";
     this.labelX1.Size     = new System.Drawing.Size(80, 21);
     this.labelX1.TabIndex = 18;
     this.labelX1.Text     = "的颜色为";
     //
     // colorPickerNoData
     //
     this.colorPickerNoData.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.colorPickerNoData.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.colorPickerNoData.Image          = ((System.Drawing.Image)(resources.GetObject("colorPickerNoData.Image")));
     this.colorPickerNoData.Location       = new System.Drawing.Point(99, 190);
     this.colorPickerNoData.Name           = "colorPickerNoData";
     this.colorPickerNoData.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12);
     this.colorPickerNoData.Size     = new System.Drawing.Size(37, 23);
     this.colorPickerNoData.TabIndex = 17;
     //
     // labelNoData
     //
     this.labelNoData.Location = new System.Drawing.Point(16, 190);
     this.labelNoData.Name     = "labelNoData";
     this.labelNoData.Size     = new System.Drawing.Size(80, 21);
     this.labelNoData.TabIndex = 16;
     this.labelNoData.Text     = "无效数据颜色";
     //
     // colorPickerBackGround
     //
     this.colorPickerBackGround.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.colorPickerBackGround.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.colorPickerBackGround.Image          = ((System.Drawing.Image)(resources.GetObject("colorPickerBackGround.Image")));
     this.colorPickerBackGround.Location       = new System.Drawing.Point(351, 144);
     this.colorPickerBackGround.Name           = "colorPickerBackGround";
     this.colorPickerBackGround.SelectedColorImageRectangle = new System.Drawing.Rectangle(2, 2, 12, 12);
     this.colorPickerBackGround.Size     = new System.Drawing.Size(37, 23);
     this.colorPickerBackGround.TabIndex = 15;
     //
     // checkBackgroundColor
     //
     this.checkBackgroundColor.Location        = new System.Drawing.Point(16, 144);
     this.checkBackgroundColor.Name            = "checkBackgroundColor";
     this.checkBackgroundColor.Size            = new System.Drawing.Size(99, 30);
     this.checkBackgroundColor.TabIndex        = 13;
     this.checkBackgroundColor.Text            = "显示背景值:";
     this.checkBackgroundColor.CheckedChanged += new System.EventHandler(this.checkBackgroundColor_CheckedChanged);
     //
     // cmbColorRamp
     //
     this.cmbColorRamp.DisplayMember     = "Text";
     this.cmbColorRamp.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbColorRamp.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbColorRamp.FormattingEnabled = true;
     this.cmbColorRamp.ItemHeight        = 21;
     this.cmbColorRamp.Location          = new System.Drawing.Point(71, 91);
     this.cmbColorRamp.Name                  = "cmbColorRamp";
     this.cmbColorRamp.Size                  = new System.Drawing.Size(317, 27);
     this.cmbColorRamp.TabIndex              = 2;
     this.cmbColorRamp.SelectedIndexChanged += new System.EventHandler(this.cmbColorRamp_SelectedIndexChanged);
     //
     // maxValueInput
     //
     //
     //
     //
     this.maxValueInput.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.maxValueInput.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.maxValueInput.Enabled   = false;
     this.maxValueInput.Increment = 1;
     this.maxValueInput.Location  = new System.Drawing.Point(267, 11);
     this.maxValueInput.Name      = "maxValueInput";
     this.maxValueInput.Size      = new System.Drawing.Size(122, 21);
     this.maxValueInput.TabIndex  = 3;
     //
     // minValueInput
     //
     //
     //
     //
     this.minValueInput.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.minValueInput.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.minValueInput.Enabled   = false;
     this.minValueInput.Increment = 1;
     this.minValueInput.Location  = new System.Drawing.Point(267, 65);
     this.minValueInput.Name      = "minValueInput";
     this.minValueInput.Size      = new System.Drawing.Size(122, 21);
     this.minValueInput.TabIndex  = 2;
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     this.labelX2.Location = new System.Drawing.Point(216, 68);
     this.labelX2.Name     = "labelX2";
     this.labelX2.Size     = new System.Drawing.Size(44, 18);
     this.labelX2.TabIndex = 8;
     this.labelX2.Text     = "最小值";
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     this.labelX3.Location = new System.Drawing.Point(216, 14);
     this.labelX3.Name     = "labelX3";
     this.labelX3.Size     = new System.Drawing.Size(44, 18);
     this.labelX3.TabIndex = 9;
     this.labelX3.Text     = "最大值";
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     this.labelX5.Location = new System.Drawing.Point(16, 100);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(56, 18);
     this.labelX5.TabIndex = 11;
     this.labelX5.Text     = "颜色方案";
     //
     // frmStretchColorRampRenderer
     //
     this.Controls.Add(this.panelEx1);
     this.Name = "frmStretchColorRampRenderer";
     this.Size = new System.Drawing.Size(425, 350);
     this.panelEx1.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pBoxColorRamp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dbBackgrdVal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.maxValueInput)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.minValueInput)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #23
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.txtCodUsuario = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiCodigoUsuario = new DevComponents.DotNetBar.LabelX();
     this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txtPassword = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiUsuario = new DevComponents.DotNetBar.LabelX();
     this.etiFechFin = new DevComponents.DotNetBar.LabelX();
     this.dtFechFin = new System.Windows.Forms.DateTimePicker();
     this.etiFechIni = new DevComponents.DotNetBar.LabelX();
     this.dtFechIni = new System.Windows.Forms.DateTimePicker();
     this.txtTelefono = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiTelefono = new DevComponents.DotNetBar.LabelX();
     this.txtEmail = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiEmail = new DevComponents.DotNetBar.LabelX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiNombre = new DevComponents.DotNetBar.LabelX();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.usuarioBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.usuarioTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.UsuarioTableAdapter();
     this.codusuaDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombreDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.emailDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.telfDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.adminDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.fechinicDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechsaliDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuarioDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.passwordDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.activoDataGridViewCheckBoxColumn = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.chkAdmin = new DevComponents.DotNetBar.Controls.CheckBoxX();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).BeginInit();
     this.SuspendLayout();
     //
     // txtCodUsuario
     //
     this.txtCodUsuario.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCodUsuario.Border.Class = "TextBoxBorder";
     this.txtCodUsuario.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCodUsuario.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "cod_usua", true));
     this.txtCodUsuario.Enabled = false;
     this.txtCodUsuario.ForeColor = System.Drawing.Color.Black;
     this.txtCodUsuario.Location = new System.Drawing.Point(173, 37);
     this.txtCodUsuario.Margin = new System.Windows.Forms.Padding(10);
     this.txtCodUsuario.Name = "txtCodUsuario";
     this.txtCodUsuario.Size = new System.Drawing.Size(100, 22);
     this.txtCodUsuario.TabIndex = 37;
     //
     // etiCodigoUsuario
     //
     //
     //
     //
     this.etiCodigoUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiCodigoUsuario.Location = new System.Drawing.Point(85, 34);
     this.etiCodigoUsuario.Name = "etiCodigoUsuario";
     this.etiCodigoUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiCodigoUsuario.TabIndex = 36;
     this.etiCodigoUsuario.Text = "Cod_Usuario:";
     //
     // chkActivo
     //
     //
     //
     //
     this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkActivo.DataBindings.Add(new System.Windows.Forms.Binding("CheckValue", this.usuarioBindingSource, "activo", true));
     this.chkActivo.Location = new System.Drawing.Point(503, 157);
     this.chkActivo.Name = "chkActivo";
     this.chkActivo.Size = new System.Drawing.Size(100, 23);
     this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkActivo.TabIndex = 34;
     this.chkActivo.Text = "Usuario Activo";
     //
     // txtPassword
     //
     this.txtPassword.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPassword.Border.Class = "TextBoxBorder";
     this.txtPassword.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPassword.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "password", true));
     this.txtPassword.ForeColor = System.Drawing.Color.Black;
     this.txtPassword.Location = new System.Drawing.Point(503, 117);
     this.txtPassword.Margin = new System.Windows.Forms.Padding(10);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(165, 22);
     this.txtPassword.TabIndex = 33;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(415, 114);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 32;
     this.labelX1.Text = "Contraseña:";
     //
     // txtUser
     //
     this.txtUser.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtUser.Border.Class = "TextBoxBorder";
     this.txtUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtUser.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "usuario", true));
     this.txtUser.ForeColor = System.Drawing.Color.Black;
     this.txtUser.Location = new System.Drawing.Point(503, 77);
     this.txtUser.Margin = new System.Windows.Forms.Padding(10);
     this.txtUser.Name = "txtUser";
     this.txtUser.Size = new System.Drawing.Size(165, 22);
     this.txtUser.TabIndex = 31;
     //
     // etiUsuario
     //
     //
     //
     //
     this.etiUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiUsuario.Location = new System.Drawing.Point(415, 74);
     this.etiUsuario.Name = "etiUsuario";
     this.etiUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiUsuario.TabIndex = 30;
     this.etiUsuario.Text = "Usuario:";
     //
     // etiFechFin
     //
     //
     //
     //
     this.etiFechFin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiFechFin.Location = new System.Drawing.Point(85, 237);
     this.etiFechFin.Name = "etiFechFin";
     this.etiFechFin.Size = new System.Drawing.Size(75, 23);
     this.etiFechFin.TabIndex = 29;
     this.etiFechFin.Text = "Fecha Salida:";
     //
     // dtFechFin
     //
     this.dtFechFin.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.usuarioBindingSource, "fech_sali", true));
     this.dtFechFin.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtFechFin.Location = new System.Drawing.Point(173, 237);
     this.dtFechFin.Margin = new System.Windows.Forms.Padding(10);
     this.dtFechFin.Name = "dtFechFin";
     this.dtFechFin.Size = new System.Drawing.Size(165, 22);
     this.dtFechFin.TabIndex = 28;
     //
     // etiFechIni
     //
     //
     //
     //
     this.etiFechIni.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiFechIni.Location = new System.Drawing.Point(85, 197);
     this.etiFechIni.Name = "etiFechIni";
     this.etiFechIni.Size = new System.Drawing.Size(75, 23);
     this.etiFechIni.TabIndex = 27;
     this.etiFechIni.Text = "Fecha Inicio:";
     //
     // dtFechIni
     //
     this.dtFechIni.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.usuarioBindingSource, "fech_inic", true));
     this.dtFechIni.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtFechIni.Location = new System.Drawing.Point(173, 197);
     this.dtFechIni.Margin = new System.Windows.Forms.Padding(10);
     this.dtFechIni.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     this.dtFechIni.Name = "dtFechIni";
     this.dtFechIni.Size = new System.Drawing.Size(165, 22);
     this.dtFechIni.TabIndex = 26;
     this.dtFechIni.Value = new System.DateTime(2012, 6, 1, 0, 0, 0, 0);
     //
     // txtTelefono
     //
     this.txtTelefono.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtTelefono.Border.Class = "TextBoxBorder";
     this.txtTelefono.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtTelefono.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "telf", true));
     this.txtTelefono.ForeColor = System.Drawing.Color.Black;
     this.txtTelefono.Location = new System.Drawing.Point(173, 157);
     this.txtTelefono.Margin = new System.Windows.Forms.Padding(10);
     this.txtTelefono.Name = "txtTelefono";
     this.txtTelefono.Size = new System.Drawing.Size(165, 22);
     this.txtTelefono.TabIndex = 25;
     //
     // etiTelefono
     //
     //
     //
     //
     this.etiTelefono.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiTelefono.Location = new System.Drawing.Point(85, 154);
     this.etiTelefono.Name = "etiTelefono";
     this.etiTelefono.Size = new System.Drawing.Size(75, 23);
     this.etiTelefono.TabIndex = 24;
     this.etiTelefono.Text = "Teléfono:";
     //
     // txtEmail
     //
     this.txtEmail.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtEmail.Border.Class = "TextBoxBorder";
     this.txtEmail.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEmail.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "email", true));
     this.txtEmail.ForeColor = System.Drawing.Color.Black;
     this.txtEmail.Location = new System.Drawing.Point(173, 117);
     this.txtEmail.Margin = new System.Windows.Forms.Padding(10);
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.Size = new System.Drawing.Size(165, 22);
     this.txtEmail.TabIndex = 23;
     //
     // etiEmail
     //
     //
     //
     //
     this.etiEmail.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiEmail.Location = new System.Drawing.Point(85, 114);
     this.etiEmail.Name = "etiEmail";
     this.etiEmail.Size = new System.Drawing.Size(75, 23);
     this.etiEmail.TabIndex = 22;
     this.etiEmail.Text = "Email:";
     //
     // txtNombre
     //
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.usuarioBindingSource, "nombre", true));
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(173, 77);
     this.txtNombre.Margin = new System.Windows.Forms.Padding(10);
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.Size = new System.Drawing.Size(165, 22);
     this.txtNombre.TabIndex = 21;
     //
     // etiNombre
     //
     //
     //
     //
     this.etiNombre.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiNombre.Location = new System.Drawing.Point(85, 74);
     this.etiNombre.Name = "etiNombre";
     this.etiNombre.Size = new System.Drawing.Size(75, 23);
     this.etiNombre.TabIndex = 20;
     this.etiNombre.Text = "Nombre:";
     //
     // dataGridView1
     //
     this.dataGridView1.AutoGenerateColumns = false;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.codusuaDataGridViewTextBoxColumn,
     this.nombreDataGridViewTextBoxColumn,
     this.emailDataGridViewTextBoxColumn,
     this.telfDataGridViewTextBoxColumn,
     this.adminDataGridViewCheckBoxColumn,
     this.fechinicDataGridViewTextBoxColumn,
     this.fechsaliDataGridViewTextBoxColumn,
     this.usuarioDataGridViewTextBoxColumn,
     this.passwordDataGridViewTextBoxColumn,
     this.activoDataGridViewCheckBoxColumn});
     this.dataGridView1.DataSource = this.usuarioBindingSource;
     this.dataGridView1.Location = new System.Drawing.Point(12, 272);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(744, 190);
     this.dataGridView1.TabIndex = 39;
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // usuarioBindingSource
     //
     this.usuarioBindingSource.DataMember = "Usuario";
     this.usuarioBindingSource.DataSource = this.cADINDataSet;
     //
     // usuarioTableAdapter
     //
     this.usuarioTableAdapter.ClearBeforeFill = true;
     //
     // codusuaDataGridViewTextBoxColumn
     //
     this.codusuaDataGridViewTextBoxColumn.DataPropertyName = "cod_usua";
     this.codusuaDataGridViewTextBoxColumn.HeaderText = "cod_usua";
     this.codusuaDataGridViewTextBoxColumn.Name = "codusuaDataGridViewTextBoxColumn";
     this.codusuaDataGridViewTextBoxColumn.ReadOnly = true;
     //
     // nombreDataGridViewTextBoxColumn
     //
     this.nombreDataGridViewTextBoxColumn.DataPropertyName = "nombre";
     this.nombreDataGridViewTextBoxColumn.HeaderText = "nombre";
     this.nombreDataGridViewTextBoxColumn.Name = "nombreDataGridViewTextBoxColumn";
     //
     // emailDataGridViewTextBoxColumn
     //
     this.emailDataGridViewTextBoxColumn.DataPropertyName = "email";
     this.emailDataGridViewTextBoxColumn.HeaderText = "email";
     this.emailDataGridViewTextBoxColumn.Name = "emailDataGridViewTextBoxColumn";
     //
     // telfDataGridViewTextBoxColumn
     //
     this.telfDataGridViewTextBoxColumn.DataPropertyName = "telf";
     this.telfDataGridViewTextBoxColumn.HeaderText = "telf";
     this.telfDataGridViewTextBoxColumn.Name = "telfDataGridViewTextBoxColumn";
     //
     // adminDataGridViewCheckBoxColumn
     //
     this.adminDataGridViewCheckBoxColumn.DataPropertyName = "admin";
     this.adminDataGridViewCheckBoxColumn.HeaderText = "admin";
     this.adminDataGridViewCheckBoxColumn.Name = "adminDataGridViewCheckBoxColumn";
     //
     // fechinicDataGridViewTextBoxColumn
     //
     this.fechinicDataGridViewTextBoxColumn.DataPropertyName = "fech_inic";
     this.fechinicDataGridViewTextBoxColumn.HeaderText = "fech_inic";
     this.fechinicDataGridViewTextBoxColumn.Name = "fechinicDataGridViewTextBoxColumn";
     //
     // fechsaliDataGridViewTextBoxColumn
     //
     this.fechsaliDataGridViewTextBoxColumn.DataPropertyName = "fech_sali";
     this.fechsaliDataGridViewTextBoxColumn.HeaderText = "fech_sali";
     this.fechsaliDataGridViewTextBoxColumn.Name = "fechsaliDataGridViewTextBoxColumn";
     //
     // usuarioDataGridViewTextBoxColumn
     //
     this.usuarioDataGridViewTextBoxColumn.DataPropertyName = "usuario";
     this.usuarioDataGridViewTextBoxColumn.HeaderText = "usuario";
     this.usuarioDataGridViewTextBoxColumn.Name = "usuarioDataGridViewTextBoxColumn";
     //
     // passwordDataGridViewTextBoxColumn
     //
     this.passwordDataGridViewTextBoxColumn.DataPropertyName = "password";
     this.passwordDataGridViewTextBoxColumn.HeaderText = "password";
     this.passwordDataGridViewTextBoxColumn.Name = "passwordDataGridViewTextBoxColumn";
     //
     // activoDataGridViewCheckBoxColumn
     //
     this.activoDataGridViewCheckBoxColumn.DataPropertyName = "activo";
     this.activoDataGridViewCheckBoxColumn.HeaderText = "activo";
     this.activoDataGridViewCheckBoxColumn.Name = "activoDataGridViewCheckBoxColumn";
     //
     // chkAdmin
     //
     //
     //
     //
     this.chkAdmin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkAdmin.DataBindings.Add(new System.Windows.Forms.Binding("CheckValue", this.usuarioBindingSource, "admin", true));
     this.chkAdmin.Location = new System.Drawing.Point(503, 196);
     this.chkAdmin.Name = "chkAdmin";
     this.chkAdmin.Size = new System.Drawing.Size(100, 23);
     this.chkAdmin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkAdmin.TabIndex = 40;
     this.chkAdmin.Text = "Administrador";
     //
     // FormUsuario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(767, 396);
     this.Controls.Add(this.chkAdmin);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.txtCodUsuario);
     this.Controls.Add(this.etiCodigoUsuario);
     this.Controls.Add(this.chkActivo);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtUser);
     this.Controls.Add(this.etiUsuario);
     this.Controls.Add(this.etiFechFin);
     this.Controls.Add(this.dtFechFin);
     this.Controls.Add(this.etiFechIni);
     this.Controls.Add(this.dtFechIni);
     this.Controls.Add(this.txtTelefono);
     this.Controls.Add(this.etiTelefono);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.etiEmail);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.etiNombre);
     this.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "FormUsuario";
     this.Text = "MetroForm";
     this.Load += new System.EventHandler(this.FormUsuario_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.usuarioBindingSource)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #24
0
ファイル: Frmpeiban.designer.cs プロジェクト: callme119/civil
 /// <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();
 }
コード例 #25
0
 /// <summary>
 /// 此為設計工具支援所需的方法 - 請勿使用程式碼編輯器修改這個方法的內容。
 ///
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ImportClassV2));
     this.wizard1 = new DevComponents.DotNetBar.Wizard();
     this.wizardPage1 = new DevComponents.DotNetBar.WizardPage();
     this.chkTrim = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.lblReqFields = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.txtFile = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.wizardPage2 = new DevComponents.DotNetBar.WizardPage();
     this.checkBox1 = new System.Windows.Forms.CheckBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.wizardPage3 = new DevComponents.DotNetBar.WizardPage();
     this.linkLabel3 = new System.Windows.Forms.LinkLabel();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.lblErrCount = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.lblWarningCount = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.progressBarX1 = new DevComponents.DotNetBar.Controls.ProgressBarX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.SelectSourceFileDialog = new System.Windows.Forms.OpenFileDialog();
     this.errorFile = new System.Windows.Forms.ErrorProvider(this.components);
     this.errorKey = new System.Windows.Forms.ErrorProvider(this.components);
     this.wizard1.SuspendLayout();
     this.wizardPage1.SuspendLayout();
     this.wizardPage2.SuspendLayout();
     this.wizardPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).BeginInit();
     this.SuspendLayout();
     //
     // wizard1
     //
     this.wizard1.BackButtonText = "上一步";
     this.wizard1.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("wizard1.BackgroundImage")));
     this.wizard1.ButtonStyle = DevComponents.DotNetBar.eWizardStyle.Office2007;
     this.wizard1.CancelButtonText = "關閉";
     this.wizard1.Cursor = System.Windows.Forms.Cursors.Default;
     this.wizard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wizard1.FinishButtonTabIndex = 3;
     this.wizard1.FinishButtonText = "開始匯入";
     this.wizard1.FooterHeight = 33;
     //
     //
     //
     this.wizard1.FooterStyle.BackColor = System.Drawing.Color.Transparent;
     this.wizard1.FooterStyle.Class = "";
     this.wizard1.FooterStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(57)))), ((int)(((byte)(129)))));
     this.wizard1.HeaderCaptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.wizard1.HeaderDescriptionFont = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     this.wizard1.HeaderDescriptionIndent = 16;
     this.wizard1.HeaderImage = ((System.Drawing.Image)(resources.GetObject("wizard1.HeaderImage")));
     //
     //
     //
     this.wizard1.HeaderStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(215)))), ((int)(((byte)(243)))));
     this.wizard1.HeaderStyle.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(219)))), ((int)(((byte)(241)))), ((int)(((byte)(254)))));
     this.wizard1.HeaderStyle.BackColorGradientAngle = 90;
     this.wizard1.HeaderStyle.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.wizard1.HeaderStyle.BorderBottomColor = System.Drawing.Color.FromArgb(((int)(((byte)(121)))), ((int)(((byte)(157)))), ((int)(((byte)(182)))));
     this.wizard1.HeaderStyle.BorderBottomWidth = 1;
     this.wizard1.HeaderStyle.BorderColor = System.Drawing.SystemColors.Control;
     this.wizard1.HeaderStyle.BorderLeftWidth = 1;
     this.wizard1.HeaderStyle.BorderRightWidth = 1;
     this.wizard1.HeaderStyle.BorderTopWidth = 1;
     this.wizard1.HeaderStyle.Class = "";
     this.wizard1.HeaderStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizard1.HeaderStyle.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.wizard1.HeaderStyle.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.wizard1.HelpButtonVisible = false;
     this.wizard1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     this.wizard1.Location = new System.Drawing.Point(0, 0);
     this.wizard1.Name = "wizard1";
     this.wizard1.NextButtonText = "下一步";
     this.wizard1.Size = new System.Drawing.Size(464, 323);
     this.wizard1.TabIndex = 0;
     this.wizard1.WizardPages.AddRange(new DevComponents.DotNetBar.WizardPage[] {
     this.wizardPage1,
     this.wizardPage2,
     this.wizardPage3});
     this.wizard1.WizardPageChanged += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizard1_WizardPageChanged);
     //
     // wizardPage1
     //
     this.wizardPage1.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.wizardPage1.AntiAlias = false;
     this.wizardPage1.BackButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage1.Controls.Add(this.chkTrim);
     this.wizardPage1.Controls.Add(this.linkLabel2);
     this.wizardPage1.Controls.Add(this.lblReqFields);
     this.wizardPage1.Controls.Add(this.labelX1);
     this.wizardPage1.Controls.Add(this.buttonX1);
     this.wizardPage1.Controls.Add(this.txtFile);
     this.wizardPage1.Location = new System.Drawing.Point(7, 72);
     this.wizardPage1.Name = "wizardPage1";
     this.wizardPage1.NextButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage1.PageDescription = "選取匯入檔案";
     this.wizardPage1.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage1.Style.Class = "";
     this.wizardPage1.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseDown.Class = "";
     this.wizardPage1.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage1.StyleMouseOver.Class = "";
     this.wizardPage1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage1.TabIndex = 7;
     //
     // chkTrim
     //
     this.chkTrim.AutoSize = true;
     //
     //
     //
     this.chkTrim.BackgroundStyle.Class = "";
     this.chkTrim.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkTrim.Checked = true;
     this.chkTrim.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkTrim.CheckValue = "Y";
     this.chkTrim.Location = new System.Drawing.Point(35, 65);
     this.chkTrim.Name = "chkTrim";
     this.chkTrim.Size = new System.Drawing.Size(161, 21);
     this.chkTrim.TabIndex = 4;
     this.chkTrim.Text = "自動過慮頭尾空白字元";
     this.chkTrim.CheckedChanged += new System.EventHandler(this.chkTrim_CheckedChanged);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.Location = new System.Drawing.Point(357, 65);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(60, 17);
     this.linkLabel2.TabIndex = 3;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "重新整理";
     this.linkLabel2.Visible = false;
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // lblReqFields
     //
     this.lblReqFields.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.lblReqFields.BackgroundStyle.Class = "";
     this.lblReqFields.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblReqFields.Location = new System.Drawing.Point(105, 85);
     this.lblReqFields.Name = "lblReqFields";
     this.lblReqFields.Size = new System.Drawing.Size(312, 121);
     this.lblReqFields.TabIndex = 2;
     this.lblReqFields.TextLineAlignment = System.Drawing.StringAlignment.Near;
     this.lblReqFields.WordWrap = true;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(35, 85);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 2;
     this.labelX1.Text = "必要欄位:";
     //
     // 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.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonX1.Location = new System.Drawing.Point(394, 36);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(23, 25);
     this.buttonX1.TabIndex = 1;
     this.buttonX1.Text = "‧‧‧";
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtFile
     //
     this.txtFile.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFile.Border.Class = "TextBoxBorder";
     this.txtFile.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFile.Location = new System.Drawing.Point(35, 36);
     this.txtFile.Name = "txtFile";
     this.txtFile.Size = new System.Drawing.Size(353, 25);
     this.txtFile.TabIndex = 0;
     this.txtFile.TextChanged += new System.EventHandler(this.txtFile_TextChanged);
     //
     // wizardPage2
     //
     this.wizardPage2.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.wizardPage2.AntiAlias = false;
     this.wizardPage2.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage2.Controls.Add(this.checkBox1);
     this.wizardPage2.Controls.Add(this.listView1);
     this.wizardPage2.Location = new System.Drawing.Point(7, 72);
     this.wizardPage2.Name = "wizardPage2";
     this.wizardPage2.PageDescription = "選取匯入欄位";
     this.wizardPage2.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage2.Style.Class = "";
     this.wizardPage2.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseDown.Class = "";
     this.wizardPage2.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage2.StyleMouseOver.Class = "";
     this.wizardPage2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage2.TabIndex = 8;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.BackColor = System.Drawing.Color.Transparent;
     this.checkBox1.Location = new System.Drawing.Point(0, -2);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(72, 16);
     this.checkBox1.TabIndex = 1;
     this.checkBox1.Text = "全部選取";
     this.checkBox1.UseVisualStyleBackColor = false;
     //
     // listView1
     //
     this.listView1.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.listView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.listView1.CheckBoxes = true;
     this.listView1.Location = new System.Drawing.Point(0, 17);
     this.listView1.Name = "listView1";
     this.listView1.ShowGroups = false;
     this.listView1.Size = new System.Drawing.Size(450, 189);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     //
     // wizardPage3
     //
     this.wizardPage3.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.wizardPage3.AntiAlias = false;
     this.wizardPage3.BackColor = System.Drawing.Color.Transparent;
     this.wizardPage3.Controls.Add(this.linkLabel3);
     this.wizardPage3.Controls.Add(this.linkLabel1);
     this.wizardPage3.Controls.Add(this.lblErrCount);
     this.wizardPage3.Controls.Add(this.labelX4);
     this.wizardPage3.Controls.Add(this.lblWarningCount);
     this.wizardPage3.Controls.Add(this.labelX3);
     this.wizardPage3.Controls.Add(this.progressBarX1);
     this.wizardPage3.Controls.Add(this.labelX2);
     this.wizardPage3.FinishButtonEnabled = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.Location = new System.Drawing.Point(7, 72);
     this.wizardPage3.Name = "wizardPage3";
     this.wizardPage3.NextButtonVisible = DevComponents.DotNetBar.eWizardButtonState.False;
     this.wizardPage3.PageDescription = "驗證匯入資料";
     this.wizardPage3.Size = new System.Drawing.Size(450, 206);
     //
     //
     //
     this.wizardPage3.Style.Class = "";
     this.wizardPage3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseDown.Class = "";
     this.wizardPage3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     //
     //
     //
     this.wizardPage3.StyleMouseOver.Class = "";
     this.wizardPage3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.wizardPage3.TabIndex = 9;
     this.wizardPage3.AfterPageDisplayed += new DevComponents.DotNetBar.WizardPageChangeEventHandler(this.wizardPage3_AfterPageDisplayed);
     this.wizardPage3.BackButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_BackButtonClick);
     this.wizardPage3.FinishButtonClick += new System.ComponentModel.CancelEventHandler(this.wizardPage3_FinishButtonClick);
     //
     // linkLabel3
     //
     this.linkLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel3.AutoSize = true;
     this.linkLabel3.Location = new System.Drawing.Point(353, 187);
     this.linkLabel3.Name = "linkLabel3";
     this.linkLabel3.Size = new System.Drawing.Size(60, 17);
     this.linkLabel3.TabIndex = 4;
     this.linkLabel3.TabStop = true;
     this.linkLabel3.Text = "終止驗證";
     this.linkLabel3.Visible = false;
     this.linkLabel3.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel3_LinkClicked);
     //
     // linkLabel1
     //
     this.linkLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.Location = new System.Drawing.Point(314, 187);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(99, 17);
     this.linkLabel1.TabIndex = 3;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "檢視驗證後資料";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // lblErrCount
     //
     this.lblErrCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblErrCount.AutoSize = true;
     //
     //
     //
     this.lblErrCount.BackgroundStyle.Class = "";
     this.lblErrCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblErrCount.Location = new System.Drawing.Point(159, 139);
     this.lblErrCount.Name = "lblErrCount";
     this.lblErrCount.Size = new System.Drawing.Size(15, 21);
     this.lblErrCount.TabIndex = 2;
     this.lblErrCount.Text = "0";
     //
     // labelX4
     //
     this.labelX4.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(58, 139);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(101, 21);
     this.labelX4.TabIndex = 2;
     this.labelX4.Text = "錯誤資料筆數:";
     //
     // lblWarningCount
     //
     this.lblWarningCount.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.lblWarningCount.AutoSize = true;
     //
     //
     //
     this.lblWarningCount.BackgroundStyle.Class = "";
     this.lblWarningCount.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblWarningCount.Location = new System.Drawing.Point(159, 101);
     this.lblWarningCount.Name = "lblWarningCount";
     this.lblWarningCount.Size = new System.Drawing.Size(15, 21);
     this.lblWarningCount.TabIndex = 2;
     this.lblWarningCount.Text = "0";
     //
     // labelX3
     //
     this.labelX3.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(58, 101);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(101, 21);
     this.labelX3.TabIndex = 2;
     this.labelX3.Text = "警告資料筆數:";
     //
     // progressBarX1
     //
     this.progressBarX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.progressBarX1.BackgroundStyle.Class = "";
     this.progressBarX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.progressBarX1.Location = new System.Drawing.Point(118, 30);
     this.progressBarX1.Name = "progressBarX1";
     this.progressBarX1.Size = new System.Drawing.Size(295, 23);
     this.progressBarX1.TabIndex = 1;
     this.progressBarX1.Text = "progressBarX1";
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(37, 32);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(74, 21);
     this.labelX2.TabIndex = 0;
     this.labelX2.Text = "資料驗證中";
     //
     // SelectSourceFileDialog
     //
     this.SelectSourceFileDialog.Filter = "Excel 檔案 (*.xls)| *.xls";
     //
     // errorFile
     //
     this.errorFile.BlinkRate = 0;
     this.errorFile.BlinkStyle = System.Windows.Forms.ErrorBlinkStyle.NeverBlink;
     this.errorFile.ContainerControl = this;
     //
     // errorKey
     //
     this.errorKey.ContainerControl = this;
     //
     // ImportClassV2
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(464, 323);
     this.Controls.Add(this.wizard1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "ImportClassV2";
     this.Text = "";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ImportStudent_FormClosed);
     this.wizard1.ResumeLayout(false);
     this.wizardPage1.ResumeLayout(false);
     this.wizardPage1.PerformLayout();
     this.wizardPage2.ResumeLayout(false);
     this.wizardPage2.PerformLayout();
     this.wizardPage3.ResumeLayout(false);
     this.wizardPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.errorFile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorKey)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #26
0
ファイル: ucFunction.cs プロジェクト: uQr/Visual-NHibernate
        /// <summary>
        /// Fills the debug parameters grid with values.
        /// </summary>
        private void PopulateDebugParameters()
        {
            treeDebugParams.Nodes.Clear();
            ParametersToPass = new object[CurrentFunction.Parameters.Count];
            bool parametersMatch = false;
            List<object> parameterObjects = null;
            ValuesThatHaveBeenSet = new bool[CurrentFunction.Parameters.Count];

            if (FunctionRunner.CachedParameters.ContainsKey(CurrentFunction))
            {
                parameterObjects = FunctionRunner.CachedParameters[CurrentFunction];
                parametersMatch = CurrentFunction.Parameters.Count == parameterObjects.Count;

                if (parametersMatch)
                {
                    for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
                    {
                        if (parameterObjects[i] == null || !CurrentFunction.Parameters[i].DataType.IsInstanceOfType(parameterObjects[i]))
                        {
                            parametersMatch = false;
                        }
                    }
                }
            }
            for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
            {
                if (parametersMatch)
                {
                    ParametersToPass[i] = parameterObjects[i];
                    ValuesThatHaveBeenSet[i] = true;
                }
            }
            for (int i = 0; i < CurrentFunction.Parameters.Count; i++)
            {
                ParamInfo param = CurrentFunction.Parameters[i];
                string displayName = param.Name;
                //string displayName = string.Format("{2}. {0} ({1}):", param.Name, param.DataType, i + 1);
                string displayValue = "";
                DevComponents.AdvTree.Node node = new DevComponents.AdvTree.Node();
                node.Cells[0].StyleNormal = treeDebugParams.Styles["elementStyle1"];
                node.Tag = param;
                Control editControl = null;
                object existingParamObject = null;
                bool isBasicType = true;

                switch (param.DataType.Name.ToLower())
                {
                    case "bool":
                    case "boolean":
                        editControl = new DevComponents.DotNetBar.Controls.CheckBoxX();
                        ((DevComponents.DotNetBar.Controls.CheckBoxX)editControl).Checked = ValuesThatHaveBeenSet[i] ? (bool)ParametersToPass[i] : false;
                        ((DevComponents.DotNetBar.Controls.CheckBoxX)editControl).CheckedChangedEx += DebugParamChanged_CheckboxX;
                        break;
                    case "int":
                    case "int32":
                        editControl = new DevComponents.Editors.IntegerInput();
                        ((DevComponents.Editors.IntegerInput)editControl).Value = ValuesThatHaveBeenSet[i] ? (int)ParametersToPass[i] : 0;
                        ((DevComponents.Editors.IntegerInput)editControl).ValueChanged += DebugParamChanged_IntegerInput;
                        break;
                    case "double":
                        editControl = new DevComponents.Editors.DoubleInput();
                        ((DevComponents.Editors.DoubleInput)editControl).Value = ValuesThatHaveBeenSet[i] ? (double)ParametersToPass[i] : 0;
                        ((DevComponents.Editors.DoubleInput)editControl).ValueChanged += DebugParamChanged_DoubleInput;
                        break;
                    case "string":
                        editControl = new DevComponents.DotNetBar.Controls.TextBoxX();
                        editControl.Text = ValuesThatHaveBeenSet[i] ? (string)ParametersToPass[i] : "";
                        editControl.TextChanged += DebugParamChanged_TextBoxX;
                        break;
                    default:
                        //MessageBox.Show(string.Format("Parameter-type not handled yet: {0}.\n\nPlease contact [email protected]", param.DataType.Name), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                        //return;
                        isBasicType = false;
                        break;
                }
                if (isBasicType)
                {
                    node.Text = string.Format("{0} ({1})", param.Name, param.DataType);
                }
                //if (param.DataType.GetInterface("ArchAngel.Interfaces.IScriptBaseObject") != null)
                if (!isBasicType)
                {
                    if (ParametersToPass[i] != null)
                    {
                        displayValue = ProviderInfo.GetDisplayName(ParametersToPass[i]);
                    }
                    else
                    {
                        // Let's check whether another function has previously set a value for this kind of object...
                        foreach (List<object> paramList in FunctionRunner.CachedParameters.Values)
                        {
                            foreach (object existingParam in paramList)
                            {
                                if (param.DataType.IsInstanceOfType(existingParam))
                                {
                                    existingParamObject = existingParam;
                                    ValuesThatHaveBeenSet[i] = true;
                                    ParametersToPass[i] = existingParamObject;
                                    displayValue = ProviderInfo.GetDisplayName(existingParam);
                                }
                            }
                        }
                        if (existingParamObject == null)
                        {
                            //node.Cells[0].StyleNormal = treeDebugParams.Styles["elementStyleMissing"];
                            node.ImageIndex = 1;
                            displayValue = "Click to set";
                        }
                    }
                    //editControl = new DevComponents.DotNetBar.Controls.ComboTree();
                    editControl = new ButtonX();
                    editControl.Text = editControl.Text = ValuesThatHaveBeenSet[i] ? displayValue : "Click to set";
                    editControl.Text = string.Format("<u>{0}</u>", editControl.Text);
                    editControl.Tag = existingParamObject;
                    ((ButtonX)editControl).ColorTable = eButtonColor.Flat;
                    ((ButtonX)editControl).Style = eDotNetBarStyle.OfficeXP;
                    ((ButtonX)editControl).FocusCuesEnabled = false;
                    editControl.Cursor = Cursors.Hand;
                    editControl.Click += DebugParamChanged_ButtonX;

                    //string[] prevSelections = new string[] { "red", "blue", "green"};

                    //foreach (string prevSelection in prevSelections)
                    //{
                    //    DevComponents.AdvTree.Node prevSelNode = new DevComponents.AdvTree.Node();
                    //    prevSelNode.Text = prevSelection;
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).Nodes.Add(prevSelNode);
                    //    //((ComboBox)editControl).Items.Add(prevSelection);
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).Dock = DockStyle.Fill;
                    //    //((DevComponents.DotNetBar.Controls.ComboTree)editControl).SelectedIndex = 0;
                    //}
                    node.Text = displayName;
                    //node.he
                }
                DevComponents.AdvTree.Cell cell = new DevComponents.AdvTree.Cell();
                cell.HostedControl = editControl;
                cell.StyleNormal = treeDebugParams.Styles["elementStyle1"];
                node.Cells.Add(cell);
                treeDebugParams.Nodes.Add(node);
            }
            SetCachedParameters();
        }
コード例 #27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.panelNhapXuat = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.rdThu = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.rdChi = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cmdShow = new DevComponents.DotNetBar.ButtonX();
     this.txtNam = new DevComponents.Editors.IntegerInput();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtThang = new DevComponents.Editors.IntegerInput();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.panelNhapXuat.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtNam)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThang)).BeginInit();
     this.SuspendLayout();
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex = -1;
     this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.crystalReportViewer1.Location = new System.Drawing.Point(0, 126);
     this.crystalReportViewer1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.crystalReportViewer1.Name = "crystalReportViewer1";
     this.crystalReportViewer1.SelectionFormula = "";
     this.crystalReportViewer1.Size = new System.Drawing.Size(992, 620);
     this.crystalReportViewer1.TabIndex = 74;
     this.crystalReportViewer1.ViewTimeSelectionFormula = "";
     //
     // panelNhapXuat
     //
     this.panelNhapXuat.BackColor = System.Drawing.Color.Transparent;
     this.panelNhapXuat.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelNhapXuat.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelNhapXuat.Controls.Add(this.rdThu);
     this.panelNhapXuat.Controls.Add(this.rdChi);
     this.panelNhapXuat.Controls.Add(this.cmdShow);
     this.panelNhapXuat.Controls.Add(this.txtNam);
     this.panelNhapXuat.Controls.Add(this.labelX1);
     this.panelNhapXuat.Controls.Add(this.txtThang);
     this.panelNhapXuat.Controls.Add(this.labelX26);
     this.panelNhapXuat.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelNhapXuat.Location = new System.Drawing.Point(0, 35);
     this.panelNhapXuat.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.panelNhapXuat.Name = "panelNhapXuat";
     this.panelNhapXuat.Size = new System.Drawing.Size(992, 91);
     //
     //
     //
     this.panelNhapXuat.Style.BackColor = System.Drawing.Color.Transparent;
     this.panelNhapXuat.Style.BackColor2 = System.Drawing.Color.Transparent;
     this.panelNhapXuat.Style.BackColorGradientAngle = 90;
     this.panelNhapXuat.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelNhapXuat.Style.BorderBottomWidth = 1;
     this.panelNhapXuat.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelNhapXuat.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelNhapXuat.Style.BorderLeftWidth = 1;
     this.panelNhapXuat.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelNhapXuat.Style.BorderRightWidth = 1;
     this.panelNhapXuat.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.panelNhapXuat.Style.BorderTopWidth = 1;
     this.panelNhapXuat.Style.CornerDiameter = 4;
     this.panelNhapXuat.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
     this.panelNhapXuat.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
     this.panelNhapXuat.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelNhapXuat.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
     this.panelNhapXuat.TabIndex = 73;
     this.panelNhapXuat.Text = "Thông tin";
     //
     // rdThu
     //
     this.rdThu.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.rdThu.Checked = true;
     this.rdThu.CheckState = System.Windows.Forms.CheckState.Checked;
     this.rdThu.CheckValue = "Y";
     this.rdThu.Location = new System.Drawing.Point(390, 43);
     this.rdThu.Name = "rdThu";
     this.rdThu.Size = new System.Drawing.Size(71, 23);
     this.rdThu.TabIndex = 77;
     this.rdThu.Text = "Thu";
     //
     // rdChi
     //
     this.rdChi.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.rdChi.Location = new System.Drawing.Point(467, 43);
     this.rdChi.Name = "rdChi";
     this.rdChi.Size = new System.Drawing.Size(59, 23);
     this.rdChi.TabIndex = 78;
     this.rdChi.Text = "Chi";
     //
     // cmdShow
     //
     this.cmdShow.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.cmdShow.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
     this.cmdShow.Location = new System.Drawing.Point(526, 38);
     this.cmdShow.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cmdShow.Name = "cmdShow";
     this.cmdShow.Size = new System.Drawing.Size(86, 28);
     this.cmdShow.TabIndex = 72;
     this.cmdShow.Text = "Báo cáo";
     this.cmdShow.Click += new System.EventHandler(this.cmdShow_Click);
     //
     // txtNam
     //
     //
     //
     //
     this.txtNam.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txtNam.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.txtNam.Location = new System.Drawing.Point(526, 7);
     this.txtNam.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtNam.Name = "txtNam";
     this.txtNam.ShowUpDown = true;
     this.txtNam.Size = new System.Drawing.Size(64, 24);
     this.txtNam.TabIndex = 71;
     //
     // labelX1
     //
     this.labelX1.Location = new System.Drawing.Point(480, 6);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(46, 30);
     this.labelX1.TabIndex = 70;
     this.labelX1.Text = "Năm:";
     //
     // txtThang
     //
     //
     //
     //
     this.txtThang.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txtThang.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.txtThang.Location = new System.Drawing.Point(390, 6);
     this.txtThang.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txtThang.Name = "txtThang";
     this.txtThang.ShowUpDown = true;
     this.txtThang.Size = new System.Drawing.Size(64, 24);
     this.txtThang.TabIndex = 69;
     //
     // labelX26
     //
     this.labelX26.Location = new System.Drawing.Point(344, 4);
     this.labelX26.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(46, 30);
     this.labelX26.TabIndex = 60;
     this.labelX26.Text = "Tháng:";
     //
     // frmTonghopthu_chi
     //
     this.ClientSize = new System.Drawing.Size(992, 746);
     this.Controls.Add(this.crystalReportViewer1);
     this.Controls.Add(this.panelNhapXuat);
     this.Name = "frmTonghopthu_chi";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Controls.SetChildIndex(this.panelNhapXuat, 0);
     this.Controls.SetChildIndex(this.crystalReportViewer1, 0);
     this.panelNhapXuat.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtNam)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtThang)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #28
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_Stylemanager));

            _ComboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBoxEx1.SelectedIndexChanged  += new EventHandler(ComboBoxEx1_SelectedIndexChanged);
            _CheckBoxX_KeepEditorControlBarBlue = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_KeepEditorControlBarBlue.CheckedChanged += new EventHandler(CheckBoxX_KeepEditorControlBarBlue_CheckedChanged);
            _CheckBoxX1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX1.CheckedChanged += new EventHandler(ComboBoxEx1_SelectedIndexChanged);
            _CheckBoxX2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX2.CheckedChanged += new EventHandler(CheckBoxX2_CheckedChanged);
            _Panel1 = new Panel();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // ComboBoxEx1
            //
            _ComboBoxEx1.DisplayMember  = "Text";
            _ComboBoxEx1.DrawMode       = DrawMode.OwnerDrawFixed;
            _ComboBoxEx1.DropDownHeight = 150;
            _ComboBoxEx1.DropDownStyle  = ComboBoxStyle.DropDownList;
            resources.ApplyResources(_ComboBoxEx1, "ComboBoxEx1");
            _ComboBoxEx1.ForeColor         = Color.Black;
            _ComboBoxEx1.FormattingEnabled = true;
            _ComboBoxEx1.Name  = "ComboBoxEx1";
            _ComboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // CheckBoxX_KeepEditorControlBarBlue
            //
            //
            //
            //
            _CheckBoxX_KeepEditorControlBarBlue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_KeepEditorControlBarBlue.FocusCuesEnabled           = false;
            resources.ApplyResources(_CheckBoxX_KeepEditorControlBarBlue, "CheckBoxX_KeepEditorControlBarBlue");
            _CheckBoxX_KeepEditorControlBarBlue.Name  = "CheckBoxX_KeepEditorControlBarBlue";
            _CheckBoxX_KeepEditorControlBarBlue.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // CheckBoxX1
            //
            //
            //
            //
            _CheckBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX1.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX1.FocusCuesEnabled = false;
            resources.ApplyResources(_CheckBoxX1, "CheckBoxX1");
            _CheckBoxX1.Name  = "CheckBoxX1";
            _CheckBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // CheckBoxX2
            //
            //
            //
            //
            _CheckBoxX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX2.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX2.FocusCuesEnabled = false;
            resources.ApplyResources(_CheckBoxX2, "CheckBoxX2");
            _CheckBoxX2.Name  = "CheckBoxX2";
            _CheckBoxX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_CheckBoxX1);
            _Panel1.Controls.Add(_CheckBoxX2);
            _Panel1.Controls.Add(_ComboBoxEx1);
            _Panel1.Controls.Add(_CheckBoxX_KeepEditorControlBarBlue);
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.Name = "Panel1";
            //
            // Form_Stylemanager
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode         = AutoScaleMode.Font;
            BottomLeftCornerSize  = 0;
            BottomRightCornerSize = 0;
            Controls.Add(_Panel1);
            FormBorderStyle    = FormBorderStyle.FixedSingle;
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "Form_Stylemanager";
            ShowInTaskbar      = false;
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
コード例 #29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
     "身分證號"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("畢業班級");
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("座號");
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("學號");
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
     "姓名"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("戶籍電話");
     System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem("聯絡電話");
     System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("行動電話");
     System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem("其它電話1");
     System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("其它電話2");
     System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem("其它電話3");
     System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem("監護人電話");
     System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem("父親電話");
     System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem("母親電話");
     System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
     "填報學年度"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
     "畢業生目前動向"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
     "是否需要教育部協助"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
     "備註"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     this.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnExport = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.FieldContainer = new System.Windows.Forms.ListView();
     this.lblExplanation = new DevComponents.DotNetBar.LabelX();
     this.circularProgress = new DevComponents.DotNetBar.Controls.CircularProgress();
     this.nudSchoolYear = new System.Windows.Forms.NumericUpDown();
     this.lblSchoolYear = new DevComponents.DotNetBar.LabelX();
     this.radioAllStudentInOneFile = new System.Windows.Forms.RadioButton();
     this.radioOneClassInOneFile = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).BeginInit();
     this.SuspendLayout();
     //
     // chkSelectAll
     //
     this.chkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Checked = true;
     this.chkSelectAll.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelectAll.CheckValue = "Y";
     this.chkSelectAll.Location = new System.Drawing.Point(136, 15);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // btnExport
     //
     this.btnExport.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.AutoSize = true;
     this.btnExport.BackColor = System.Drawing.Color.Transparent;
     this.btnExport.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExport.Location = new System.Drawing.Point(298, 356);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(75, 25);
     this.btnExport.TabIndex = 4;
     this.btnExport.Text = "匯出";
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(383, 356);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 25);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "關閉";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // FieldContainer
     //
     this.FieldContainer.CheckBoxes = true;
     this.FieldContainer.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.FieldContainer.HideSelection = false;
     listViewItem1.Checked = true;
     listViewItem1.StateImageIndex = 1;
     listViewItem2.StateImageIndex = 0;
     listViewItem3.StateImageIndex = 0;
     listViewItem4.StateImageIndex = 0;
     listViewItem5.Checked = true;
     listViewItem5.StateImageIndex = 1;
     listViewItem6.StateImageIndex = 0;
     listViewItem7.StateImageIndex = 0;
     listViewItem8.StateImageIndex = 0;
     listViewItem9.StateImageIndex = 0;
     listViewItem10.StateImageIndex = 0;
     listViewItem11.StateImageIndex = 0;
     listViewItem12.StateImageIndex = 0;
     listViewItem13.StateImageIndex = 0;
     listViewItem14.StateImageIndex = 0;
     listViewItem15.Checked = true;
     listViewItem15.StateImageIndex = 1;
     listViewItem16.Checked = true;
     listViewItem16.StateImageIndex = 1;
     listViewItem17.Checked = true;
     listViewItem17.StateImageIndex = 1;
     listViewItem18.Checked = true;
     listViewItem18.StateImageIndex = 1;
     this.FieldContainer.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5,
     listViewItem6,
     listViewItem7,
     listViewItem8,
     listViewItem9,
     listViewItem10,
     listViewItem11,
     listViewItem12,
     listViewItem13,
     listViewItem14,
     listViewItem15,
     listViewItem16,
     listViewItem17,
     listViewItem18});
     this.FieldContainer.Location = new System.Drawing.Point(34, 51);
     this.FieldContainer.Name = "FieldContainer";
     this.FieldContainer.Size = new System.Drawing.Size(424, 260);
     this.FieldContainer.TabIndex = 19;
     this.FieldContainer.UseCompatibleStateImageBehavior = false;
     this.FieldContainer.View = System.Windows.Forms.View.List;
     this.FieldContainer.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.FieldContainer_ItemChecked);
     //
     // lblExplanation
     //
     this.lblExplanation.AutoSize = true;
     this.lblExplanation.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblExplanation.BackgroundStyle.Class = "";
     this.lblExplanation.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblExplanation.Location = new System.Drawing.Point(34, 15);
     this.lblExplanation.Name = "lblExplanation";
     this.lblExplanation.Size = new System.Drawing.Size(101, 21);
     this.lblExplanation.TabIndex = 20;
     this.lblExplanation.Text = "請選擇匯出欄位";
     //
     // circularProgress
     //
     this.circularProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.circularProgress.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.circularProgress.BackgroundStyle.Class = "";
     this.circularProgress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.circularProgress.Location = new System.Drawing.Point(249, 358);
     this.circularProgress.Name = "circularProgress";
     this.circularProgress.Size = new System.Drawing.Size(43, 23);
     this.circularProgress.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.circularProgress.TabIndex = 33;
     this.circularProgress.Visible = false;
     //
     // nudSchoolYear
     //
     this.nudSchoolYear.Location = new System.Drawing.Point(334, 13);
     this.nudSchoolYear.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.nudSchoolYear.Name = "nudSchoolYear";
     this.nudSchoolYear.Size = new System.Drawing.Size(66, 25);
     this.nudSchoolYear.TabIndex = 35;
     this.nudSchoolYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblSchoolYear
     //
     this.lblSchoolYear.AutoSize = true;
     this.lblSchoolYear.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblSchoolYear.BackgroundStyle.Class = "";
     this.lblSchoolYear.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblSchoolYear.Location = new System.Drawing.Point(254, 16);
     this.lblSchoolYear.Name = "lblSchoolYear";
     this.lblSchoolYear.Size = new System.Drawing.Size(74, 21);
     this.lblSchoolYear.TabIndex = 34;
     this.lblSchoolYear.Text = "填報學年度";
     //
     // radioAllStudentInOneFile
     //
     this.radioAllStudentInOneFile.AutoSize = true;
     this.radioAllStudentInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioAllStudentInOneFile.Location = new System.Drawing.Point(138, 323);
     this.radioAllStudentInOneFile.Name = "radioAllStudentInOneFile";
     this.radioAllStudentInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioAllStudentInOneFile.TabIndex = 1;
     this.radioAllStudentInOneFile.Tag = "2";
     this.radioAllStudentInOneFile.Text = "所有學生一個檔案";
     this.radioAllStudentInOneFile.UseVisualStyleBackColor = false;
     this.radioAllStudentInOneFile.Click += new System.EventHandler(this.radioAllStudentInOneFile_Click);
     //
     // radioOneClassInOneFile
     //
     this.radioOneClassInOneFile.AutoSize = true;
     this.radioOneClassInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioOneClassInOneFile.Location = new System.Drawing.Point(283, 323);
     this.radioOneClassInOneFile.Name = "radioOneClassInOneFile";
     this.radioOneClassInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioOneClassInOneFile.TabIndex = 0;
     this.radioOneClassInOneFile.Tag = "1";
     this.radioOneClassInOneFile.Text = "一個班級一個檔案";
     this.radioOneClassInOneFile.UseVisualStyleBackColor = false;
     this.radioOneClassInOneFile.Click += new System.EventHandler(this.radioOneClassInOneFile_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(34, 325);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(86, 17);
     this.label1.TabIndex = 36;
     this.label1.Text = "儲存檔案方式";
     //
     // Vagrant_Export
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAntiAlias = false;
     this.ClientSize = new System.Drawing.Size(492, 393);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.radioAllStudentInOneFile);
     this.Controls.Add(this.radioOneClassInOneFile);
     this.Controls.Add(this.nudSchoolYear);
     this.Controls.Add(this.lblSchoolYear);
     this.Controls.Add(this.circularProgress);
     this.Controls.Add(this.lblExplanation);
     this.Controls.Add(this.FieldContainer);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.chkSelectAll);
     this.DoubleBuffered = true;
     this.Name = "Vagrant_Export";
     this.Text = "";
     this.TitleText = "匯出資料至 Excel";
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #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.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.lvSourceFieldList = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // btnNext
     //
     this.btnNext.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     //
     // btnPrevious
     //
     this.btnPrevious.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     //
     // chkSelectAll
     //
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Checked = true;
     this.chkSelectAll.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelectAll.CheckValue = "Y";
     this.chkSelectAll.Location = new System.Drawing.Point(34, 317);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     //
     // lvSourceFieldList
     //
     //
     //
     //
     this.lvSourceFieldList.Border.Class = "ListViewBorder";
     this.lvSourceFieldList.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lvSourceFieldList.CheckBoxes = true;
     this.lvSourceFieldList.FullRowSelect = true;
     this.lvSourceFieldList.Location = new System.Drawing.Point(34, 53);
     this.lvSourceFieldList.Name = "lvSourceFieldList";
     this.lvSourceFieldList.ShowItemToolTips = true;
     this.lvSourceFieldList.Size = new System.Drawing.Size(424, 258);
     this.lvSourceFieldList.TabIndex = 2;
     this.lvSourceFieldList.UseCompatibleStateImageBehavior = false;
     this.lvSourceFieldList.View = System.Windows.Forms.View.List;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(23, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(395, 21);
     this.labelX1.TabIndex = 31;
     this.labelX1.Text = "請選擇您要匯入的欄位,若下方沒有欄位,請直接進行資料驗證。";
     //
     // SelectFields
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(492, 366);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.chkSelectAll);
     this.Controls.Add(this.lvSourceFieldList);
     this.Name = "SelectFields";
     this.Text = "";
     this.TitleText = "選擇要匯入的欄位";
     this.Controls.SetChildIndex(this.btnNext, 0);
     this.Controls.SetChildIndex(this.btnPrevious, 0);
     this.Controls.SetChildIndex(this.lvSourceFieldList, 0);
     this.Controls.SetChildIndex(this.chkSelectAll, 0);
     this.Controls.SetChildIndex(this.labelX1, 0);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #31
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmReport));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.panelEx1 = new DevComponents.DotNetBar.PanelEx();
     this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
     this.btnBack = new DevComponents.DotNetBar.ButtonX();
     this.pnlFilter = new DevComponents.DotNetBar.PanelEx();
     this.panelEx3 = new DevComponents.DotNetBar.PanelEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.btnView = new DevComponents.DotNetBar.ButtonX();
     this.txtString3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cmbReportList = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.chkBool3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.chkBool2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dtmDate1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.lblString1 = new DevComponents.DotNetBar.LabelX();
     this.lblString3 = new DevComponents.DotNetBar.LabelX();
     this.chkBool1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.lblDate2 = new DevComponents.DotNetBar.LabelX();
     this.lblString2 = new DevComponents.DotNetBar.LabelX();
     this.lblDate1 = new DevComponents.DotNetBar.LabelX();
     this.lblDate3 = new DevComponents.DotNetBar.LabelX();
     this.dtmDate3 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.panelEx4 = new DevComponents.DotNetBar.PanelEx();
     this.panelEx2 = new DevComponents.DotNetBar.PanelEx();
     this.grdList = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.bar1 = new DevComponents.DotNetBar.Bar();
     this.buttonItem1 = new DevComponents.DotNetBar.ButtonItem();
     this.lblList = new DevComponents.DotNetBar.LabelItem();
     this.txtString2 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.txtString1 = new PT.Manager.PTComponent.MultiDropDownTextBox(this.components);
     this.panelEx1.SuspendLayout();
     this.pnlFilter.SuspendLayout();
     this.panelEx3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).BeginInit();
     this.panelEx4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.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.panelEx1.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx1.Controls.Add(this.crystalReportViewer1);
     this.panelEx1.Controls.Add(this.btnBack);
     this.panelEx1.Controls.Add(this.pnlFilter);
     this.panelEx1.Location = new System.Drawing.Point(0, 0);
     this.panelEx1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(1039, 495);
     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 = 0;
     //
     // crystalReportViewer1
     //
     this.crystalReportViewer1.ActiveViewIndex = -1;
     this.crystalReportViewer1.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.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.crystalReportViewer1.Location = new System.Drawing.Point(0, 231);
     this.crystalReportViewer1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.crystalReportViewer1.Name = "crystalReportViewer1";
     this.crystalReportViewer1.SelectionFormula = "";
     this.crystalReportViewer1.Size = new System.Drawing.Size(1039, 264);
     this.crystalReportViewer1.TabIndex = 13;
     this.crystalReportViewer1.ViewTimeSelectionFormula = "";
     this.crystalReportViewer1.ReportRefresh += new CrystalDecisions.Windows.Forms.RefreshEventHandler(this.crystalReportViewer1_ReportRefresh);
     //
     // btnBack
     //
     this.btnBack.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBack.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBack.Dock = System.Windows.Forms.DockStyle.Top;
     this.btnBack.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.btnBack.Location = new System.Drawing.Point(0, 207);
     this.btnBack.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size(1039, 24);
     this.btnBack.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnBack.TabIndex = 12;
     this.btnBack.Text = "Hiện Toàn Màn Hình";
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click_1);
     //
     // pnlFilter
     //
     this.pnlFilter.CanvasColor = System.Drawing.SystemColors.Control;
     this.pnlFilter.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.pnlFilter.Controls.Add(this.panelEx3);
     this.pnlFilter.Controls.Add(this.panelEx4);
     this.pnlFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlFilter.Location = new System.Drawing.Point(0, 0);
     this.pnlFilter.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.pnlFilter.Name = "pnlFilter";
     this.pnlFilter.Size = new System.Drawing.Size(1039, 207);
     this.pnlFilter.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.pnlFilter.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.pnlFilter.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.pnlFilter.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.pnlFilter.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.pnlFilter.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.pnlFilter.Style.GradientAngle = 90;
     this.pnlFilter.TabIndex = 11;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx3.Controls.Add(this.txtString2);
     this.panelEx3.Controls.Add(this.txtString1);
     this.panelEx3.Controls.Add(this.labelX1);
     this.panelEx3.Controls.Add(this.btnView);
     this.panelEx3.Controls.Add(this.txtString3);
     this.panelEx3.Controls.Add(this.cmbReportList);
     this.panelEx3.Controls.Add(this.chkBool3);
     this.panelEx3.Controls.Add(this.dtmDate2);
     this.panelEx3.Controls.Add(this.chkBool2);
     this.panelEx3.Controls.Add(this.dtmDate1);
     this.panelEx3.Controls.Add(this.lblString1);
     this.panelEx3.Controls.Add(this.lblString3);
     this.panelEx3.Controls.Add(this.chkBool1);
     this.panelEx3.Controls.Add(this.lblDate2);
     this.panelEx3.Controls.Add(this.lblString2);
     this.panelEx3.Controls.Add(this.lblDate1);
     this.panelEx3.Controls.Add(this.lblDate3);
     this.panelEx3.Controls.Add(this.dtmDate3);
     this.panelEx3.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelEx3.Location = new System.Drawing.Point(0, 0);
     this.panelEx3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx3.Name = "panelEx3";
     this.panelEx3.Size = new System.Drawing.Size(346, 207);
     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 = 17;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.labelX1.Location = new System.Drawing.Point(6, 12);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(46, 24);
     this.labelX1.TabIndex = 1;
     this.labelX1.Text = "Báo Cáo";
     //
     // btnView
     //
     this.btnView.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnView.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnView.Image = ((System.Drawing.Image)(resources.GetObject("btnView.Image")));
     this.btnView.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.btnView.Location = new System.Drawing.Point(5, 170);
     this.btnView.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.btnView.Name = "btnView";
     this.btnView.Size = new System.Drawing.Size(328, 33);
     this.btnView.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnView.TabIndex = 9;
     this.btnView.Text = "Xem Báo Cáo";
     this.btnView.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // txtString3
     //
     //
     //
     //
     this.txtString3.Border.Class = "TextBoxBorder";
     this.txtString3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString3.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtString3.Location = new System.Drawing.Point(224, 109);
     this.txtString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.txtString3.Name = "txtString3";
     this.txtString3.Size = new System.Drawing.Size(100, 20);
     this.txtString3.TabIndex = 16;
     //
     // cmbReportList
     //
     this.cmbReportList.DisplayMember = "Text";
     this.cmbReportList.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbReportList.Font = new System.Drawing.Font("Arial", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     this.cmbReportList.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.cmbReportList.FormattingEnabled = true;
     this.cmbReportList.ItemHeight = 15;
     this.cmbReportList.Location = new System.Drawing.Point(58, 13);
     this.cmbReportList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.cmbReportList.Name = "cmbReportList";
     this.cmbReportList.Size = new System.Drawing.Size(276, 21);
     this.cmbReportList.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cmbReportList.TabIndex = 1;
     this.cmbReportList.SelectedValueChanged += new System.EventHandler(this.cmbReportList_SelectedValueChanged);
     //
     // chkBool3
     //
     //
     //
     //
     this.chkBool3.BackgroundStyle.Class = "";
     this.chkBool3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool3.Enabled = false;
     this.chkBool3.Location = new System.Drawing.Point(223, 135);
     this.chkBool3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool3.Name = "chkBool3";
     this.chkBool3.Size = new System.Drawing.Size(82, 19);
     this.chkBool3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool3.TabIndex = 14;
     this.chkBool3.Text = "Bool 3";
     //
     // dtmDate2
     //
     //
     //
     //
     this.dtmDate2.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate2.ButtonDropDown.Visible = true;
     this.dtmDate2.Enabled = false;
     this.dtmDate2.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate2.IsPopupCalendarOpen = false;
     this.dtmDate2.Location = new System.Drawing.Point(116, 62);
     this.dtmDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate2.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate2.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate2.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate2.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate2.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate2.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate2.Name = "dtmDate2";
     this.dtmDate2.Size = new System.Drawing.Size(100, 20);
     this.dtmDate2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate2.TabIndex = 1;
     //
     // chkBool2
     //
     //
     //
     //
     this.chkBool2.BackgroundStyle.Class = "";
     this.chkBool2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool2.Enabled = false;
     this.chkBool2.Location = new System.Drawing.Point(116, 135);
     this.chkBool2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool2.Name = "chkBool2";
     this.chkBool2.Size = new System.Drawing.Size(82, 19);
     this.chkBool2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool2.TabIndex = 1;
     this.chkBool2.Text = "Bool 2";
     //
     // dtmDate1
     //
     //
     //
     //
     this.dtmDate1.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate1.ButtonDropDown.Visible = true;
     this.dtmDate1.Enabled = false;
     this.dtmDate1.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate1.IsPopupCalendarOpen = false;
     this.dtmDate1.Location = new System.Drawing.Point(9, 62);
     this.dtmDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate1.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate1.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate1.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate1.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate1.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate1.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate1.Name = "dtmDate1";
     this.dtmDate1.Size = new System.Drawing.Size(100, 20);
     this.dtmDate1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate1.TabIndex = 11;
     //
     // lblString1
     //
     //
     //
     //
     this.lblString1.BackgroundStyle.Class = "";
     this.lblString1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString1.Location = new System.Drawing.Point(10, 89);
     this.lblString1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString1.Name = "lblString1";
     this.lblString1.Size = new System.Drawing.Size(95, 18);
     this.lblString1.TabIndex = 6;
     this.lblString1.Text = "String 1";
     //
     // lblString3
     //
     //
     //
     //
     this.lblString3.BackgroundStyle.Class = "";
     this.lblString3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString3.Location = new System.Drawing.Point(224, 89);
     this.lblString3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString3.Name = "lblString3";
     this.lblString3.Size = new System.Drawing.Size(95, 18);
     this.lblString3.TabIndex = 9;
     this.lblString3.Text = "String 3";
     //
     // chkBool1
     //
     //
     //
     //
     this.chkBool1.BackgroundStyle.Class = "";
     this.chkBool1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkBool1.Enabled = false;
     this.chkBool1.Location = new System.Drawing.Point(9, 135);
     this.chkBool1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.chkBool1.Name = "chkBool1";
     this.chkBool1.Size = new System.Drawing.Size(82, 19);
     this.chkBool1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkBool1.TabIndex = 0;
     this.chkBool1.Text = "Bool 1";
     //
     // lblDate2
     //
     //
     //
     //
     this.lblDate2.BackgroundStyle.Class = "";
     this.lblDate2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate2.Location = new System.Drawing.Point(116, 42);
     this.lblDate2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate2.Name = "lblDate2";
     this.lblDate2.Size = new System.Drawing.Size(95, 18);
     this.lblDate2.TabIndex = 5;
     this.lblDate2.Text = "Date 2";
     //
     // lblString2
     //
     //
     //
     //
     this.lblString2.BackgroundStyle.Class = "";
     this.lblString2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblString2.Location = new System.Drawing.Point(117, 89);
     this.lblString2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblString2.Name = "lblString2";
     this.lblString2.Size = new System.Drawing.Size(95, 18);
     this.lblString2.TabIndex = 7;
     this.lblString2.Text = "String 2";
     //
     // lblDate1
     //
     //
     //
     //
     this.lblDate1.BackgroundStyle.Class = "";
     this.lblDate1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate1.Location = new System.Drawing.Point(9, 40);
     this.lblDate1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate1.Name = "lblDate1";
     this.lblDate1.Size = new System.Drawing.Size(95, 18);
     this.lblDate1.TabIndex = 4;
     this.lblDate1.Text = "Date 1";
     //
     // lblDate3
     //
     //
     //
     //
     this.lblDate3.BackgroundStyle.Class = "";
     this.lblDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblDate3.Location = new System.Drawing.Point(223, 43);
     this.lblDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.lblDate3.Name = "lblDate3";
     this.lblDate3.Size = new System.Drawing.Size(95, 18);
     this.lblDate3.TabIndex = 13;
     this.lblDate3.Text = "Date 3";
     //
     // dtmDate3
     //
     //
     //
     //
     this.dtmDate3.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dtmDate3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dtmDate3.ButtonDropDown.Visible = true;
     this.dtmDate3.Enabled = false;
     this.dtmDate3.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Center;
     this.dtmDate3.IsPopupCalendarOpen = false;
     this.dtmDate3.Location = new System.Drawing.Point(223, 62);
     this.dtmDate3.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.dtmDate3.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.BackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.DisplayMonth = new System.DateTime(2011, 12, 1, 0, 0, 0, 0);
     this.dtmDate3.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dtmDate3.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.dtmDate3.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dtmDate3.MonthCalendar.TodayButtonVisible = true;
     this.dtmDate3.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dtmDate3.Name = "dtmDate3";
     this.dtmDate3.Size = new System.Drawing.Size(100, 20);
     this.dtmDate3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dtmDate3.TabIndex = 12;
     //
     // panelEx4
     //
     this.panelEx4.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx4.Controls.Add(this.panelEx2);
     this.panelEx4.Controls.Add(this.grdList);
     this.panelEx4.Controls.Add(this.bar1);
     this.panelEx4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelEx4.Location = new System.Drawing.Point(0, 0);
     this.panelEx4.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx4.Name = "panelEx4";
     this.panelEx4.Size = new System.Drawing.Size(1039, 207);
     this.panelEx4.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx4.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.panelEx4.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.panelEx4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.panelEx4.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.panelEx4.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.panelEx4.Style.GradientAngle = 90;
     this.panelEx4.TabIndex = 18;
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.panelEx2.Location = new System.Drawing.Point(433, 42);
     this.panelEx2.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.panelEx2.Name = "panelEx2";
     this.panelEx2.Size = new System.Drawing.Size(328, 163);
     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 = 14;
     //
     // grdList
     //
     this.grdList.BackgroundColor = System.Drawing.Color.White;
     this.grdList.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(163)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.grdList.DefaultCellStyle = dataGridViewCellStyle1;
     this.grdList.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdList.Enabled = false;
     this.grdList.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.grdList.Location = new System.Drawing.Point(0, 29);
     this.grdList.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.grdList.Name = "grdList";
     this.grdList.Size = new System.Drawing.Size(1039, 178);
     this.grdList.TabIndex = 1;
     this.grdList.Visible = false;
     //
     // bar1
     //
     this.bar1.AntiAlias = true;
     this.bar1.Dock = System.Windows.Forms.DockStyle.Top;
     this.bar1.DockSide = DevComponents.DotNetBar.eDockSide.Document;
     this.bar1.DockTabStripHeight = 15;
     this.bar1.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.buttonItem1,
     this.lblList});
     this.bar1.Location = new System.Drawing.Point(0, 0);
     this.bar1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.bar1.Name = "bar1";
     this.bar1.Size = new System.Drawing.Size(1039, 29);
     this.bar1.Stretch = true;
     this.bar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.bar1.TabIndex = 16;
     this.bar1.TabStop = false;
     this.bar1.Text = "bar1";
     //
     // buttonItem1
     //
     this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
     this.buttonItem1.ImageFixedSize = new System.Drawing.Size(20, 20);
     this.buttonItem1.Name = "buttonItem1";
     this.buttonItem1.Text = "buttonItem1";
     this.buttonItem1.Tooltip = "Lấy Dữ Liệu";
     //
     // lblList
     //
     this.lblList.Name = "lblList";
     //
     // txtString2
     //
     this.txtString2.AutoComplete = false;
     this.txtString2.AutoDropdown = false;
     this.txtString2.AutoReSizeColumn = false;
     this.txtString2.BackColorEven = System.Drawing.Color.White;
     this.txtString2.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString2.Border.Class = "TextBoxBorder";
     this.txtString2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString2.ColumnHeaders = "";
     this.txtString2.ColumnNames = "";
     this.txtString2.ColumnWidthDefault = 75;
     this.txtString2.ColumnWidths = "";
     this.txtString2.DataSource = null;
     this.txtString2.Language = "Language1";
     this.txtString2.LinkedColumnIndex = 0;
     this.txtString2.LinkedTextBox = null;
     this.txtString2.Location = new System.Drawing.Point(118, 109);
     this.txtString2.Name = "txtString2";
     this.txtString2.RowsDisplay = 10;
     this.txtString2.Size = new System.Drawing.Size(100, 20);
     this.txtString2.TabIndex = 18;
     //
     // txtString1
     //
     this.txtString1.AutoComplete = false;
     this.txtString1.AutoDropdown = false;
     this.txtString1.AutoReSizeColumn = false;
     this.txtString1.BackColorEven = System.Drawing.Color.White;
     this.txtString1.BackColorOdd = System.Drawing.Color.White;
     //
     //
     //
     this.txtString1.Border.Class = "TextBoxBorder";
     this.txtString1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtString1.ColumnHeaders = "";
     this.txtString1.ColumnNames = "";
     this.txtString1.ColumnWidthDefault = 75;
     this.txtString1.ColumnWidths = "";
     this.txtString1.DataSource = null;
     this.txtString1.Language = "Language1";
     this.txtString1.LinkedColumnIndex = 0;
     this.txtString1.LinkedTextBox = null;
     this.txtString1.Location = new System.Drawing.Point(9, 109);
     this.txtString1.Name = "txtString1";
     this.txtString1.RowsDisplay = 10;
     this.txtString1.Size = new System.Drawing.Size(100, 20);
     this.txtString1.TabIndex = 18;
     //
     // frmReport
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     this.ClientSize = new System.Drawing.Size(1039, 495);
     this.Controls.Add(this.panelEx1);
     this.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.Name = "frmReport";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "frmReport";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.frmReport_Load);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmReport_FormClosing);
     this.panelEx1.ResumeLayout(false);
     this.pnlFilter.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtmDate3)).EndInit();
     this.panelEx4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bar1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #32
0
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_RegistroVentas));
            this.toolTip = new System.Windows.Forms.ToolTip(this.components);
            this.gpoReferencia = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.fechaRefer = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.labelX8 = new DevComponents.DotNetBar.LabelX();
            this.cboTipdocref = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem13 = new DevComponents.Editors.ComboItem();
            this.comboItem14 = new DevComponents.Editors.ComboItem();
            this.labelX7 = new DevComponents.DotNetBar.LabelX();
            this.labelX6 = new DevComponents.DotNetBar.LabelX();
            this.labelX5 = new DevComponents.DotNetBar.LabelX();
            this.txtSerieref = new System.Windows.Forms.TextBox();
            this.txtNumeroref = new System.Windows.Forms.TextBox();
            this.groupPanel6 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.btnDatadic = new DevComponents.DotNetBar.ButtonX();
            this.fecVenc = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.fRegistro = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboTipoexportacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem17 = new DevComponents.Editors.ComboItem();
            this.comboItem18 = new DevComponents.Editors.ComboItem();
            this.cboDestinoigv = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem11 = new DevComponents.Editors.ComboItem();
            this.comboItem12 = new DevComponents.Editors.ComboItem();
            this.cboMoneda = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem9 = new DevComponents.Editors.ComboItem();
            this.comboItem10 = new DevComponents.Editors.ComboItem();
            this.cboServicio = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem7 = new DevComponents.Editors.ComboItem();
            this.comboItem8 = new DevComponents.Editors.ComboItem();
            this.cboTipdoc = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem5 = new DevComponents.Editors.ComboItem();
            this.comboItem6 = new DevComponents.Editors.ComboItem();
            this.labelX23 = new DevComponents.DotNetBar.LabelX();
            this.labelX22 = new DevComponents.DotNetBar.LabelX();
            this.labelX21 = new DevComponents.DotNetBar.LabelX();
            this.labelX20 = new DevComponents.DotNetBar.LabelX();
            this.labelX19 = new DevComponents.DotNetBar.LabelX();
            this.labelX18 = new DevComponents.DotNetBar.LabelX();
            this.labelX17 = new DevComponents.DotNetBar.LabelX();
            this.labelX16 = new DevComponents.DotNetBar.LabelX();
            this.labelX15 = new DevComponents.DotNetBar.LabelX();
            this.labelX14 = new DevComponents.DotNetBar.LabelX();
            this.labelX13 = new DevComponents.DotNetBar.LabelX();
            this.labelX12 = new DevComponents.DotNetBar.LabelX();
            this.labelX11 = new DevComponents.DotNetBar.LabelX();
            this.labelX10 = new DevComponents.DotNetBar.LabelX();
            this.labelX9 = new DevComponents.DotNetBar.LabelX();
            this.grpdua = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.adufRegularizacion = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.adufEmbarque = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
            this.cboAduana = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem15 = new DevComponents.Editors.ComboItem();
            this.comboItem16 = new DevComponents.Editors.ComboItem();
            this.labelX29 = new DevComponents.DotNetBar.LabelX();
            this.labelX28 = new DevComponents.DotNetBar.LabelX();
            this.labelX27 = new DevComponents.DotNetBar.LabelX();
            this.labelX26 = new DevComponents.DotNetBar.LabelX();
            this.labelX25 = new DevComponents.DotNetBar.LabelX();
            this.labelX24 = new DevComponents.DotNetBar.LabelX();
            this.aduValorfob = new System.Windows.Forms.TextBox();
            this.aduPeriodo = new System.Windows.Forms.TextBox();
            this.aduCorrelativo = new System.Windows.Forms.TextBox();
            this.txtNumFin = new System.Windows.Forms.TextBox();
            this.chkRetencion = new System.Windows.Forms.CheckBox();
            this.chkIncluye = new System.Windows.Forms.CheckBox();
            this.chkAfecto = new System.Windows.Forms.CheckBox();
            this.lblTipoventa = new System.Windows.Forms.TextBox();
            this.txtGlosa = new System.Windows.Forms.TextBox();
            this.txtCtadetrac = new System.Windows.Forms.TextBox();
            this.txtRuc = new System.Windows.Forms.TextBox();
            this.txtCtactename = new System.Windows.Forms.TextBox();
            this.txtPorcdet = new System.Windows.Forms.TextBox();
            this.txtSerie = new System.Windows.Forms.TextBox();
            this.txtTipoventa = new System.Windows.Forms.TextBox();
            this.txtNumero = new System.Windows.Forms.TextBox();
            this.Label29 = new System.Windows.Forms.Label();
            this.txtTipocambio = new System.Windows.Forms.TextBox();
            this.txtNumeroorden = new System.Windows.Forms.TextBox();
            this.chkDuplicar = new System.Windows.Forms.CheckBox();
            this.txtDescripcampo = new System.Windows.Forms.TextBox();
            this.GridExaminar = new System.Windows.Forms.DataGridView();
            this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.rubroid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.drubro = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numpedido = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.tallacolor = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.unidmedidaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.afectoigvid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.bruto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.pdscto = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.valorventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.igvo = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.total = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.COL_OBS = new System.Windows.Forms.DataGridViewButtonColumn();
            this.tipguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.serguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.numguia = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.lblAnulado = new System.Windows.Forms.Label();
            this.txtMes = new System.Windows.Forms.TextBox();
            this.txtAsiento = new System.Windows.Forms.TextBox();
            this.txtDctos = new System.Windows.Forms.TextBox();
            this.txtValor = new System.Windows.Forms.TextBox();
            this.txtPigv = new System.Windows.Forms.TextBox();
            this.txtTotal = new System.Windows.Forms.TextBox();
            this.txtIgv = new System.Windows.Forms.TextBox();
            this.txtVenta = new System.Windows.Forms.TextBox();
            this.lblMoneda = new System.Windows.Forms.Label();
            this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.cboSubdiario = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem3 = new DevComponents.Editors.ComboItem();
            this.comboItem4 = new DevComponents.Editors.ComboItem();
            this.labelX2 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX4 = new DevComponents.DotNetBar.LabelX();
            this.labelX3 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel3 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
            this.cboOrigen = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            this.comboItem1 = new DevComponents.Editors.ComboItem();
            this.comboItem2 = new DevComponents.Editors.ComboItem();
            this.labelX1 = new DevComponents.DotNetBar.LabelX();
            this.groupPanel4 = new DevComponents.DotNetBar.Controls.GroupPanel();
            this.labelX35 = new DevComponents.DotNetBar.LabelX();
            this.labelX34 = new DevComponents.DotNetBar.LabelX();
            this.labelX33 = new DevComponents.DotNetBar.LabelX();
            this.labelX32 = new DevComponents.DotNetBar.LabelX();
            this.labelX31 = new DevComponents.DotNetBar.LabelX();
            this.labelX30 = new DevComponents.DotNetBar.LabelX();

            this.gbtnCompras = new DevComponents.DotNetBar.Bar();
            this.btnNew = new DevComponents.DotNetBar.ButtonItem();
            this.btnEdit = new DevComponents.DotNetBar.ButtonItem();
            this.btnSave = new DevComponents.DotNetBar.ButtonItem();
            this.btnRetro = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelete = new DevComponents.DotNetBar.ButtonItem();
            this.btnPrint = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem8 = new DevComponents.DotNetBar.ButtonItem();
            this.btnLog = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem10 = new DevComponents.DotNetBar.ButtonItem();
            this.btnBusqueda = new DevComponents.DotNetBar.ButtonItem();
            this.btnSeekdoc = new DevComponents.DotNetBar.ButtonItem();
            this.btnAddfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnDelfila = new DevComponents.DotNetBar.ButtonItem();
            this.btnActtipocambio = new DevComponents.DotNetBar.ButtonItem();
            this.btnProvfactura = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem18 = new DevComponents.DotNetBar.ButtonItem();
            this.buttonItem22 = new DevComponents.DotNetBar.ButtonItem();
            this.btnInicial = new DevComponents.DotNetBar.ButtonItem();
            this.btnAnterior = new DevComponents.DotNetBar.ButtonItem();
            this.btnSiguiente = new DevComponents.DotNetBar.ButtonItem();
            this.btnUltimo = new DevComponents.DotNetBar.ButtonItem();
            this.btnExit = new DevComponents.DotNetBar.ButtonItem();
            this.lblUsuar = new DevComponents.DotNetBar.LabelX();
            this.controlContainerItem1 = new DevComponents.DotNetBar.ControlContainerItem();
            this.gpoReferencia.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).BeginInit();
            this.groupPanel6.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).BeginInit();
            this.grpdua.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).BeginInit();
            this.groupPanel1.SuspendLayout();
            this.groupPanel2.SuspendLayout();
            this.groupPanel3.SuspendLayout();
            this.groupPanel4.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).BeginInit();
            this.SuspendLayout();
            //
            // gpoReferencia
            //
            this.gpoReferencia.CanvasColor = System.Drawing.SystemColors.Control;
            this.gpoReferencia.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.gpoReferencia.Controls.Add(this.fechaRefer);
            this.gpoReferencia.Controls.Add(this.labelX8);
            this.gpoReferencia.Controls.Add(this.cboTipdocref);
            this.gpoReferencia.Controls.Add(this.labelX7);
            this.gpoReferencia.Controls.Add(this.labelX6);
            this.gpoReferencia.Controls.Add(this.labelX5);
            this.gpoReferencia.Controls.Add(this.txtSerieref);
            this.gpoReferencia.Controls.Add(this.txtNumeroref);
            this.gpoReferencia.DisabledBackColor = System.Drawing.Color.Empty;
            this.gpoReferencia.Location = new System.Drawing.Point(629, 5);
            this.gpoReferencia.Name = "gpoReferencia";
            this.gpoReferencia.Size = new System.Drawing.Size(367, 43);
            //
            //
            //
            this.gpoReferencia.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.gpoReferencia.Style.BackColorGradientAngle = 90;
            this.gpoReferencia.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.gpoReferencia.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderBottomWidth = 1;
            this.gpoReferencia.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.gpoReferencia.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderLeftWidth = 1;
            this.gpoReferencia.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderRightWidth = 1;
            this.gpoReferencia.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.gpoReferencia.Style.BorderTopWidth = 1;
            this.gpoReferencia.Style.CornerDiameter = 4;
            this.gpoReferencia.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.gpoReferencia.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.gpoReferencia.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.gpoReferencia.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.gpoReferencia.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.gpoReferencia.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.gpoReferencia.TabIndex = 40;
            this.toolTip.SetToolTip(this.gpoReferencia, "Referencia");
            //
            //
            //
            this.fechaRefer.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fechaRefer.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.ButtonClear.Tooltip = "";
            this.fechaRefer.ButtonCustom.Tooltip = "";
            this.fechaRefer.ButtonCustom2.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fechaRefer.ButtonDropDown.Tooltip = "";
            this.fechaRefer.ButtonDropDown.Visible = true;
            this.fechaRefer.ButtonFreeText.Tooltip = "";
            this.fechaRefer.IsPopupCalendarOpen = false;
            this.fechaRefer.Location = new System.Drawing.Point(258, 15);
            //
            //
            //
            this.fechaRefer.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fechaRefer.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fechaRefer.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fechaRefer.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fechaRefer.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fechaRefer.MonthCalendar.TodayButtonVisible = true;
            this.fechaRefer.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fechaRefer.Name = "fechaRefer";
            this.fechaRefer.ShowCheckBox = true;
            this.fechaRefer.Size = new System.Drawing.Size(98, 20);
            this.fechaRefer.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fechaRefer.TabIndex = 62;
            this.fechaRefer.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            this.fechaRefer.ValueChanged += new System.EventHandler(this.fechaRefer_ValueChanged);
            //
            // labelX8
            //
            this.labelX8.AutoSize = true;
            this.labelX8.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX8.Location = new System.Drawing.Point(264, -1);
            this.labelX8.Name = "labelX8";
            this.labelX8.Size = new System.Drawing.Size(52, 15);
            this.labelX8.TabIndex = 46;
            this.labelX8.Text = "F.Emisión";
            //
            // cboTipdocref
            //
            this.cboTipdocref.DisplayMember = "Text";
            this.cboTipdocref.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdocref.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdocref.FormattingEnabled = true;
            this.cboTipdocref.ItemHeight = 14;
            this.cboTipdocref.Items.AddRange(new object[] {
            this.comboItem13,
            this.comboItem14});
            this.cboTipdocref.Location = new System.Drawing.Point(3, 15);
            this.cboTipdocref.Name = "cboTipdocref";
            this.cboTipdocref.Size = new System.Drawing.Size(141, 20);
            this.cboTipdocref.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdocref.TabIndex = 48;
            //
            // comboItem13
            //
            this.comboItem13.Text = "01-Venta Interna";
            this.comboItem13.Value = "01";
            //
            // comboItem14
            //
            this.comboItem14.Text = "02-Venta Externa";
            this.comboItem14.Value = "02";
            //
            // labelX7
            //
            this.labelX7.AutoSize = true;
            this.labelX7.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX7.Location = new System.Drawing.Point(190, -1);
            this.labelX7.Name = "labelX7";
            this.labelX7.Size = new System.Drawing.Size(42, 15);
            this.labelX7.TabIndex = 45;
            this.labelX7.Text = "Número";
            //
            // labelX6
            //
            this.labelX6.AutoSize = true;
            this.labelX6.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX6.Location = new System.Drawing.Point(150, 0);
            this.labelX6.Name = "labelX6";
            this.labelX6.Size = new System.Drawing.Size(28, 15);
            this.labelX6.TabIndex = 44;
            this.labelX6.Text = "Serie";
            //
            // labelX5
            //
            this.labelX5.AutoSize = true;
            this.labelX5.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX5.Location = new System.Drawing.Point(4, 0);
            this.labelX5.Name = "labelX5";
            this.labelX5.Size = new System.Drawing.Size(59, 15);
            this.labelX5.TabIndex = 43;
            this.labelX5.Text = "Documento";
            //
            // txtSerieref
            //
            this.txtSerieref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerieref.Location = new System.Drawing.Point(146, 15);
            this.txtSerieref.MaxLength = 4;
            this.txtSerieref.Name = "txtSerieref";
            this.txtSerieref.Size = new System.Drawing.Size(38, 20);
            this.txtSerieref.TabIndex = 3;
            //
            // txtNumeroref
            //
            this.txtNumeroref.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumeroref.Location = new System.Drawing.Point(185, 15);
            this.txtNumeroref.MaxLength = 10;
            this.txtNumeroref.Name = "txtNumeroref";
            this.txtNumeroref.Size = new System.Drawing.Size(71, 20);
            this.txtNumeroref.TabIndex = 5;
            //
            // groupPanel6
            //
            this.groupPanel6.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel6.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel6.Controls.Add(this.btnDatadic);
            this.groupPanel6.Controls.Add(this.fecVenc);
            this.groupPanel6.Controls.Add(this.fRegistro);
            this.groupPanel6.Controls.Add(this.cboTipoexportacion);
            this.groupPanel6.Controls.Add(this.cboDestinoigv);
            this.groupPanel6.Controls.Add(this.cboMoneda);
            this.groupPanel6.Controls.Add(this.cboServicio);
            this.groupPanel6.Controls.Add(this.cboTipdoc);
            this.groupPanel6.Controls.Add(this.labelX23);
            this.groupPanel6.Controls.Add(this.labelX22);
            this.groupPanel6.Controls.Add(this.labelX21);
            this.groupPanel6.Controls.Add(this.labelX20);
            this.groupPanel6.Controls.Add(this.labelX19);
            this.groupPanel6.Controls.Add(this.labelX18);
            this.groupPanel6.Controls.Add(this.labelX17);
            this.groupPanel6.Controls.Add(this.labelX16);
            this.groupPanel6.Controls.Add(this.labelX15);
            this.groupPanel6.Controls.Add(this.labelX14);
            this.groupPanel6.Controls.Add(this.labelX13);
            this.groupPanel6.Controls.Add(this.labelX12);
            this.groupPanel6.Controls.Add(this.labelX11);
            this.groupPanel6.Controls.Add(this.labelX10);
            this.groupPanel6.Controls.Add(this.labelX9);
            this.groupPanel6.Controls.Add(this.gpoReferencia);
            this.groupPanel6.Controls.Add(this.grpdua);
            this.groupPanel6.Controls.Add(this.txtNumFin);
            this.groupPanel6.Controls.Add(this.chkRetencion);
            this.groupPanel6.Controls.Add(this.chkIncluye);
            this.groupPanel6.Controls.Add(this.chkAfecto);
            this.groupPanel6.Controls.Add(this.lblTipoventa);
            this.groupPanel6.Controls.Add(this.txtGlosa);
            this.groupPanel6.Controls.Add(this.txtCtadetrac);
            this.groupPanel6.Controls.Add(this.txtRuc);
            this.groupPanel6.Controls.Add(this.txtCtactename);
            this.groupPanel6.Controls.Add(this.txtPorcdet);
            this.groupPanel6.Controls.Add(this.txtSerie);
            this.groupPanel6.Controls.Add(this.txtTipoventa);
            this.groupPanel6.Controls.Add(this.txtNumero);
            this.groupPanel6.Controls.Add(this.Label29);
            this.groupPanel6.Controls.Add(this.txtTipocambio);
            this.groupPanel6.Controls.Add(this.txtNumeroorden);
            this.groupPanel6.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel6.Location = new System.Drawing.Point(6, 78);
            this.groupPanel6.Name = "groupPanel6";
            this.groupPanel6.Size = new System.Drawing.Size(1005, 178);
            //
            //
            //
            this.groupPanel6.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel6.Style.BackColorGradientAngle = 90;
            this.groupPanel6.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel6.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderBottomWidth = 1;
            this.groupPanel6.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel6.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderLeftWidth = 1;
            this.groupPanel6.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderRightWidth = 1;
            this.groupPanel6.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel6.Style.BorderTopWidth = 1;
            this.groupPanel6.Style.CornerDiameter = 4;
            this.groupPanel6.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel6.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel6.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel6.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel6.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel6.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel6.TabIndex = 47;
            this.toolTip.SetToolTip(this.groupPanel6, "Referencia");
            //
            // btnDatadic
            //
            this.btnDatadic.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            this.btnDatadic.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            this.btnDatadic.Cursor = System.Windows.Forms.Cursors.Hand;
            this.btnDatadic.Location = new System.Drawing.Point(879, 146);
            this.btnDatadic.Name = "btnDatadic";
            this.btnDatadic.Size = new System.Drawing.Size(98, 23);
            this.btnDatadic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.btnDatadic.TabIndex = 59;
            this.btnDatadic.Text = "Datos Adicionales";
            this.btnDatadic.Click += new System.EventHandler(this.btnDatadic_Click);
            //
            // fecVenc
            //
            this.fecVenc.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fecVenc.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.ButtonClear.Tooltip = "";
            this.fecVenc.ButtonCustom.Tooltip = "";
            this.fecVenc.ButtonCustom2.Tooltip = "";
            this.fecVenc.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fecVenc.ButtonDropDown.Tooltip = "";
            this.fecVenc.ButtonDropDown.Visible = true;
            this.fecVenc.ButtonFreeText.Tooltip = "";
            this.fecVenc.IsPopupCalendarOpen = false;
            this.fecVenc.Location = new System.Drawing.Point(523, 50);
            //
            //
            //
            this.fecVenc.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fecVenc.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fecVenc.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fecVenc.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fecVenc.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fecVenc.MonthCalendar.TodayButtonVisible = true;
            this.fecVenc.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fecVenc.Name = "fecVenc";
            this.fecVenc.ShowCheckBox = true;
            this.fecVenc.Size = new System.Drawing.Size(101, 20);
            this.fecVenc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fecVenc.TabIndex = 58;
            this.fecVenc.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // fRegistro
            //
            this.fRegistro.BackgroundStyle.Class = "DateTimeInputBackground";
            this.fRegistro.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.ButtonClear.Tooltip = "";
            this.fRegistro.ButtonCustom.Tooltip = "";
            this.fRegistro.ButtonCustom2.Tooltip = "";
            this.fRegistro.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.fRegistro.ButtonDropDown.Tooltip = "";
            this.fRegistro.ButtonDropDown.Visible = true;
            this.fRegistro.ButtonFreeText.Tooltip = "";
            this.fRegistro.IsPopupCalendarOpen = false;
            this.fRegistro.Location = new System.Drawing.Point(88, 50);
            //
            //
            //
            this.fRegistro.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.fRegistro.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.fRegistro.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.fRegistro.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.fRegistro.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.fRegistro.MonthCalendar.TodayButtonVisible = true;
            this.fRegistro.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.fRegistro.Name = "fRegistro";
            this.fRegistro.Size = new System.Drawing.Size(91, 20);
            this.fRegistro.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.fRegistro.TabIndex = 57;
            this.fRegistro.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboTipoexportacion
            //
            this.cboTipoexportacion.DisplayMember = "Text";
            this.cboTipoexportacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipoexportacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipoexportacion.FormattingEnabled = true;
            this.cboTipoexportacion.ItemHeight = 14;
            this.cboTipoexportacion.Items.AddRange(new object[] {
            this.comboItem17,
            this.comboItem18});
            this.cboTipoexportacion.Location = new System.Drawing.Point(636, 116);
            this.cboTipoexportacion.Name = "cboTipoexportacion";
            this.cboTipoexportacion.Size = new System.Drawing.Size(358, 20);
            this.cboTipoexportacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipoexportacion.TabIndex = 54;
            //
            // comboItem17
            //
            this.comboItem17.Text = "01-Venta Interna";
            this.comboItem17.Value = "01";
            //
            // comboItem18
            //
            this.comboItem18.Text = "02-Venta Externa";
            this.comboItem18.Value = "02";
            //
            // cboDestinoigv
            //
            this.cboDestinoigv.DisplayMember = "Text";
            this.cboDestinoigv.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboDestinoigv.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDestinoigv.FormattingEnabled = true;
            this.cboDestinoigv.ItemHeight = 14;
            this.cboDestinoigv.Items.AddRange(new object[] {
            this.comboItem11,
            this.comboItem12});
            this.cboDestinoigv.Location = new System.Drawing.Point(196, 147);
            this.cboDestinoigv.Name = "cboDestinoigv";
            this.cboDestinoigv.Size = new System.Drawing.Size(233, 20);
            this.cboDestinoigv.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboDestinoigv.TabIndex = 48;
            this.cboDestinoigv.SelectedIndexChanged += new System.EventHandler(this.cboDestinoigv_SelectedIndexChanged);
            //
            // comboItem11
            //
            this.comboItem11.Text = "01-Venta Interna";
            this.comboItem11.Value = "01";
            //
            // comboItem12
            //
            this.comboItem12.Text = "02-Venta Externa";
            this.comboItem12.Value = "02";
            //
            // cboMoneda
            //
            this.cboMoneda.DisplayMember = "Text";
            this.cboMoneda.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboMoneda.FormattingEnabled = true;
            this.cboMoneda.ItemHeight = 14;
            this.cboMoneda.Items.AddRange(new object[] {
            this.comboItem9,
            this.comboItem10});
            this.cboMoneda.Location = new System.Drawing.Point(557, 119);
            this.cboMoneda.Name = "cboMoneda";
            this.cboMoneda.Size = new System.Drawing.Size(67, 20);
            this.cboMoneda.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboMoneda.TabIndex = 48;
            this.cboMoneda.SelectedIndexChanged += new System.EventHandler(this.cboMoneda_SelectedIndexChanged);
            this.cboMoneda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboMoneda_KeyDown);
            //
            // comboItem9
            //
            this.comboItem9.Text = "01-Venta Interna";
            this.comboItem9.Value = "01";
            //
            // comboItem10
            //
            this.comboItem10.Text = "02-Venta Externa";
            this.comboItem10.Value = "02";
            //
            // cboServicio
            //
            this.cboServicio.DisplayMember = "Text";
            this.cboServicio.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboServicio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboServicio.FormattingEnabled = true;
            this.cboServicio.ItemHeight = 14;
            this.cboServicio.Items.AddRange(new object[] {
            this.comboItem7,
            this.comboItem8});
            this.cboServicio.Location = new System.Drawing.Point(240, 73);
            this.cboServicio.Name = "cboServicio";
            this.cboServicio.Size = new System.Drawing.Size(321, 20);
            this.cboServicio.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboServicio.TabIndex = 56;
            this.cboServicio.SelectedIndexChanged += new System.EventHandler(this.cboServicio_SelectedIndexChanged);
            //
            // comboItem7
            //
            this.comboItem7.Text = "01-Venta Interna";
            this.comboItem7.Value = "01";
            //
            // comboItem8
            //
            this.comboItem8.Text = "02-Venta Externa";
            this.comboItem8.Value = "02";
            //
            // cboTipdoc
            //
            this.cboTipdoc.DisplayMember = "Text";
            this.cboTipdoc.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboTipdoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboTipdoc.FormattingEnabled = true;
            this.cboTipdoc.ItemHeight = 14;
            this.cboTipdoc.Items.AddRange(new object[] {
            this.comboItem5,
            this.comboItem6});
            this.cboTipdoc.Location = new System.Drawing.Point(88, 4);
            this.cboTipdoc.Name = "cboTipdoc";
            this.cboTipdoc.Size = new System.Drawing.Size(262, 20);
            this.cboTipdoc.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboTipdoc.TabIndex = 48;
            this.cboTipdoc.SelectedIndexChanged += new System.EventHandler(this.cboTipdoc_SelectedIndexChanged);
            this.cboTipdoc.SelectedValueChanged += new System.EventHandler(this.cboTipdoc_SelectedValueChanged);
            this.cboTipdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cboTipdoc_KeyDown);
            //
            // comboItem5
            //
            this.comboItem5.Text = "01-Venta Interna";
            this.comboItem5.Value = "01";
            //
            // comboItem6
            //
            this.comboItem6.Text = "02-Venta Externa";
            this.comboItem6.Value = "02";
            //
            // labelX23
            //
            this.labelX23.AutoSize = true;
            this.labelX23.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX23.Location = new System.Drawing.Point(513, 122);
            this.labelX23.Name = "labelX23";
            this.labelX23.Size = new System.Drawing.Size(42, 15);
            this.labelX23.TabIndex = 55;
            this.labelX23.Text = "Moneda";
            //
            // labelX22
            //
            this.labelX22.AutoSize = true;
            this.labelX22.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX22.Location = new System.Drawing.Point(460, 100);
            this.labelX22.Name = "labelX22";
            this.labelX22.Size = new System.Drawing.Size(43, 15);
            this.labelX22.TabIndex = 54;
            this.labelX22.Text = "Cta.Det.";
            //
            // labelX21
            //
            this.labelX21.AutoSize = true;
            this.labelX21.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX21.Location = new System.Drawing.Point(184, 77);
            this.labelX21.Name = "labelX21";
            this.labelX21.Size = new System.Drawing.Size(55, 15);
            this.labelX21.TabIndex = 53;
            this.labelX21.Text = "Detracción";
            //
            // labelX20
            //
            this.labelX20.AutoSize = true;
            this.labelX20.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX20.Location = new System.Drawing.Point(444, 52);
            this.labelX20.Name = "labelX20";
            this.labelX20.Size = new System.Drawing.Size(73, 15);
            this.labelX20.TabIndex = 52;
            this.labelX20.Text = "F.Vencimiento";
            //
            // labelX19
            //
            this.labelX19.AutoSize = true;
            this.labelX19.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX19.Location = new System.Drawing.Point(189, 53);
            this.labelX19.Name = "labelX19";
            this.labelX19.Size = new System.Drawing.Size(50, 15);
            this.labelX19.TabIndex = 51;
            this.labelX19.Text = "T.Cambio";
            //
            // labelX18
            //
            this.labelX18.AutoSize = true;
            this.labelX18.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX18.Location = new System.Drawing.Point(535, 8);
            this.labelX18.Name = "labelX18";
            this.labelX18.Size = new System.Drawing.Size(12, 15);
            this.labelX18.TabIndex = 50;
            this.labelX18.Text = "Al";
            //
            // labelX17
            //
            this.labelX17.AutoSize = true;
            this.labelX17.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX17.Location = new System.Drawing.Point(434, 7);
            this.labelX17.Name = "labelX17";
            this.labelX17.Size = new System.Drawing.Size(15, 15);
            this.labelX17.TabIndex = 49;
            this.labelX17.Text = "N°";
            //
            // labelX16
            //
            this.labelX16.AutoSize = true;
            this.labelX16.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX16.Location = new System.Drawing.Point(357, 7);
            this.labelX16.Name = "labelX16";
            this.labelX16.Size = new System.Drawing.Size(28, 15);
            this.labelX16.TabIndex = 42;
            this.labelX16.Text = "Serie";
            //
            // labelX15
            //
            this.labelX15.AutoSize = true;
            this.labelX15.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX15.Location = new System.Drawing.Point(2, 150);
            this.labelX15.Name = "labelX15";
            this.labelX15.Size = new System.Drawing.Size(188, 15);
            this.labelX15.TabIndex = 48;
            this.labelX15.Text = "La Operación es Gravada con el IGV?";
            //
            // labelX14
            //
            this.labelX14.AutoSize = true;
            this.labelX14.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX14.Location = new System.Drawing.Point(27, 122);
            this.labelX14.Name = "labelX14";
            this.labelX14.Size = new System.Drawing.Size(56, 15);
            this.labelX14.TabIndex = 47;
            this.labelX14.Text = "Tipo Venta";
            //
            // labelX13
            //
            this.labelX13.AutoSize = true;
            this.labelX13.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX13.Location = new System.Drawing.Point(52, 98);
            this.labelX13.Name = "labelX13";
            this.labelX13.Size = new System.Drawing.Size(31, 15);
            this.labelX13.TabIndex = 46;
            this.labelX13.Text = "Glosa";
            //
            // labelX12
            //
            this.labelX12.AutoSize = true;
            this.labelX12.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX12.Location = new System.Drawing.Point(1, 76);
            this.labelX12.Name = "labelX12";
            this.labelX12.Size = new System.Drawing.Size(82, 15);
            this.labelX12.TabIndex = 45;
            this.labelX12.Text = "O/Compra -Serv";
            //
            // labelX11
            //
            this.labelX11.AutoSize = true;
            this.labelX11.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX11.Location = new System.Drawing.Point(30, 53);
            this.labelX11.Name = "labelX11";
            this.labelX11.Size = new System.Drawing.Size(53, 15);
            this.labelX11.TabIndex = 44;
            this.labelX11.Text = "F.Registro";
            //
            // labelX10
            //
            this.labelX10.AutoSize = true;
            this.labelX10.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX10.Location = new System.Drawing.Point(31, 31);
            this.labelX10.Name = "labelX10";
            this.labelX10.Size = new System.Drawing.Size(52, 15);
            this.labelX10.TabIndex = 43;
            this.labelX10.Text = "Ruc - Cód";
            //
            // labelX9
            //
            this.labelX9.AutoSize = true;
            this.labelX9.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX9.Location = new System.Drawing.Point(14, 7);
            this.labelX9.Name = "labelX9";
            this.labelX9.Size = new System.Drawing.Size(69, 15);
            this.labelX9.TabIndex = 42;
            this.labelX9.Text = "Comprobante";
            //
            // grpdua
            //
            this.grpdua.CanvasColor = System.Drawing.SystemColors.Control;
            this.grpdua.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.grpdua.Controls.Add(this.adufRegularizacion);
            this.grpdua.Controls.Add(this.adufEmbarque);
            this.grpdua.Controls.Add(this.cboAduana);
            this.grpdua.Controls.Add(this.labelX29);
            this.grpdua.Controls.Add(this.labelX28);
            this.grpdua.Controls.Add(this.labelX27);
            this.grpdua.Controls.Add(this.labelX26);
            this.grpdua.Controls.Add(this.labelX25);
            this.grpdua.Controls.Add(this.labelX24);
            this.grpdua.Controls.Add(this.aduValorfob);
            this.grpdua.Controls.Add(this.aduPeriodo);
            this.grpdua.Controls.Add(this.aduCorrelativo);
            this.grpdua.DisabledBackColor = System.Drawing.Color.Empty;
            this.grpdua.Location = new System.Drawing.Point(630, 51);
            this.grpdua.Name = "grpdua";
            this.grpdua.Size = new System.Drawing.Size(367, 90);
            //
            //
            //
            this.grpdua.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.grpdua.Style.BackColorGradientAngle = 90;
            this.grpdua.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.grpdua.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderBottomWidth = 1;
            this.grpdua.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.grpdua.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderLeftWidth = 1;
            this.grpdua.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderRightWidth = 1;
            this.grpdua.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.grpdua.Style.BorderTopWidth = 1;
            this.grpdua.Style.CornerDiameter = 4;
            this.grpdua.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.grpdua.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.grpdua.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.grpdua.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.grpdua.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.grpdua.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.grpdua.TabIndex = 41;
            //
            // adufRegularizacion
            //
            this.adufRegularizacion.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufRegularizacion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.ButtonClear.Tooltip = "";
            this.adufRegularizacion.ButtonCustom.Tooltip = "";
            this.adufRegularizacion.ButtonCustom2.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufRegularizacion.ButtonDropDown.Tooltip = "";
            this.adufRegularizacion.ButtonDropDown.Visible = true;
            this.adufRegularizacion.ButtonFreeText.Tooltip = "";
            this.adufRegularizacion.IsPopupCalendarOpen = false;
            this.adufRegularizacion.Location = new System.Drawing.Point(145, 38);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufRegularizacion.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufRegularizacion.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufRegularizacion.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufRegularizacion.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufRegularizacion.MonthCalendar.TodayButtonVisible = true;
            this.adufRegularizacion.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufRegularizacion.Name = "adufRegularizacion";
            this.adufRegularizacion.ShowCheckBox = true;
            this.adufRegularizacion.Size = new System.Drawing.Size(98, 20);
            this.adufRegularizacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufRegularizacion.TabIndex = 61;
            this.adufRegularizacion.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // adufEmbarque
            //
            this.adufEmbarque.BackgroundStyle.Class = "DateTimeInputBackground";
            this.adufEmbarque.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.ButtonClear.Tooltip = "";
            this.adufEmbarque.ButtonCustom.Tooltip = "";
            this.adufEmbarque.ButtonCustom2.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
            this.adufEmbarque.ButtonDropDown.Tooltip = "";
            this.adufEmbarque.ButtonDropDown.Visible = true;
            this.adufEmbarque.ButtonFreeText.Tooltip = "";
            this.adufEmbarque.IsPopupCalendarOpen = false;
            this.adufEmbarque.Location = new System.Drawing.Point(24, 38);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
            //
            //
            //
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
            this.adufEmbarque.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.DisplayMonth = new System.DateTime(2014, 11, 1, 0, 0, 0, 0);
            this.adufEmbarque.MonthCalendar.MarkedDates = new System.DateTime[0];
            this.adufEmbarque.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
            //
            //
            //
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.adufEmbarque.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.adufEmbarque.MonthCalendar.TodayButtonVisible = true;
            this.adufEmbarque.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
            this.adufEmbarque.Name = "adufEmbarque";
            this.adufEmbarque.ShowCheckBox = true;
            this.adufEmbarque.Size = new System.Drawing.Size(98, 20);
            this.adufEmbarque.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.adufEmbarque.TabIndex = 60;
            this.adufEmbarque.Value = new System.DateTime(2014, 11, 8, 13, 46, 32, 0);
            //
            // cboAduana
            //
            this.cboAduana.DisplayMember = "Text";
            this.cboAduana.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboAduana.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboAduana.FormattingEnabled = true;
            this.cboAduana.ItemHeight = 14;
            this.cboAduana.Items.AddRange(new object[] {
            this.comboItem15,
            this.comboItem16});
            this.cboAduana.Location = new System.Drawing.Point(2, 16);
            this.cboAduana.Name = "cboAduana";
            this.cboAduana.Size = new System.Drawing.Size(251, 20);
            this.cboAduana.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboAduana.TabIndex = 53;
            //
            // comboItem15
            //
            this.comboItem15.Text = "01-Venta Interna";
            this.comboItem15.Value = "01";
            //
            // comboItem16
            //
            this.comboItem16.Text = "02-Venta Externa";
            this.comboItem16.Value = "02";
            //
            // labelX29
            //
            this.labelX29.AutoSize = true;
            this.labelX29.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX29.Location = new System.Drawing.Point(243, 41);
            this.labelX29.Name = "labelX29";
            this.labelX29.Size = new System.Drawing.Size(31, 15);
            this.labelX29.TabIndex = 52;
            this.labelX29.Text = "FOB$";
            //
            // labelX28
            //
            this.labelX28.AutoSize = true;
            this.labelX28.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX28.Location = new System.Drawing.Point(122, 41);
            this.labelX28.Name = "labelX28";
            this.labelX28.Size = new System.Drawing.Size(23, 15);
            this.labelX28.TabIndex = 51;
            this.labelX28.Text = "F.R.";
            //
            // labelX27
            //
            this.labelX27.AutoSize = true;
            this.labelX27.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX27.Location = new System.Drawing.Point(0, 41);
            this.labelX27.Name = "labelX27";
            this.labelX27.Size = new System.Drawing.Size(23, 15);
            this.labelX27.TabIndex = 50;
            this.labelX27.Text = "F.E.";
            //
            // labelX26
            //
            this.labelX26.AutoSize = true;
            this.labelX26.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX26.Location = new System.Drawing.Point(300, 0);
            this.labelX26.Name = "labelX26";
            this.labelX26.Size = new System.Drawing.Size(56, 15);
            this.labelX26.TabIndex = 49;
            this.labelX26.Text = "Correlativo";
            //
            // labelX25
            //
            this.labelX25.AutoSize = true;
            this.labelX25.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX25.Location = new System.Drawing.Point(257, 1);
            this.labelX25.Name = "labelX25";
            this.labelX25.Size = new System.Drawing.Size(22, 15);
            this.labelX25.TabIndex = 48;
            this.labelX25.Text = "Año";
            //
            // labelX24
            //
            this.labelX24.AutoSize = true;
            this.labelX24.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX24.Location = new System.Drawing.Point(4, 1);
            this.labelX24.Name = "labelX24";
            this.labelX24.Size = new System.Drawing.Size(40, 15);
            this.labelX24.TabIndex = 47;
            this.labelX24.Text = "Aduana";
            //
            // aduValorfob
            //
            this.aduValorfob.Enabled = false;
            this.aduValorfob.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.aduValorfob.Location = new System.Drawing.Point(274, 38);
            this.aduValorfob.Name = "aduValorfob";
            this.aduValorfob.Size = new System.Drawing.Size(87, 20);
            this.aduValorfob.TabIndex = 11;
            this.aduValorfob.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // aduPeriodo
            //
            this.aduPeriodo.Location = new System.Drawing.Point(255, 16);
            this.aduPeriodo.MaxLength = 4;
            this.aduPeriodo.Name = "aduPeriodo";
            this.aduPeriodo.Size = new System.Drawing.Size(42, 20);
            this.aduPeriodo.TabIndex = 3;
            //
            // aduCorrelativo
            //
            this.aduCorrelativo.Location = new System.Drawing.Point(299, 16);
            this.aduCorrelativo.MaxLength = 6;
            this.aduCorrelativo.Name = "aduCorrelativo";
            this.aduCorrelativo.Size = new System.Drawing.Size(62, 20);
            this.aduCorrelativo.TabIndex = 5;
            //
            // txtNumFin
            //
            this.txtNumFin.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumFin.Location = new System.Drawing.Point(549, 5);
            this.txtNumFin.MaxLength = 10;
            this.txtNumFin.Name = "txtNumFin";
            this.txtNumFin.Size = new System.Drawing.Size(75, 20);
            this.txtNumFin.TabIndex = 7;
            this.txtNumFin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumFin_KeyDown);
            this.txtNumFin.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumFin_KeyPress);
            //
            // chkRetencion
            //
            this.chkRetencion.AutoSize = true;
            this.chkRetencion.BackColor = System.Drawing.Color.Transparent;
            this.chkRetencion.ForeColor = System.Drawing.Color.Blue;
            this.chkRetencion.Location = new System.Drawing.Point(710, 150);
            this.chkRetencion.Name = "chkRetencion";
            this.chkRetencion.Size = new System.Drawing.Size(123, 17);
            this.chkRetencion.TabIndex = 36;
            this.chkRetencion.TabStop = false;
            this.chkRetencion.Text = "Sujeto a Retención?";
            this.chkRetencion.UseVisualStyleBackColor = false;
            //
            // chkIncluye
            //
            this.chkIncluye.AutoSize = true;
            this.chkIncluye.BackColor = System.Drawing.Color.Transparent;
            this.chkIncluye.ForeColor = System.Drawing.Color.Green;
            this.chkIncluye.Location = new System.Drawing.Point(575, 150);
            this.chkIncluye.Name = "chkIncluye";
            this.chkIncluye.Size = new System.Drawing.Size(120, 17);
            this.chkIncluye.TabIndex = 35;
            this.chkIncluye.TabStop = false;
            this.chkIncluye.Text = "Precio Incluye IGV?";
            this.chkIncluye.UseVisualStyleBackColor = false;
            this.chkIncluye.CheckedChanged += new System.EventHandler(this.chkIncluye_CheckedChanged);
            //
            // chkAfecto
            //
            this.chkAfecto.AutoSize = true;
            this.chkAfecto.BackColor = System.Drawing.Color.Transparent;
            this.chkAfecto.ForeColor = System.Drawing.Color.Blue;
            this.chkAfecto.Location = new System.Drawing.Point(468, 150);
            this.chkAfecto.Name = "chkAfecto";
            this.chkAfecto.Size = new System.Drawing.Size(95, 17);
            this.chkAfecto.TabIndex = 34;
            this.chkAfecto.TabStop = false;
            this.chkAfecto.Text = "Afecto al IGV?";
            this.chkAfecto.UseVisualStyleBackColor = false;
            this.chkAfecto.CheckedChanged += new System.EventHandler(this.chkAfecto_CheckedChanged);
            //
            // lblTipoventa
            //
            this.lblTipoventa.Enabled = false;
            this.lblTipoventa.Location = new System.Drawing.Point(126, 119);
            this.lblTipoventa.Name = "lblTipoventa";
            this.lblTipoventa.Size = new System.Drawing.Size(382, 20);
            this.lblTipoventa.TabIndex = 29;
            //
            // txtGlosa
            //
            this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtGlosa.Enabled = false;
            this.txtGlosa.Location = new System.Drawing.Point(88, 96);
            this.txtGlosa.MaxLength = 100;
            this.txtGlosa.Name = "txtGlosa";
            this.txtGlosa.Size = new System.Drawing.Size(371, 20);
            this.txtGlosa.TabIndex = 24;
            this.txtGlosa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtGlosa_KeyDown);
            //
            // txtCtadetrac
            //
            this.txtCtadetrac.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtCtadetrac.Enabled = false;
            this.txtCtadetrac.Location = new System.Drawing.Point(504, 96);
            this.txtCtadetrac.MaxLength = 40;
            this.txtCtadetrac.Name = "txtCtadetrac";
            this.txtCtadetrac.Size = new System.Drawing.Size(120, 20);
            this.txtCtadetrac.TabIndex = 26;
            //
            // txtRuc
            //
            this.txtRuc.Enabled = false;
            this.txtRuc.Location = new System.Drawing.Point(88, 28);
            this.txtRuc.MaxLength = 11;
            this.txtRuc.Name = "txtRuc";
            this.txtRuc.Size = new System.Drawing.Size(91, 20);
            this.txtRuc.TabIndex = 9;
            this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
            this.txtRuc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtRuc_KeyPress);
            //
            // txtCtactename
            //
            this.txtCtactename.Enabled = false;
            this.txtCtactename.Location = new System.Drawing.Point(181, 28);
            this.txtCtactename.Name = "txtCtactename";
            this.txtCtactename.Size = new System.Drawing.Size(443, 20);
            this.txtCtactename.TabIndex = 10;
            //
            // txtPorcdet
            //
            this.txtPorcdet.Enabled = false;
            this.txtPorcdet.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtPorcdet.Location = new System.Drawing.Point(581, 73);
            this.txtPorcdet.Name = "txtPorcdet";
            this.txtPorcdet.Size = new System.Drawing.Size(43, 20);
            this.txtPorcdet.TabIndex = 22;
            this.txtPorcdet.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtSerie
            //
            this.txtSerie.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtSerie.Location = new System.Drawing.Point(386, 5);
            this.txtSerie.MaxLength = 4;
            this.txtSerie.Name = "txtSerie";
            this.txtSerie.Size = new System.Drawing.Size(39, 20);
            this.txtSerie.TabIndex = 3;
            this.txtSerie.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtSerie_KeyDown);
            //
            // txtTipoventa
            //
            this.txtTipoventa.Location = new System.Drawing.Point(88, 119);
            this.txtTipoventa.MaxLength = 2;
            this.txtTipoventa.Name = "txtTipoventa";
            this.txtTipoventa.Size = new System.Drawing.Size(36, 20);
            this.txtTipoventa.TabIndex = 28;
            this.txtTipoventa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtTipoventa_KeyDown);
            //
            // txtNumero
            //
            this.txtNumero.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
            this.txtNumero.Location = new System.Drawing.Point(451, 5);
            this.txtNumero.MaxLength = 10;
            this.txtNumero.Name = "txtNumero";
            this.txtNumero.Size = new System.Drawing.Size(75, 20);
            this.txtNumero.TabIndex = 5;
            this.txtNumero.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtNumero_KeyDown);
            this.txtNumero.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtNumero_KeyPress);
            //
            // Label29
            //
            this.Label29.AutoSize = true;
            this.Label29.ForeColor = System.Drawing.Color.RoyalBlue;
            this.Label29.Location = new System.Drawing.Point(563, 76);
            this.Label29.Name = "Label29";
            this.Label29.Size = new System.Drawing.Size(15, 13);
            this.Label29.TabIndex = 21;
            this.Label29.Text = "%";
            //
            // txtTipocambio
            //
            this.txtTipocambio.Enabled = false;
            this.txtTipocambio.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtTipocambio.Location = new System.Drawing.Point(240, 50);
            this.txtTipocambio.Name = "txtTipocambio";
            this.txtTipocambio.Size = new System.Drawing.Size(69, 20);
            this.txtTipocambio.TabIndex = 14;
            this.txtTipocambio.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtNumeroorden
            //
            this.txtNumeroorden.Location = new System.Drawing.Point(88, 73);
            this.txtNumeroorden.MaxLength = 10;
            this.txtNumeroorden.Name = "txtNumeroorden";
            this.txtNumeroorden.Size = new System.Drawing.Size(91, 20);
            this.txtNumeroorden.TabIndex = 18;
            //
            // chkDuplicar
            //
            this.chkDuplicar.AutoSize = true;
            this.chkDuplicar.BackColor = System.Drawing.Color.Transparent;
            this.chkDuplicar.ForeColor = System.Drawing.Color.Blue;
            this.chkDuplicar.Location = new System.Drawing.Point(434, 512);
            this.chkDuplicar.Name = "chkDuplicar";
            this.chkDuplicar.Size = new System.Drawing.Size(96, 17);
            this.chkDuplicar.TabIndex = 8;
            this.chkDuplicar.Text = "Duplicar Línea";
            this.chkDuplicar.UseVisualStyleBackColor = false;
            //
            // txtDescripcampo
            //
            this.txtDescripcampo.BackColor = System.Drawing.Color.White;
            this.txtDescripcampo.Enabled = false;
            this.txtDescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
            this.txtDescripcampo.Location = new System.Drawing.Point(8, 510);
            this.txtDescripcampo.Name = "txtDescripcampo";
            this.txtDescripcampo.Size = new System.Drawing.Size(419, 20);
            this.txtDescripcampo.TabIndex = 7;
            //
            // GridExaminar
            //
            this.GridExaminar.AllowUserToAddRows = false;
            this.GridExaminar.AllowUserToDeleteRows = false;
            this.GridExaminar.AllowUserToResizeColumns = false;
            this.GridExaminar.AllowUserToResizeRows = false;
            this.GridExaminar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.GridExaminar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
            this.GridExaminar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GridExaminar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.asientoitems,
            this.rubroid,
            this.drubro,
            this.numpedido,
            this.num_op,
            this.productid,
            this.tallacolor,
            this.productname,
            this.unidmedidaid,
            this.cantidad,
            this.afectoigvid,
            this.precunit,
            this.bruto,
            this.pdscto,
            this.valorventa,
            this.igvo,
            this.total,
            this.cencosid,
            this.COL_OBS,
            this.tipguia,
            this.serguia,
            this.numguia});
            this.GridExaminar.Location = new System.Drawing.Point(6, 262);
            this.GridExaminar.MultiSelect = false;
            this.GridExaminar.Name = "GridExaminar";
            this.GridExaminar.RowHeadersWidth = 10;
            dataGridViewCellStyle10.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.GridExaminar.RowsDefaultCellStyle = dataGridViewCellStyle10;
            this.GridExaminar.RowTemplate.Height = 20;
            this.GridExaminar.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
            this.GridExaminar.Size = new System.Drawing.Size(1005, 240);
            this.GridExaminar.TabIndex = 6;
            this.GridExaminar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.GridExaminar_CellBeginEdit);
            this.GridExaminar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellContentClick);
            this.GridExaminar.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellEndEdit);
            this.GridExaminar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.GridExaminar_CellValueChanged);
            this.GridExaminar.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.GridExaminar_EditingControlShowing);
            this.GridExaminar.SelectionChanged += new System.EventHandler(this.GridExaminar_SelectionChanged);
            this.GridExaminar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.GridExaminar_KeyDown);
            //
            // asientoitems
            //
            this.asientoitems.DataPropertyName = "asientoitems";
            this.asientoitems.HeaderText = "Nro";
            this.asientoitems.Name = "asientoitems";
            this.asientoitems.ReadOnly = true;
            this.asientoitems.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.asientoitems.Visible = false;
            this.asientoitems.Width = 45;
            //
            // rubroid
            //
            this.rubroid.DataPropertyName = "rubroid";
            this.rubroid.HeaderText = "Rubro";
            this.rubroid.Name = "rubroid";
            this.rubroid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.rubroid.Width = 42;
            //
            // drubro
            //
            this.drubro.DataPropertyName = "drubro";
            this.drubro.HeaderText = "Descripción Rubro";
            this.drubro.Name = "drubro";
            this.drubro.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.drubro.Visible = false;
            this.drubro.Width = 300;
            //
            // numpedido
            //
            this.numpedido.DataPropertyName = "numpedido";
            this.numpedido.HeaderText = "Pedido";
            this.numpedido.Name = "numpedido";
            this.numpedido.Visible = false;
            this.numpedido.Width = 70;
            //
            // num_op
            //
            this.num_op.DataPropertyName = "num_op";
            this.num_op.HeaderText = "OP";
            this.num_op.Name = "num_op";
            this.num_op.Visible = false;
            this.num_op.Width = 75;
            //
            // productid
            //
            this.productid.DataPropertyName = "productid";
            this.productid.HeaderText = "Código Artículo";
            this.productid.MaxInputLength = 10;
            this.productid.Name = "productid";
            this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productid.Width = 110;
            //
            // tallacolor
            //
            this.tallacolor.DataPropertyName = "tallacolor";
            this.tallacolor.HeaderText = "Talla/Color";
            this.tallacolor.Name = "tallacolor";
            this.tallacolor.Visible = false;
            this.tallacolor.Width = 65;
            //
            // productname
            //
            this.productname.DataPropertyName = "productname";
            this.productname.HeaderText = "Descripción";
            this.productname.Name = "productname";
            this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.productname.Width = 300;
            //
            // unidmedidaid
            //
            this.unidmedidaid.DataPropertyName = "unidmedidaid";
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.unidmedidaid.DefaultCellStyle = dataGridViewCellStyle1;
            this.unidmedidaid.HeaderText = "UMD";
            this.unidmedidaid.Name = "unidmedidaid";
            this.unidmedidaid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.unidmedidaid.Visible = false;
            this.unidmedidaid.Width = 35;
            //
            // cantidad
            //
            this.cantidad.DataPropertyName = "cantidad";
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle2.Format = "N3";
            dataGridViewCellStyle2.NullValue = "0";
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.cantidad.DefaultCellStyle = dataGridViewCellStyle2;
            this.cantidad.HeaderText = "Cantidad";
            this.cantidad.Name = "cantidad";
            this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.cantidad.Width = 70;
            //
            // afectoigvid
            //
            this.afectoigvid.DataPropertyName = "afectoigvid";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopCenter;
            this.afectoigvid.DefaultCellStyle = dataGridViewCellStyle3;
            this.afectoigvid.HeaderText = "Des";
            this.afectoigvid.Name = "afectoigvid";
            this.afectoigvid.Width = 30;
            //
            // precunit
            //
            this.precunit.DataPropertyName = "precunit";
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle4.Format = "N5";
            dataGridViewCellStyle4.NullValue = "0";
            this.precunit.DefaultCellStyle = dataGridViewCellStyle4;
            this.precunit.HeaderText = "Unitario";
            this.precunit.Name = "precunit";
            this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.precunit.Width = 85;
            //
            // bruto
            //
            this.bruto.DataPropertyName = "bruto";
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle5.Format = "N2";
            dataGridViewCellStyle5.NullValue = "0";
            this.bruto.DefaultCellStyle = dataGridViewCellStyle5;
            this.bruto.HeaderText = "Valor";
            this.bruto.Name = "bruto";
            this.bruto.Width = 85;
            //
            // pdscto
            //
            this.pdscto.DataPropertyName = "pdscto";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle6.Format = "N2";
            dataGridViewCellStyle6.NullValue = "0";
            this.pdscto.DefaultCellStyle = dataGridViewCellStyle6;
            this.pdscto.HeaderText = "%Dcto.";
            this.pdscto.Name = "pdscto";
            this.pdscto.Width = 55;
            //
            // valorventa
            //
            this.valorventa.DataPropertyName = "valorventa";
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle7.Format = "N2";
            dataGridViewCellStyle7.NullValue = "0";
            this.valorventa.DefaultCellStyle = dataGridViewCellStyle7;
            this.valorventa.HeaderText = "V.Venta";
            this.valorventa.Name = "valorventa";
            this.valorventa.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.valorventa.Width = 85;
            //
            // igvo
            //
            this.igvo.DataPropertyName = "igvo";
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle8.Format = "N2";
            dataGridViewCellStyle8.NullValue = "0";
            this.igvo.DefaultCellStyle = dataGridViewCellStyle8;
            this.igvo.HeaderText = "IGV";
            this.igvo.Name = "igvo";
            this.igvo.ReadOnly = true;
            this.igvo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.igvo.Width = 70;
            //
            // total
            //
            this.total.DataPropertyName = "total";
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            dataGridViewCellStyle9.Format = "N2";
            dataGridViewCellStyle9.NullValue = "0";
            this.total.DefaultCellStyle = dataGridViewCellStyle9;
            this.total.HeaderText = "P.Venta";
            this.total.Name = "total";
            this.total.ReadOnly = true;
            this.total.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
            this.total.Width = 85;
            //
            // cencosid
            //
            this.cencosid.DataPropertyName = "cencosid";
            this.cencosid.HeaderText = "C.Costo";
            this.cencosid.Name = "cencosid";
            this.cencosid.Width = 54;
            //
            // COL_OBS
            //
            this.COL_OBS.HeaderText = "Obs.";
            this.COL_OBS.Name = "COL_OBS";
            this.COL_OBS.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.COL_OBS.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.COL_OBS.Width = 65;
            //
            // tipguia
            //
            this.tipguia.DataPropertyName = "tipguia";
            this.tipguia.HeaderText = "TG";
            this.tipguia.Name = "tipguia";
            this.tipguia.Width = 34;
            //
            // serguia
            //
            this.serguia.DataPropertyName = "serguia";
            this.serguia.HeaderText = "SerGuia";
            this.serguia.Name = "serguia";
            this.serguia.Width = 50;
            //
            // numguia
            //
            this.numguia.DataPropertyName = "numguia";
            this.numguia.HeaderText = "NumGuia";
            this.numguia.Name = "numguia";
            this.numguia.Width = 80;
            //
            // lblAnulado
            //
            this.lblAnulado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblAnulado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblAnulado.ForeColor = System.Drawing.Color.Red;
            this.lblAnulado.Location = new System.Drawing.Point(269, 2);
            this.lblAnulado.Name = "lblAnulado";
            this.lblAnulado.Size = new System.Drawing.Size(145, 20);
            this.lblAnulado.TabIndex = 3;
            this.lblAnulado.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            //
            // txtMes
            //
            this.txtMes.Location = new System.Drawing.Point(37, 3);
            this.txtMes.MaxLength = 2;
            this.txtMes.Name = "txtMes";
            this.txtMes.Size = new System.Drawing.Size(30, 20);
            this.txtMes.TabIndex = 1;
            this.txtMes.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMes_KeyDown);
            this.txtMes.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtMes_KeyPress);
            //
            // txtAsiento
            //
            this.txtAsiento.Location = new System.Drawing.Point(132, 3);
            this.txtAsiento.MaxLength = 6;
            this.txtAsiento.Name = "txtAsiento";
            this.txtAsiento.Size = new System.Drawing.Size(68, 20);
            this.txtAsiento.TabIndex = 3;
            this.txtAsiento.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAsiento_KeyDown);
            this.txtAsiento.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtAsiento_KeyPress);
            //
            // txtDctos
            //
            this.txtDctos.Enabled = false;
            this.txtDctos.Location = new System.Drawing.Point(78, 14);
            this.txtDctos.Name = "txtDctos";
            this.txtDctos.Size = new System.Drawing.Size(70, 20);
            this.txtDctos.TabIndex = 3;
            this.txtDctos.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtValor
            //
            this.txtValor.Enabled = false;
            this.txtValor.Location = new System.Drawing.Point(4, 14);
            this.txtValor.Name = "txtValor";
            this.txtValor.Size = new System.Drawing.Size(70, 20);
            this.txtValor.TabIndex = 1;
            this.txtValor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtPigv
            //
            this.txtPigv.Enabled = false;
            this.txtPigv.Location = new System.Drawing.Point(226, 14);
            this.txtPigv.Name = "txtPigv";
            this.txtPigv.Size = new System.Drawing.Size(39, 20);
            this.txtPigv.TabIndex = 8;
            this.txtPigv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtPigv.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPigv_KeyDown);
            //
            // txtTotal
            //
            this.txtTotal.Enabled = false;
            this.txtTotal.Location = new System.Drawing.Point(341, 14);
            this.txtTotal.Name = "txtTotal";
            this.txtTotal.Size = new System.Drawing.Size(70, 20);
            this.txtTotal.TabIndex = 0;
            this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // txtIgv
            //
            this.txtIgv.Enabled = false;
            this.txtIgv.Location = new System.Drawing.Point(269, 14);
            this.txtIgv.Name = "txtIgv";
            this.txtIgv.Size = new System.Drawing.Size(68, 20);
            this.txtIgv.TabIndex = 10;
            this.txtIgv.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            this.txtIgv.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtIgv_KeyPress);
            //
            // txtVenta
            //
            this.txtVenta.Enabled = false;
            this.txtVenta.Location = new System.Drawing.Point(152, 14);
            this.txtVenta.Name = "txtVenta";
            this.txtVenta.Size = new System.Drawing.Size(70, 20);
            this.txtVenta.TabIndex = 7;
            this.txtVenta.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
            //
            // lblMoneda
            //
            this.lblMoneda.AutoSize = true;
            this.lblMoneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblMoneda.ForeColor = System.Drawing.Color.Blue;
            this.lblMoneda.Location = new System.Drawing.Point(553, 526);
            this.lblMoneda.Name = "lblMoneda";
            this.lblMoneda.Size = new System.Drawing.Size(37, 16);
            this.lblMoneda.TabIndex = 9;
            this.lblMoneda.Text = "Mon";
            this.lblMoneda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            //
            // groupPanel1
            //
            this.groupPanel1.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel1.Controls.Add(this.cboSubdiario);
            this.groupPanel1.Controls.Add(this.labelX2);
            this.groupPanel1.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel1.Location = new System.Drawing.Point(8, 42);
            this.groupPanel1.Name = "groupPanel1";
            this.groupPanel1.Size = new System.Drawing.Size(349, 30);
            //
            //
            //
            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.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.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel1.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel1.TabIndex = 40;
            //
            // cboSubdiario
            //
            this.cboSubdiario.DisplayMember = "Text";
            this.cboSubdiario.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboSubdiario.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSubdiario.FormattingEnabled = true;
            this.cboSubdiario.ItemHeight = 14;
            this.cboSubdiario.Items.AddRange(new object[] {
            this.comboItem3,
            this.comboItem4});
            this.cboSubdiario.Location = new System.Drawing.Point(61, 3);
            this.cboSubdiario.Name = "cboSubdiario";
            this.cboSubdiario.Size = new System.Drawing.Size(274, 20);
            this.cboSubdiario.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboSubdiario.TabIndex = 48;
            //
            // comboItem3
            //
            this.comboItem3.Text = "01-Venta Interna";
            this.comboItem3.Value = "01";
            //
            // comboItem4
            //
            this.comboItem4.Text = "02-Venta Externa";
            this.comboItem4.Value = "02";
            //
            // labelX2
            //
            this.labelX2.AutoSize = true;
            this.labelX2.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX2.Location = new System.Drawing.Point(5, 5);
            this.labelX2.Name = "labelX2";
            this.labelX2.Size = new System.Drawing.Size(51, 15);
            this.labelX2.TabIndex = 0;
            this.labelX2.Text = "SubDiario";
            //
            // groupPanel2
            //
            this.groupPanel2.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel2.Controls.Add(this.labelX4);
            this.groupPanel2.Controls.Add(this.labelX3);
            this.groupPanel2.Controls.Add(this.txtMes);
            this.groupPanel2.Controls.Add(this.txtAsiento);
            this.groupPanel2.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel2.Location = new System.Drawing.Point(363, 42);
            this.groupPanel2.Name = "groupPanel2";
            this.groupPanel2.Size = new System.Drawing.Size(214, 30);
            //
            //
            //
            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.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.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel2.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel2.TabIndex = 41;
            //
            // labelX4
            //
            this.labelX4.AutoSize = true;
            this.labelX4.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX4.Location = new System.Drawing.Point(79, 5);
            this.labelX4.Name = "labelX4";
            this.labelX4.Size = new System.Drawing.Size(49, 15);
            this.labelX4.TabIndex = 41;
            this.labelX4.Text = "Vouchers";
            //
            // labelX3
            //
            this.labelX3.AutoSize = true;
            this.labelX3.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX3.Location = new System.Drawing.Point(10, 5);
            this.labelX3.Name = "labelX3";
            this.labelX3.Size = new System.Drawing.Size(23, 15);
            this.labelX3.TabIndex = 40;
            this.labelX3.Text = "Mes";
            //
            // groupPanel3
            //
            this.groupPanel3.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel3.Controls.Add(this.chkActivo);
            this.groupPanel3.Controls.Add(this.cboOrigen);
            this.groupPanel3.Controls.Add(this.labelX1);
            this.groupPanel3.Controls.Add(this.lblAnulado);
            this.groupPanel3.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel3.Location = new System.Drawing.Point(583, 42);
            this.groupPanel3.Name = "groupPanel3";
            this.groupPanel3.Size = new System.Drawing.Size(428, 30);
            //
            //
            //
            this.groupPanel3.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel3.Style.BackColorGradientAngle = 90;
            this.groupPanel3.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel3.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderBottomWidth = 1;
            this.groupPanel3.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel3.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderLeftWidth = 1;
            this.groupPanel3.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderRightWidth = 1;
            this.groupPanel3.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel3.Style.BorderTopWidth = 1;
            this.groupPanel3.Style.CornerDiameter = 4;
            this.groupPanel3.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel3.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel3.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel3.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel3.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel3.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel3.TabIndex = 40;
            //
            // chkActivo
            //
            this.chkActivo.AutoSize = true;
            this.chkActivo.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.chkActivo.Location = new System.Drawing.Point(210, 5);
            this.chkActivo.Name = "chkActivo";
            this.chkActivo.Size = new System.Drawing.Size(53, 15);
            this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.chkActivo.TabIndex = 47;
            this.chkActivo.Text = "Activo";
            this.chkActivo.CheckedChanged += new System.EventHandler(this.chkActivo_CheckedChanged);
            //
            // cboOrigen
            //
            this.cboOrigen.DisplayMember = "Text";
            this.cboOrigen.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            this.cboOrigen.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboOrigen.FormattingEnabled = true;
            this.cboOrigen.ItemHeight = 14;
            this.cboOrigen.Items.AddRange(new object[] {
            this.comboItem1,
            this.comboItem2});
            this.cboOrigen.Location = new System.Drawing.Point(48, 3);
            this.cboOrigen.Name = "cboOrigen";
            this.cboOrigen.Size = new System.Drawing.Size(125, 20);
            this.cboOrigen.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.cboOrigen.TabIndex = 47;
            this.cboOrigen.SelectedIndexChanged += new System.EventHandler(this.cboOrigen_SelectedIndexChanged);
            //
            // comboItem1
            //
            this.comboItem1.Text = "01-Venta Interna";
            this.comboItem1.Value = "01";
            //
            // comboItem2
            //
            this.comboItem2.Text = "02-Venta Externa";
            this.comboItem2.Value = "02";
            //
            // labelX1
            //
            this.labelX1.AutoSize = true;
            this.labelX1.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX1.Location = new System.Drawing.Point(6, 5);
            this.labelX1.Name = "labelX1";
            this.labelX1.Size = new System.Drawing.Size(36, 15);
            this.labelX1.TabIndex = 42;
            this.labelX1.Text = "Origen";
            //
            // groupPanel4
            //
            this.groupPanel4.CanvasColor = System.Drawing.SystemColors.Control;
            this.groupPanel4.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
            this.groupPanel4.Controls.Add(this.labelX35);
            this.groupPanel4.Controls.Add(this.labelX34);
            this.groupPanel4.Controls.Add(this.labelX33);
            this.groupPanel4.Controls.Add(this.labelX32);
            this.groupPanel4.Controls.Add(this.labelX31);
            this.groupPanel4.Controls.Add(this.labelX30);
            this.groupPanel4.Controls.Add(this.txtDctos);
            this.groupPanel4.Controls.Add(this.txtTotal);
            this.groupPanel4.Controls.Add(this.txtVenta);
            this.groupPanel4.Controls.Add(this.txtIgv);
            this.groupPanel4.Controls.Add(this.txtValor);
            this.groupPanel4.Controls.Add(this.txtPigv);
            this.groupPanel4.DisabledBackColor = System.Drawing.Color.Empty;
            this.groupPanel4.Location = new System.Drawing.Point(592, 508);
            this.groupPanel4.Name = "groupPanel4";
            this.groupPanel4.Size = new System.Drawing.Size(419, 41);
            //
            //
            //
            this.groupPanel4.Style.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
            this.groupPanel4.Style.BackColorGradientAngle = 90;
            this.groupPanel4.Style.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
            this.groupPanel4.Style.BorderBottom = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderBottomWidth = 1;
            this.groupPanel4.Style.BorderColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
            this.groupPanel4.Style.BorderLeft = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderLeftWidth = 1;
            this.groupPanel4.Style.BorderRight = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderRightWidth = 1;
            this.groupPanel4.Style.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
            this.groupPanel4.Style.BorderTopWidth = 1;
            this.groupPanel4.Style.CornerDiameter = 4;
            this.groupPanel4.Style.CornerType = DevComponents.DotNetBar.eCornerType.Rounded;
            this.groupPanel4.Style.TextAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Center;
            this.groupPanel4.Style.TextColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
            this.groupPanel4.Style.TextLineAlignment = DevComponents.DotNetBar.eStyleTextAlignment.Near;
            //
            //
            //
            this.groupPanel4.StyleMouseDown.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            //
            //
            //
            this.groupPanel4.StyleMouseOver.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.groupPanel4.TabIndex = 42;
            //
            // labelX35
            //
            this.labelX35.AutoSize = true;
            this.labelX35.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX35.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX35.Location = new System.Drawing.Point(349, -1);
            this.labelX35.Name = "labelX35";
            this.labelX35.Size = new System.Drawing.Size(42, 15);
            this.labelX35.TabIndex = 53;
            this.labelX35.Text = "P.Venta";
            //
            // labelX34
            //
            this.labelX34.AutoSize = true;
            this.labelX34.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX34.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX34.Location = new System.Drawing.Point(290, -1);
            this.labelX34.Name = "labelX34";
            this.labelX34.Size = new System.Drawing.Size(21, 15);
            this.labelX34.TabIndex = 52;
            this.labelX34.Text = "IGV";
            //
            // labelX33
            //
            this.labelX33.AutoSize = true;
            this.labelX33.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX33.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX33.Location = new System.Drawing.Point(226, -1);
            this.labelX33.Name = "labelX33";
            this.labelX33.Size = new System.Drawing.Size(34, 15);
            this.labelX33.TabIndex = 51;
            this.labelX33.Text = "% IGV";
            //
            // labelX32
            //
            this.labelX32.AutoSize = true;
            this.labelX32.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX32.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX32.Location = new System.Drawing.Point(165, -1);
            this.labelX32.Name = "labelX32";
            this.labelX32.Size = new System.Drawing.Size(42, 15);
            this.labelX32.TabIndex = 50;
            this.labelX32.Text = "V.Venta";
            //
            // labelX31
            //
            this.labelX31.AutoSize = true;
            this.labelX31.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX31.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX31.Location = new System.Drawing.Point(93, -1);
            this.labelX31.Name = "labelX31";
            this.labelX31.Size = new System.Drawing.Size(34, 15);
            this.labelX31.TabIndex = 49;
            this.labelX31.Text = "Dctos.";
            //
            // labelX30
            //
            this.labelX30.AutoSize = true;
            this.labelX30.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            this.labelX30.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.labelX30.Location = new System.Drawing.Point(23, -1);
            this.labelX30.Name = "labelX30";
            this.labelX30.Size = new System.Drawing.Size(28, 15);
            this.labelX30.TabIndex = 48;
            this.labelX30.Text = "Valor";
            //
            // gbtnCompras
            //
            this.gbtnCompras.AccessibleDescription = "bar1 (bar1)";
            this.gbtnCompras.AccessibleName = "bar1";
            this.gbtnCompras.AccessibleRole = System.Windows.Forms.AccessibleRole.ToolBar;
            this.gbtnCompras.AntiAlias = true;
            this.gbtnCompras.Dock = System.Windows.Forms.DockStyle.Top;
            this.gbtnCompras.Font = new System.Drawing.Font("Segoe UI", 9F);
            this.gbtnCompras.Items.AddRange(new DevComponents.DotNetBar.BaseItem[] {
            this.btnNew,
            this.btnEdit,
            this.btnSave,
            this.btnRetro,
            this.btnDelete,
            this.btnPrint,
            this.buttonItem8,
            this.btnLog,
            this.buttonItem10,
            this.btnBusqueda,
            this.btnSeekdoc,
            this.btnAddfila,
            this.btnDelfila,
            this.btnActtipocambio,
            this.btnProvfactura,
            this.buttonItem18,
            this.btnInicial,
            this.btnAnterior,
            this.btnSiguiente,
            this.btnUltimo,
            this.buttonItem22,
            this.btnExit});
            this.gbtnCompras.Location = new System.Drawing.Point(0, 0);
            this.gbtnCompras.Name = "gbtnCompras";
            this.gbtnCompras.Size = new System.Drawing.Size(1013, 29);
            this.gbtnCompras.Stretch = true;
            this.gbtnCompras.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            this.gbtnCompras.TabIndex = 0;
            this.gbtnCompras.TabStop = false;
            this.gbtnCompras.Text = "bar1";
            //
            // btnNew
            //
            this.btnNew.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
            this.btnNew.Name = "btnNew";
            this.btnNew.Text = "Nuevo [F2]";
            this.btnNew.Tooltip = "Nuevo [F2]";
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            //
            // btnEdit
            //
            this.btnEdit.Image = global::BapFormulariosNet.Properties.Resources.go_edit20;
            this.btnEdit.Name = "btnEdit";
            this.btnEdit.Text = "buttonItem2";
            this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
            //
            // btnSave
            //
            this.btnSave.Image = global::BapFormulariosNet.Properties.Resources.btn_grabar20;
            this.btnSave.Name = "btnSave";
            this.btnSave.Text = "buttonItem3";
            this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
            //
            // btnRetro
            //
            this.btnRetro.Image = global::BapFormulariosNet.Properties.Resources.btn_cancel;
            this.btnRetro.Name = "btnRetro";
            this.btnRetro.Text = "buttonItem4";
            this.btnRetro.Click += new System.EventHandler(this.btnRetro_Click);
            //
            // btnDelete
            //
            this.btnDelete.Image = global::BapFormulariosNet.Properties.Resources.btn_delete20;
            this.btnDelete.Name = "btnDelete";
            this.btnDelete.Text = "buttonItem5";
            this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
            //
            // btnPrint
            //
            this.btnPrint.Image = global::BapFormulariosNet.Properties.Resources.btn_imprimir20;
            this.btnPrint.Name = "btnPrint";
            this.btnPrint.Text = "buttonItem6";
            this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
            //
            // buttonItem8
            //
            this.buttonItem8.Name = "buttonItem8";
            this.buttonItem8.Text = "|";
            //
            // btnLog
            //
            this.btnLog.Image = global::BapFormulariosNet.Properties.Resources.ojo20;
            this.btnLog.Name = "btnLog";
            this.btnLog.Text = "buttonItem9";
            this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
            //
            // buttonItem10
            //
            this.buttonItem10.Name = "buttonItem10";
            this.buttonItem10.Text = "|";
            //
            // btnBusqueda
            //
            this.btnBusqueda.Image = global::BapFormulariosNet.Properties.Resources.btn_listado20;
            this.btnBusqueda.Name = "btnBusqueda";
            this.btnBusqueda.Text = "buttonItem11";
            this.btnBusqueda.Click += new System.EventHandler(this.btnBusqueda_Click);
            //
            // btnSeekdoc
            //
            this.btnSeekdoc.Image = global::BapFormulariosNet.Properties.Resources.btn_search20;
            this.btnSeekdoc.Name = "btnSeekdoc";
            this.btnSeekdoc.Text = "buttonItem11";
            this.btnSeekdoc.Click += new System.EventHandler(this.btnSeekdoc_Click);
            //
            // btnAddfila
            //
            this.btnAddfila.Image = global::BapFormulariosNet.Properties.Resources.go_add;
            this.btnAddfila.Name = "btnAddfila";
            this.btnAddfila.Text = "buttonItem13";
            this.btnAddfila.Click += new System.EventHandler(this.btnAddfila_Click);
            //
            // btnDelfila
            //
            this.btnDelfila.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
            this.btnDelfila.Name = "btnDelfila";
            this.btnDelfila.Text = "buttonItem14";
            this.btnDelfila.Click += new System.EventHandler(this.btnDelfila_Click);
            //
            // btnActtipocambio
            //
            this.btnActtipocambio.Image = global::BapFormulariosNet.Properties.Resources.dolares20;
            this.btnActtipocambio.Name = "btnActtipocambio";
            this.btnActtipocambio.Text = "buttonItem15";
            this.btnActtipocambio.Click += new System.EventHandler(this.btnActtipocambio_Click);
            //
            // btnProvfactura
            //
            this.btnProvfactura.Image = global::BapFormulariosNet.Properties.Resources.notepad20x20;
            this.btnProvfactura.Name = "btnProvfactura";
            this.btnProvfactura.Text = "buttonItem16";
            this.btnProvfactura.Click += new System.EventHandler(this.btnProvfactura_Click);
            //
            // buttonItem18
            //
            this.buttonItem18.Name = "buttonItem18";
            this.buttonItem18.Text = "|";
            //
            // btnInicio
            //
            this.btnInicial.Image = global::BapFormulariosNet.Properties.Resources.go_inicio20;
            this.btnInicial.Name = "btnInicio";
            this.btnInicial.Text = "buttonItem23";
            this.btnInicial.Click += new System.EventHandler(this.btnInicial_Click);
            //
            // btnAnterior
            //
            this.btnAnterior.Image = global::BapFormulariosNet.Properties.Resources.go_anterior20;
            this.btnAnterior.Name = "btnAnterior";
            this.btnAnterior.Text = "Anterior";
            this.btnAnterior.Tooltip = "Anterior";
            this.btnAnterior.Click += new System.EventHandler(this.btnAnterior_Click);
            //
            // btnSiguiente
            //
            this.btnSiguiente.Image = global::BapFormulariosNet.Properties.Resources.go_siguiente20;
            this.btnSiguiente.Name = "btnSiguiente";
            this.btnSiguiente.Text = "buttonItem25";
            this.btnSiguiente.Click += new System.EventHandler(this.btnSiguiente_Click);
            //
            // btnUltimo
            //
            this.btnUltimo.Image = global::BapFormulariosNet.Properties.Resources.go_final20;
            this.btnUltimo.Name = "btnUltimo";
            this.btnUltimo.Text = "buttonItem26";
            this.btnUltimo.Click += new System.EventHandler(this.btnUltimo_Click);
            //
            // buttonItem22
            //
            this.buttonItem22.Name = "buttonItem22";
            this.buttonItem22.Text = "|";
            //
            // btnExit
            //
            this.btnExit.Image = global::BapFormulariosNet.Properties.Resources.Exit16x16;
            this.btnExit.Name = "btnExit";
            this.btnExit.Text = "buttonItem27";
            this.btnExit.Click += new System.EventHandler(this.btnExit_Click);

            //
            // lblUsuar
            //
            this.lblUsuar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            this.lblUsuar.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.lblUsuar.Location = new System.Drawing.Point(716, 0);
            this.lblUsuar.Name = "lblUsuar";
            this.lblUsuar.Size = new System.Drawing.Size(251, 23);
            this.lblUsuar.TabIndex = 0;
            this.lblUsuar.Text = "Usuario";
            this.lblUsuar.TextAlignment = System.Drawing.StringAlignment.Center;
            this.lblUsuar.Visible = false;
            //
            // controlContainerItem1
            //
            this.controlContainerItem1.AllowItemResize = false;
            this.controlContainerItem1.Control = this.lblUsuar;
            this.controlContainerItem1.MenuVisibility = DevComponents.DotNetBar.eMenuVisibility.VisibleAlways;
            this.controlContainerItem1.Name = "controlContainerItem1";
            //
            // Frm_RegistroVentas
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1013, 555);
            this.Controls.Add(this.gbtnCompras);
            this.Controls.Add(this.groupPanel4);
            this.Controls.Add(this.groupPanel6);
            this.Controls.Add(this.groupPanel3);
            this.Controls.Add(this.groupPanel2);
            this.Controls.Add(this.groupPanel1);
            this.Controls.Add(this.chkDuplicar);
            this.Controls.Add(this.txtDescripcampo);
            this.Controls.Add(this.GridExaminar);
            this.Controls.Add(this.lblMoneda);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.KeyPreview = true;
            this.MaximizeBox = false;
            this.Name = "Frm_RegistroVentas";
            this.Text = "Registro de Ventas";
            this.Activated += new System.EventHandler(this.Frm_RegistroVentas_Activated);
            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_RegistroVentas_FormClosing);
            this.Load += new System.EventHandler(this.Frm_RegistroVentas_Load);
            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_RegistroVentas_KeyDown);
            this.gpoReferencia.ResumeLayout(false);
            this.gpoReferencia.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fechaRefer)).EndInit();
            this.groupPanel6.ResumeLayout(false);
            this.groupPanel6.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.fecVenc)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.fRegistro)).EndInit();
            this.grpdua.ResumeLayout(false);
            this.grpdua.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.adufRegularizacion)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.adufEmbarque)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GridExaminar)).EndInit();
            this.groupPanel1.ResumeLayout(false);
            this.groupPanel1.PerformLayout();
            this.groupPanel2.ResumeLayout(false);
            this.groupPanel2.PerformLayout();
            this.groupPanel3.ResumeLayout(false);
            this.groupPanel3.PerformLayout();
            this.groupPanel4.ResumeLayout(false);
            this.groupPanel4.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gbtnCompras)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
コード例 #33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmHoaDon));
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.cmdNgayLap = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.listViewPhieuThue = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.MaPhieuThue = new System.Windows.Forms.ColumnHeader();
     this.MaPhong = new System.Windows.Forms.ColumnHeader();
     this.TenPhong = new System.Windows.Forms.ColumnHeader();
     this.NgayTra = new System.Windows.Forms.ColumnHeader();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txt_DiaChi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_MaHoaDon = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btxem = new DevComponents.DotNetBar.ButtonX();
     this.btExit = new DevComponents.DotNetBar.ButtonX();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.bt_tim = new DevComponents.DotNetBar.ButtonX();
     this.checkNgayTra_ThucTe = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cmd_ngaytra_thucte = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.checkmatudong = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.listViewCTPhong = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.MaKhachHang = new System.Windows.Forms.ColumnHeader();
     this.TenKhachHang = new System.Windows.Forms.ColumnHeader();
     this.DiaChi = new System.Windows.Forms.ColumnHeader();
     this.MaLoaiKhach = new System.Windows.Forms.ColumnHeader();
     this.TenLoaikhach = new System.Windows.Forms.ColumnHeader();
     this.txt_tenKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.cmdNgayLap)).BeginInit();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cmd_ngaytra_thucte)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(262, 11);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(318, 30);
     this.labelX1.TabIndex = 14;
     this.labelX1.Text = "LẬP HÓA ĐƠN THANH TOÁN";
     this.labelX1.TextAlignment = System.Drawing.StringAlignment.Center;
     //
     // labelX10
     //
     this.labelX10.Location = new System.Drawing.Point(317, 36);
     this.labelX10.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(54, 16);
     this.labelX10.TabIndex = 22;
     this.labelX10.Text = "Ngày Lập";
     //
     // cmdNgayLap
     //
     //
     //
     //
     this.cmdNgayLap.BackgroundStyle.Class = "DateTimeInputBackground";
     this.cmdNgayLap.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.cmdNgayLap.ButtonDropDown.Visible = true;
     this.cmdNgayLap.Location = new System.Drawing.Point(379, 29);
     this.cmdNgayLap.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     //
     //
     //
     this.cmdNgayLap.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.cmdNgayLap.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.cmdNgayLap.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.cmdNgayLap.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.cmdNgayLap.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.cmdNgayLap.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.cmdNgayLap.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.cmdNgayLap.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.cmdNgayLap.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.cmdNgayLap.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.cmdNgayLap.MonthCalendar.TodayButtonVisible = true;
     this.cmdNgayLap.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.cmdNgayLap.Name = "cmdNgayLap";
     this.cmdNgayLap.Size = new System.Drawing.Size(103, 21);
     this.cmdNgayLap.TabIndex = 24;
     //
     // labelX8
     //
     this.labelX8.Location = new System.Drawing.Point(12, 35);
     this.labelX8.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(65, 20);
     this.labelX8.TabIndex = 21;
     this.labelX8.Text = "Mã Hóa Đơn";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.listViewPhieuThue);
     this.groupBox2.ForeColor = System.Drawing.Color.Blue;
     this.groupBox2.Location = new System.Drawing.Point(25, 180);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(697, 211);
     this.groupBox2.TabIndex = 26;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Danh Sách Phòng Cần Thanh Toán";
     //
     // listViewPhieuThue
     //
     //
     //
     //
     this.listViewPhieuThue.Border.Class = "ListViewBorder";
     this.listViewPhieuThue.CheckBoxes = true;
     this.listViewPhieuThue.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.MaPhieuThue,
     this.MaPhong,
     this.TenPhong,
     this.NgayTra});
     this.listViewPhieuThue.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listViewPhieuThue.GridLines = true;
     this.listViewPhieuThue.Location = new System.Drawing.Point(129, 41);
     this.listViewPhieuThue.Name = "listViewPhieuThue";
     this.listViewPhieuThue.Size = new System.Drawing.Size(422, 147);
     this.listViewPhieuThue.TabIndex = 43;
     this.listViewPhieuThue.UseCompatibleStateImageBehavior = false;
     this.listViewPhieuThue.View = System.Windows.Forms.View.Details;
     this.listViewPhieuThue.SelectedIndexChanged += new System.EventHandler(this.listViewHoaDon_SelectedIndexChanged);
     //
     // MaPhieuThue
     //
     this.MaPhieuThue.Text = "Mã Phiếu Thuê";
     this.MaPhieuThue.Width = 135;
     //
     // MaPhong
     //
     this.MaPhong.Text = "Mã Phòng";
     this.MaPhong.Width = 76;
     //
     // TenPhong
     //
     this.TenPhong.Text = "Tên Phòng";
     this.TenPhong.Width = 98;
     //
     // NgayTra
     //
     this.NgayTra.Text = "Ngày Trả";
     this.NgayTra.Width = 86;
     //
     // labelX7
     //
     this.labelX7.Location = new System.Drawing.Point(11, 63);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(85, 22);
     this.labelX7.TabIndex = 30;
     this.labelX7.Text = "Mã Khách Hàng";
     //
     // txt_MaKH
     //
     //
     //
     //
     this.txt_MaKH.Border.Class = "TextBoxBorder";
     this.txt_MaKH.Location = new System.Drawing.Point(102, 65);
     this.txt_MaKH.Name = "txt_MaKH";
     this.txt_MaKH.Size = new System.Drawing.Size(103, 21);
     this.txt_MaKH.TabIndex = 29;
     this.txt_MaKH.TextChanged += new System.EventHandler(this.txt_MaKH_TextChanged);
     //
     // labelX3
     //
     this.labelX3.Location = new System.Drawing.Point(12, 96);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(73, 22);
     this.labelX3.TabIndex = 34;
     this.labelX3.Text = "Địa Chỉ";
     //
     // txt_DiaChi
     //
     //
     //
     //
     this.txt_DiaChi.Border.Class = "TextBoxBorder";
     this.txt_DiaChi.Enabled = false;
     this.txt_DiaChi.Location = new System.Drawing.Point(102, 99);
     this.txt_DiaChi.Name = "txt_DiaChi";
     this.txt_DiaChi.Size = new System.Drawing.Size(330, 21);
     this.txt_DiaChi.TabIndex = 33;
     //
     // txt_MaHoaDon
     //
     //
     //
     //
     this.txt_MaHoaDon.Border.Class = "TextBoxBorder";
     this.txt_MaHoaDon.Enabled = false;
     this.txt_MaHoaDon.Location = new System.Drawing.Point(102, 35);
     this.txt_MaHoaDon.Name = "txt_MaHoaDon";
     this.txt_MaHoaDon.Size = new System.Drawing.Size(84, 21);
     this.txt_MaHoaDon.TabIndex = 35;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.btxem);
     this.groupBox4.Controls.Add(this.btExit);
     this.groupBox4.Controls.Add(this.btAdd);
     this.groupBox4.Location = new System.Drawing.Point(495, 23);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(119, 140);
     this.groupBox4.TabIndex = 36;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Nút xử lý";
     //
     // btxem
     //
     this.btxem.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btxem.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btxem.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btxem.ForeColor = System.Drawing.Color.Blue;
     this.btxem.Location = new System.Drawing.Point(17, 25);
     this.btxem.Name = "btxem";
     this.btxem.Size = new System.Drawing.Size(84, 25);
     this.btxem.TabIndex = 12;
     this.btxem.Text = "Xem";
     this.btxem.Click += new System.EventHandler(this.btxem_Click);
     //
     // btExit
     //
     this.btExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btExit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btExit.ForeColor = System.Drawing.Color.Blue;
     this.btExit.Location = new System.Drawing.Point(17, 93);
     this.btExit.Name = "btExit";
     this.btExit.Size = new System.Drawing.Size(84, 23);
     this.btExit.TabIndex = 11;
     this.btExit.Text = "Thoát";
     this.btExit.Click += new System.EventHandler(this.btExit_Click);
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btAdd.ForeColor = System.Drawing.Color.Red;
     this.btAdd.Location = new System.Drawing.Point(17, 60);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(84, 25);
     this.btAdd.TabIndex = 8;
     this.btAdd.Text = "Lập hóa đơn";
     this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.bt_tim);
     this.groupBox1.Controls.Add(this.checkNgayTra_ThucTe);
     this.groupBox1.Controls.Add(this.cmd_ngaytra_thucte);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.checkmatudong);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.txt_tenKH);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.groupBox4);
     this.groupBox1.Controls.Add(this.txt_MaHoaDon);
     this.groupBox1.Controls.Add(this.txt_DiaChi);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.txt_MaKH);
     this.groupBox1.Controls.Add(this.labelX7);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.labelX8);
     this.groupBox1.Controls.Add(this.cmdNgayLap);
     this.groupBox1.Controls.Add(this.labelX10);
     this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
     this.groupBox1.Location = new System.Drawing.Point(124, 64);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 2, 3, 2);
     this.groupBox1.Size = new System.Drawing.Size(756, 660);
     this.groupBox1.TabIndex = 27;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Hóa Đơn";
     //
     // bt_tim
     //
     this.bt_tim.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_tim.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_tim.Image = ((System.Drawing.Image)(resources.GetObject("bt_tim.Image")));
     this.bt_tim.Location = new System.Drawing.Point(211, 65);
     this.bt_tim.Name = "bt_tim";
     this.bt_tim.Size = new System.Drawing.Size(44, 23);
     this.bt_tim.TabIndex = 48;
     this.bt_tim.Click += new System.EventHandler(this.bt_tim_Click);
     //
     // checkNgayTra_ThucTe
     //
     this.checkNgayTra_ThucTe.Location = new System.Drawing.Point(345, 140);
     this.checkNgayTra_ThucTe.Name = "checkNgayTra_ThucTe";
     this.checkNgayTra_ThucTe.Size = new System.Drawing.Size(99, 23);
     this.checkNgayTra_ThucTe.TabIndex = 47;
     this.checkNgayTra_ThucTe.Text = "Sửa";
     this.checkNgayTra_ThucTe.CheckedChanged += new System.EventHandler(this.checkNgayTra_ThucTe_CheckedChanged);
     //
     // cmd_ngaytra_thucte
     //
     //
     //
     //
     this.cmd_ngaytra_thucte.BackgroundStyle.Class = "DateTimeInputBackground";
     this.cmd_ngaytra_thucte.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.cmd_ngaytra_thucte.ButtonDropDown.Visible = true;
     this.cmd_ngaytra_thucte.Enabled = false;
     this.cmd_ngaytra_thucte.Location = new System.Drawing.Point(232, 142);
     //
     //
     //
     this.cmd_ngaytra_thucte.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.cmd_ngaytra_thucte.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.cmd_ngaytra_thucte.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.cmd_ngaytra_thucte.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.cmd_ngaytra_thucte.MonthCalendar.DisplayMonth = new System.DateTime(2011, 6, 1, 0, 0, 0, 0);
     this.cmd_ngaytra_thucte.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.cmd_ngaytra_thucte.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.cmd_ngaytra_thucte.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.cmd_ngaytra_thucte.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.cmd_ngaytra_thucte.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.cmd_ngaytra_thucte.MonthCalendar.TodayButtonVisible = true;
     this.cmd_ngaytra_thucte.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.cmd_ngaytra_thucte.Name = "cmd_ngaytra_thucte";
     this.cmd_ngaytra_thucte.Size = new System.Drawing.Size(107, 21);
     this.cmd_ngaytra_thucte.TabIndex = 46;
     //
     // labelX5
     //
     this.labelX5.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.ForeColor = System.Drawing.Color.Blue;
     this.labelX5.Location = new System.Drawing.Point(133, 140);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(93, 23);
     this.labelX5.TabIndex = 44;
     this.labelX5.Text = "Ngày trả thực tế";
     //
     // checkmatudong
     //
     this.checkmatudong.Location = new System.Drawing.Point(192, 33);
     this.checkmatudong.Name = "checkmatudong";
     this.checkmatudong.Size = new System.Drawing.Size(99, 23);
     this.checkmatudong.TabIndex = 43;
     this.checkmatudong.Text = "Lấy mã tự động";
     this.checkmatudong.CheckedChanged += new System.EventHandler(this.checkmatudong_CheckedChanged);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.listViewCTPhong);
     this.groupBox3.ForeColor = System.Drawing.Color.Blue;
     this.groupBox3.Location = new System.Drawing.Point(24, 414);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(649, 210);
     this.groupBox3.TabIndex = 42;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Chi Tiết Phòng Thuê";
     //
     // listViewCTPhong
     //
     //
     //
     //
     this.listViewCTPhong.Border.Class = "ListViewBorder";
     this.listViewCTPhong.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.MaKhachHang,
     this.TenKhachHang,
     this.DiaChi,
     this.MaLoaiKhach,
     this.TenLoaikhach});
     this.listViewCTPhong.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listViewCTPhong.GridLines = true;
     this.listViewCTPhong.Location = new System.Drawing.Point(15, 29);
     this.listViewCTPhong.Name = "listViewCTPhong";
     this.listViewCTPhong.Size = new System.Drawing.Size(610, 104);
     this.listViewCTPhong.TabIndex = 43;
     this.listViewCTPhong.UseCompatibleStateImageBehavior = false;
     this.listViewCTPhong.View = System.Windows.Forms.View.Details;
     //
     // MaKhachHang
     //
     this.MaKhachHang.Text = "Mã Khách Hàng";
     this.MaKhachHang.Width = 113;
     //
     // TenKhachHang
     //
     this.TenKhachHang.Text = "Tên Khách Hàng";
     this.TenKhachHang.Width = 125;
     //
     // DiaChi
     //
     this.DiaChi.Text = "Địa Chỉ";
     this.DiaChi.Width = 112;
     //
     // MaLoaiKhach
     //
     this.MaLoaiKhach.Text = "Mã Loại Khách";
     this.MaLoaiKhach.Width = 119;
     //
     // TenLoaikhach
     //
     this.TenLoaikhach.Text = "Tên Loại Khách";
     this.TenLoaikhach.Width = 117;
     //
     // txt_tenKH
     //
     //
     //
     //
     this.txt_tenKH.Border.Class = "TextBoxBorder";
     this.txt_tenKH.Enabled = false;
     this.txt_tenKH.Location = new System.Drawing.Point(377, 63);
     this.txt_tenKH.Name = "txt_tenKH";
     this.txt_tenKH.Size = new System.Drawing.Size(103, 21);
     this.txt_tenKH.TabIndex = 40;
     //
     // labelX4
     //
     this.labelX4.Location = new System.Drawing.Point(286, 63);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(85, 22);
     this.labelX4.TabIndex = 41;
     this.labelX4.Text = "Tên Khách Hàng";
     //
     // frmHoaDon
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1028, 746);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.labelX1);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "frmHoaDon";
     this.Text = "frmHoaDonThanhToan";
     this.Load += new System.EventHandler(this.frmHoaDonThanhToan_Load);
     ((System.ComponentModel.ISupportInitialize)(this.cmdNgayLap)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cmd_ngaytra_thucte)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #34
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlUsuario));
     this.etiNombre = new DevComponents.DotNetBar.LabelX();
     this.txtNombre = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txtEmail = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiEmail = new DevComponents.DotNetBar.LabelX();
     this.txtTelefono = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiTelefono = new DevComponents.DotNetBar.LabelX();
     this.txtPassword = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtUser = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiUsuario = new DevComponents.DotNetBar.LabelX();
     this.chkActivo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txtCodUsuario = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.etiCodigoUsuario = new DevComponents.DotNetBar.LabelX();
     this.chkAdmin = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnResetPassword = new DevComponents.DotNetBar.ButtonX();
     this.valUsuario = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.valNombreReq = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Debe ingresar el nombre del usuario");
     this.valEmailInvalid = new DevComponents.DotNetBar.Validator.RegularExpressionValidator();
     this.valUsuarioReq = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Debe ingresar un username para el usuario");
     this.valUsuarioError = new System.Windows.Forms.ErrorProvider(this.components);
     this.valUsuarioHighlighter = new DevComponents.DotNetBar.Validator.Highlighter();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.expandabePanelUsuarios = new DevComponents.DotNetBar.ExpandablePanel();
     this.dgvUsuarios = new System.Windows.Forms.DataGridView();
     ((System.ComponentModel.ISupportInitialize)(this.valUsuarioError)).BeginInit();
     this.expandabePanelUsuarios.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).BeginInit();
     this.SuspendLayout();
     //
     // etiNombre
     //
     this.etiNombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiNombre.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiNombre.Location = new System.Drawing.Point(172, 86);
     this.etiNombre.Name = "etiNombre";
     this.etiNombre.Size = new System.Drawing.Size(75, 23);
     this.etiNombre.TabIndex = 0;
     this.etiNombre.Text = "Nombre:";
     //
     // txtNombre
     //
     this.txtNombre.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtNombre.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtNombre.Border.Class = "TextBoxBorder";
     this.txtNombre.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtNombre.ForeColor = System.Drawing.Color.Black;
     this.txtNombre.Location = new System.Drawing.Point(260, 89);
     this.txtNombre.Margin = new System.Windows.Forms.Padding(10);
     this.txtNombre.MaxLength = 50;
     this.txtNombre.Name = "txtNombre";
     this.txtNombre.ReadOnly = true;
     this.txtNombre.Size = new System.Drawing.Size(165, 20);
     this.txtNombre.TabIndex = 2;
     this.valUsuario.SetValidator1(this.txtNombre, this.valNombreReq);
     this.txtNombre.Enter += new System.EventHandler(this.txtNombre_Enter);
     //
     // txtEmail
     //
     this.txtEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtEmail.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtEmail.Border.Class = "TextBoxBorder";
     this.txtEmail.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtEmail.ForeColor = System.Drawing.Color.Black;
     this.txtEmail.Location = new System.Drawing.Point(260, 129);
     this.txtEmail.Margin = new System.Windows.Forms.Padding(10);
     this.txtEmail.MaxLength = 50;
     this.txtEmail.Name = "txtEmail";
     this.txtEmail.ReadOnly = true;
     this.txtEmail.Size = new System.Drawing.Size(165, 20);
     this.txtEmail.TabIndex = 3;
     this.valUsuario.SetValidator1(this.txtEmail, this.valEmailInvalid);
     this.txtEmail.Enter += new System.EventHandler(this.txtEmail_Enter);
     //
     // etiEmail
     //
     this.etiEmail.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiEmail.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiEmail.Location = new System.Drawing.Point(172, 126);
     this.etiEmail.Name = "etiEmail";
     this.etiEmail.Size = new System.Drawing.Size(75, 23);
     this.etiEmail.TabIndex = 2;
     this.etiEmail.Text = "Email:";
     //
     // txtTelefono
     //
     this.txtTelefono.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtTelefono.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtTelefono.Border.Class = "TextBoxBorder";
     this.txtTelefono.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtTelefono.ForeColor = System.Drawing.Color.Black;
     this.txtTelefono.Location = new System.Drawing.Point(260, 169);
     this.txtTelefono.Margin = new System.Windows.Forms.Padding(10);
     this.txtTelefono.MaxLength = 20;
     this.txtTelefono.Name = "txtTelefono";
     this.txtTelefono.ReadOnly = true;
     this.txtTelefono.Size = new System.Drawing.Size(165, 20);
     this.txtTelefono.TabIndex = 4;
     this.txtTelefono.Enter += new System.EventHandler(this.txtTelefono_Enter);
     //
     // etiTelefono
     //
     this.etiTelefono.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiTelefono.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiTelefono.Location = new System.Drawing.Point(172, 166);
     this.etiTelefono.Name = "etiTelefono";
     this.etiTelefono.Size = new System.Drawing.Size(75, 23);
     this.etiTelefono.TabIndex = 4;
     this.etiTelefono.Text = "Teléfono:";
     //
     // txtPassword
     //
     this.txtPassword.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtPassword.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtPassword.Border.Class = "TextBoxBorder";
     this.txtPassword.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtPassword.Enabled = false;
     this.txtPassword.ForeColor = System.Drawing.Color.Black;
     this.txtPassword.Location = new System.Drawing.Point(590, 129);
     this.txtPassword.Margin = new System.Windows.Forms.Padding(10);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.PasswordChar = '*';
     this.txtPassword.Size = new System.Drawing.Size(165, 20);
     this.txtPassword.TabIndex = 8;
     //
     // labelX1
     //
     this.labelX1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(502, 126);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(75, 23);
     this.labelX1.TabIndex = 12;
     this.labelX1.Text = "Contraseña:";
     //
     // txtUser
     //
     this.txtUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtUser.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtUser.Border.Class = "TextBoxBorder";
     this.txtUser.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtUser.ForeColor = System.Drawing.Color.Black;
     this.txtUser.Location = new System.Drawing.Point(590, 89);
     this.txtUser.Margin = new System.Windows.Forms.Padding(10);
     this.txtUser.MaxLength = 10;
     this.txtUser.Name = "txtUser";
     this.txtUser.ReadOnly = true;
     this.txtUser.Size = new System.Drawing.Size(165, 20);
     this.txtUser.TabIndex = 7;
     this.valUsuario.SetValidator1(this.txtUser, this.valUsuarioReq);
     this.txtUser.Enter += new System.EventHandler(this.txtUser_Enter);
     //
     // etiUsuario
     //
     this.etiUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiUsuario.Location = new System.Drawing.Point(502, 86);
     this.etiUsuario.Name = "etiUsuario";
     this.etiUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiUsuario.TabIndex = 10;
     this.etiUsuario.Text = "Usuario:";
     //
     // chkActivo
     //
     this.chkActivo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.chkActivo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkActivo.Enabled = false;
     this.chkActivo.Location = new System.Drawing.Point(590, 169);
     this.chkActivo.Name = "chkActivo";
     this.chkActivo.Size = new System.Drawing.Size(100, 23);
     this.chkActivo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkActivo.TabIndex = 9;
     this.chkActivo.Text = "Usuario Activo";
     //
     // txtCodUsuario
     //
     this.txtCodUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtCodUsuario.BackColor = System.Drawing.Color.White;
     //
     //
     //
     this.txtCodUsuario.Border.Class = "TextBoxBorder";
     this.txtCodUsuario.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCodUsuario.ForeColor = System.Drawing.Color.Black;
     this.txtCodUsuario.Location = new System.Drawing.Point(260, 49);
     this.txtCodUsuario.Margin = new System.Windows.Forms.Padding(10);
     this.txtCodUsuario.Name = "txtCodUsuario";
     this.txtCodUsuario.ReadOnly = true;
     this.txtCodUsuario.Size = new System.Drawing.Size(100, 20);
     this.txtCodUsuario.TabIndex = 1;
     this.txtCodUsuario.TabStop = false;
     //
     // etiCodigoUsuario
     //
     this.etiCodigoUsuario.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.etiCodigoUsuario.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.etiCodigoUsuario.Location = new System.Drawing.Point(172, 46);
     this.etiCodigoUsuario.Name = "etiCodigoUsuario";
     this.etiCodigoUsuario.Size = new System.Drawing.Size(75, 23);
     this.etiCodigoUsuario.TabIndex = 17;
     this.etiCodigoUsuario.Text = "Cod_Usuario:";
     //
     // chkAdmin
     //
     this.chkAdmin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.chkAdmin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkAdmin.Enabled = false;
     this.chkAdmin.Location = new System.Drawing.Point(590, 206);
     this.chkAdmin.Name = "chkAdmin";
     this.chkAdmin.Size = new System.Drawing.Size(100, 23);
     this.chkAdmin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkAdmin.TabIndex = 10;
     this.chkAdmin.Text = "Administrador";
     //
     // btnResetPassword
     //
     this.btnResetPassword.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnResetPassword.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnResetPassword.Enabled = false;
     this.btnResetPassword.Location = new System.Drawing.Point(768, 129);
     this.btnResetPassword.Name = "btnResetPassword";
     this.btnResetPassword.Size = new System.Drawing.Size(41, 20);
     this.btnResetPassword.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnResetPassword.TabIndex = 19;
     this.btnResetPassword.Text = "Reset";
     this.btnResetPassword.Click += new System.EventHandler(this.btnResetPassword_Click);
     //
     // valUsuario
     //
     this.valUsuario.ContainerControl = this;
     this.valUsuario.ErrorProvider = this.valUsuarioError;
     this.valUsuario.Highlighter = this.valUsuarioHighlighter;
     this.valUsuario.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // valNombreReq
     //
     this.valNombreReq.ErrorMessage = "Debe ingresar el nombre del usuario";
     this.valNombreReq.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // valEmailInvalid
     //
     this.valEmailInvalid.EmptyValueIsValid = true;
     this.valEmailInvalid.ErrorMessage = "Ingrese un email válido";
     this.valEmailInvalid.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.valEmailInvalid.ValidationExpression = "^([0-9a-zA-Z]([-\\.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9" +
     "})$";
     //
     // valUsuarioReq
     //
     this.valUsuarioReq.ErrorMessage = "Debe ingresar un username para el usuario";
     this.valUsuarioReq.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // valUsuarioError
     //
     this.valUsuarioError.ContainerControl = this;
     this.valUsuarioError.Icon = ((System.Drawing.Icon)(resources.GetObject("valUsuarioError.Icon")));
     //
     // valUsuarioHighlighter
     //
     this.valUsuarioHighlighter.ContainerControl = this;
     this.valUsuarioHighlighter.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.Location = new System.Drawing.Point(376, 13);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(175, 23);
     this.labelX4.TabIndex = 20;
     this.labelX4.Text = "Usuarios";
     //
     // expandabePanelUsuarios
     //
     this.expandabePanelUsuarios.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.expandabePanelUsuarios.CanvasColor = System.Drawing.SystemColors.Control;
     this.expandabePanelUsuarios.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.TopToBottom;
     this.expandabePanelUsuarios.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.expandabePanelUsuarios.Controls.Add(this.dgvUsuarios);
     this.expandabePanelUsuarios.Location = new System.Drawing.Point(0, 235);
     this.expandabePanelUsuarios.Name = "expandabePanelUsuarios";
     this.expandabePanelUsuarios.Size = new System.Drawing.Size(926, 248);
     this.expandabePanelUsuarios.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.expandabePanelUsuarios.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandabePanelUsuarios.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.expandabePanelUsuarios.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.expandabePanelUsuarios.Style.GradientAngle = 90;
     this.expandabePanelUsuarios.TabIndex = 21;
     this.expandabePanelUsuarios.TitleStyle.Alignment = System.Drawing.StringAlignment.Center;
     this.expandabePanelUsuarios.TitleStyle.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.expandabePanelUsuarios.TitleStyle.Border = DevComponents.DotNetBar.eBorderType.RaisedInner;
     this.expandabePanelUsuarios.TitleStyle.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.expandabePanelUsuarios.TitleStyle.GradientAngle = 90;
     this.expandabePanelUsuarios.TitleText = "Lista de Usuarios";
     //
     // dgvUsuarios
     //
     this.dgvUsuarios.AllowUserToAddRows = false;
     this.dgvUsuarios.AllowUserToDeleteRows = false;
     this.dgvUsuarios.AllowUserToResizeRows = false;
     this.dgvUsuarios.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dgvUsuarios.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvUsuarios.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dgvUsuarios.Location = new System.Drawing.Point(0, 26);
     this.dgvUsuarios.MultiSelect = false;
     this.dgvUsuarios.Name = "dgvUsuarios";
     this.dgvUsuarios.ReadOnly = true;
     this.dgvUsuarios.RowHeadersVisible = false;
     this.dgvUsuarios.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvUsuarios.Size = new System.Drawing.Size(926, 222);
     this.dgvUsuarios.TabIndex = 2;
     //
     // ControlUsuario
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.expandabePanelUsuarios);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.btnResetPassword);
     this.Controls.Add(this.chkAdmin);
     this.Controls.Add(this.txtCodUsuario);
     this.Controls.Add(this.etiCodigoUsuario);
     this.Controls.Add(this.chkActivo);
     this.Controls.Add(this.txtPassword);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.txtUser);
     this.Controls.Add(this.etiUsuario);
     this.Controls.Add(this.txtTelefono);
     this.Controls.Add(this.etiTelefono);
     this.Controls.Add(this.txtEmail);
     this.Controls.Add(this.etiEmail);
     this.Controls.Add(this.txtNombre);
     this.Controls.Add(this.etiNombre);
     this.Name = "ControlUsuario";
     this.Size = new System.Drawing.Size(926, 483);
     ((System.ComponentModel.ISupportInitialize)(this.valUsuarioError)).EndInit();
     this.expandabePanelUsuarios.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvUsuarios)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #35
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.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);
 }
コード例 #36
0
        private void _Options_ItemsChanged(object sender, EventArgs e)
        {
            _CheckBoxs.Clear();
            _RadioButtons.Clear();
            int width        = 0;
            int Y            = 1;
            int speace       = 1;
            int visibleCount = 0;

            foreach (Control control in _OptionsContainer.Controls)
            {
                control.Dispose();
            }
            _OptionsContainer.Controls.Clear();
            foreach (VirtualCheckItem item in _Options)
            {
                if (!_AllItems.Contains(item))
                {
                    _AllItems.Add(item);
                    item.VisibleChanged += new EventHandler(item_VisibleChanged);
                }
                if (item.Visible)
                {
                    visibleCount++;
                    if (item is VirtualCheckBox)
                    {
                        #region 加入CheckBox
                        DevComponents.DotNetBar.Controls.CheckBoxX checkbox = new DevComponents.DotNetBar.Controls.CheckBoxX();
                        checkbox.TabIndex        = 0;
                        checkbox.TabStop         = true;
                        checkbox.AutoSize        = true;
                        checkbox.Text            = item.Text;
                        checkbox.Checked         = item.Checked;
                        checkbox.Enabled         = item.Enabled;
                        checkbox.Tag             = item;
                        checkbox.CheckedChanged += new EventHandler(checkbox_CheckedChanged);
                        item.CheckedChanged     += new EventHandler(syncCheckBox);
                        item.TextChanged        += new EventHandler(syncCheckBox);
                        item.EnabledChanged     += new EventHandler(syncCheckBox);
                        checkbox.Location        = new Point(9, Y);
                        _OptionsContainer.Controls.Add(checkbox);//要先加入Panel後抓Size才準
                        Y += checkbox.Height + speace;
                        if (checkbox.PreferredSize.Width + 25 > width)
                        {
                            width = checkbox.PreferredSize.Width + 25;
                        }
                        _CheckBoxs.Add(item as VirtualCheckBox, checkbox);
                        #endregion
                    }
                    if (item is VirtualRadioButton)
                    {
                        #region 加入RadioButton
                        System.Windows.Forms.RadioButton radioButton = new System.Windows.Forms.RadioButton();
                        radioButton.TabIndex        = 0;
                        radioButton.TabStop         = true;
                        radioButton.AutoSize        = true;
                        radioButton.Text            = item.Text;
                        radioButton.Checked         = item.Checked;
                        radioButton.Enabled         = item.Enabled;;
                        radioButton.Tag             = item;
                        radioButton.CheckedChanged += new EventHandler(radioButton_CheckedChanged);
                        item.CheckedChanged        += new EventHandler(syncRadioButton);
                        item.TextChanged           += new EventHandler(syncRadioButton);
                        item.EnabledChanged        += new EventHandler(syncRadioButton);
                        radioButton.Location        = new Point(12, Y);
                        _OptionsContainer.Controls.Add(radioButton);
                        //radioButton.Invalidate();
                        //radioButton.PerformLayout();
                        Y += radioButton.Height + speace;
                        if (radioButton.PreferredSize.Width + 25 > width)
                        {
                            width = radioButton.PreferredSize.Width + 25;
                        }
                        _RadioButtons.Add(item as VirtualRadioButton, radioButton);
                        #endregion
                    }
                }
            }
            _OptionsContainer.Size = new Size(width, Y);
            advButton.Enabled      = visibleCount > 0;
            advContainer.RecalcSize();
            SetForeColor(_OptionsContainer);
        }
コード例 #37
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBarChartRenderer));
     this.panelEx1         = new DevComponents.DotNetBar.PanelEx();
     this.panelEx5         = new DevComponents.DotNetBar.PanelEx();
     this.panelEx3         = new DevComponents.DotNetBar.PanelEx();
     this.buttonDel        = new DevComponents.DotNetBar.ButtonX();
     this.buttonAdd        = new DevComponents.DotNetBar.ButtonX();
     this.listAddField     = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.listAllField     = new DevComponents.DotNetBar.Controls.ListViewEx();
     this.buttonDown       = new DevComponents.DotNetBar.ButtonX();
     this.buttonUp         = new DevComponents.DotNetBar.ButtonX();
     this.panelEx2         = new DevComponents.DotNetBar.PanelEx();
     this.sizeInput        = new DevComponents.Editors.DoubleInput();
     this.chkIsUnOverlap   = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cmbColorRamp     = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX6          = new DevComponents.DotNetBar.LabelX();
     this.labelX4          = new DevComponents.DotNetBar.LabelX();
     this.labelX5          = new DevComponents.DotNetBar.LabelX();
     this.labelPreviewBack = new DevComponents.DotNetBar.LabelX();
     this.panelEx1.SuspendLayout();
     this.panelEx5.SuspendLayout();
     this.panelEx3.SuspendLayout();
     this.panelEx2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sizeInput)).BeginInit();
     this.SuspendLayout();
     //
     // panelEx1
     //
     this.panelEx1.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx1.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx1.Controls.Add(this.panelEx5);
     this.panelEx1.Controls.Add(this.panelEx2);
     this.panelEx1.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.panelEx1.Location        = new System.Drawing.Point(0, 0);
     this.panelEx1.Name            = "panelEx1";
     this.panelEx1.Size            = new System.Drawing.Size(465, 370);
     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            = 0;
     //
     // panelEx5
     //
     this.panelEx5.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx5.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx5.Controls.Add(this.panelEx3);
     this.panelEx5.Controls.Add(this.buttonDown);
     this.panelEx5.Controls.Add(this.buttonUp);
     this.panelEx5.Location        = new System.Drawing.Point(2, 92);
     this.panelEx5.Name            = "panelEx5";
     this.panelEx5.Size            = new System.Drawing.Size(460, 272);
     this.panelEx5.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.panelEx5.Style.BackColor1.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.panelEx5.Style.BackColor2.ColorSchemePart  = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.panelEx5.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.panelEx5.Style.ForeColor.ColorSchemePart   = DevComponents.DotNetBar.eColorSchemePart.ItemText;
     this.panelEx5.Style.GradientAngle = 90;
     this.panelEx5.TabIndex            = 52;
     //
     // panelEx3
     //
     this.panelEx3.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx3.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx3.Controls.Add(this.buttonDel);
     this.panelEx3.Controls.Add(this.buttonAdd);
     this.panelEx3.Controls.Add(this.listAddField);
     this.panelEx3.Controls.Add(this.listAllField);
     this.panelEx3.Dock            = System.Windows.Forms.DockStyle.Left;
     this.panelEx3.Location        = new System.Drawing.Point(0, 0);
     this.panelEx3.Name            = "panelEx3";
     this.panelEx3.Size            = new System.Drawing.Size(420, 272);
     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            = 5;
     //
     // buttonDel
     //
     this.buttonDel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonDel.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonDel.Image          = ((System.Drawing.Image)(resources.GetObject("buttonDel.Image")));
     this.buttonDel.Location       = new System.Drawing.Point(160, 112);
     this.buttonDel.Name           = "buttonDel";
     this.buttonDel.Size           = new System.Drawing.Size(30, 25);
     this.buttonDel.TabIndex       = 6;
     this.buttonDel.Click         += new System.EventHandler(this.buttonDel_Click);
     //
     // buttonAdd
     //
     this.buttonAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAdd.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonAdd.Image          = ((System.Drawing.Image)(resources.GetObject("buttonAdd.Image")));
     this.buttonAdd.Location       = new System.Drawing.Point(160, 81);
     this.buttonAdd.Name           = "buttonAdd";
     this.buttonAdd.Size           = new System.Drawing.Size(30, 25);
     this.buttonAdd.TabIndex       = 5;
     this.buttonAdd.Click         += new System.EventHandler(this.buttonAdd_Click);
     //
     // listAddField
     //
     //
     //
     //
     this.listAddField.Border.Class  = "ListViewBorder";
     this.listAddField.Dock          = System.Windows.Forms.DockStyle.Right;
     this.listAddField.FullRowSelect = true;
     this.listAddField.Location      = new System.Drawing.Point(198, 0);
     this.listAddField.Name          = "listAddField";
     this.listAddField.Size          = new System.Drawing.Size(222, 272);
     this.listAddField.TabIndex      = 2;
     this.listAddField.UseCompatibleStateImageBehavior = false;
     this.listAddField.View                  = System.Windows.Forms.View.Details;
     this.listAddField.MouseDoubleClick     += new System.Windows.Forms.MouseEventHandler(this.listAddField_MouseDoubleClick);
     this.listAddField.SelectedIndexChanged += new System.EventHandler(this.listAddField_SelectedIndexChanged);
     //
     // listAllField
     //
     //
     //
     //
     this.listAllField.Border.Class  = "ListViewBorder";
     this.listAllField.Dock          = System.Windows.Forms.DockStyle.Left;
     this.listAllField.FullRowSelect = true;
     this.listAllField.Location      = new System.Drawing.Point(0, 0);
     this.listAllField.Name          = "listAllField";
     this.listAllField.Size          = new System.Drawing.Size(153, 272);
     this.listAllField.TabIndex      = 1;
     this.listAllField.UseCompatibleStateImageBehavior = false;
     this.listAllField.View              = System.Windows.Forms.View.Details;
     this.listAllField.MouseDoubleClick += new System.Windows.Forms.MouseEventHandler(this.DoListViewMouseDoubleClick);
     //
     // buttonDown
     //
     this.buttonDown.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonDown.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonDown.Image          = ((System.Drawing.Image)(resources.GetObject("buttonDown.Image")));
     this.buttonDown.ImagePosition  = DevComponents.DotNetBar.eImagePosition.Bottom;
     this.buttonDown.Location       = new System.Drawing.Point(428, 115);
     this.buttonDown.Name           = "buttonDown";
     this.buttonDown.Size           = new System.Drawing.Size(22, 35);
     this.buttonDown.TabIndex       = 4;
     this.buttonDown.Click         += new System.EventHandler(this.buttonDown_Click);
     //
     // buttonUp
     //
     this.buttonUp.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonUp.ColorTable     = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonUp.Image          = ((System.Drawing.Image)(resources.GetObject("buttonUp.Image")));
     this.buttonUp.ImagePosition  = DevComponents.DotNetBar.eImagePosition.Top;
     this.buttonUp.Location       = new System.Drawing.Point(428, 71);
     this.buttonUp.Name           = "buttonUp";
     this.buttonUp.Size           = new System.Drawing.Size(22, 35);
     this.buttonUp.TabIndex       = 3;
     this.buttonUp.Click         += new System.EventHandler(this.buttonUp_Click);
     //
     // panelEx2
     //
     this.panelEx2.CanvasColor      = System.Drawing.SystemColors.Control;
     this.panelEx2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.panelEx2.Controls.Add(this.sizeInput);
     this.panelEx2.Controls.Add(this.chkIsUnOverlap);
     this.panelEx2.Controls.Add(this.cmbColorRamp);
     this.panelEx2.Controls.Add(this.labelX6);
     this.panelEx2.Controls.Add(this.labelX4);
     this.panelEx2.Controls.Add(this.labelX5);
     this.panelEx2.Controls.Add(this.labelPreviewBack);
     this.panelEx2.Location        = new System.Drawing.Point(3, 3);
     this.panelEx2.Name            = "panelEx2";
     this.panelEx2.Size            = new System.Drawing.Size(459, 82);
     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            = 47;
     //
     // sizeInput
     //
     //
     //
     //
     this.sizeInput.BackgroundStyle.Class   = "DateTimeInputBackground";
     this.sizeInput.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.sizeInput.Increment  = 1;
     this.sizeInput.Location   = new System.Drawing.Point(244, 45);
     this.sizeInput.MinValue   = 0.001;
     this.sizeInput.Name       = "sizeInput";
     this.sizeInput.ShowUpDown = true;
     this.sizeInput.Size       = new System.Drawing.Size(63, 21);
     this.sizeInput.TabIndex   = 49;
     this.sizeInput.Value      = 1;
     //
     // chkIsUnOverlap
     //
     this.chkIsUnOverlap.AutoSize = true;
     this.chkIsUnOverlap.Location = new System.Drawing.Point(67, 48);
     this.chkIsUnOverlap.Name     = "chkIsUnOverlap";
     this.chkIsUnOverlap.Size     = new System.Drawing.Size(76, 18);
     this.chkIsUnOverlap.TabIndex = 48;
     this.chkIsUnOverlap.Text     = "·ÀÖ¹¸²¸Ç";
     //
     // cmbColorRamp
     //
     this.cmbColorRamp.DisplayMember     = "Text";
     this.cmbColorRamp.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbColorRamp.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbColorRamp.FormattingEnabled = true;
     this.cmbColorRamp.ItemHeight        = 21;
     this.cmbColorRamp.Location          = new System.Drawing.Point(67, 11);
     this.cmbColorRamp.Name     = "cmbColorRamp";
     this.cmbColorRamp.Size     = new System.Drawing.Size(274, 27);
     this.cmbColorRamp.TabIndex = 2;
     //
     // labelX6
     //
     this.labelX6.AutoSize  = true;
     this.labelX6.BackColor = System.Drawing.Color.Transparent;
     this.labelX6.Location  = new System.Drawing.Point(347, 16);
     this.labelX6.Name      = "labelX6";
     this.labelX6.Size      = new System.Drawing.Size(19, 31);
     this.labelX6.TabIndex  = 36;
     this.labelX6.Text      = "±³\r\n¾°";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     this.labelX4.Location = new System.Drawing.Point(207, 48);
     this.labelX4.Name     = "labelX4";
     this.labelX4.Size     = new System.Drawing.Size(31, 18);
     this.labelX4.TabIndex = 10;
     this.labelX4.Text     = "´óС";
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     this.labelX5.Location = new System.Drawing.Point(10, 16);
     this.labelX5.Name     = "labelX5";
     this.labelX5.Size     = new System.Drawing.Size(56, 18);
     this.labelX5.TabIndex = 11;
     this.labelX5.Text     = "ÑÕÉ«·½°¸";
     //
     // labelPreviewBack
     //
     this.labelPreviewBack.BackColor = System.Drawing.Color.Transparent;
     this.labelPreviewBack.Location  = new System.Drawing.Point(367, 11);
     this.labelPreviewBack.Name      = "labelPreviewBack";
     this.labelPreviewBack.Size      = new System.Drawing.Size(80, 40);
     this.labelPreviewBack.TabIndex  = 12;
     this.labelPreviewBack.Click    += new System.EventHandler(this.labelPreviewBack_Click);
     //
     // frmBarChartRenderer
     //
     this.Controls.Add(this.panelEx1);
     this.Name = "frmBarChartRenderer";
     this.Size = new System.Drawing.Size(465, 370);
     this.panelEx1.ResumeLayout(false);
     this.panelEx5.ResumeLayout(false);
     this.panelEx3.ResumeLayout(false);
     this.panelEx2.ResumeLayout(false);
     this.panelEx2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.sizeInput)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #38
0
        private DevComponents.AdvTree.Node AddNode(DevComponents.AdvTree.Node parentNode, string tag, string name, string description, InputTypes inputType, object value, bool selected, SetOptionValue setOptionValue)
        {
            DevComponents.DotNetBar.SuperTooltipInfo tooltip = new DevComponents.DotNetBar.SuperTooltipInfo(name, null, description, null, null, DevComponents.DotNetBar.eTooltipColor.Gray);

            DevComponents.DotNetBar.Controls.CheckBoxX checkBoxSelect = new DevComponents.DotNetBar.Controls.CheckBoxX()
            {
                Checked          = selected,
                Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled,
                BackColor        = Color.Transparent,
                CheckBoxPosition = DevComponents.DotNetBar.eCheckBoxPosition.Right
            };
            DevComponents.AdvTree.Node newNode = new DevComponents.AdvTree.Node()
            {
                HostedControl = checkBoxSelect,
                Name          = tag
            };
            DevComponents.AdvTree.Cell nameCell = new DevComponents.AdvTree.Cell()
            {
                Text = name
            };
            DevComponents.AdvTree.Cell valueCell = new DevComponents.AdvTree.Cell()
            {
                EditorType = DevComponents.AdvTree.eCellEditorType.Custom,
                Editable   = true
            };
            switch (inputType)
            {
            case InputTypes.Double:
                double?doubleValue = (double?)value;
                DevComponents.Editors.DoubleInput doubleInput = new DevComponents.Editors.DoubleInput()
                {
                    Value = doubleValue.HasValue ? doubleValue.Value : 0
                };
                valueCell.HostedControl   = doubleInput;
                doubleInput.ValueChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, doubleInput, setOptionValue); };
                break;

            case InputTypes.Integer:
                int?intValue = (int?)value;
                DevComponents.Editors.IntegerInput integerInput = new DevComponents.Editors.IntegerInput()
                {
                    Value = intValue.HasValue ? intValue.Value : 0
                };
                valueCell.HostedControl    = integerInput;
                integerInput.ValueChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, integerInput, setOptionValue); };
                break;

            case InputTypes.String:
                TextBox textBox = new TextBox()
                {
                    Text = (string)value
                };
                valueCell.HostedControl = textBox;
                textBox.TextChanged    += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, textBox, setOptionValue); };
                break;

            case InputTypes.Boolean:
                bool?boolValue = (bool?)value;

                DevComponents.DotNetBar.Controls.CheckBoxX checkBox = new DevComponents.DotNetBar.Controls.CheckBoxX()
                {
                    Checked   = boolValue.HasValue ? boolValue.Value : false,
                    Style     = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled,
                    BackColor = Color.Transparent,
                };
                checkBox.CheckedChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, checkBox, setOptionValue); };
                valueCell.HostedControl  = checkBox;
                break;

            default:
                throw new NotImplementedException("InputType not handled yet: " + inputType.ToString());
            }
            newNode.Cells.Add(nameCell);
            newNode.Cells.Add(valueCell);

            nameCell.Enabled  = checkBoxSelect.Checked;
            valueCell.Enabled = checkBoxSelect.Checked;
            valueCell.HostedControl.Enabled = checkBoxSelect.Checked;

            superTooltip1.SetSuperTooltip(newNode, tooltip);
            superTooltip1.SetSuperTooltip(checkBoxSelect, tooltip);
            superTooltip1.SetSuperTooltip(valueCell.HostedControl, tooltip);

            checkBoxSelect.CheckedChanged += delegate
            {
                nameCell.Enabled  = checkBoxSelect.Checked;
                valueCell.Enabled = checkBoxSelect.Checked;
                valueCell.HostedControl.Enabled = checkBoxSelect.Checked;

                if (checkBoxSelect.Checked)
                {
                    valueCell.HostedControl.Focus();
                }
            };
            if (parentNode == null)
            {
                advTree1.Nodes.Add(newNode);
            }
            else
            {
                parentNode.Nodes.Add(newNode);
            }

            return(newNode);
        }
コード例 #39
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.btnUpload = new DevComponents.DotNetBar.ButtonX();
     this.cbxByStudentNum = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxByStudentIDNumber = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxByClassNameSeatNo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupPanel2 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.cbxEnroll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cbxGraduate = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.groupPanel1 = new DevComponents.DotNetBar.Controls.GroupPanel();
     this.btnBrowse = new DevComponents.DotNetBar.ButtonX();
     this.txtFilePath = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.groupPanel2.SuspendLayout();
     this.groupPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(201, 169);
     this.btnExit.Margin = new System.Windows.Forms.Padding(2);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(51, 25);
     this.btnExit.TabIndex = 6;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // btnUpload
     //
     this.btnUpload.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnUpload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnUpload.AutoSize = true;
     this.btnUpload.BackColor = System.Drawing.Color.Transparent;
     this.btnUpload.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnUpload.Location = new System.Drawing.Point(142, 169);
     this.btnUpload.Margin = new System.Windows.Forms.Padding(2);
     this.btnUpload.Name = "btnUpload";
     this.btnUpload.Size = new System.Drawing.Size(51, 25);
     this.btnUpload.TabIndex = 5;
     this.btnUpload.Text = "匯入";
     this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
     //
     // cbxByStudentNum
     //
     this.cbxByStudentNum.AutoSize = true;
     //
     //
     //
     this.cbxByStudentNum.BackgroundStyle.Class = "";
     this.cbxByStudentNum.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByStudentNum.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByStudentNum.Checked = true;
     this.cbxByStudentNum.CheckState = System.Windows.Forms.CheckState.Checked;
     this.cbxByStudentNum.CheckValue = "Y";
     this.cbxByStudentNum.Enabled = false;
     this.cbxByStudentNum.Location = new System.Drawing.Point(11, 5);
     this.cbxByStudentNum.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByStudentNum.Name = "cbxByStudentNum";
     this.cbxByStudentNum.Size = new System.Drawing.Size(54, 21);
     this.cbxByStudentNum.TabIndex = 1;
     this.cbxByStudentNum.Text = "學號";
     //
     // cbxByStudentIDNumber
     //
     this.cbxByStudentIDNumber.AutoSize = true;
     //
     //
     //
     this.cbxByStudentIDNumber.BackgroundStyle.Class = "";
     this.cbxByStudentIDNumber.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByStudentIDNumber.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByStudentIDNumber.Location = new System.Drawing.Point(97, 5);
     this.cbxByStudentIDNumber.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByStudentIDNumber.Name = "cbxByStudentIDNumber";
     this.cbxByStudentIDNumber.Size = new System.Drawing.Size(80, 21);
     this.cbxByStudentIDNumber.TabIndex = 2;
     this.cbxByStudentIDNumber.Text = "身分證號";
     this.cbxByStudentIDNumber.Visible = false;
     //
     // cbxByClassNameSeatNo
     //
     this.cbxByClassNameSeatNo.AutoSize = true;
     this.cbxByClassNameSeatNo.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.cbxByClassNameSeatNo.BackgroundStyle.Class = "";
     this.cbxByClassNameSeatNo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxByClassNameSeatNo.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxByClassNameSeatNo.Location = new System.Drawing.Point(23, 173);
     this.cbxByClassNameSeatNo.Margin = new System.Windows.Forms.Padding(2);
     this.cbxByClassNameSeatNo.Name = "cbxByClassNameSeatNo";
     this.cbxByClassNameSeatNo.Size = new System.Drawing.Size(80, 21);
     this.cbxByClassNameSeatNo.TabIndex = 3;
     this.cbxByClassNameSeatNo.Text = "班級姓名";
     this.cbxByClassNameSeatNo.Visible = false;
     //
     // groupPanel2
     //
     this.groupPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     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.cbxByStudentIDNumber);
     this.groupPanel2.Controls.Add(this.cbxByStudentNum);
     this.groupPanel2.Location = new System.Drawing.Point(9, 100);
     this.groupPanel2.Margin = new System.Windows.Forms.Padding(2);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(243, 59);
     //
     //
     //
     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.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 = 4;
     this.groupPanel2.Text = "命名方式";
     //
     // cbxEnroll
     //
     this.cbxEnroll.AutoSize = true;
     //
     //
     //
     this.cbxEnroll.BackgroundStyle.Class = "";
     this.cbxEnroll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxEnroll.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxEnroll.Location = new System.Drawing.Point(11, 5);
     this.cbxEnroll.Margin = new System.Windows.Forms.Padding(2);
     this.cbxEnroll.Name = "cbxEnroll";
     this.cbxEnroll.Size = new System.Drawing.Size(80, 21);
     this.cbxEnroll.TabIndex = 0;
     this.cbxEnroll.Text = "入學照片";
     //
     // cbxGraduate
     //
     this.cbxGraduate.AutoSize = true;
     //
     //
     //
     this.cbxGraduate.BackgroundStyle.Class = "";
     this.cbxGraduate.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.cbxGraduate.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.cbxGraduate.Location = new System.Drawing.Point(97, 5);
     this.cbxGraduate.Margin = new System.Windows.Forms.Padding(2);
     this.cbxGraduate.Name = "cbxGraduate";
     this.cbxGraduate.Size = new System.Drawing.Size(80, 21);
     this.cbxGraduate.TabIndex = 1;
     this.cbxGraduate.Text = "畢業照片";
     //
     // groupPanel1
     //
     this.groupPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     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.cbxGraduate);
     this.groupPanel1.Controls.Add(this.cbxEnroll);
     this.groupPanel1.Location = new System.Drawing.Point(9, 37);
     this.groupPanel1.Margin = new System.Windows.Forms.Padding(2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(243, 56);
     //
     //
     //
     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.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 = 3;
     this.groupPanel1.Text = "照片項目";
     //
     // btnBrowse
     //
     this.btnBrowse.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnBrowse.AutoSize = true;
     this.btnBrowse.BackColor = System.Drawing.Color.Transparent;
     this.btnBrowse.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnBrowse.Location = new System.Drawing.Point(206, 9);
     this.btnBrowse.Margin = new System.Windows.Forms.Padding(2);
     this.btnBrowse.Name = "btnBrowse";
     this.btnBrowse.Size = new System.Drawing.Size(44, 25);
     this.btnBrowse.TabIndex = 2;
     this.btnBrowse.Text = "瀏覽";
     this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
     //
     // txtFilePath
     //
     this.txtFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.txtFilePath.Border.Class = "TextBoxBorder";
     this.txtFilePath.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtFilePath.Location = new System.Drawing.Point(73, 9);
     this.txtFilePath.Margin = new System.Windows.Forms.Padding(2);
     this.txtFilePath.Name = "txtFilePath";
     this.txtFilePath.Size = new System.Drawing.Size(119, 25);
     this.txtFilePath.TabIndex = 1;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(10, 11);
     this.labelX1.Margin = new System.Windows.Forms.Padding(2);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(60, 21);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "資料來源";
     //
     // PhotosBatchImportForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(259, 198);
     this.Controls.Add(this.cbxByClassNameSeatNo);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.btnUpload);
     this.Controls.Add(this.groupPanel2);
     this.Controls.Add(this.groupPanel1);
     this.Controls.Add(this.btnBrowse);
     this.Controls.Add(this.txtFilePath);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Margin = new System.Windows.Forms.Padding(2);
     this.Name = "PhotosBatchImportForm";
     this.Text = "批次匯入學生照片(jpg格式)";
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #40
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(urlKhachHang));
     this.txt_TenKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_CMND = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_MaKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.txt_LoaiKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.txt_DiaChi = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txt_TenKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chk_Edit = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.moreDetail = new DevComponents.DotNetBar.ButtonX();
     this.lbl_KHDD = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chk_KHDD = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.ckhKHMOI = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.cmbSearch = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     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.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.bindingNavigatorKH = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.dataGridKH = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.LoaiKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CMND = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.KhachHangDaiDien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.btUpdate = new DevComponents.DotNetBar.ButtonX();
     this.btDelete = new DevComponents.DotNetBar.ButtonX();
     this.cmb_MaLoaiKH = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.plKhachHang = new DevComponents.DotNetBar.PanelEx();
     this.chk_searchKHDD = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.btSearch = new DevComponents.DotNetBar.ButtonX();
     this.groupBox1.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorKH)).BeginInit();
     this.bindingNavigatorKH.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridKH)).BeginInit();
     this.plKhachHang.SuspendLayout();
     this.SuspendLayout();
     //
     // txt_TenKH
     //
     //
     //
     //
     this.txt_TenKH.Border.Class = "TextBoxBorder";
     this.txt_TenKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKH.Enabled = false;
     this.txt_TenKH.Location = new System.Drawing.Point(313, 74);
     this.txt_TenKH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_TenKH.Name = "txt_TenKH";
     this.txt_TenKH.Size = new System.Drawing.Size(179, 21);
     this.txt_TenKH.TabIndex = 0;
     this.txt_TenKH.TextChanged += new System.EventHandler(this.txt_TenKH_TextChanged);
     //
     // txt_CMND
     //
     //
     //
     //
     this.txt_CMND.Border.Class = "TextBoxBorder";
     this.txt_CMND.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_CMND.Enabled = false;
     this.txt_CMND.Location = new System.Drawing.Point(108, 106);
     this.txt_CMND.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_CMND.Name = "txt_CMND";
     this.txt_CMND.Size = new System.Drawing.Size(80, 21);
     this.txt_CMND.TabIndex = 1;
     //
     // txt_MaKH
     //
     //
     //
     //
     this.txt_MaKH.Border.Class = "TextBoxBorder";
     this.txt_MaKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKH.Enabled = false;
     this.txt_MaKH.Location = new System.Drawing.Point(108, 77);
     this.txt_MaKH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_MaKH.Name = "txt_MaKH";
     this.txt_MaKH.Size = new System.Drawing.Size(80, 21);
     this.txt_MaKH.TabIndex = 2;
     this.txt_MaKH.TextChanged += new System.EventHandler(this.txt_MaKH_TextChanged);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(14, 77);
     this.labelX1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(88, 24);
     this.labelX1.TabIndex = 3;
     this.labelX1.Text = "Mã Khách Hàng";
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(262, 76);
     this.labelX2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(40, 19);
     this.labelX2.TabIndex = 4;
     this.labelX2.Text = "Tên KH";
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(13, 106);
     this.labelX3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(50, 20);
     this.labelX3.TabIndex = 5;
     this.labelX3.Text = "Số CMND";
     //
     // txt_LoaiKH
     //
     //
     //
     //
     this.txt_LoaiKH.Border.Class = "TextBoxBorder";
     this.txt_LoaiKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_LoaiKH.Enabled = false;
     this.txt_LoaiKH.Location = new System.Drawing.Point(313, 102);
     this.txt_LoaiKH.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_LoaiKH.Name = "txt_LoaiKH";
     this.txt_LoaiKH.Size = new System.Drawing.Size(102, 21);
     this.txt_LoaiKH.TabIndex = 6;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(262, 103);
     this.labelX4.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(47, 21);
     this.labelX4.TabIndex = 7;
     this.labelX4.Text = "Loại KH";
     //
     // txt_DiaChi
     //
     //
     //
     //
     this.txt_DiaChi.Border.Class = "TextBoxBorder";
     this.txt_DiaChi.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_DiaChi.Enabled = false;
     this.txt_DiaChi.Location = new System.Drawing.Point(108, 133);
     this.txt_DiaChi.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_DiaChi.Multiline = true;
     this.txt_DiaChi.Name = "txt_DiaChi";
     this.txt_DiaChi.Size = new System.Drawing.Size(360, 20);
     this.txt_DiaChi.TabIndex = 8;
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(13, 134);
     this.labelX5.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(50, 19);
     this.labelX5.TabIndex = 9;
     this.labelX5.Text = "Địa Chỉ";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.txt_TenKHDD);
     this.groupBox1.Controls.Add(this.chk_Edit);
     this.groupBox1.Controls.Add(this.moreDetail);
     this.groupBox1.Controls.Add(this.btSearch);
     this.groupBox1.Controls.Add(this.lbl_KHDD);
     this.groupBox1.Controls.Add(this.txt_MaKHDD);
     this.groupBox1.Controls.Add(this.chk_KHDD);
     this.groupBox1.Controls.Add(this.ckhKHMOI);
     this.groupBox1.Controls.Add(this.labelX7);
     this.groupBox1.Controls.Add(this.cmbSearch);
     this.groupBox1.Location = new System.Drawing.Point(8, 1);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(493, 67);
     this.groupBox1.TabIndex = 29;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tùy Chọn";
     //
     // txt_TenKHDD
     //
     //
     //
     //
     this.txt_TenKHDD.Border.Class = "TextBoxBorder";
     this.txt_TenKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKHDD.Enabled = false;
     this.txt_TenKHDD.Location = new System.Drawing.Point(357, 39);
     this.txt_TenKHDD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_TenKHDD.Name = "txt_TenKHDD";
     this.txt_TenKHDD.Size = new System.Drawing.Size(127, 21);
     this.txt_TenKHDD.TabIndex = 35;
     //
     // chk_Edit
     //
     //
     //
     //
     this.chk_Edit.BackgroundStyle.Class = "";
     this.chk_Edit.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_Edit.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_Edit.Location = new System.Drawing.Point(153, 10);
     this.chk_Edit.Name = "chk_Edit";
     this.chk_Edit.Size = new System.Drawing.Size(50, 22);
     this.chk_Edit.TabIndex = 34;
     this.chk_Edit.Text = "Sửa";
     this.chk_Edit.CheckedChanged += new System.EventHandler(this.chk_Edit_CheckedChanged);
     //
     // moreDetail
     //
     this.moreDetail.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.moreDetail.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.moreDetail.Location = new System.Drawing.Point(446, 12);
     this.moreDetail.Name = "moreDetail";
     this.moreDetail.Size = new System.Drawing.Size(29, 21);
     this.moreDetail.TabIndex = 33;
     this.moreDetail.Text = "?";
     this.moreDetail.Click += new System.EventHandler(this.moreDetail_Click);
     //
     // lbl_KHDD
     //
     //
     //
     //
     this.lbl_KHDD.BackgroundStyle.Class = "";
     this.lbl_KHDD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lbl_KHDD.Location = new System.Drawing.Point(153, 42);
     this.lbl_KHDD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.lbl_KHDD.Name = "lbl_KHDD";
     this.lbl_KHDD.Size = new System.Drawing.Size(105, 17);
     this.lbl_KHDD.TabIndex = 31;
     this.lbl_KHDD.Text = "Khách Hàng Đại Diện";
     //
     // txt_MaKHDD
     //
     //
     //
     //
     this.txt_MaKHDD.Border.Class = "TextBoxBorder";
     this.txt_MaKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKHDD.Location = new System.Drawing.Point(264, 39);
     this.txt_MaKHDD.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.txt_MaKHDD.Name = "txt_MaKHDD";
     this.txt_MaKHDD.Size = new System.Drawing.Size(83, 21);
     this.txt_MaKHDD.TabIndex = 30;
     this.txt_MaKHDD.TextChanged += new System.EventHandler(this.txt_MaKHDD_TextChanged);
     //
     // chk_KHDD
     //
     //
     //
     //
     this.chk_KHDD.BackgroundStyle.Class = "";
     this.chk_KHDD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_KHDD.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_KHDD.Location = new System.Drawing.Point(5, 38);
     this.chk_KHDD.Name = "chk_KHDD";
     this.chk_KHDD.Size = new System.Drawing.Size(146, 21);
     this.chk_KHDD.TabIndex = 25;
     this.chk_KHDD.Text = "Khách Hàng Đại Diện";
     this.chk_KHDD.CheckedChanged += new System.EventHandler(this.chk_KHDD_CheckedChanged);
     //
     // ckhKHMOI
     //
     //
     //
     //
     this.ckhKHMOI.BackgroundStyle.Class = "";
     this.ckhKHMOI.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ckhKHMOI.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ckhKHMOI.Location = new System.Drawing.Point(5, 11);
     this.ckhKHMOI.Name = "ckhKHMOI";
     this.ckhKHMOI.Size = new System.Drawing.Size(90, 22);
     this.ckhKHMOI.TabIndex = 24;
     this.ckhKHMOI.Text = "Khách Mới";
     this.ckhKHMOI.CheckedChanged += new System.EventHandler(this.ckhKHMOI_CheckedChanged);
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX7.Location = new System.Drawing.Point(221, 14);
     this.labelX7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(57, 16);
     this.labelX7.TabIndex = 25;
     this.labelX7.Text = "Tìm khách";
     //
     // cmbSearch
     //
     this.cmbSearch.DisplayMember = "Text";
     this.cmbSearch.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmbSearch.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmbSearch.FormattingEnabled = true;
     this.cmbSearch.ItemHeight = 15;
     this.cmbSearch.Items.AddRange(new object[] {
     this.comboItem7,
     this.comboItem8,
     this.comboItem9,
     this.comboItem10,
     this.comboItem11,
     this.comboItem12,
     this.comboItem1,
     this.comboItem2});
     this.cmbSearch.Location = new System.Drawing.Point(287, 12);
     this.cmbSearch.Name = "cmbSearch";
     this.cmbSearch.Size = new System.Drawing.Size(106, 21);
     this.cmbSearch.TabIndex = 26;
     this.cmbSearch.SelectedIndexChanged += new System.EventHandler(this.cmbSearch_SelectedIndexChanged);
     //
     // comboItem7
     //
     this.comboItem7.Text = "Mã Khách Hàng";
     //
     // comboItem8
     //
     this.comboItem8.Text = "Tên Khách Hàng";
     //
     // comboItem9
     //
     this.comboItem9.Text = "Số CMND";
     //
     // comboItem10
     //
     this.comboItem10.Text = "Loại Khách Hàng";
     //
     // comboItem11
     //
     this.comboItem11.Text = "Địa Chỉ";
     //
     // comboItem12
     //
     this.comboItem12.Text = "Nhiều điều kiện";
     //
     // comboItem1
     //
     this.comboItem1.Text = "Khách hàng đại diện";
     //
     // comboItem2
     //
     this.comboItem2.Text = "Xem tất cả";
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.bindingNavigatorKH);
     this.groupBox5.Controls.Add(this.dataGridKH);
     this.groupBox5.Location = new System.Drawing.Point(8, 201);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(502, 192);
     this.groupBox5.TabIndex = 31;
     this.groupBox5.TabStop = false;
     //
     // bindingNavigatorKH
     //
     this.bindingNavigatorKH.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigatorKH.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigatorKH.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigatorKH.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigatorKH.Location = new System.Drawing.Point(3, 17);
     this.bindingNavigatorKH.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigatorKH.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigatorKH.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigatorKH.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigatorKH.Name = "bindingNavigatorKH";
     this.bindingNavigatorKH.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigatorKH.Size = new System.Drawing.Size(496, 25);
     this.bindingNavigatorKH.TabIndex = 23;
     this.bindingNavigatorKH.Text = "bindingNavigator1";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // dataGridKH
     //
     this.dataGridKH.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridKH.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT,
     this.MaKhachHang,
     this.TenKhachHang,
     this.LoaiKhachHang,
     this.CMND,
     this.DiaChi,
     this.KhachHangDaiDien});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridKH.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridKH.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridKH.Location = new System.Drawing.Point(0, 44);
     this.dataGridKH.Name = "dataGridKH";
     this.dataGridKH.Size = new System.Drawing.Size(496, 142);
     this.dataGridKH.TabIndex = 22;
     this.dataGridKH.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridKH_CellContentClick);
     this.dataGridKH.MouseLeave += new System.EventHandler(this.dataGridKH_MouseLeave);
     //
     // STT
     //
     this.STT.DataPropertyName = "STT";
     this.STT.HeaderText = "STT";
     this.STT.Name = "STT";
     this.STT.Width = 30;
     //
     // MaKhachHang
     //
     this.MaKhachHang.DataPropertyName = "MaKhachHang";
     this.MaKhachHang.HeaderText = "Mã Khách Hàng";
     this.MaKhachHang.Name = "MaKhachHang";
     this.MaKhachHang.Width = 110;
     //
     // TenKhachHang
     //
     this.TenKhachHang.DataPropertyName = "TenkhachHang";
     this.TenKhachHang.HeaderText = "Tên Khách Hàng";
     this.TenKhachHang.Name = "TenKhachHang";
     this.TenKhachHang.Width = 115;
     //
     // LoaiKhachHang
     //
     this.LoaiKhachHang.DataPropertyName = "MaLoaiKH";
     this.LoaiKhachHang.HeaderText = "Loại Khách Hàng";
     this.LoaiKhachHang.Name = "LoaiKhachHang";
     this.LoaiKhachHang.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.LoaiKhachHang.Width = 115;
     //
     // CMND
     //
     this.CMND.DataPropertyName = "CMND";
     this.CMND.HeaderText = "Số CMND";
     this.CMND.Name = "CMND";
     this.CMND.ReadOnly = true;
     this.CMND.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CMND.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.CMND.Width = 90;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "DiaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     //
     // KhachHangDaiDien
     //
     this.KhachHangDaiDien.DataPropertyName = "KhachHangDaiDien";
     this.KhachHangDaiDien.HeaderText = "Khách hàng đại diện";
     this.KhachHangDaiDien.Name = "KhachHangDaiDien";
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Location = new System.Drawing.Point(27, 172);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(75, 23);
     this.btAdd.TabIndex = 34;
     this.btAdd.Text = "Thêm";
     this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
     //
     // btUpdate
     //
     this.btUpdate.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btUpdate.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btUpdate.Location = new System.Drawing.Point(408, 172);
     this.btUpdate.Name = "btUpdate";
     this.btUpdate.Size = new System.Drawing.Size(75, 23);
     this.btUpdate.TabIndex = 36;
     this.btUpdate.Text = "Sửa";
     this.btUpdate.Click += new System.EventHandler(this.btUpdate_Click);
     //
     // btDelete
     //
     this.btDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelete.Location = new System.Drawing.Point(219, 172);
     this.btDelete.Name = "btDelete";
     this.btDelete.Size = new System.Drawing.Size(75, 23);
     this.btDelete.TabIndex = 35;
     this.btDelete.Text = "Xóa";
     this.btDelete.Click += new System.EventHandler(this.btDelete_Click);
     //
     // cmb_MaLoaiKH
     //
     this.cmb_MaLoaiKH.DisplayMember = "Text";
     this.cmb_MaLoaiKH.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cmb_MaLoaiKH.FormattingEnabled = true;
     this.cmb_MaLoaiKH.ItemHeight = 15;
     this.cmb_MaLoaiKH.Location = new System.Drawing.Point(313, 102);
     this.cmb_MaLoaiKH.Name = "cmb_MaLoaiKH";
     this.cmb_MaLoaiKH.Size = new System.Drawing.Size(102, 21);
     this.cmb_MaLoaiKH.TabIndex = 37;
     this.cmb_MaLoaiKH.Visible = false;
     this.cmb_MaLoaiKH.SelectedIndexChanged += new System.EventHandler(this.cmb_MaLoaiPhong_SelectedIndexChanged);
     //
     // plKhachHang
     //
     this.plKhachHang.CanvasColor = System.Drawing.Color.Transparent;
     this.plKhachHang.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
     this.plKhachHang.Controls.Add(this.chk_searchKHDD);
     this.plKhachHang.Controls.Add(this.cmb_MaLoaiKH);
     this.plKhachHang.Controls.Add(this.btDelete);
     this.plKhachHang.Controls.Add(this.btUpdate);
     this.plKhachHang.Controls.Add(this.btAdd);
     this.plKhachHang.Controls.Add(this.groupBox5);
     this.plKhachHang.Controls.Add(this.groupBox1);
     this.plKhachHang.Controls.Add(this.labelX5);
     this.plKhachHang.Controls.Add(this.txt_DiaChi);
     this.plKhachHang.Controls.Add(this.labelX4);
     this.plKhachHang.Controls.Add(this.txt_LoaiKH);
     this.plKhachHang.Controls.Add(this.labelX3);
     this.plKhachHang.Controls.Add(this.labelX2);
     this.plKhachHang.Controls.Add(this.labelX1);
     this.plKhachHang.Controls.Add(this.txt_MaKH);
     this.plKhachHang.Controls.Add(this.txt_CMND);
     this.plKhachHang.Controls.Add(this.txt_TenKH);
     this.plKhachHang.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.plKhachHang.Location = new System.Drawing.Point(5, 4);
     this.plKhachHang.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.plKhachHang.Name = "plKhachHang";
     this.plKhachHang.Size = new System.Drawing.Size(510, 400);
     this.plKhachHang.Style.Alignment = System.Drawing.StringAlignment.Center;
     this.plKhachHang.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.plKhachHang.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.plKhachHang.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
     this.plKhachHang.Style.BorderColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
     this.plKhachHang.Style.ForeColor.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelText;
     this.plKhachHang.Style.GradientAngle = 90;
     this.plKhachHang.TabIndex = 0;
     this.plKhachHang.Click += new System.EventHandler(this.plKhachHang_Click);
     this.plKhachHang.Leave += new System.EventHandler(this.plKhachHang_Leave);
     //
     // chk_searchKHDD
     //
     //
     //
     //
     this.chk_searchKHDD.BackgroundStyle.Class = "";
     this.chk_searchKHDD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_searchKHDD.Enabled = false;
     this.chk_searchKHDD.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_searchKHDD.Location = new System.Drawing.Point(194, 76);
     this.chk_searchKHDD.Name = "chk_searchKHDD";
     this.chk_searchKHDD.Size = new System.Drawing.Size(52, 22);
     this.chk_searchKHDD.TabIndex = 36;
     this.chk_searchKHDD.Text = "KHDD";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::_042082.Properties.Resources.Icon_198;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "toolStripButton1";
     //
     // btSearch
     //
     this.btSearch.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btSearch.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btSearch.Image = global::_042082.Properties.Resources.Loupe;
     this.btSearch.Location = new System.Drawing.Point(399, 11);
     this.btSearch.Name = "btSearch";
     this.btSearch.Size = new System.Drawing.Size(41, 22);
     this.btSearch.TabIndex = 32;
     this.btSearch.Click += new System.EventHandler(this.btSearch_Click);
     //
     // urlKhachHang
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.plKhachHang);
     this.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "urlKhachHang";
     this.Size = new System.Drawing.Size(517, 407);
     this.Load += new System.EventHandler(this.urlKhachHang_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorKH)).EndInit();
     this.bindingNavigatorKH.ResumeLayout(false);
     this.bindingNavigatorKH.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridKH)).EndInit();
     this.plKhachHang.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #41
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(Actividades));
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.cbTipSolic = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.ipFechCierre = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.chkbActCerrada = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkbRealizado = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txObservacionesA = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.ipFechProg = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.txRef = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.cbTipoAct = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.btnAgregarAct = new DevComponents.DotNetBar.ButtonX();
     this.btnCambiosAct = new DevComponents.DotNetBar.ButtonX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.requiredFieldValidator1 = new DevComponents.DotNetBar.Validator.RequiredFieldValidator("Campo Requerido");
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechCierre)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechProg)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     this.SuspendLayout();
     //
     // labelX27
     //
     //
     //
     //
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.Location = new System.Drawing.Point(6, 14);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(95, 23);
     this.labelX27.TabIndex = 62;
     this.labelX27.Text = "Tipo de Solicitud :";
     //
     // cbTipSolic
     //
     this.cbTipSolic.DisplayMember = "Text";
     this.cbTipSolic.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbTipSolic.FormattingEnabled = true;
     this.cbTipSolic.ItemHeight = 14;
     this.cbTipSolic.Location = new System.Drawing.Point(116, 12);
     this.cbTipSolic.Name = "cbTipSolic";
     this.cbTipSolic.Size = new System.Drawing.Size(173, 20);
     this.cbTipSolic.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbTipSolic.TabIndex = 61;
     //
     // ipFechCierre
     //
     //
     //
     //
     this.ipFechCierre.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFechCierre.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFechCierre.ButtonDropDown.Visible = true;
     this.ipFechCierre.IsPopupCalendarOpen = false;
     this.ipFechCierre.Location = new System.Drawing.Point(116, 139);
     //
     //
     //
     this.ipFechCierre.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechCierre.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFechCierre.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFechCierre.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.DisplayMonth = new System.DateTime(2012, 6, 1, 0, 0, 0, 0);
     this.ipFechCierre.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFechCierre.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFechCierre.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechCierre.MonthCalendar.TodayButtonVisible = true;
     this.ipFechCierre.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFechCierre.Name = "ipFechCierre";
     this.ipFechCierre.Size = new System.Drawing.Size(173, 20);
     this.ipFechCierre.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFechCierre.TabIndex = 60;
     //
     // chkbActCerrada
     //
     //
     //
     //
     this.chkbActCerrada.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbActCerrada.Location = new System.Drawing.Point(245, 107);
     this.chkbActCerrada.Name = "chkbActCerrada";
     this.chkbActCerrada.Size = new System.Drawing.Size(32, 23);
     this.chkbActCerrada.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbActCerrada.TabIndex = 59;
     //
     // chkbRealizado
     //
     //
     //
     //
     this.chkbRealizado.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkbRealizado.Location = new System.Drawing.Point(74, 107);
     this.chkbRealizado.Name = "chkbRealizado";
     this.chkbRealizado.Size = new System.Drawing.Size(18, 23);
     this.chkbRealizado.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkbRealizado.TabIndex = 58;
     //
     // txObservacionesA
     //
     this.txObservacionesA.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txObservacionesA.Border.Class = "TextBoxBorder";
     this.txObservacionesA.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txObservacionesA.ForeColor = System.Drawing.Color.Black;
     this.txObservacionesA.Location = new System.Drawing.Point(318, 99);
     this.txObservacionesA.Multiline = true;
     this.txObservacionesA.Name = "txObservacionesA";
     this.txObservacionesA.Size = new System.Drawing.Size(354, 52);
     this.txObservacionesA.TabIndex = 57;
     //
     // ipFechProg
     //
     //
     //
     //
     this.ipFechProg.BackgroundStyle.Class = "DateTimeInputBackground";
     this.ipFechProg.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.ipFechProg.ButtonDropDown.Visible = true;
     this.ipFechProg.IsPopupCalendarOpen = false;
     this.ipFechProg.Location = new System.Drawing.Point(116, 64);
     //
     //
     //
     this.ipFechProg.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechProg.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.ipFechProg.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.ipFechProg.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.DisplayMonth = new System.DateTime(2012, 6, 1, 0, 0, 0, 0);
     this.ipFechProg.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ipFechProg.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.ipFechProg.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ipFechProg.MonthCalendar.TodayButtonVisible = true;
     this.ipFechProg.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ipFechProg.Name = "ipFechProg";
     this.ipFechProg.Size = new System.Drawing.Size(173, 20);
     this.ipFechProg.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.ipFechProg.TabIndex = 51;
     this.superValidator1.SetValidator1(this.ipFechProg, this.requiredFieldValidator1);
     //
     // txRef
     //
     this.txRef.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txRef.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txRef.ForeColor = System.Drawing.Color.Black;
     this.txRef.Location = new System.Drawing.Point(318, 30);
     this.txRef.Multiline = true;
     this.txRef.Name = "txRef";
     this.txRef.Size = new System.Drawing.Size(354, 45);
     this.txRef.TabIndex = 56;
     //
     // labelX26
     //
     //
     //
     //
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.Location = new System.Drawing.Point(318, 81);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(93, 23);
     this.labelX26.TabIndex = 55;
     this.labelX26.Text = "Observaciones :";
     //
     // labelX25
     //
     //
     //
     //
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.Location = new System.Drawing.Point(6, 136);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(93, 23);
     this.labelX25.TabIndex = 54;
     this.labelX25.Text = "Fecha de Cierre :";
     //
     // labelX24
     //
     //
     //
     //
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.Location = new System.Drawing.Point(144, 107);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(95, 23);
     this.labelX24.TabIndex = 53;
     this.labelX24.Text = "Actividad Cerrada :";
     //
     // labelX23
     //
     //
     //
     //
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.Location = new System.Drawing.Point(6, 107);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(75, 23);
     this.labelX23.TabIndex = 52;
     this.labelX23.Text = "Realizado :";
     //
     // labelX22
     //
     //
     //
     //
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.Location = new System.Drawing.Point(6, 64);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(111, 23);
     this.labelX22.TabIndex = 50;
     this.labelX22.Text = "Fecha Programada :";
     //
     // labelX21
     //
     //
     //
     //
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.Location = new System.Drawing.Point(318, 9);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(75, 23);
     this.labelX21.TabIndex = 49;
     this.labelX21.Text = "Referencia :";
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Location = new System.Drawing.Point(6, 35);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(95, 23);
     this.labelX20.TabIndex = 48;
     this.labelX20.Text = "Tipo de Actividad :";
     //
     // cbTipoAct
     //
     this.cbTipoAct.DisplayMember = "Text";
     this.cbTipoAct.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cbTipoAct.FormattingEnabled = true;
     this.cbTipoAct.ItemHeight = 14;
     this.cbTipoAct.Location = new System.Drawing.Point(116, 38);
     this.cbTipoAct.Name = "cbTipoAct";
     this.cbTipoAct.Size = new System.Drawing.Size(173, 20);
     this.cbTipoAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cbTipoAct.TabIndex = 47;
     //
     // btnAgregarAct
     //
     this.btnAgregarAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnAgregarAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnAgregarAct.Location = new System.Drawing.Point(588, 176);
     this.btnAgregarAct.Name = "btnAgregarAct";
     this.btnAgregarAct.Size = new System.Drawing.Size(107, 23);
     this.btnAgregarAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnAgregarAct.TabIndex = 63;
     this.btnAgregarAct.Text = "Agregar Actividad";
     this.btnAgregarAct.Click += new System.EventHandler(this.btnAgregarAct_Click);
     //
     // btnCambiosAct
     //
     this.btnCambiosAct.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCambiosAct.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCambiosAct.Location = new System.Drawing.Point(481, 176);
     this.btnCambiosAct.Name = "btnCambiosAct";
     this.btnCambiosAct.Size = new System.Drawing.Size(101, 23);
     this.btnCambiosAct.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCambiosAct.TabIndex = 64;
     this.btnCambiosAct.Text = "Guardar Cambios";
     this.btnCambiosAct.Visible = false;
     this.btnCambiosAct.Click += new System.EventHandler(this.btnCambiosAct_Click);
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // requiredFieldValidator1
     //
     this.requiredFieldValidator1.ErrorMessage = "Campo Requerido";
     this.requiredFieldValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // Actividades
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(707, 214);
     this.Controls.Add(this.btnCambiosAct);
     this.Controls.Add(this.btnAgregarAct);
     this.Controls.Add(this.labelX27);
     this.Controls.Add(this.cbTipSolic);
     this.Controls.Add(this.ipFechCierre);
     this.Controls.Add(this.chkbActCerrada);
     this.Controls.Add(this.chkbRealizado);
     this.Controls.Add(this.txObservacionesA);
     this.Controls.Add(this.ipFechProg);
     this.Controls.Add(this.txRef);
     this.Controls.Add(this.labelX26);
     this.Controls.Add(this.labelX25);
     this.Controls.Add(this.labelX24);
     this.Controls.Add(this.labelX23);
     this.Controls.Add(this.labelX22);
     this.Controls.Add(this.labelX21);
     this.Controls.Add(this.labelX20);
     this.Controls.Add(this.cbTipoAct);
     this.Name = "Actividades";
     this.Text = "Actividades";
     this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Actividades_FormClosed);
     this.Load += new System.EventHandler(this.Actividades_Load);
     ((System.ComponentModel.ISupportInitialize)(this.ipFechCierre)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ipFechProg)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     this.ResumeLayout(false);
 }
コード例 #42
0
        private void InitializeComponent()
        {
            components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(CollisionEditor));

            _TextBoxX_ColParam2              = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX_ColParam2.TextChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _TextBoxX_ColParam1              = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX_ColParam1.TextChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _LabelX_ColParamsTipp            = new DevComponents.DotNetBar.LabelX();
            _LabelX_Param2          = new DevComponents.DotNetBar.LabelX();
            _LabelX_Param1          = new DevComponents.DotNetBar.LabelX();
            _Button_SaveColsettings = new DevComponents.DotNetBar.ButtonX();
            _LabelX48         = new DevComponents.DotNetBar.LabelX();
            _ComboBox_ColType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_ColType.SelectedIndexChanged += new EventHandler(ComboBox_CI_ColType_SelectedIndexChanged);
            _LabelX_CollisionType       = new DevComponents.DotNetBar.LabelX();
            _CheckBoxX1                 = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX1.CheckedChanged += new EventHandler(CheckBoxX1_CheckedChanging);
            _TextBoxX1                         = new DevComponents.DotNetBar.Controls.TextBoxX();
            _TextBoxX1.TextChanged            += new EventHandler(TextBoxX1_TextChanged);
            _ListViewEx1                       = new DevComponents.DotNetBar.Controls.ListViewEx();
            _ListViewEx1.SelectedIndexChanged += new EventHandler(ListBoxAdv_CI_Textures_ItemClick);
            _SuperTooltip1                     = new DevComponents.DotNetBar.SuperTooltip();
            _PictureBox1                       = new System.Windows.Forms.PictureBox();
            _Panel1 = new System.Windows.Forms.Panel();
            _CheckBoxX_IsNonSolid = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_IsNonSolid.CheckedChanged += new EventHandler(ButtonItem_IsNonSolid_CheckedChanged);
            _CircularProgress1 = new DevComponents.DotNetBar.Controls.CircularProgress();
            _Panel2            = new System.Windows.Forms.Panel();
            ((System.ComponentModel.ISupportInitialize)_PictureBox1).BeginInit();
            _Panel1.SuspendLayout();
            _Panel2.SuspendLayout();
            SuspendLayout();
            //
            // TextBoxX_ColParam2
            //
            resources.ApplyResources(_TextBoxX_ColParam2, "TextBoxX_ColParam2");
            _TextBoxX_ColParam2.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX_ColParam2.Border.Class      = "TextBoxBorder";
            _TextBoxX_ColParam2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX_ColParam2.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX_ColParam2.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX_ColParam2.Name             = "TextBoxX_ColParam2";
            _TextBoxX_ColParam2.PreventEnterBeep = true;
            //
            // TextBoxX_ColParam1
            //
            resources.ApplyResources(_TextBoxX_ColParam1, "TextBoxX_ColParam1");
            _TextBoxX_ColParam1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX_ColParam1.Border.Class      = "TextBoxBorder";
            _TextBoxX_ColParam1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX_ColParam1.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX_ColParam1.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX_ColParam1.Name             = "TextBoxX_ColParam1";
            _TextBoxX_ColParam1.PreventEnterBeep = true;
            //
            // LabelX_ColParamsTipp
            //
            resources.ApplyResources(_LabelX_ColParamsTipp, "LabelX_ColParamsTipp");
            //
            //
            //
            _LabelX_ColParamsTipp.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_ColParamsTipp.Name              = "LabelX_ColParamsTipp";
            _LabelX_ColParamsTipp.Style             = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            _LabelX_ColParamsTipp.TextLineAlignment = System.Drawing.StringAlignment.Near;
            //
            // LabelX_Param2
            //
            resources.ApplyResources(_LabelX_Param2, "LabelX_Param2");
            //
            //
            //
            _LabelX_Param2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Param2.Name  = "LabelX_Param2";
            _LabelX_Param2.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // LabelX_Param1
            //
            resources.ApplyResources(_LabelX_Param1, "LabelX_Param1");
            //
            //
            //
            _LabelX_Param1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Param1.Name  = "LabelX_Param1";
            _LabelX_Param1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // Button_SaveColsettings
            //
            _Button_SaveColsettings.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
            resources.ApplyResources(_Button_SaveColsettings, "Button_SaveColsettings");
            _Button_SaveColsettings.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SaveColsettings.DialogResult     = System.Windows.Forms.DialogResult.OK;
            _Button_SaveColsettings.FocusCuesEnabled = false;
            _Button_SaveColsettings.Name             = "Button_SaveColsettings";
            _Button_SaveColsettings.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX48
            //
            //
            //
            //
            _LabelX48.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            resources.ApplyResources(_LabelX48, "LabelX48");
            _LabelX48.Name  = "LabelX48";
            _LabelX48.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // ComboBox_ColType
            //
            resources.ApplyResources(_ComboBox_ColType, "ComboBox_ColType");
            _ComboBox_ColType.DrawMode          = System.Windows.Forms.DrawMode.OwnerDrawFixed;
            _ComboBox_ColType.DropDownHeight    = 150;
            _ComboBox_ColType.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
            _ComboBox_ColType.ForeColor         = System.Drawing.Color.Black;
            _ComboBox_ColType.FormattingEnabled = true;
            _ComboBox_ColType.Name  = "ComboBox_ColType";
            _ComboBox_ColType.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // LabelX_CollisionType
            //
            resources.ApplyResources(_LabelX_CollisionType, "LabelX_CollisionType");
            //
            //
            //
            _LabelX_CollisionType.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_CollisionType.Name  = "LabelX_CollisionType";
            _LabelX_CollisionType.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // CheckBoxX1
            //
            resources.ApplyResources(_CheckBoxX1, "CheckBoxX1");
            //
            //
            //
            _CheckBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX1.FocusCuesEnabled           = false;
            _CheckBoxX1.Name  = "CheckBoxX1";
            _CheckBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // TextBoxX1
            //
            resources.ApplyResources(_TextBoxX1, "TextBoxX1");
            _TextBoxX1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _TextBoxX1.Border.Class      = "TextBoxBorder";
            _TextBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _TextBoxX1.DisabledBackColor = System.Drawing.Color.White;
            _TextBoxX1.ForeColor         = System.Drawing.Color.Black;
            _TextBoxX1.Name             = "TextBoxX1";
            _TextBoxX1.PreventEnterBeep = true;
            //
            // ListViewEx1
            //
            resources.ApplyResources(_ListViewEx1, "ListViewEx1");
            _ListViewEx1.BackColor = System.Drawing.Color.White;
            //
            //
            //
            _ListViewEx1.Border.Class      = "ListViewBorder";
            _ListViewEx1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _ListViewEx1.DisabledBackColor = System.Drawing.Color.Empty;
            _ListViewEx1.FocusCuesEnabled  = false;
            _ListViewEx1.ForeColor         = System.Drawing.Color.Black;
            _ListViewEx1.FullRowSelect     = true;
            _ListViewEx1.HideSelection     = false;
            _ListViewEx1.Name = "ListViewEx1";
            _ListViewEx1.UseCompatibleStateImageBehavior = false;
            //
            // SuperTooltip1
            //
            resources.ApplyResources(_SuperTooltip1, "SuperTooltip1");
            _SuperTooltip1.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
            //
            // PictureBox1
            //
            resources.ApplyResources(_PictureBox1, "PictureBox1");
            _PictureBox1.Name    = "PictureBox1";
            _PictureBox1.TabStop = false;
            //
            // Panel1
            //
            resources.ApplyResources(_Panel1, "Panel1");
            _Panel1.BackColor = System.Drawing.Color.Transparent;
            _Panel1.Controls.Add(_LabelX_CollisionType);
            _Panel1.Controls.Add(_ComboBox_ColType);
            _Panel1.Controls.Add(_LabelX_Param2);
            _Panel1.Controls.Add(_LabelX_ColParamsTipp);
            _Panel1.Controls.Add(_LabelX_Param1);
            _Panel1.Controls.Add(_TextBoxX_ColParam1);
            _Panel1.Controls.Add(_CheckBoxX1);
            _Panel1.Controls.Add(_TextBoxX_ColParam2);
            _Panel1.Controls.Add(_TextBoxX1);
            _Panel1.Name = "Panel1";
            //
            // CheckBoxX_IsNonSolid
            //
            resources.ApplyResources(_CheckBoxX_IsNonSolid, "CheckBoxX_IsNonSolid");
            //
            //
            //
            _CheckBoxX_IsNonSolid.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_IsNonSolid.FocusCuesEnabled           = false;
            _CheckBoxX_IsNonSolid.Name  = "CheckBoxX_IsNonSolid";
            _CheckBoxX_IsNonSolid.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            //
            // CircularProgress1
            //
            resources.ApplyResources(_CircularProgress1, "CircularProgress1");
            _CircularProgress1.BackColor = System.Drawing.Color.Transparent;
            //
            //
            //
            _CircularProgress1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CircularProgress1.Name = "CircularProgress1";
            _CircularProgress1.SetVisibleStateOnStart = true;
            _CircularProgress1.SetVisibleStateOnStop  = true;
            _CircularProgress1.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
            //
            // Panel2
            //
            _Panel2.BackColor = System.Drawing.Color.Transparent;
            _Panel2.Controls.Add(_LabelX48);
            _Panel2.Controls.Add(_CircularProgress1);
            _Panel2.Controls.Add(_Button_SaveColsettings);
            _Panel2.Controls.Add(_CheckBoxX_IsNonSolid);
            _Panel2.Controls.Add(_ListViewEx1);
            _Panel2.Controls.Add(_Panel1);
            _Panel2.Controls.Add(_PictureBox1);
            resources.ApplyResources(_Panel2, "Panel2");
            _Panel2.Name = "Panel2";
            //
            // CollisionEditor
            //
            resources.ApplyResources(this, "$this");
            AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            Controls.Add(_Panel2);
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "CollisionEditor";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            ((System.ComponentModel.ISupportInitialize)_PictureBox1).EndInit();
            _Panel1.ResumeLayout(false);
            _Panel2.ResumeLayout(false);
            ResumeLayout(false);
        }
コード例 #43
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();
     DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable superTabPanelColorTable1 = new DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable superTabPanelItemColorTable1 = new DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable superTabLinearGradientColorTable1 = new DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable superTabPanelItemColorTable2 = new DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable superTabLinearGradientColorTable2 = new DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AsignacionMultipleControl));
     DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable superTabPanelColorTable2 = new DevComponents.DotNetBar.Rendering.SuperTabPanelColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable superTabPanelItemColorTable3 = new DevComponents.DotNetBar.Rendering.SuperTabPanelItemColorTable();
     DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable superTabLinearGradientColorTable3 = new DevComponents.DotNetBar.Rendering.SuperTabLinearGradientColorTable();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelTiempo = new DevComponents.DotNetBar.LabelX();
     this.buttonAdd = new DevComponents.DotNetBar.ButtonX();
     this.checkBoxDomingo = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxSabado = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxViernes = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxJueves = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxMiercoles = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxMartes = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxLunes = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxRepetir = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.dateTimeInputFin = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelFin = new DevComponents.DotNetBar.LabelX();
     this.dateTimeInputInicio = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelInicio = new DevComponents.DotNetBar.LabelX();
     this.buttonLimpiar = new DevComponents.DotNetBar.ButtonX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.radioButtonRepeticiones = new System.Windows.Forms.RadioButton();
     this.radioButtonFecha = new System.Windows.Forms.RadioButton();
     this.integerInputRepeticiones = new DevComponents.Editors.IntegerInput();
     this.dateTimeInputFinRepeticiones = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelSesiones = new DevComponents.DotNetBar.LabelX();
     this.superTabControlAsignacion = new DevComponents.DotNetBar.SuperTabControl();
     this.superTabControlPanel2 = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panel2 = new System.Windows.Forms.Panel();
     this.comboBoxCliente = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelCliente = new DevComponents.DotNetBar.LabelX();
     this.buttonEdit = new DevComponents.DotNetBar.ButtonX();
     this.buttonX1 = new DevComponents.DotNetBar.ButtonX();
     this.textBoxObservaciones = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelTipoUso = new DevComponents.DotNetBar.LabelX();
     this.labelObservaciones = new DevComponents.DotNetBar.LabelX();
     this.comboBoxTipoUso = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.superTabItemOtro = new DevComponents.DotNetBar.SuperTabItem();
     this.superTabControlPanelAsignacion = new DevComponents.DotNetBar.SuperTabControlPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxDocente = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelGrupo = new DevComponents.DotNetBar.LabelX();
     this.labelAsignatura = new DevComponents.DotNetBar.LabelX();
     this.comboBoxGrupo = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxAsignatura = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.superTabItemClase = new DevComponents.DotNetBar.SuperTabItem();
     this.labelAsignacion = new DevComponents.DotNetBar.LabelX();
     this.comboBoxAsignacion = new System.Windows.Forms.ComboBox();
     this.dataGridViewFechas = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.ColumnAula = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnDia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnInicio = new DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn();
     this.ColumnFin = new DevComponents.DotNetBar.Controls.DataGridViewDateTimeInputColumn();
     this.ColumnDuracion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ColumnSerie = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.superValidator = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.customValidatorDiasSeleccionados = new DevComponents.DotNetBar.Validator.CustomValidator();
     this.compareValidatorDateTimeInputFin = new DevComponents.DotNetBar.Validator.CompareValidator();
     this.customValidatorDateTimeInputFinRepeticiones = new DevComponents.DotNetBar.Validator.CustomValidator();
     this.customValidator_Cliente_Exists = new DevComponents.DotNetBar.Validator.CustomValidator();
     this.customValidatorValidateGrupo = new DevComponents.DotNetBar.Validator.CustomValidator();
     this.customValidator_Asignatura_Exists = new DevComponents.DotNetBar.Validator.CustomValidator();
     this.errorProvider = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter = new DevComponents.DotNetBar.Validator.Highlighter();
     this.comboBoxAula = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelAula = new DevComponents.DotNetBar.LabelX();
     this.checkBoxAgruparSerie = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.textBoxTituloSerie = new DevComponents.DotNetBar.Controls.TextBoxX();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputFin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputInicio)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInputRepeticiones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputFinRepeticiones)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControlAsignacion)).BeginInit();
     this.superTabControlAsignacion.SuspendLayout();
     this.superTabControlPanel2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.superTabControlPanelAsignacion.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFechas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     this.SuspendLayout();
     //
     // 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.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(60, 30);
     //
     //
     //
     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(2012, 10, 1, 0, 0, 0, 0);
     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.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(80, 20);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 10000;
     //
     // labelTiempo
     //
     //
     //
     //
     this.labelTiempo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelTiempo.Location = new System.Drawing.Point(10, 142);
     this.labelTiempo.Name = "labelTiempo";
     this.labelTiempo.Size = new System.Drawing.Size(200, 23);
     this.labelTiempo.TabIndex = 31;
     this.labelTiempo.Text = "Duración: 0";
     //
     // buttonAdd
     //
     this.buttonAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonAdd.Location = new System.Drawing.Point(10, 310);
     this.buttonAdd.Name = "buttonAdd";
     this.buttonAdd.Size = new System.Drawing.Size(75, 23);
     this.buttonAdd.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonAdd.TabIndex = 30;
     this.buttonAdd.Text = "Añadir";
     this.buttonAdd.Click += new System.EventHandler(this.buttonAdd_Click);
     //
     // checkBoxDomingo
     //
     //
     //
     //
     this.checkBoxDomingo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxDomingo.Enabled = false;
     this.checkBoxDomingo.Location = new System.Drawing.Point(226, 200);
     this.checkBoxDomingo.Name = "checkBoxDomingo";
     this.checkBoxDomingo.Size = new System.Drawing.Size(30, 23);
     this.checkBoxDomingo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxDomingo.TabIndex = 28;
     this.checkBoxDomingo.Text = "D";
     //
     // checkBoxSabado
     //
     //
     //
     //
     this.checkBoxSabado.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxSabado.Enabled = false;
     this.checkBoxSabado.Location = new System.Drawing.Point(190, 200);
     this.checkBoxSabado.Name = "checkBoxSabado";
     this.checkBoxSabado.Size = new System.Drawing.Size(30, 23);
     this.checkBoxSabado.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxSabado.TabIndex = 27;
     this.checkBoxSabado.Text = "S";
     //
     // checkBoxViernes
     //
     //
     //
     //
     this.checkBoxViernes.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxViernes.Enabled = false;
     this.checkBoxViernes.Location = new System.Drawing.Point(154, 200);
     this.checkBoxViernes.Name = "checkBoxViernes";
     this.checkBoxViernes.Size = new System.Drawing.Size(30, 23);
     this.checkBoxViernes.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxViernes.TabIndex = 26;
     this.checkBoxViernes.Text = "V";
     //
     // checkBoxJueves
     //
     //
     //
     //
     this.checkBoxJueves.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxJueves.Enabled = false;
     this.checkBoxJueves.Location = new System.Drawing.Point(118, 200);
     this.checkBoxJueves.Name = "checkBoxJueves";
     this.checkBoxJueves.Size = new System.Drawing.Size(30, 23);
     this.checkBoxJueves.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxJueves.TabIndex = 25;
     this.checkBoxJueves.Text = "J";
     //
     // checkBoxMiercoles
     //
     //
     //
     //
     this.checkBoxMiercoles.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxMiercoles.Enabled = false;
     this.checkBoxMiercoles.Location = new System.Drawing.Point(82, 200);
     this.checkBoxMiercoles.Name = "checkBoxMiercoles";
     this.checkBoxMiercoles.Size = new System.Drawing.Size(30, 23);
     this.checkBoxMiercoles.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxMiercoles.TabIndex = 24;
     this.checkBoxMiercoles.Text = "X";
     //
     // checkBoxMartes
     //
     //
     //
     //
     this.checkBoxMartes.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxMartes.Enabled = false;
     this.checkBoxMartes.Location = new System.Drawing.Point(46, 200);
     this.checkBoxMartes.Name = "checkBoxMartes";
     this.checkBoxMartes.Size = new System.Drawing.Size(30, 23);
     this.checkBoxMartes.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxMartes.TabIndex = 23;
     this.checkBoxMartes.Text = "M";
     //
     // checkBoxLunes
     //
     //
     //
     //
     this.checkBoxLunes.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxLunes.Enabled = false;
     this.checkBoxLunes.Location = new System.Drawing.Point(10, 200);
     this.checkBoxLunes.Name = "checkBoxLunes";
     this.checkBoxLunes.Size = new System.Drawing.Size(30, 23);
     this.checkBoxLunes.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxLunes.TabIndex = 22;
     this.checkBoxLunes.Text = "L";
     //
     // checkBoxRepetir
     //
     //
     //
     //
     this.checkBoxRepetir.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxRepetir.Location = new System.Drawing.Point(10, 171);
     this.checkBoxRepetir.Name = "checkBoxRepetir";
     this.checkBoxRepetir.Size = new System.Drawing.Size(100, 23);
     this.checkBoxRepetir.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxRepetir.TabIndex = 21;
     this.checkBoxRepetir.Text = "Repetir";
     this.superValidator.SetValidator1(this.checkBoxRepetir, this.customValidatorDiasSeleccionados);
     this.checkBoxRepetir.CheckedChanged += new System.EventHandler(this.checkBoxRepetir_CheckedChanged);
     //
     // dateTimeInputFin
     //
     this.dateTimeInputFin.AllowEmptyState = false;
     //
     //
     //
     this.dateTimeInputFin.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInputFin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFin.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInputFin.ButtonDropDown.Visible = true;
     this.dateTimeInputFin.CustomFormat = "dd/MM/yyyy hh:mm tt";
     this.dateTimeInputFin.DateTimeSelectorVisibility = DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.Both;
     this.dateTimeInputFin.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.dateTimeInputFin.IsPopupCalendarOpen = false;
     this.dateTimeInputFin.Location = new System.Drawing.Point(10, 116);
     this.dateTimeInputFin.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     //
     //
     //
     this.dateTimeInputFin.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputFin.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFin.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInputFin.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInputFin.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFin.MonthCalendar.DayClickAutoClosePopup = false;
     this.dateTimeInputFin.MonthCalendar.DisplayMonth = new System.DateTime(2012, 10, 1, 0, 0, 0, 0);
     this.dateTimeInputFin.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInputFin.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputFin.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInputFin.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputFin.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInputFin.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFin.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInputFin.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInputFin.Name = "dateTimeInputFin";
     this.dateTimeInputFin.ShowUpDown = true;
     this.dateTimeInputFin.Size = new System.Drawing.Size(246, 20);
     this.dateTimeInputFin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInputFin.TabIndex = 20;
     this.superValidator.SetValidator1(this.dateTimeInputFin, this.compareValidatorDateTimeInputFin);
     this.dateTimeInputFin.Value = new System.DateTime(2012, 10, 29, 4, 53, 39, 0);
     this.dateTimeInputFin.ValueChanged += new System.EventHandler(this.dateTimeInput_ValueChanged);
     //
     // labelFin
     //
     //
     //
     //
     this.labelFin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelFin.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.labelFin.Location = new System.Drawing.Point(10, 87);
     this.labelFin.Name = "labelFin";
     this.labelFin.Size = new System.Drawing.Size(75, 23);
     this.labelFin.TabIndex = 19;
     this.labelFin.Text = "Fin:";
     //
     // dateTimeInputInicio
     //
     this.dateTimeInputInicio.AllowEmptyState = false;
     //
     //
     //
     this.dateTimeInputInicio.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInputInicio.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputInicio.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInputInicio.ButtonDropDown.Visible = true;
     this.dateTimeInputInicio.CustomFormat = "dd/MM/yyyy hh:mm tt";
     this.dateTimeInputInicio.DateTimeSelectorVisibility = DevComponents.Editors.DateTimeAdv.eDateTimeSelectorVisibility.Both;
     this.dateTimeInputInicio.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.dateTimeInputInicio.IsPopupCalendarOpen = false;
     this.dateTimeInputInicio.Location = new System.Drawing.Point(10, 61);
     this.dateTimeInputInicio.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     //
     //
     //
     this.dateTimeInputInicio.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputInicio.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputInicio.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInputInicio.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInputInicio.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputInicio.MonthCalendar.DayClickAutoClosePopup = false;
     this.dateTimeInputInicio.MonthCalendar.DisplayMonth = new System.DateTime(2012, 10, 1, 0, 0, 0, 0);
     this.dateTimeInputInicio.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInputInicio.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputInicio.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInputInicio.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputInicio.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInputInicio.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputInicio.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInputInicio.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInputInicio.Name = "dateTimeInputInicio";
     this.dateTimeInputInicio.ShowUpDown = true;
     this.dateTimeInputInicio.Size = new System.Drawing.Size(246, 20);
     this.dateTimeInputInicio.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInputInicio.TabIndex = 18;
     this.dateTimeInputInicio.Value = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     this.dateTimeInputInicio.ValueChanged += new System.EventHandler(this.dateTimeInput_ValueChanged);
     //
     // labelInicio
     //
     //
     //
     //
     this.labelInicio.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelInicio.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.labelInicio.Location = new System.Drawing.Point(10, 32);
     this.labelInicio.Name = "labelInicio";
     this.labelInicio.Size = new System.Drawing.Size(75, 23);
     this.labelInicio.TabIndex = 17;
     this.labelInicio.Text = "Inicio:";
     //
     // buttonLimpiar
     //
     this.buttonLimpiar.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonLimpiar.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.buttonLimpiar.Location = new System.Drawing.Point(181, 310);
     this.buttonLimpiar.Name = "buttonLimpiar";
     this.buttonLimpiar.Size = new System.Drawing.Size(75, 23);
     this.buttonLimpiar.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonLimpiar.TabIndex = 33;
     this.buttonLimpiar.Text = "Limpiar";
     this.buttonLimpiar.Visible = false;
     this.buttonLimpiar.Click += new System.EventHandler(this.buttonLimpiar_Click);
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(10, 229);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(156, 23);
     this.labelX1.TabIndex = 34;
     this.labelX1.Text = "Fin de Repetición:";
     //
     // radioButtonRepeticiones
     //
     this.radioButtonRepeticiones.AutoSize = true;
     this.radioButtonRepeticiones.Checked = true;
     this.radioButtonRepeticiones.Enabled = false;
     this.radioButtonRepeticiones.Location = new System.Drawing.Point(25, 258);
     this.radioButtonRepeticiones.Name = "radioButtonRepeticiones";
     this.radioButtonRepeticiones.Size = new System.Drawing.Size(85, 17);
     this.radioButtonRepeticiones.TabIndex = 35;
     this.radioButtonRepeticiones.TabStop = true;
     this.radioButtonRepeticiones.Text = "Despues de:";
     this.radioButtonRepeticiones.UseVisualStyleBackColor = true;
     this.radioButtonRepeticiones.CheckedChanged += new System.EventHandler(this.radioButtonRepeticiones_CheckedChanged);
     //
     // radioButtonFecha
     //
     this.radioButtonFecha.AutoSize = true;
     this.radioButtonFecha.Enabled = false;
     this.radioButtonFecha.Location = new System.Drawing.Point(25, 287);
     this.radioButtonFecha.Name = "radioButtonFecha";
     this.radioButtonFecha.Size = new System.Drawing.Size(72, 17);
     this.radioButtonFecha.TabIndex = 36;
     this.radioButtonFecha.Text = "Antes del:";
     this.radioButtonFecha.UseVisualStyleBackColor = true;
     this.radioButtonFecha.CheckedChanged += new System.EventHandler(this.radioButtonFecha_CheckedChanged);
     //
     // integerInputRepeticiones
     //
     this.integerInputRepeticiones.AllowEmptyState = false;
     //
     //
     //
     this.integerInputRepeticiones.BackgroundStyle.Class = "DateTimeInputBackground";
     this.integerInputRepeticiones.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.integerInputRepeticiones.ButtonFreeText.Shortcut = DevComponents.DotNetBar.eShortcut.F2;
     this.integerInputRepeticiones.Enabled = false;
     this.integerInputRepeticiones.Location = new System.Drawing.Point(116, 258);
     this.integerInputRepeticiones.MaxValue = 100;
     this.integerInputRepeticiones.MinValue = 1;
     this.integerInputRepeticiones.Name = "integerInputRepeticiones";
     this.integerInputRepeticiones.ShowUpDown = true;
     this.integerInputRepeticiones.Size = new System.Drawing.Size(50, 20);
     this.integerInputRepeticiones.TabIndex = 37;
     this.integerInputRepeticiones.Value = 1;
     //
     // dateTimeInputFinRepeticiones
     //
     this.dateTimeInputFinRepeticiones.AllowEmptyState = false;
     //
     //
     //
     this.dateTimeInputFinRepeticiones.BackgroundStyle.Class = "DateTimeInputBackground";
     this.dateTimeInputFinRepeticiones.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFinRepeticiones.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.dateTimeInputFinRepeticiones.ButtonDropDown.Visible = true;
     this.dateTimeInputFinRepeticiones.Enabled = false;
     this.dateTimeInputFinRepeticiones.IsPopupCalendarOpen = false;
     this.dateTimeInputFinRepeticiones.Location = new System.Drawing.Point(116, 284);
     this.dateTimeInputFinRepeticiones.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
     //
     //
     //
     this.dateTimeInputFinRepeticiones.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputFinRepeticiones.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.dateTimeInputFinRepeticiones.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.dateTimeInputFinRepeticiones.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFinRepeticiones.MonthCalendar.DisplayMonth = new System.DateTime(2012, 10, 1, 0, 0, 0, 0);
     this.dateTimeInputFinRepeticiones.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.dateTimeInputFinRepeticiones.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.dateTimeInputFinRepeticiones.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.dateTimeInputFinRepeticiones.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.dateTimeInputFinRepeticiones.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.dateTimeInputFinRepeticiones.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.dateTimeInputFinRepeticiones.MonthCalendar.TodayButtonVisible = true;
     this.dateTimeInputFinRepeticiones.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInputFinRepeticiones.Name = "dateTimeInputFinRepeticiones";
     this.dateTimeInputFinRepeticiones.Size = new System.Drawing.Size(94, 20);
     this.dateTimeInputFinRepeticiones.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInputFinRepeticiones.TabIndex = 38;
     this.superValidator.SetValidator1(this.dateTimeInputFinRepeticiones, this.customValidatorDateTimeInputFinRepeticiones);
     this.dateTimeInputFinRepeticiones.Value = new System.DateTime(2012, 10, 29, 4, 53, 31, 0);
     //
     // labelSesiones
     //
     //
     //
     //
     this.labelSesiones.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelSesiones.Location = new System.Drawing.Point(172, 255);
     this.labelSesiones.Name = "labelSesiones";
     this.labelSesiones.Size = new System.Drawing.Size(75, 23);
     this.labelSesiones.TabIndex = 39;
     this.labelSesiones.Text = "sesiones";
     //
     // superTabControlAsignacion
     //
     this.superTabControlAsignacion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     //
     //
     //
     this.superTabControlAsignacion.ControlBox.CloseBox.Name = "";
     //
     //
     //
     this.superTabControlAsignacion.ControlBox.MenuBox.Name = "";
     this.superTabControlAsignacion.ControlBox.Name = "";
     this.superTabControlAsignacion.ControlBox.SubItems.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabControlAsignacion.ControlBox.MenuBox,
     this.superTabControlAsignacion.ControlBox.CloseBox});
     this.superTabControlAsignacion.ControlBox.Visible = false;
     this.superTabControlAsignacion.Controls.Add(this.superTabControlPanel2);
     this.superTabControlAsignacion.Controls.Add(this.superTabControlPanelAsignacion);
     this.superTabControlAsignacion.Location = new System.Drawing.Point(300, 87);
     this.superTabControlAsignacion.Name = "superTabControlAsignacion";
     this.superTabControlAsignacion.ReorderTabsEnabled = true;
     this.superTabControlAsignacion.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold);
     this.superTabControlAsignacion.SelectedTabIndex = 1;
     this.superTabControlAsignacion.Size = new System.Drawing.Size(298, 243);
     this.superTabControlAsignacion.TabFont = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.superTabControlAsignacion.TabIndex = 41;
     this.superTabControlAsignacion.Tabs.AddRange(new DevComponents.DotNetBar.BaseItem[] {
     this.superTabItemClase,
     this.superTabItemOtro});
     this.superTabControlAsignacion.TabsVisible = false;
     //
     // superTabControlPanel2
     //
     this.superTabControlPanel2.Controls.Add(this.panel2);
     this.superTabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanel2.Location = new System.Drawing.Point(0, 25);
     this.superTabControlPanel2.Name = "superTabControlPanel2";
     superTabLinearGradientColorTable1.AdaptiveGradient = false;
     superTabLinearGradientColorTable1.Colors = new System.Drawing.Color[] {
     System.Drawing.SystemColors.Control};
     superTabPanelItemColorTable1.Background = superTabLinearGradientColorTable1;
     superTabPanelColorTable1.Bottom = superTabPanelItemColorTable1;
     superTabLinearGradientColorTable2.AdaptiveGradient = false;
     superTabLinearGradientColorTable2.Colors = new System.Drawing.Color[] {
     System.Drawing.SystemColors.Control};
     superTabPanelItemColorTable2.Background = superTabLinearGradientColorTable2;
     superTabPanelColorTable1.Default = superTabPanelItemColorTable2;
     this.superTabControlPanel2.PanelColor = superTabPanelColorTable1;
     this.superTabControlPanel2.Size = new System.Drawing.Size(298, 218);
     this.superTabControlPanel2.TabIndex = 0;
     this.superTabControlPanel2.TabItem = this.superTabItemOtro;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.panel2.Controls.Add(this.comboBoxCliente);
     this.panel2.Controls.Add(this.labelCliente);
     this.panel2.Controls.Add(this.buttonEdit);
     this.panel2.Controls.Add(this.buttonX1);
     this.panel2.Controls.Add(this.textBoxObservaciones);
     this.panel2.Controls.Add(this.labelTipoUso);
     this.panel2.Controls.Add(this.labelObservaciones);
     this.panel2.Controls.Add(this.comboBoxTipoUso);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(298, 218);
     this.panel2.TabIndex = 49;
     //
     // comboBoxCliente
     //
     this.comboBoxCliente.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxCliente.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBoxCliente.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBoxCliente.DisplayMember = "Text";
     this.comboBoxCliente.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxCliente.FormattingEnabled = true;
     this.comboBoxCliente.ItemHeight = 14;
     this.comboBoxCliente.Location = new System.Drawing.Point(84, 59);
     this.comboBoxCliente.Name = "comboBoxCliente";
     this.comboBoxCliente.Size = new System.Drawing.Size(156, 20);
     this.comboBoxCliente.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxCliente.TabIndex = 67;
     this.superValidator.SetValidator1(this.comboBoxCliente, this.customValidator_Cliente_Exists);
     this.comboBoxCliente.SelectedIndexChanged += new System.EventHandler(this.comboBoxCliente_SelectedIndexChanged);
     this.comboBoxCliente.Leave += new System.EventHandler(this.comboBoxCliente_Leave);
     //
     // labelCliente
     //
     //
     //
     //
     this.labelCliente.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelCliente.Location = new System.Drawing.Point(3, 59);
     this.labelCliente.Name = "labelCliente";
     this.labelCliente.Size = new System.Drawing.Size(72, 23);
     this.labelCliente.TabIndex = 66;
     this.labelCliente.Text = "Cliente:";
     //
     // buttonEdit
     //
     this.buttonEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.buttonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonEdit.AntiAlias = true;
     this.buttonEdit.ColorTable = DevComponents.DotNetBar.eButtonColor.Orange;
     this.buttonEdit.Image = ((System.Drawing.Image)(resources.GetObject("buttonEdit.Image")));
     this.buttonEdit.ImageFixedSize = new System.Drawing.Size(15, 15);
     this.buttonEdit.Location = new System.Drawing.Point(241, 62);
     this.buttonEdit.Name = "buttonEdit";
     this.buttonEdit.Size = new System.Drawing.Size(15, 15);
     this.buttonEdit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonEdit.TabIndex = 65;
     this.buttonEdit.Click += new System.EventHandler(this.buttonEdit_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.AntiAlias = true;
     this.buttonX1.ColorTable = DevComponents.DotNetBar.eButtonColor.Orange;
     this.buttonX1.Cursor = System.Windows.Forms.Cursors.Arrow;
     this.buttonX1.Image = ((System.Drawing.Image)(resources.GetObject("buttonX1.Image")));
     this.buttonX1.ImageFixedSize = new System.Drawing.Size(15, 15);
     this.buttonX1.Location = new System.Drawing.Point(262, 62);
     this.buttonX1.Name = "buttonX1";
     this.buttonX1.Size = new System.Drawing.Size(15, 15);
     this.buttonX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.buttonX1.TabIndex = 64;
     this.buttonX1.Click += new System.EventHandler(this.buttonX1_Click);
     //
     // textBoxObservaciones
     //
     this.textBoxObservaciones.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxObservaciones.BackColor = System.Drawing.SystemColors.HighlightText;
     //
     //
     //
     this.textBoxObservaciones.Border.Class = "TextBoxBorder";
     this.textBoxObservaciones.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxObservaciones.ForeColor = System.Drawing.Color.Black;
     this.textBoxObservaciones.Location = new System.Drawing.Point(3, 113);
     this.textBoxObservaciones.Multiline = true;
     this.textBoxObservaciones.Name = "textBoxObservaciones";
     this.textBoxObservaciones.Size = new System.Drawing.Size(274, 79);
     this.textBoxObservaciones.TabIndex = 48;
     //
     // labelTipoUso
     //
     //
     //
     //
     this.labelTipoUso.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelTipoUso.Location = new System.Drawing.Point(3, 30);
     this.labelTipoUso.Name = "labelTipoUso";
     this.labelTipoUso.Size = new System.Drawing.Size(75, 23);
     this.labelTipoUso.TabIndex = 45;
     this.labelTipoUso.Text = "Tipo de Uso:";
     //
     // labelObservaciones
     //
     //
     //
     //
     this.labelObservaciones.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelObservaciones.Location = new System.Drawing.Point(3, 84);
     this.labelObservaciones.Name = "labelObservaciones";
     this.labelObservaciones.Size = new System.Drawing.Size(202, 23);
     this.labelObservaciones.TabIndex = 47;
     this.labelObservaciones.Text = "Observaciones:";
     //
     // comboBoxTipoUso
     //
     this.comboBoxTipoUso.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxTipoUso.DisplayMember = "Text";
     this.comboBoxTipoUso.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxTipoUso.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxTipoUso.FormattingEnabled = true;
     this.comboBoxTipoUso.ItemHeight = 14;
     this.comboBoxTipoUso.Location = new System.Drawing.Point(84, 33);
     this.comboBoxTipoUso.Name = "comboBoxTipoUso";
     this.comboBoxTipoUso.Size = new System.Drawing.Size(193, 20);
     this.comboBoxTipoUso.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxTipoUso.TabIndex = 44;
     //
     // superTabItemOtro
     //
     this.superTabItemOtro.AttachedControl = this.superTabControlPanel2;
     this.superTabItemOtro.GlobalItem = false;
     this.superTabItemOtro.Name = "superTabItemOtro";
     this.superTabItemOtro.Text = "Otro";
     //
     // superTabControlPanelAsignacion
     //
     this.superTabControlPanelAsignacion.Controls.Add(this.panel1);
     this.superTabControlPanelAsignacion.Dock = System.Windows.Forms.DockStyle.Fill;
     this.superTabControlPanelAsignacion.Location = new System.Drawing.Point(0, 25);
     this.superTabControlPanelAsignacion.Name = "superTabControlPanelAsignacion";
     superTabLinearGradientColorTable3.Colors = new System.Drawing.Color[] {
     System.Drawing.SystemColors.Control};
     superTabPanelItemColorTable3.Background = superTabLinearGradientColorTable3;
     superTabPanelColorTable2.Default = superTabPanelItemColorTable3;
     this.superTabControlPanelAsignacion.PanelColor = superTabPanelColorTable2;
     this.superTabControlPanelAsignacion.Size = new System.Drawing.Size(298, 218);
     this.superTabControlPanelAsignacion.TabIndex = 1;
     this.superTabControlPanelAsignacion.TabItem = this.superTabItemClase;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.panel1.Controls.Add(this.labelX2);
     this.panel1.Controls.Add(this.textBoxDocente);
     this.panel1.Controls.Add(this.labelGrupo);
     this.panel1.Controls.Add(this.labelAsignatura);
     this.panel1.Controls.Add(this.comboBoxGrupo);
     this.panel1.Controls.Add(this.comboBoxAsignatura);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(298, 218);
     this.panel1.TabIndex = 49;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(3, 88);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(75, 23);
     this.labelX2.TabIndex = 50;
     this.labelX2.Text = "Docente:";
     //
     // textBoxDocente
     //
     this.textBoxDocente.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.textBoxDocente.Border.Class = "TextBoxBorder";
     this.textBoxDocente.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxDocente.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxDocente.Location = new System.Drawing.Point(84, 88);
     this.textBoxDocente.Name = "textBoxDocente";
     this.textBoxDocente.ReadOnly = true;
     this.textBoxDocente.Size = new System.Drawing.Size(193, 22);
     this.textBoxDocente.TabIndex = 49;
     //
     // labelGrupo
     //
     //
     //
     //
     this.labelGrupo.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelGrupo.Location = new System.Drawing.Point(3, 59);
     this.labelGrupo.Name = "labelGrupo";
     this.labelGrupo.Size = new System.Drawing.Size(75, 23);
     this.labelGrupo.TabIndex = 3;
     this.labelGrupo.Text = "Grupo:";
     //
     // labelAsignatura
     //
     //
     //
     //
     this.labelAsignatura.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelAsignatura.Location = new System.Drawing.Point(3, 30);
     this.labelAsignatura.Name = "labelAsignatura";
     this.labelAsignatura.Size = new System.Drawing.Size(75, 23);
     this.labelAsignatura.TabIndex = 1;
     this.labelAsignatura.Text = "Asignatura:";
     //
     // comboBoxGrupo
     //
     this.comboBoxGrupo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxGrupo.DisplayMember = "Text";
     this.comboBoxGrupo.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxGrupo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxGrupo.FormattingEnabled = true;
     this.comboBoxGrupo.ItemHeight = 14;
     this.comboBoxGrupo.Location = new System.Drawing.Point(84, 62);
     this.comboBoxGrupo.Name = "comboBoxGrupo";
     this.comboBoxGrupo.Size = new System.Drawing.Size(193, 20);
     this.comboBoxGrupo.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxGrupo.TabIndex = 2;
     this.superValidator.SetValidator1(this.comboBoxGrupo, this.customValidatorValidateGrupo);
     this.comboBoxGrupo.SelectedIndexChanged += new System.EventHandler(this.comboBoxGrupo_SelectedIndexChanged);
     //
     // comboBoxAsignatura
     //
     this.comboBoxAsignatura.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxAsignatura.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.comboBoxAsignatura.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems;
     this.comboBoxAsignatura.DisplayMember = "Text";
     this.comboBoxAsignatura.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxAsignatura.FormattingEnabled = true;
     this.comboBoxAsignatura.ItemHeight = 14;
     this.comboBoxAsignatura.Location = new System.Drawing.Point(84, 33);
     this.comboBoxAsignatura.Name = "comboBoxAsignatura";
     this.comboBoxAsignatura.Size = new System.Drawing.Size(193, 20);
     this.comboBoxAsignatura.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxAsignatura.TabIndex = 0;
     this.superValidator.SetValidator1(this.comboBoxAsignatura, this.customValidator_Asignatura_Exists);
     this.comboBoxAsignatura.SelectedIndexChanged += new System.EventHandler(this.comboBoxAsignatura_SelectedIndexChanged);
     this.comboBoxAsignatura.Leave += new System.EventHandler(this.comboBoxAsignatura_Leave);
     //
     // superTabItemClase
     //
     this.superTabItemClase.AttachedControl = this.superTabControlPanelAsignacion;
     this.superTabItemClase.GlobalItem = false;
     this.superTabItemClase.Name = "superTabItemClase";
     this.superTabItemClase.Text = "Clase";
     //
     // labelAsignacion
     //
     //
     //
     //
     this.labelAsignacion.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelAsignacion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.labelAsignacion.Location = new System.Drawing.Point(300, 58);
     this.labelAsignacion.Name = "labelAsignacion";
     this.labelAsignacion.Size = new System.Drawing.Size(75, 23);
     this.labelAsignacion.TabIndex = 42;
     this.labelAsignacion.Text = "Asignacion de:";
     //
     // comboBoxAsignacion
     //
     this.comboBoxAsignacion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBoxAsignacion.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAsignacion.FormattingEnabled = true;
     this.comboBoxAsignacion.Items.AddRange(new object[] {
     "Clase",
     "Otros"});
     this.comboBoxAsignacion.Location = new System.Drawing.Point(381, 60);
     this.comboBoxAsignacion.Name = "comboBoxAsignacion";
     this.comboBoxAsignacion.Size = new System.Drawing.Size(196, 21);
     this.comboBoxAsignacion.TabIndex = 43;
     this.comboBoxAsignacion.SelectedIndexChanged += new System.EventHandler(this.comboBoxAsignacion_SelectedIndexChanged);
     //
     // dataGridViewFechas
     //
     this.dataGridViewFechas.AllowUserToAddRows = false;
     this.dataGridViewFechas.AllowUserToResizeColumns = false;
     this.dataGridViewFechas.AllowUserToResizeRows = false;
     this.dataGridViewFechas.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.dataGridViewFechas.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewFechas.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewFechas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
     this.dataGridViewFechas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ColumnAula,
     this.ColumnDia,
     this.ColumnInicio,
     this.ColumnFin,
     this.ColumnDuracion,
     this.ColumnSerie});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewFechas.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewFechas.EnableHeadersVisualStyles = false;
     this.dataGridViewFechas.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewFechas.Location = new System.Drawing.Point(10, 339);
     this.dataGridViewFechas.Name = "dataGridViewFechas";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewFechas.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewFechas.RowHeadersWidth = 10;
     this.dataGridViewFechas.Size = new System.Drawing.Size(567, 150);
     this.dataGridViewFechas.TabIndex = 44;
     //
     // ColumnAula
     //
     this.ColumnAula.DataPropertyName = "AulaReferencia";
     this.ColumnAula.HeaderText = "Aula";
     this.ColumnAula.Name = "ColumnAula";
     this.ColumnAula.ReadOnly = true;
     //
     // ColumnDia
     //
     this.ColumnDia.DataPropertyName = "Dia";
     this.ColumnDia.HeaderText = "Dia";
     this.ColumnDia.Name = "ColumnDia";
     this.ColumnDia.ReadOnly = true;
     this.ColumnDia.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnInicio
     //
     this.ColumnInicio.AllowEmptyState = false;
     //
     //
     //
     this.ColumnInicio.BackgroundStyle.Class = "DataGridViewDateTimeBorder";
     this.ColumnInicio.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnInicio.ButtonDropDown.Visible = true;
     this.ColumnInicio.CustomFormat = "dd/MM/yyyy hh:mm tt";
     this.ColumnInicio.DataPropertyName = "Inicio";
     this.ColumnInicio.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.ColumnInicio.HeaderText = "Inicio";
     this.ColumnInicio.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Left;
     //
     //
     //
     this.ColumnInicio.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ColumnInicio.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnInicio.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     //
     //
     //
     this.ColumnInicio.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnInicio.MonthCalendar.DisplayMonth = new System.DateTime(2012, 10, 1, 0, 0, 0, 0);
     this.ColumnInicio.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ColumnInicio.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ColumnInicio.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnInicio.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ColumnInicio.Name = "ColumnInicio";
     this.ColumnInicio.ShowUpDown = true;
     this.ColumnInicio.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnFin
     //
     //
     //
     //
     this.ColumnFin.BackgroundStyle.Class = "DataGridViewDateTimeBorder";
     this.ColumnFin.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnFin.CustomFormat = "dd/MM/yyyy hh:mm tt";
     this.ColumnFin.DataPropertyName = "Fin";
     this.ColumnFin.Format = DevComponents.Editors.eDateTimePickerFormat.Custom;
     this.ColumnFin.HeaderText = "Fin";
     this.ColumnFin.InputHorizontalAlignment = DevComponents.Editors.eHorizontalAlignment.Left;
     //
     //
     //
     this.ColumnFin.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ColumnFin.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnFin.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     //
     //
     //
     this.ColumnFin.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnFin.MonthCalendar.DisplayMonth = new System.DateTime(2012, 10, 1, 0, 0, 0, 0);
     this.ColumnFin.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.ColumnFin.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.ColumnFin.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.ColumnFin.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.ColumnFin.Name = "ColumnFin";
     this.ColumnFin.ShowUpDown = true;
     this.ColumnFin.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnDuracion
     //
     this.ColumnDuracion.DataPropertyName = "Duracion";
     this.ColumnDuracion.HeaderText = "Duración";
     this.ColumnDuracion.Name = "ColumnDuracion";
     this.ColumnDuracion.ReadOnly = true;
     this.ColumnDuracion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // ColumnSerie
     //
     this.ColumnSerie.DataPropertyName = "SerieDescripcion";
     this.ColumnSerie.HeaderText = "Serie";
     this.ColumnSerie.Name = "ColumnSerie";
     //
     // superValidator
     //
     this.superValidator.ContainerControl = this;
     this.superValidator.ErrorProvider = this.errorProvider;
     this.superValidator.Highlighter = this.highlighter;
     this.superValidator.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // customValidatorDiasSeleccionados
     //
     this.customValidatorDiasSeleccionados.ErrorMessage = "Almenos un dia debe de estar seleccionado";
     this.customValidatorDiasSeleccionados.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.customValidatorDiasSeleccionados.ValidateValue += new DevComponents.DotNetBar.Validator.ValidateValueEventHandler(this.customValidatorDiasSeleccionados_ValidateValue);
     //
     // compareValidatorDateTimeInputFin
     //
     this.compareValidatorDateTimeInputFin.ControlToCompare = this.dateTimeInputInicio;
     this.compareValidatorDateTimeInputFin.ControlToCompareValuePropertyName = "Value";
     this.compareValidatorDateTimeInputFin.ErrorMessage = "Rango de fecha inválido";
     this.compareValidatorDateTimeInputFin.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.compareValidatorDateTimeInputFin.Operator = DevComponents.DotNetBar.Validator.eValidationCompareOperator.GreaterThan;
     //
     // customValidatorDateTimeInputFinRepeticiones
     //
     this.customValidatorDateTimeInputFinRepeticiones.ErrorMessage = "La fecha en que finaliza la repetición debe ser mayor a la de inicio";
     this.customValidatorDateTimeInputFinRepeticiones.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.customValidatorDateTimeInputFinRepeticiones.ValidateValue += new DevComponents.DotNetBar.Validator.ValidateValueEventHandler(this.customValidatorDateValid_ValidateValue);
     //
     // customValidator_Cliente_Exists
     //
     this.customValidator_Cliente_Exists.ErrorMessage = "Cliente invalido, para continuar agruegue los datos del cliente.";
     this.customValidator_Cliente_Exists.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.customValidator_Cliente_Exists.ValidateValue += new DevComponents.DotNetBar.Validator.ValidateValueEventHandler(this.customValidator_Cliente_Valido_ValidateValue);
     //
     // customValidatorValidateGrupo
     //
     this.customValidatorValidateGrupo.ErrorMessage = "Es requerido seleccionar un grupo";
     this.customValidatorValidateGrupo.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // customValidator_Asignatura_Exists
     //
     this.customValidator_Asignatura_Exists.ErrorMessage = "Asignatura Invalida.";
     this.customValidator_Asignatura_Exists.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.customValidator_Asignatura_Exists.ValidateValue += new DevComponents.DotNetBar.Validator.ValidateValueEventHandler(this.customValidator_Asignatura_Exists_ValidateValue);
     //
     // errorProvider
     //
     this.errorProvider.ContainerControl = this;
     this.errorProvider.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider.Icon")));
     //
     // highlighter
     //
     this.highlighter.ContainerControl = this;
     this.highlighter.LicenseKey = "F962CEC7-CD8F-4911-A9E9-CAB39962FC1F";
     //
     // comboBoxAula
     //
     this.comboBoxAula.DisplayMember = "Text";
     this.comboBoxAula.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxAula.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxAula.FormattingEnabled = true;
     this.comboBoxAula.ItemHeight = 14;
     this.comboBoxAula.Location = new System.Drawing.Point(46, 6);
     this.comboBoxAula.Name = "comboBoxAula";
     this.comboBoxAula.Size = new System.Drawing.Size(121, 20);
     this.comboBoxAula.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxAula.TabIndex = 45;
     //
     // labelAula
     //
     //
     //
     //
     this.labelAula.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelAula.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.labelAula.Location = new System.Drawing.Point(10, 3);
     this.labelAula.Name = "labelAula";
     this.labelAula.Size = new System.Drawing.Size(30, 23);
     this.labelAula.TabIndex = 46;
     this.labelAula.Text = "Aula:";
     //
     // checkBoxAgruparSerie
     //
     //
     //
     //
     this.checkBoxAgruparSerie.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxAgruparSerie.Location = new System.Drawing.Point(300, 6);
     this.checkBoxAgruparSerie.Name = "checkBoxAgruparSerie";
     this.checkBoxAgruparSerie.Size = new System.Drawing.Size(116, 23);
     this.checkBoxAgruparSerie.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxAgruparSerie.TabIndex = 47;
     this.checkBoxAgruparSerie.Text = "Agrupar en serie";
     this.checkBoxAgruparSerie.CheckedChanged += new System.EventHandler(this.checkBoxAgruparSerie_CheckedChanged);
     //
     // textBoxTituloSerie
     //
     this.textBoxTituloSerie.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     //
     //
     //
     this.textBoxTituloSerie.Border.Class = "TextBoxBorder";
     this.textBoxTituloSerie.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxTituloSerie.Enabled = false;
     this.textBoxTituloSerie.Location = new System.Drawing.Point(300, 32);
     this.textBoxTituloSerie.Name = "textBoxTituloSerie";
     this.textBoxTituloSerie.Size = new System.Drawing.Size(277, 20);
     this.textBoxTituloSerie.TabIndex = 48;
     //
     // AsignacionMultipleControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.Controls.Add(this.textBoxTituloSerie);
     this.Controls.Add(this.checkBoxAgruparSerie);
     this.Controls.Add(this.labelAula);
     this.Controls.Add(this.comboBoxAula);
     this.Controls.Add(this.dataGridViewFechas);
     this.Controls.Add(this.comboBoxAsignacion);
     this.Controls.Add(this.labelAsignacion);
     this.Controls.Add(this.superTabControlAsignacion);
     this.Controls.Add(this.labelSesiones);
     this.Controls.Add(this.dateTimeInputFinRepeticiones);
     this.Controls.Add(this.integerInputRepeticiones);
     this.Controls.Add(this.radioButtonFecha);
     this.Controls.Add(this.radioButtonRepeticiones);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.buttonLimpiar);
     this.Controls.Add(this.labelTiempo);
     this.Controls.Add(this.buttonAdd);
     this.Controls.Add(this.checkBoxDomingo);
     this.Controls.Add(this.checkBoxSabado);
     this.Controls.Add(this.checkBoxViernes);
     this.Controls.Add(this.checkBoxJueves);
     this.Controls.Add(this.checkBoxMiercoles);
     this.Controls.Add(this.checkBoxMartes);
     this.Controls.Add(this.checkBoxLunes);
     this.Controls.Add(this.checkBoxRepetir);
     this.Controls.Add(this.dateTimeInputFin);
     this.Controls.Add(this.labelFin);
     this.Controls.Add(this.dateTimeInputInicio);
     this.Controls.Add(this.labelInicio);
     this.Name = "AsignacionMultipleControl";
     this.Size = new System.Drawing.Size(602, 506);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputFin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputInicio)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.integerInputRepeticiones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInputFinRepeticiones)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.superTabControlAsignacion)).EndInit();
     this.superTabControlAsignacion.ResumeLayout(false);
     this.superTabControlPanel2.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.superTabControlPanelAsignacion.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewFechas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #44
0
        private void InitializeComponent()
        {
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(Form_AddSpecialItem));

            _Button_Cancel                         = new DevComponents.DotNetBar.ButtonX();
            _Button_Cancel.Click                  += new EventHandler(Button_Okay_Click);
            _Button_Okay                           = new DevComponents.DotNetBar.ButtonX();
            _Button_Okay.Click                    += new EventHandler(Button_Okay_Click);
            _GroupBox_Type                         = new GroupBox();
            _CheckBoxX_Mist                        = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_Mist.CheckedChangedEx      += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_ToxicHaze                   = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_ToxicHaze.CheckedChangedEx += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_Water                       = new DevComponents.DotNetBar.Controls.CheckBoxX();
            _CheckBoxX_Water.CheckedChangedEx     += new DevComponents.DotNetBar.Controls.CheckBoxXChangeEventHandler(CheckBoxX_SpecialBoxType_CheckedChanged);
            _CheckBoxX_Water.CheckedChanged       += new EventHandler(CheckBoxX_Water_CheckedChanged);
            _GroupBox_Box                          = new GroupBox();
            _LabelX3            = new DevComponents.DotNetBar.LabelX();
            _IntegerInput_Alpha = new DevComponents.Editors.IntegerInput();
            _IntegerInput_Alpha.ValueChanged += new EventHandler(IntegerInput1_ValueChanged);
            _LabelX2            = new DevComponents.DotNetBar.LabelX();
            _ComboBox_WaterType = new DevComponents.DotNetBar.Controls.ComboBoxEx();
            _ComboBox_WaterType.SelectedIndexChanged += new EventHandler(ComboBox_WaterType_SelectedIndexChanged);
            _LabelX1                          = new DevComponents.DotNetBar.LabelX();
            _Button_SetUpHeight               = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpHeight.Click        += new EventHandler(Button_SetUpHeight_Click);
            _LabelX_Height                    = new DevComponents.DotNetBar.LabelX();
            _IntegerInput_Scale               = new DevComponents.Editors.IntegerInput();
            _IntegerInput_Scale.ValueChanged += new EventHandler(IntegerInput_Scale_ValueChanged);
            _Button_SetUpPos2                 = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpPos2.Click          += new EventHandler(Button_SetUpPos1_Click);
            _Button_SetUpPos1                 = new DevComponents.DotNetBar.ButtonX();
            _Button_SetUpPos1.Click          += new EventHandler(Button_SetUpPos1_Click);
            _LabelX_Pos2                      = new DevComponents.DotNetBar.LabelX();
            _LabelX_Pos1                      = new DevComponents.DotNetBar.LabelX();
            _LabelX59                         = new DevComponents.DotNetBar.LabelX();
            _Panel1 = new Panel();
            _GroupBox_Type.SuspendLayout();
            _GroupBox_Box.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Alpha).BeginInit();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Scale).BeginInit();
            _Panel1.SuspendLayout();
            SuspendLayout();
            //
            // Button_Cancel
            //
            _Button_Cancel.AccessibleRole   = AccessibleRole.PushButton;
            _Button_Cancel.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Cancel.DialogResult     = DialogResult.Cancel;
            _Button_Cancel.FocusCuesEnabled = false;
            _Button_Cancel.Location         = new Point(65, 133);
            _Button_Cancel.Name             = "Button_Cancel";
            _Button_Cancel.Size             = new Size(56, 23);
            _Button_Cancel.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_Cancel.TabIndex         = 103;
            _Button_Cancel.Text             = "Cancel";
            //
            // Button_Okay
            //
            _Button_Okay.AccessibleRole   = AccessibleRole.PushButton;
            _Button_Okay.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_Okay.DialogResult     = DialogResult.OK;
            _Button_Okay.FocusCuesEnabled = false;
            _Button_Okay.Location         = new Point(3, 133);
            _Button_Okay.Name             = "Button_Okay";
            _Button_Okay.Size             = new Size(56, 23);
            _Button_Okay.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_Okay.TabIndex         = 102;
            _Button_Okay.Text             = "Okay";
            //
            // GroupBox_Type
            //
            _GroupBox_Type.Controls.Add(_CheckBoxX_Mist);
            _GroupBox_Type.Controls.Add(_CheckBoxX_ToxicHaze);
            _GroupBox_Type.Controls.Add(_CheckBoxX_Water);
            _GroupBox_Type.Location = new Point(3, 3);
            _GroupBox_Type.Name     = "GroupBox_Type";
            _GroupBox_Type.Size     = new Size(118, 124);
            _GroupBox_Type.TabIndex = 104;
            _GroupBox_Type.TabStop  = false;
            _GroupBox_Type.Text     = "Type";
            //
            // CheckBoxX_Mist
            //
            //
            //
            //
            _CheckBoxX_Mist.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_Mist.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_Mist.FocusCuesEnabled = false;
            _CheckBoxX_Mist.Location         = new Point(6, 71);
            _CheckBoxX_Mist.Name             = "CheckBoxX_Mist";
            _CheckBoxX_Mist.Size             = new Size(106, 20);
            _CheckBoxX_Mist.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_Mist.TabIndex         = 2;
            _CheckBoxX_Mist.Text             = "Mist";
            //
            // CheckBoxX_ToxicHaze
            //
            //
            //
            //
            _CheckBoxX_ToxicHaze.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_ToxicHaze.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_ToxicHaze.FocusCuesEnabled = false;
            _CheckBoxX_ToxicHaze.Location         = new Point(6, 45);
            _CheckBoxX_ToxicHaze.Name             = "CheckBoxX_ToxicHaze";
            _CheckBoxX_ToxicHaze.Size             = new Size(106, 20);
            _CheckBoxX_ToxicHaze.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_ToxicHaze.TabIndex         = 1;
            _CheckBoxX_ToxicHaze.Text             = "Toxic Haze";
            //
            // CheckBoxX_Water
            //
            //
            //
            //
            _CheckBoxX_Water.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _CheckBoxX_Water.CheckBoxStyle    = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
            _CheckBoxX_Water.FocusCuesEnabled = false;
            _CheckBoxX_Water.Location         = new Point(6, 19);
            _CheckBoxX_Water.Name             = "CheckBoxX_Water";
            _CheckBoxX_Water.Size             = new Size(106, 20);
            _CheckBoxX_Water.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _CheckBoxX_Water.TabIndex         = 0;
            _CheckBoxX_Water.Text             = "Water";
            //
            // GroupBox_Box
            //
            _GroupBox_Box.Controls.Add(_LabelX3);
            _GroupBox_Box.Controls.Add(_IntegerInput_Alpha);
            _GroupBox_Box.Controls.Add(_LabelX2);
            _GroupBox_Box.Controls.Add(_ComboBox_WaterType);
            _GroupBox_Box.Controls.Add(_LabelX1);
            _GroupBox_Box.Controls.Add(_Button_SetUpHeight);
            _GroupBox_Box.Controls.Add(_LabelX_Height);
            _GroupBox_Box.Controls.Add(_IntegerInput_Scale);
            _GroupBox_Box.Controls.Add(_Button_SetUpPos2);
            _GroupBox_Box.Controls.Add(_Button_SetUpPos1);
            _GroupBox_Box.Controls.Add(_LabelX_Pos2);
            _GroupBox_Box.Controls.Add(_LabelX_Pos1);
            _GroupBox_Box.Controls.Add(_LabelX59);
            _GroupBox_Box.Location = new Point(127, 3);
            _GroupBox_Box.Name     = "GroupBox_Box";
            _GroupBox_Box.Size     = new Size(258, 153);
            _GroupBox_Box.TabIndex = 105;
            _GroupBox_Box.TabStop  = false;
            _GroupBox_Box.Text     = "Box Settings";
            _GroupBox_Box.Visible  = false;
            //
            // LabelX3
            //
            //
            //
            //
            _LabelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX3.Location = new Point(123, 121);
            _LabelX3.Name     = "LabelX3";
            _LabelX3.Size     = new Size(15, 23);
            _LabelX3.TabIndex = 116;
            _LabelX3.Text     = "%";
            //
            // IntegerInput_Alpha
            //
            //
            //
            //
            _IntegerInput_Alpha.BackgroundStyle.Class      = "DateTimeInputBackground";
            _IntegerInput_Alpha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _IntegerInput_Alpha.ButtonFreeText.Shortcut    = DevComponents.DotNetBar.eShortcut.F2;
            _IntegerInput_Alpha.Location = new Point(87, 123);
            _IntegerInput_Alpha.MaxValue = 100;
            _IntegerInput_Alpha.MinValue = 0;
            _IntegerInput_Alpha.Name     = "IntegerInput_Alpha";
            _IntegerInput_Alpha.Size     = new Size(30, 20);
            _IntegerInput_Alpha.TabIndex = 115;
            _IntegerInput_Alpha.Value    = 30;
            //
            // LabelX2
            //
            //
            //
            //
            _LabelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX2.Location = new Point(6, 123);
            _LabelX2.Name     = "LabelX2";
            _LabelX2.Size     = new Size(75, 20);
            _LabelX2.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX2.TabIndex = 114;
            _LabelX2.Text     = "Transparence:";
            //
            // ComboBox_WaterType
            //
            _ComboBox_WaterType.DrawMode          = DrawMode.OwnerDrawFixed;
            _ComboBox_WaterType.DropDownStyle     = ComboBoxStyle.DropDownList;
            _ComboBox_WaterType.ForeColor         = Color.Black;
            _ComboBox_WaterType.FormattingEnabled = true;
            _ComboBox_WaterType.ItemHeight        = 15;
            _ComboBox_WaterType.Items.AddRange(new object[] { "Default Water", "Invisible Water", "JRB Water", "Green Water", "Lava Water" });
            _ComboBox_WaterType.Location = new Point(147, 97);
            _ComboBox_WaterType.Name     = "ComboBox_WaterType";
            _ComboBox_WaterType.Size     = new Size(105, 21);
            _ComboBox_WaterType.Style    = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _ComboBox_WaterType.TabIndex = 111;
            //
            // LabelX1
            //
            //
            //
            //
            _LabelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX1.Location = new Point(6, 97);
            _LabelX1.Name     = "LabelX1";
            _LabelX1.Size     = new Size(135, 20);
            _LabelX1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX1.TabIndex = 110;
            _LabelX1.Text     = "Water Type:";
            //
            // Button_SetUpHeight
            //
            _Button_SetUpHeight.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpHeight.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpHeight.FocusCuesEnabled = false;
            _Button_SetUpHeight.Location         = new Point(202, 70);
            _Button_SetUpHeight.Name             = "Button_SetUpHeight";
            _Button_SetUpHeight.Size             = new Size(50, 22);
            _Button_SetUpHeight.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpHeight.TabIndex         = 109;
            _Button_SetUpHeight.Text             = "Set up";
            //
            // LabelX_Height
            //
            //
            //
            //
            _LabelX_Height.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Height.Location = new Point(120, 71);
            _LabelX_Height.Name     = "LabelX_Height";
            _LabelX_Height.Size     = new Size(76, 20);
            _LabelX_Height.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Height.TabIndex = 108;
            _LabelX_Height.Text     = "Height: 0";
            //
            // IntegerInput_Scale
            //
            //
            //
            //
            _IntegerInput_Scale.BackgroundStyle.Class      = "DateTimeInputBackground";
            _IntegerInput_Scale.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _IntegerInput_Scale.ButtonFreeText.Shortcut    = DevComponents.DotNetBar.eShortcut.F2;
            _IntegerInput_Scale.Location   = new Point(44, 71);
            _IntegerInput_Scale.MaxValue   = 8192;
            _IntegerInput_Scale.MinValue   = -8192;
            _IntegerInput_Scale.Name       = "IntegerInput_Scale";
            _IntegerInput_Scale.ShowUpDown = true;
            _IntegerInput_Scale.Size       = new Size(53, 20);
            _IntegerInput_Scale.TabIndex   = 103;
            //
            // Button_SetUpPos2
            //
            _Button_SetUpPos2.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpPos2.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpPos2.FocusCuesEnabled = false;
            _Button_SetUpPos2.Location         = new Point(202, 44);
            _Button_SetUpPos2.Name             = "Button_SetUpPos2";
            _Button_SetUpPos2.Size             = new Size(50, 22);
            _Button_SetUpPos2.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpPos2.TabIndex         = 102;
            _Button_SetUpPos2.Text             = "Set up";
            //
            // Button_SetUpPos1
            //
            _Button_SetUpPos1.AccessibleRole   = AccessibleRole.PushButton;
            _Button_SetUpPos1.ColorTable       = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
            _Button_SetUpPos1.FocusCuesEnabled = false;
            _Button_SetUpPos1.Location         = new Point(202, 18);
            _Button_SetUpPos1.Name             = "Button_SetUpPos1";
            _Button_SetUpPos1.Size             = new Size(50, 22);
            _Button_SetUpPos1.Style            = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
            _Button_SetUpPos1.TabIndex         = 101;
            _Button_SetUpPos1.Text             = "Set up";
            //
            // LabelX_Pos2
            //
            //
            //
            //
            _LabelX_Pos2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Pos2.Location = new Point(6, 45);
            _LabelX_Pos2.Name     = "LabelX_Pos2";
            _LabelX_Pos2.Size     = new Size(190, 20);
            _LabelX_Pos2.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Pos2.TabIndex = 100;
            _LabelX_Pos2.Text     = "Edge 2: 0, 0";
            //
            // LabelX_Pos1
            //
            //
            //
            //
            _LabelX_Pos1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX_Pos1.Location = new Point(6, 19);
            _LabelX_Pos1.Name     = "LabelX_Pos1";
            _LabelX_Pos1.Size     = new Size(190, 20);
            _LabelX_Pos1.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX_Pos1.TabIndex = 98;
            _LabelX_Pos1.Text     = "Edge 1: 0, 0";
            //
            // LabelX59
            //
            //
            //
            //
            _LabelX59.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
            _LabelX59.Location = new Point(6, 71);
            _LabelX59.Name     = "LabelX59";
            _LabelX59.Size     = new Size(32, 20);
            _LabelX59.Style    = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
            _LabelX59.TabIndex = 95;
            _LabelX59.Text     = "Scale:";
            //
            // Panel1
            //
            _Panel1.BackColor = Color.Transparent;
            _Panel1.Controls.Add(_GroupBox_Type);
            _Panel1.Controls.Add(_GroupBox_Box);
            _Panel1.Controls.Add(_Button_Cancel);
            _Panel1.Controls.Add(_Button_Okay);
            _Panel1.Dock     = DockStyle.Fill;
            _Panel1.Location = new Point(0, 0);
            _Panel1.Name     = "Panel1";
            _Panel1.Size     = new Size(389, 159);
            _Panel1.TabIndex = 106;
            //
            // Form_AddSpecialItem
            //
            AutoScaleDimensions = new SizeF(6.0F, 13.0F);
            AutoScaleMode       = AutoScaleMode.Font;
            ClientSize          = new Size(389, 159);
            Controls.Add(_Panel1);
            FormBorderStyle    = FormBorderStyle.FixedToolWindow;
            Icon               = (Icon)resources.GetObject("$this.Icon");
            MaximizeBox        = false;
            MinimizeBox        = false;
            Name               = "Form_AddSpecialItem";
            ShowIcon           = false;
            StartPosition      = FormStartPosition.CenterScreen;
            Text               = "Add Special Item";
            TopLeftCornerSize  = 0;
            TopRightCornerSize = 0;
            _GroupBox_Type.ResumeLayout(false);
            _GroupBox_Box.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Alpha).EndInit();
            ((System.ComponentModel.ISupportInitialize)_IntegerInput_Scale).EndInit();
            _Panel1.ResumeLayout(false);
            ResumeLayout(false);
        }
コード例 #45
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.dgAbsence = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.chCatalog = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.chAbsenceTemplate = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.btnSave = new DevComponents.DotNetBar.ButtonX();
     this.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.lblLost = new DevComponents.DotNetBar.LabelX();
     ((System.ComponentModel.ISupportInitialize)(this.dgAbsence)).BeginInit();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(12, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(141, 21);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "請選擇您要列印的假別";
     //
     // dgAbsence
     //
     this.dgAbsence.AllowUserToAddRows = false;
     this.dgAbsence.AllowUserToDeleteRows = false;
     this.dgAbsence.AllowUserToResizeRows = false;
     this.dgAbsence.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.dgAbsence.BackgroundColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgAbsence.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgAbsence.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgAbsence.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.chCatalog,
     this.chAbsenceTemplate});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("微軟正黑體", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgAbsence.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgAbsence.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dgAbsence.Location = new System.Drawing.Point(12, 39);
     this.dgAbsence.Name = "dgAbsence";
     this.dgAbsence.RowHeadersVisible = false;
     this.dgAbsence.RowHeadersWidth = 35;
     this.dgAbsence.RowTemplate.Height = 24;
     this.dgAbsence.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dgAbsence.Size = new System.Drawing.Size(561, 128);
     this.dgAbsence.TabIndex = 1;
     //
     // chCatalog
     //
     this.chCatalog.HeaderText = "節次分類";
     this.chCatalog.Name = "chCatalog";
     this.chCatalog.ReadOnly = true;
     this.chCatalog.Width = 75;
     //
     // chAbsenceTemplate
     //
     this.chAbsenceTemplate.HeaderText = "ColumnName";
     this.chAbsenceTemplate.Name = "chAbsenceTemplate";
     this.chAbsenceTemplate.Width = 60;
     //
     // btnSave
     //
     this.btnSave.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnSave.BackColor = System.Drawing.Color.Transparent;
     this.btnSave.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSave.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnSave.Location = new System.Drawing.Point(498, 173);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 2;
     this.btnSave.Text = "儲存設定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // chkSelectAll
     //
     this.chkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Location = new System.Drawing.Point(12, 47);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // lblLost
     //
     this.lblLost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.lblLost.AutoSize = true;
     this.lblLost.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblLost.BackgroundStyle.Class = "";
     this.lblLost.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblLost.ForeColor = System.Drawing.Color.Red;
     this.lblLost.Location = new System.Drawing.Point(136, 174);
     this.lblLost.Name = "lblLost";
     this.lblLost.Size = new System.Drawing.Size(356, 21);
     this.lblLost.TabIndex = 4;
     this.lblLost.Text = "※ 部份資料並未顯示在畫面上,儲存後可能會遺失該資料。";
     this.lblLost.Visible = false;
     //
     // AbsenceTypeForm
     //
     this.AcceptButton = this.btnSave;
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.ClientSize = new System.Drawing.Size(585, 206);
     this.Controls.Add(this.lblLost);
     this.Controls.Add(this.chkSelectAll);
     this.Controls.Add(this.btnSave);
     this.Controls.Add(this.dgAbsence);
     this.Controls.Add(this.labelX1);
     this.Name = "AbsenceTypeForm";
     this.Text = "假別設定";
     this.Load += new System.EventHandler(this.AbsenceTypeForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgAbsence)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #46
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(frmPhieuThue));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.txt_MaCTPhieuThue = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.txt_TenKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.txt_TenKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKhachHangDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.chk_getId = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chk_MaPhieuThue = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPT = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.chk_MaKH = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chk_MaCTPT = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btDelCT = new DevComponents.DotNetBar.ButtonX();
     this.btEditCT = new DevComponents.DotNetBar.ButtonX();
     this.btAddCT = new DevComponents.DotNetBar.ButtonX();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.bindingNavigatorCTPhieuThue = new System.Windows.Forms.BindingNavigator(this.components);
     this.bindingNavigatorAddNewItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorCountItem = new System.Windows.Forms.ToolStripLabel();
     this.bindingNavigatorDeleteItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveFirstItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMovePreviousItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorPositionItem = new System.Windows.Forms.ToolStripTextBox();
     this.bindingNavigatorSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.bindingNavigatorMoveNextItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorMoveLastItem = new System.Windows.Forms.ToolStripButton();
     this.bindingNavigatorSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.dataGridViewCTPhieuThue = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_CTPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.TenKhachHang = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaLoaiKH = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.CMND = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.DiaChi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaCTPT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhieuThue_CT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_MaKH = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaLoaiPhong = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.gb_KHDDPT = new System.Windows.Forms.GroupBox();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.txt_MaKHDD = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_TenKHDaiDien = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btExit = new DevComponents.DotNetBar.ButtonX();
     this.chk_Id_PT = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPhieuThue = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btDelete = new DevComponents.DotNetBar.ButtonX();
     this.groupBoxGridPhieuThue = new System.Windows.Forms.GroupBox();
     this.bindingNavigatorPhieuThue = new System.Windows.Forms.BindingNavigator(this.components);
     this.toolStripButton2 = new System.Windows.Forms.ToolStripButton();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripButton3 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton4 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton5 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripTextBox1 = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton6 = new System.Windows.Forms.ToolStripButton();
     this.toolStripButton7 = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButton8 = new System.Windows.Forms.ToolStripButton();
     this.dataGridViewPhieuThue = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.STT_PT = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhieuThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgayThue = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.NgayTra = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.MaPhong = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ThanhToan = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.KhachHangDaiDien = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.txt_NgayTra = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.btEdit = new DevComponents.DotNetBar.ButtonX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.btAdd = new DevComponents.DotNetBar.ButtonX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.chk_datesystem = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.txt_MaPhong = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.txt_NgayThue = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.bt_SendPhong = new DevComponents.DotNetBar.ButtonX();
     this.bt_SendKH = new DevComponents.DotNetBar.ButtonX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.urlTraCuuPhong2 = new _042082.UserControls.urlTraCuuPhong();
     this.urlKhachHang2 = new _042082.UserControls.urlKhachHang();
     this.bt_getMaKHDD = new DevComponents.DotNetBar.ButtonX();
     this.urlTraCuuPhong1 = new _042082.UserControls.urlTraCuuPhong();
     this.groupBox2.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorCTPhieuThue)).BeginInit();
     this.bindingNavigatorCTPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCTPhieuThue)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.gb_KHDDPT.SuspendLayout();
     this.groupBoxGridPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorPhieuThue)).BeginInit();
     this.bindingNavigatorPhieuThue.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPhieuThue)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayTra)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayThue)).BeginInit();
     this.groupBox4.SuspendLayout();
     this.SuspendLayout();
     //
     // txt_MaCTPhieuThue
     //
     //
     //
     //
     this.txt_MaCTPhieuThue.Border.Class = "TextBoxBorder";
     this.txt_MaCTPhieuThue.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaCTPhieuThue.Enabled = false;
     this.txt_MaCTPhieuThue.Location = new System.Drawing.Point(107, 21);
     this.txt_MaCTPhieuThue.Name = "txt_MaCTPhieuThue";
     this.txt_MaCTPhieuThue.Size = new System.Drawing.Size(84, 20);
     this.txt_MaCTPhieuThue.TabIndex = 25;
     //
     // labelX10
     //
     //
     //
     //
     this.labelX10.BackgroundStyle.Class = "";
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Location = new System.Drawing.Point(6, 19);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(95, 22);
     this.labelX10.TabIndex = 26;
     this.labelX10.Text = "Mã CT Phiếu Thuê";
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(428, 1);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(260, 23);
     this.labelX1.TabIndex = 24;
     this.labelX1.Text = "LẬP PHIẾU THUÊ PHÒNG";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.Class = "";
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(205, 50);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(56, 20);
     this.labelX5.TabIndex = 21;
     this.labelX5.Text = "Loại Phòng";
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(14, 50);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(56, 22);
     this.labelX4.TabIndex = 16;
     this.labelX4.Text = "Mã Phòng";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.txt_TenKH);
     this.groupBox2.Controls.Add(this.labelX14);
     this.groupBox2.Controls.Add(this.groupBox6);
     this.groupBox2.Controls.Add(this.chk_getId);
     this.groupBox2.Controls.Add(this.chk_MaPhieuThue);
     this.groupBox2.Controls.Add(this.txt_MaPT);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.chk_MaKH);
     this.groupBox2.Controls.Add(this.chk_MaCTPT);
     this.groupBox2.Controls.Add(this.btDelCT);
     this.groupBox2.Controls.Add(this.btEditCT);
     this.groupBox2.Controls.Add(this.btAddCT);
     this.groupBox2.Controls.Add(this.groupBox5);
     this.groupBox2.Controls.Add(this.txt_MaCTPhieuThue);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.txt_MaKH);
     this.groupBox2.Controls.Add(this.labelX6);
     this.groupBox2.Location = new System.Drawing.Point(3, 362);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(508, 334);
     this.groupBox2.TabIndex = 22;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Chi tiết phiếu thuê";
     //
     // txt_TenKH
     //
     //
     //
     //
     this.txt_TenKH.Border.Class = "TextBoxBorder";
     this.txt_TenKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKH.Enabled = false;
     this.txt_TenKH.Location = new System.Drawing.Point(292, 48);
     this.txt_TenKH.Name = "txt_TenKH";
     this.txt_TenKH.Size = new System.Drawing.Size(155, 20);
     this.txt_TenKH.TabIndex = 45;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.Class = "";
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Location = new System.Drawing.Point(245, 47);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(46, 22);
     this.labelX14.TabIndex = 44;
     this.labelX14.Text = "Tên KH";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.txt_TenKHDD);
     this.groupBox6.Controls.Add(this.labelX9);
     this.groupBox6.Controls.Add(this.txt_MaKhachHangDD);
     this.groupBox6.Controls.Add(this.labelX8);
     this.groupBox6.Location = new System.Drawing.Point(494, 7);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(10, 74);
     this.groupBox6.TabIndex = 43;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "Khách hàng đại diện";
     this.groupBox6.Visible = false;
     //
     // txt_TenKHDD
     //
     //
     //
     //
     this.txt_TenKHDD.Border.Class = "TextBoxBorder";
     this.txt_TenKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKHDD.Enabled = false;
     this.txt_TenKHDD.Location = new System.Drawing.Point(58, 46);
     this.txt_TenKHDD.Name = "txt_TenKHDD";
     this.txt_TenKHDD.Size = new System.Drawing.Size(155, 20);
     this.txt_TenKHDD.TabIndex = 40;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.Class = "";
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Location = new System.Drawing.Point(12, 47);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(46, 22);
     this.labelX9.TabIndex = 39;
     this.labelX9.Text = "Tên KH";
     //
     // txt_MaKhachHangDD
     //
     //
     //
     //
     this.txt_MaKhachHangDD.Border.Class = "TextBoxBorder";
     this.txt_MaKhachHangDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKhachHangDD.Enabled = false;
     this.txt_MaKhachHangDD.Location = new System.Drawing.Point(58, 18);
     this.txt_MaKhachHangDD.Name = "txt_MaKhachHangDD";
     this.txt_MaKhachHangDD.Size = new System.Drawing.Size(84, 20);
     this.txt_MaKhachHangDD.TabIndex = 38;
     this.txt_MaKhachHangDD.TextChanged += new System.EventHandler(this.txt_MaKhachHangDD_TextChanged_1);
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.Class = "";
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Location = new System.Drawing.Point(12, 18);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(40, 22);
     this.labelX8.TabIndex = 37;
     this.labelX8.Text = "Mã KH";
     //
     // chk_getId
     //
     //
     //
     //
     this.chk_getId.BackgroundStyle.Class = "";
     this.chk_getId.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_getId.Location = new System.Drawing.Point(197, 21);
     this.chk_getId.Name = "chk_getId";
     this.chk_getId.Size = new System.Drawing.Size(104, 20);
     this.chk_getId.TabIndex = 42;
     this.chk_getId.Text = "Lấy mã tự động";
     this.chk_getId.CheckedChanged += new System.EventHandler(this.chk_getId_CheckedChanged);
     //
     // chk_MaPhieuThue
     //
     //
     //
     //
     this.chk_MaPhieuThue.BackgroundStyle.Class = "";
     this.chk_MaPhieuThue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaPhieuThue.Location = new System.Drawing.Point(197, 75);
     this.chk_MaPhieuThue.Name = "chk_MaPhieuThue";
     this.chk_MaPhieuThue.Size = new System.Drawing.Size(95, 23);
     this.chk_MaPhieuThue.TabIndex = 41;
     this.chk_MaPhieuThue.Text = "Lấy Mã Phiếu Thuê";
     this.chk_MaPhieuThue.CheckedChanged += new System.EventHandler(this.chk_MaPhieuThue_CheckedChanged);
     //
     // txt_MaPT
     //
     //
     //
     //
     this.txt_MaPT.Border.Class = "TextBoxBorder";
     this.txt_MaPT.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPT.Enabled = false;
     this.txt_MaPT.Location = new System.Drawing.Point(107, 77);
     this.txt_MaPT.Name = "txt_MaPT";
     this.txt_MaPT.Size = new System.Drawing.Size(84, 20);
     this.txt_MaPT.TabIndex = 39;
     //
     // labelX11
     //
     //
     //
     //
     this.labelX11.BackgroundStyle.Class = "";
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Location = new System.Drawing.Point(6, 75);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(95, 22);
     this.labelX11.TabIndex = 40;
     this.labelX11.Text = "Mã Phiếu Thuê";
     //
     // chk_MaKH
     //
     //
     //
     //
     this.chk_MaKH.BackgroundStyle.Class = "";
     this.chk_MaKH.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaKH.Location = new System.Drawing.Point(197, 46);
     this.chk_MaKH.Name = "chk_MaKH";
     this.chk_MaKH.Size = new System.Drawing.Size(42, 23);
     this.chk_MaKH.TabIndex = 38;
     this.chk_MaKH.Text = "Sửa";
     this.chk_MaKH.CheckedChanged += new System.EventHandler(this.chk_MaKH_CheckedChanged);
     //
     // chk_MaCTPT
     //
     //
     //
     //
     this.chk_MaCTPT.BackgroundStyle.Class = "";
     this.chk_MaCTPT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_MaCTPT.Location = new System.Drawing.Point(197, 19);
     this.chk_MaCTPT.Name = "chk_MaCTPT";
     this.chk_MaCTPT.Size = new System.Drawing.Size(42, 23);
     this.chk_MaCTPT.TabIndex = 37;
     this.chk_MaCTPT.Text = "Sửa";
     this.chk_MaCTPT.Visible = false;
     this.chk_MaCTPT.CheckedChanged += new System.EventHandler(this.chk_MaCTPT_CheckedChanged);
     //
     // btDelCT
     //
     this.btDelCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelCT.Location = new System.Drawing.Point(226, 109);
     this.btDelCT.Name = "btDelCT";
     this.btDelCT.Size = new System.Drawing.Size(75, 23);
     this.btDelCT.TabIndex = 32;
     this.btDelCT.Text = "Xóa";
     this.btDelCT.Click += new System.EventHandler(this.btDelCT_Click);
     //
     // btEditCT
     //
     this.btEditCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btEditCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btEditCT.Location = new System.Drawing.Point(407, 109);
     this.btEditCT.Name = "btEditCT";
     this.btEditCT.Size = new System.Drawing.Size(75, 23);
     this.btEditCT.TabIndex = 33;
     this.btEditCT.Text = "Sửa";
     this.btEditCT.Click += new System.EventHandler(this.btEditCT_Click);
     //
     // btAddCT
     //
     this.btAddCT.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAddCT.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAddCT.Location = new System.Drawing.Point(26, 109);
     this.btAddCT.Name = "btAddCT";
     this.btAddCT.Size = new System.Drawing.Size(75, 23);
     this.btAddCT.TabIndex = 31;
     this.btAddCT.Text = "Thêm";
     this.btAddCT.Click += new System.EventHandler(this.btAddCT_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.bindingNavigatorCTPhieuThue);
     this.groupBox5.Controls.Add(this.dataGridViewCTPhieuThue);
     this.groupBox5.Location = new System.Drawing.Point(3, 131);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(502, 197);
     this.groupBox5.TabIndex = 30;
     this.groupBox5.TabStop = false;
     //
     // bindingNavigatorCTPhieuThue
     //
     this.bindingNavigatorCTPhieuThue.AddNewItem = this.bindingNavigatorAddNewItem;
     this.bindingNavigatorCTPhieuThue.CountItem = this.bindingNavigatorCountItem;
     this.bindingNavigatorCTPhieuThue.DeleteItem = this.bindingNavigatorDeleteItem;
     this.bindingNavigatorCTPhieuThue.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.bindingNavigatorMoveFirstItem,
     this.bindingNavigatorMovePreviousItem,
     this.bindingNavigatorSeparator,
     this.bindingNavigatorPositionItem,
     this.bindingNavigatorCountItem,
     this.bindingNavigatorSeparator1,
     this.bindingNavigatorMoveNextItem,
     this.bindingNavigatorMoveLastItem,
     this.bindingNavigatorSeparator2,
     this.bindingNavigatorAddNewItem,
     this.bindingNavigatorDeleteItem,
     this.toolStripButton1});
     this.bindingNavigatorCTPhieuThue.Location = new System.Drawing.Point(3, 16);
     this.bindingNavigatorCTPhieuThue.MoveFirstItem = this.bindingNavigatorMoveFirstItem;
     this.bindingNavigatorCTPhieuThue.MoveLastItem = this.bindingNavigatorMoveLastItem;
     this.bindingNavigatorCTPhieuThue.MoveNextItem = this.bindingNavigatorMoveNextItem;
     this.bindingNavigatorCTPhieuThue.MovePreviousItem = this.bindingNavigatorMovePreviousItem;
     this.bindingNavigatorCTPhieuThue.Name = "bindingNavigatorCTPhieuThue";
     this.bindingNavigatorCTPhieuThue.PositionItem = this.bindingNavigatorPositionItem;
     this.bindingNavigatorCTPhieuThue.Size = new System.Drawing.Size(496, 25);
     this.bindingNavigatorCTPhieuThue.TabIndex = 23;
     this.bindingNavigatorCTPhieuThue.Text = "bindingNavigator1";
     //
     // bindingNavigatorAddNewItem
     //
     this.bindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorAddNewItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorAddNewItem.Image")));
     this.bindingNavigatorAddNewItem.Name = "bindingNavigatorAddNewItem";
     this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorAddNewItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorAddNewItem.Text = "Add new";
     //
     // bindingNavigatorCountItem
     //
     this.bindingNavigatorCountItem.Name = "bindingNavigatorCountItem";
     this.bindingNavigatorCountItem.Size = new System.Drawing.Size(36, 22);
     this.bindingNavigatorCountItem.Text = "of {0}";
     this.bindingNavigatorCountItem.ToolTipText = "Total number of items";
     //
     // bindingNavigatorDeleteItem
     //
     this.bindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorDeleteItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorDeleteItem.Image")));
     this.bindingNavigatorDeleteItem.Name = "bindingNavigatorDeleteItem";
     this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorDeleteItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorDeleteItem.Text = "Delete";
     //
     // bindingNavigatorMoveFirstItem
     //
     this.bindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveFirstItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveFirstItem.Image")));
     this.bindingNavigatorMoveFirstItem.Name = "bindingNavigatorMoveFirstItem";
     this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveFirstItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveFirstItem.Text = "Move first";
     //
     // bindingNavigatorMovePreviousItem
     //
     this.bindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMovePreviousItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMovePreviousItem.Image")));
     this.bindingNavigatorMovePreviousItem.Name = "bindingNavigatorMovePreviousItem";
     this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMovePreviousItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMovePreviousItem.Text = "Move previous";
     //
     // bindingNavigatorSeparator
     //
     this.bindingNavigatorSeparator.Name = "bindingNavigatorSeparator";
     this.bindingNavigatorSeparator.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorPositionItem
     //
     this.bindingNavigatorPositionItem.AccessibleName = "Position";
     this.bindingNavigatorPositionItem.AutoSize = false;
     this.bindingNavigatorPositionItem.Name = "bindingNavigatorPositionItem";
     this.bindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 21);
     this.bindingNavigatorPositionItem.Text = "0";
     this.bindingNavigatorPositionItem.ToolTipText = "Current position";
     //
     // bindingNavigatorSeparator1
     //
     this.bindingNavigatorSeparator1.Name = "bindingNavigatorSeparator1";
     this.bindingNavigatorSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // bindingNavigatorMoveNextItem
     //
     this.bindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveNextItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveNextItem.Image")));
     this.bindingNavigatorMoveNextItem.Name = "bindingNavigatorMoveNextItem";
     this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveNextItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveNextItem.Text = "Move next";
     //
     // bindingNavigatorMoveLastItem
     //
     this.bindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.bindingNavigatorMoveLastItem.Image = ((System.Drawing.Image)(resources.GetObject("bindingNavigatorMoveLastItem.Image")));
     this.bindingNavigatorMoveLastItem.Name = "bindingNavigatorMoveLastItem";
     this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
     this.bindingNavigatorMoveLastItem.Size = new System.Drawing.Size(23, 22);
     this.bindingNavigatorMoveLastItem.Text = "Move last";
     //
     // bindingNavigatorSeparator2
     //
     this.bindingNavigatorSeparator2.Name = "bindingNavigatorSeparator2";
     this.bindingNavigatorSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton1
     //
     this.toolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton1.Image = global::_042082.Properties.Resources.Icon_198;
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton1.Text = "toolStripButton1";
     //
     // dataGridViewCTPhieuThue
     //
     this.dataGridViewCTPhieuThue.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewCTPhieuThue.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_CTPT,
     this.MaKhachHang,
     this.TenKhachHang,
     this.MaLoaiKH,
     this.CMND,
     this.DiaChi,
     this.MaCTPT,
     this.MaPhieuThue_CT});
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewCTPhieuThue.DefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewCTPhieuThue.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewCTPhieuThue.Location = new System.Drawing.Point(0, 48);
     this.dataGridViewCTPhieuThue.Name = "dataGridViewCTPhieuThue";
     this.dataGridViewCTPhieuThue.Size = new System.Drawing.Size(496, 143);
     this.dataGridViewCTPhieuThue.TabIndex = 22;
     //
     // STT_CTPT
     //
     this.STT_CTPT.DataPropertyName = "STT_CTPT";
     this.STT_CTPT.HeaderText = "STT";
     this.STT_CTPT.Name = "STT_CTPT";
     this.STT_CTPT.Width = 30;
     //
     // MaKhachHang
     //
     this.MaKhachHang.DataPropertyName = "MaKhachHang";
     this.MaKhachHang.HeaderText = "Mã Khách Hàng";
     this.MaKhachHang.Name = "MaKhachHang";
     this.MaKhachHang.Width = 110;
     //
     // TenKhachHang
     //
     this.TenKhachHang.DataPropertyName = "TenKhachHang";
     this.TenKhachHang.HeaderText = "Tên Khách Hàng";
     this.TenKhachHang.Name = "TenKhachHang";
     this.TenKhachHang.Width = 115;
     //
     // MaLoaiKH
     //
     this.MaLoaiKH.DataPropertyName = "MaLoaiKH";
     this.MaLoaiKH.HeaderText = "Loại Khách Hàng";
     this.MaLoaiKH.Name = "MaLoaiKH";
     this.MaLoaiKH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.MaLoaiKH.Width = 115;
     //
     // CMND
     //
     this.CMND.DataPropertyName = "CMND";
     this.CMND.HeaderText = "Số CMND";
     this.CMND.Name = "CMND";
     this.CMND.ReadOnly = true;
     this.CMND.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.CMND.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.CMND.Width = 90;
     //
     // DiaChi
     //
     this.DiaChi.DataPropertyName = "DiaChi";
     this.DiaChi.HeaderText = "Địa Chỉ";
     this.DiaChi.Name = "DiaChi";
     //
     // MaCTPT
     //
     this.MaCTPT.DataPropertyName = "MaCTPT";
     this.MaCTPT.HeaderText = "Mã Chi Tiết Phiếu Thuê";
     this.MaCTPT.Name = "MaCTPT";
     this.MaCTPT.Width = 150;
     //
     // MaPhieuThue_CT
     //
     this.MaPhieuThue_CT.DataPropertyName = "MaPhieuThue";
     this.MaPhieuThue_CT.HeaderText = "Mã phiếu thuê";
     this.MaPhieuThue_CT.Name = "MaPhieuThue_CT";
     //
     // txt_MaKH
     //
     //
     //
     //
     this.txt_MaKH.Border.Class = "TextBoxBorder";
     this.txt_MaKH.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKH.Enabled = false;
     this.txt_MaKH.Location = new System.Drawing.Point(107, 50);
     this.txt_MaKH.Name = "txt_MaKH";
     this.txt_MaKH.Size = new System.Drawing.Size(84, 20);
     this.txt_MaKH.TabIndex = 17;
     this.txt_MaKH.TextChanged += new System.EventHandler(this.txt_MaKH_TextChanged);
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.Class = "";
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(6, 47);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(76, 22);
     this.labelX6.TabIndex = 18;
     this.labelX6.Text = "Mã khách hàng";
     //
     // txt_MaLoaiPhong
     //
     //
     //
     //
     this.txt_MaLoaiPhong.Border.Class = "TextBoxBorder";
     this.txt_MaLoaiPhong.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaLoaiPhong.Enabled = false;
     this.txt_MaLoaiPhong.Location = new System.Drawing.Point(265, 49);
     this.txt_MaLoaiPhong.Name = "txt_MaLoaiPhong";
     this.txt_MaLoaiPhong.Size = new System.Drawing.Size(30, 20);
     this.txt_MaLoaiPhong.TabIndex = 26;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.gb_KHDDPT);
     this.groupBox1.Controls.Add(this.btExit);
     this.groupBox1.Controls.Add(this.chk_Id_PT);
     this.groupBox1.Controls.Add(this.txt_MaPhieuThue);
     this.groupBox1.Controls.Add(this.btDelete);
     this.groupBox1.Controls.Add(this.groupBoxGridPhieuThue);
     this.groupBox1.Controls.Add(this.txt_NgayTra);
     this.groupBox1.Controls.Add(this.btEdit);
     this.groupBox1.Controls.Add(this.labelX7);
     this.groupBox1.Controls.Add(this.btAdd);
     this.groupBox1.Controls.Add(this.txt_MaLoaiPhong);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.chk_datesystem);
     this.groupBox1.Controls.Add(this.txt_MaPhong);
     this.groupBox1.Controls.Add(this.txt_NgayThue);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Location = new System.Drawing.Point(12, 30);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(517, 702);
     this.groupBox1.TabIndex = 23;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Phiếu thuê";
     //
     // gb_KHDDPT
     //
     this.gb_KHDDPT.Controls.Add(this.labelX13);
     this.gb_KHDDPT.Controls.Add(this.labelX12);
     this.gb_KHDDPT.Controls.Add(this.txt_MaKHDD);
     this.gb_KHDDPT.Controls.Add(this.txt_TenKHDaiDien);
     this.gb_KHDDPT.Location = new System.Drawing.Point(301, 11);
     this.gb_KHDDPT.Name = "gb_KHDDPT";
     this.gb_KHDDPT.Size = new System.Drawing.Size(210, 87);
     this.gb_KHDDPT.TabIndex = 41;
     this.gb_KHDDPT.TabStop = false;
     this.gb_KHDDPT.Text = "Khách hàng đại diện";
     //
     // labelX13
     //
     //
     //
     //
     this.labelX13.BackgroundStyle.Class = "";
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Location = new System.Drawing.Point(6, 45);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(44, 20);
     this.labelX13.TabIndex = 43;
     this.labelX13.Text = "Tên KH";
     //
     // labelX12
     //
     //
     //
     //
     this.labelX12.BackgroundStyle.Class = "";
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Location = new System.Drawing.Point(5, 19);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(35, 20);
     this.labelX12.TabIndex = 42;
     this.labelX12.Text = "Mã KH";
     //
     // txt_MaKHDD
     //
     //
     //
     //
     this.txt_MaKHDD.Border.Class = "TextBoxBorder";
     this.txt_MaKHDD.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaKHDD.Enabled = false;
     this.txt_MaKHDD.Location = new System.Drawing.Point(56, 19);
     this.txt_MaKHDD.Name = "txt_MaKHDD";
     this.txt_MaKHDD.Size = new System.Drawing.Size(90, 20);
     this.txt_MaKHDD.TabIndex = 39;
     this.txt_MaKHDD.TextChanged += new System.EventHandler(this.txt_MaKHDD_TextChanged);
     //
     // txt_TenKHDaiDien
     //
     //
     //
     //
     this.txt_TenKHDaiDien.Border.Class = "TextBoxBorder";
     this.txt_TenKHDaiDien.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_TenKHDaiDien.Enabled = false;
     this.txt_TenKHDaiDien.Location = new System.Drawing.Point(56, 45);
     this.txt_TenKHDaiDien.Name = "txt_TenKHDaiDien";
     this.txt_TenKHDaiDien.Size = new System.Drawing.Size(147, 20);
     this.txt_TenKHDaiDien.TabIndex = 40;
     //
     // btExit
     //
     this.btExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btExit.Location = new System.Drawing.Point(395, 141);
     this.btExit.Name = "btExit";
     this.btExit.Size = new System.Drawing.Size(75, 23);
     this.btExit.TabIndex = 37;
     this.btExit.Text = "Thoát";
     this.btExit.Click += new System.EventHandler(this.btExit_Click);
     //
     // chk_Id_PT
     //
     //
     //
     //
     this.chk_Id_PT.BackgroundStyle.Class = "";
     this.chk_Id_PT.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_Id_PT.Location = new System.Drawing.Point(200, 17);
     this.chk_Id_PT.Name = "chk_Id_PT";
     this.chk_Id_PT.Size = new System.Drawing.Size(75, 23);
     this.chk_Id_PT.TabIndex = 33;
     this.chk_Id_PT.Text = "Thêm mới";
     this.chk_Id_PT.CheckedChanged += new System.EventHandler(this.chk_Id_PT_CheckedChanged);
     //
     // txt_MaPhieuThue
     //
     //
     //
     //
     this.txt_MaPhieuThue.Border.Class = "TextBoxBorder";
     this.txt_MaPhieuThue.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPhieuThue.Enabled = false;
     this.txt_MaPhieuThue.Location = new System.Drawing.Point(116, 19);
     this.txt_MaPhieuThue.Name = "txt_MaPhieuThue";
     this.txt_MaPhieuThue.Size = new System.Drawing.Size(83, 20);
     this.txt_MaPhieuThue.TabIndex = 32;
     this.txt_MaPhieuThue.TextChanged += new System.EventHandler(this.txt_MaPhieuThue_TextChanged);
     //
     // btDelete
     //
     this.btDelete.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btDelete.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btDelete.Location = new System.Drawing.Point(144, 141);
     this.btDelete.Name = "btDelete";
     this.btDelete.Size = new System.Drawing.Size(75, 23);
     this.btDelete.TabIndex = 35;
     this.btDelete.Text = "Xóa";
     this.btDelete.Click += new System.EventHandler(this.btDelete_Click);
     //
     // groupBoxGridPhieuThue
     //
     this.groupBoxGridPhieuThue.Controls.Add(this.bindingNavigatorPhieuThue);
     this.groupBoxGridPhieuThue.Controls.Add(this.dataGridViewPhieuThue);
     this.groupBoxGridPhieuThue.Location = new System.Drawing.Point(6, 164);
     this.groupBoxGridPhieuThue.Name = "groupBoxGridPhieuThue";
     this.groupBoxGridPhieuThue.Size = new System.Drawing.Size(502, 192);
     this.groupBoxGridPhieuThue.TabIndex = 31;
     this.groupBoxGridPhieuThue.TabStop = false;
     //
     // bindingNavigatorPhieuThue
     //
     this.bindingNavigatorPhieuThue.AddNewItem = this.toolStripButton2;
     this.bindingNavigatorPhieuThue.CountItem = this.toolStripLabel1;
     this.bindingNavigatorPhieuThue.DeleteItem = this.toolStripButton3;
     this.bindingNavigatorPhieuThue.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton4,
     this.toolStripButton5,
     this.toolStripSeparator1,
     this.toolStripTextBox1,
     this.toolStripLabel1,
     this.toolStripSeparator2,
     this.toolStripButton6,
     this.toolStripButton7,
     this.toolStripSeparator3,
     this.toolStripButton2,
     this.toolStripButton3,
     this.toolStripButton8});
     this.bindingNavigatorPhieuThue.Location = new System.Drawing.Point(3, 16);
     this.bindingNavigatorPhieuThue.MoveFirstItem = this.toolStripButton4;
     this.bindingNavigatorPhieuThue.MoveLastItem = this.toolStripButton7;
     this.bindingNavigatorPhieuThue.MoveNextItem = this.toolStripButton6;
     this.bindingNavigatorPhieuThue.MovePreviousItem = this.toolStripButton5;
     this.bindingNavigatorPhieuThue.Name = "bindingNavigatorPhieuThue";
     this.bindingNavigatorPhieuThue.PositionItem = this.toolStripTextBox1;
     this.bindingNavigatorPhieuThue.Size = new System.Drawing.Size(496, 25);
     this.bindingNavigatorPhieuThue.TabIndex = 23;
     this.bindingNavigatorPhieuThue.Text = "bindingNavigator2";
     //
     // toolStripButton2
     //
     this.toolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton2.Image")));
     this.toolStripButton2.Name = "toolStripButton2";
     this.toolStripButton2.RightToLeftAutoMirrorImage = true;
     this.toolStripButton2.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton2.Text = "Add new";
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(36, 22);
     this.toolStripLabel1.Text = "of {0}";
     this.toolStripLabel1.ToolTipText = "Total number of items";
     //
     // toolStripButton3
     //
     this.toolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton3.Image")));
     this.toolStripButton3.Name = "toolStripButton3";
     this.toolStripButton3.RightToLeftAutoMirrorImage = true;
     this.toolStripButton3.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton3.Text = "Delete";
     //
     // toolStripButton4
     //
     this.toolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton4.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton4.Image")));
     this.toolStripButton4.Name = "toolStripButton4";
     this.toolStripButton4.RightToLeftAutoMirrorImage = true;
     this.toolStripButton4.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton4.Text = "Move first";
     //
     // toolStripButton5
     //
     this.toolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton5.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton5.Image")));
     this.toolStripButton5.Name = "toolStripButton5";
     this.toolStripButton5.RightToLeftAutoMirrorImage = true;
     this.toolStripButton5.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton5.Text = "Move previous";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripTextBox1
     //
     this.toolStripTextBox1.AccessibleName = "Position";
     this.toolStripTextBox1.AutoSize = false;
     this.toolStripTextBox1.Name = "toolStripTextBox1";
     this.toolStripTextBox1.Size = new System.Drawing.Size(50, 21);
     this.toolStripTextBox1.Text = "0";
     this.toolStripTextBox1.ToolTipText = "Current position";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton6
     //
     this.toolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton6.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton6.Image")));
     this.toolStripButton6.Name = "toolStripButton6";
     this.toolStripButton6.RightToLeftAutoMirrorImage = true;
     this.toolStripButton6.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton6.Text = "Move next";
     //
     // toolStripButton7
     //
     this.toolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton7.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton7.Image")));
     this.toolStripButton7.Name = "toolStripButton7";
     this.toolStripButton7.RightToLeftAutoMirrorImage = true;
     this.toolStripButton7.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton7.Text = "Move last";
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButton8
     //
     this.toolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButton8.Image = global::_042082.Properties.Resources.Icon_198;
     this.toolStripButton8.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton8.Name = "toolStripButton8";
     this.toolStripButton8.Size = new System.Drawing.Size(23, 22);
     this.toolStripButton8.Text = "toolStripButton1";
     //
     // dataGridViewPhieuThue
     //
     this.dataGridViewPhieuThue.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridViewPhieuThue.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.STT_PT,
     this.MaPhieuThue,
     this.NgayThue,
     this.NgayTra,
     this.MaPhong,
     this.ThanhToan,
     this.KhachHangDaiDien});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewPhieuThue.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewPhieuThue.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.dataGridViewPhieuThue.Location = new System.Drawing.Point(0, 48);
     this.dataGridViewPhieuThue.Name = "dataGridViewPhieuThue";
     this.dataGridViewPhieuThue.Size = new System.Drawing.Size(496, 138);
     this.dataGridViewPhieuThue.TabIndex = 22;
     this.dataGridViewPhieuThue.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridViewPhieuThue_CellContentClick);
     //
     // STT_PT
     //
     this.STT_PT.DataPropertyName = "STT_PT";
     this.STT_PT.HeaderText = "STT";
     this.STT_PT.Name = "STT_PT";
     this.STT_PT.Width = 30;
     //
     // MaPhieuThue
     //
     this.MaPhieuThue.DataPropertyName = "MaPhieuThue";
     this.MaPhieuThue.HeaderText = "Mã Phiếu Thuê";
     this.MaPhieuThue.Name = "MaPhieuThue";
     this.MaPhieuThue.ReadOnly = true;
     this.MaPhieuThue.Width = 120;
     //
     // NgayThue
     //
     this.NgayThue.DataPropertyName = "NgayThue";
     this.NgayThue.HeaderText = "Ngày Thuê";
     this.NgayThue.Name = "NgayThue";
     this.NgayThue.Width = 110;
     //
     // NgayTra
     //
     this.NgayTra.DataPropertyName = "NgayTra";
     this.NgayTra.HeaderText = "Ngày Trả";
     this.NgayTra.Name = "NgayTra";
     this.NgayTra.Width = 115;
     //
     // MaPhong
     //
     this.MaPhong.DataPropertyName = "MaPhong";
     this.MaPhong.HeaderText = "Mã Phòng";
     this.MaPhong.Name = "MaPhong";
     this.MaPhong.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.MaPhong.Width = 115;
     //
     // ThanhToan
     //
     this.ThanhToan.DataPropertyName = "ThanhToan";
     this.ThanhToan.HeaderText = "Thanh Toán";
     this.ThanhToan.Name = "ThanhToan";
     this.ThanhToan.ReadOnly = true;
     this.ThanhToan.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.ThanhToan.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ThanhToan.Width = 90;
     //
     // KhachHangDaiDien
     //
     this.KhachHangDaiDien.DataPropertyName = "KhachHangDaiDien";
     this.KhachHangDaiDien.HeaderText = "Khách Hàng Đại Diện";
     this.KhachHangDaiDien.Name = "KhachHangDaiDien";
     this.KhachHangDaiDien.Width = 200;
     //
     // txt_NgayTra
     //
     //
     //
     //
     this.txt_NgayTra.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txt_NgayTra.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.txt_NgayTra.ButtonDropDown.Visible = true;
     this.txt_NgayTra.Location = new System.Drawing.Point(116, 104);
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.txt_NgayTra.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.txt_NgayTra.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.txt_NgayTra.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayTra.MonthCalendar.TodayButtonVisible = true;
     this.txt_NgayTra.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.txt_NgayTra.Name = "txt_NgayTra";
     this.txt_NgayTra.Size = new System.Drawing.Size(83, 20);
     this.txt_NgayTra.TabIndex = 28;
     //
     // btEdit
     //
     this.btEdit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btEdit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btEdit.Location = new System.Drawing.Point(266, 141);
     this.btEdit.Name = "btEdit";
     this.btEdit.Size = new System.Drawing.Size(75, 23);
     this.btEdit.TabIndex = 36;
     this.btEdit.Text = "Sửa";
     this.btEdit.Click += new System.EventHandler(this.btEdit_Click);
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.Class = "";
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(14, 104);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(96, 20);
     this.labelX7.TabIndex = 27;
     this.labelX7.Text = "Ngày Trả Dự Kiến";
     //
     // btAdd
     //
     this.btAdd.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btAdd.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btAdd.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btAdd.Location = new System.Drawing.Point(14, 141);
     this.btAdd.Name = "btAdd";
     this.btAdd.Size = new System.Drawing.Size(82, 23);
     this.btAdd.TabIndex = 34;
     this.btAdd.Text = "Lập Phiếu";
     this.btAdd.Click += new System.EventHandler(this.btAdd_Click);
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(14, 19);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(82, 25);
     this.labelX2.TabIndex = 14;
     this.labelX2.Text = "Mã Phiếu Thuê";
     //
     // chk_datesystem
     //
     //
     //
     //
     this.chk_datesystem.BackgroundStyle.Class = "";
     this.chk_datesystem.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chk_datesystem.Location = new System.Drawing.Point(198, 76);
     this.chk_datesystem.Name = "chk_datesystem";
     this.chk_datesystem.Size = new System.Drawing.Size(97, 23);
     this.chk_datesystem.TabIndex = 19;
     this.chk_datesystem.Text = "Ngày hệ thống";
     this.chk_datesystem.CheckedChanged += new System.EventHandler(this.chk_datesystem_CheckedChanged);
     //
     // txt_MaPhong
     //
     //
     //
     //
     this.txt_MaPhong.Border.Class = "TextBoxBorder";
     this.txt_MaPhong.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_MaPhong.Location = new System.Drawing.Point(115, 49);
     this.txt_MaPhong.Name = "txt_MaPhong";
     this.txt_MaPhong.Size = new System.Drawing.Size(84, 20);
     this.txt_MaPhong.TabIndex = 11;
     this.txt_MaPhong.TextChanged += new System.EventHandler(this.txt_MaPhong_TextChanged);
     //
     // txt_NgayThue
     //
     //
     //
     //
     this.txt_NgayThue.BackgroundStyle.Class = "DateTimeInputBackground";
     this.txt_NgayThue.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.txt_NgayThue.ButtonDropDown.Visible = true;
     this.txt_NgayThue.Location = new System.Drawing.Point(116, 78);
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.BackColor = System.Drawing.SystemColors.Window;
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.DisplayMonth = new System.DateTime(2011, 5, 1, 0, 0, 0, 0);
     this.txt_NgayThue.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.txt_NgayThue.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.Class = "";
     this.txt_NgayThue.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txt_NgayThue.MonthCalendar.TodayButtonVisible = true;
     this.txt_NgayThue.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.txt_NgayThue.Name = "txt_NgayThue";
     this.txt_NgayThue.Size = new System.Drawing.Size(83, 20);
     this.txt_NgayThue.TabIndex = 18;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(14, 78);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(63, 20);
     this.labelX3.TabIndex = 15;
     this.labelX3.Text = "Ngày Thuê";
     //
     // groupBox3
     //
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(200, 100);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     //
     // bt_SendPhong
     //
     this.bt_SendPhong.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_SendPhong.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_SendPhong.Enabled = false;
     this.bt_SendPhong.Location = new System.Drawing.Point(532, 237);
     this.bt_SendPhong.Name = "bt_SendPhong";
     this.bt_SendPhong.Size = new System.Drawing.Size(25, 23);
     this.bt_SendPhong.TabIndex = 26;
     this.bt_SendPhong.Text = "<<";
     this.bt_SendPhong.Click += new System.EventHandler(this.bt_SendPhong_Click);
     //
     // bt_SendKH
     //
     this.bt_SendKH.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_SendKH.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_SendKH.Location = new System.Drawing.Point(532, 591);
     this.bt_SendKH.Name = "bt_SendKH";
     this.bt_SendKH.Size = new System.Drawing.Size(25, 23);
     this.bt_SendKH.TabIndex = 27;
     this.bt_SendKH.Text = "<<";
     this.bt_SendKH.Click += new System.EventHandler(this.bt_SendKH_Click);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.urlTraCuuPhong2);
     this.groupBox4.Controls.Add(this.urlKhachHang2);
     this.groupBox4.Location = new System.Drawing.Point(563, 29);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(536, 703);
     this.groupBox4.TabIndex = 28;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Tra Cứu";
     //
     // urlTraCuuPhong2
     //
     this.urlTraCuuPhong2.Location = new System.Drawing.Point(12, 17);
     this.urlTraCuuPhong2.Name = "urlTraCuuPhong2";
     this.urlTraCuuPhong2.Size = new System.Drawing.Size(510, 270);
     this.urlTraCuuPhong2.TabIndex = 2;
     //
     // urlKhachHang2
     //
     this.urlKhachHang2.Font = new System.Drawing.Font("Tahoma", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.urlKhachHang2.Location = new System.Drawing.Point(9, 289);
     this.urlKhachHang2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.urlKhachHang2.Name = "urlKhachHang2";
     this.urlKhachHang2.Size = new System.Drawing.Size(519, 405);
     this.urlKhachHang2.TabIndex = 1;
     this.urlKhachHang2.Load += new System.EventHandler(this.urlKhachHang2_Load);
     //
     // bt_getMaKHDD
     //
     this.bt_getMaKHDD.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.bt_getMaKHDD.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.bt_getMaKHDD.Enabled = false;
     this.bt_getMaKHDD.Location = new System.Drawing.Point(532, 562);
     this.bt_getMaKHDD.Name = "bt_getMaKHDD";
     this.bt_getMaKHDD.Size = new System.Drawing.Size(25, 23);
     this.bt_getMaKHDD.TabIndex = 40;
     this.bt_getMaKHDD.Text = "<<";
     this.bt_getMaKHDD.Click += new System.EventHandler(this.bt_getMaKHDD_Click);
     //
     // urlTraCuuPhong1
     //
     this.urlTraCuuPhong1.Location = new System.Drawing.Point(6, 19);
     this.urlTraCuuPhong1.Name = "urlTraCuuPhong1";
     this.urlTraCuuPhong1.Size = new System.Drawing.Size(510, 270);
     this.urlTraCuuPhong1.TabIndex = 0;
     //
     // frmPhieuThue
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1101, 763);
     this.Controls.Add(this.bt_getMaKHDD);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.bt_SendKH);
     this.Controls.Add(this.bt_SendPhong);
     this.Controls.Add(this.labelX1);
     this.Controls.Add(this.groupBox1);
     this.Name = "frmPhieuThue";
     this.Text = "frmPhieuThue";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmPhieuThue_FormClosing);
     this.Load += new System.EventHandler(this.frmPhieuThue_Load);
     this.groupBox2.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorCTPhieuThue)).EndInit();
     this.bindingNavigatorCTPhieuThue.ResumeLayout(false);
     this.bindingNavigatorCTPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewCTPhieuThue)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.gb_KHDDPT.ResumeLayout(false);
     this.groupBoxGridPhieuThue.ResumeLayout(false);
     this.groupBoxGridPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bindingNavigatorPhieuThue)).EndInit();
     this.bindingNavigatorPhieuThue.ResumeLayout(false);
     this.bindingNavigatorPhieuThue.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewPhieuThue)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayTra)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_NgayThue)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #47
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnConfirm = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.FieldContainer = new System.Windows.Forms.ListView();
     this.lblExplanation = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // chkSelectAll
     //
     this.chkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Checked = true;
     this.chkSelectAll.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelectAll.CheckValue = "Y";
     this.chkSelectAll.Location = new System.Drawing.Point(34, 317);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // btnConfirm
     //
     this.btnConfirm.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnConfirm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnConfirm.AutoSize = true;
     this.btnConfirm.BackColor = System.Drawing.Color.Transparent;
     this.btnConfirm.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnConfirm.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnConfirm.Location = new System.Drawing.Point(298, 329);
     this.btnConfirm.Name = "btnConfirm";
     this.btnConfirm.Size = new System.Drawing.Size(75, 25);
     this.btnConfirm.TabIndex = 4;
     this.btnConfirm.Text = "匯出";
     this.btnConfirm.Click += new System.EventHandler(this.OnConfirmButtonClick);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnExit.Location = new System.Drawing.Point(383, 329);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 25);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "離開";
     this.btnExit.Click += new System.EventHandler(this.OnExitButtonClick);
     //
     // FieldContainer
     //
     this.FieldContainer.CheckBoxes = true;
     this.FieldContainer.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.FieldContainer.HideSelection = false;
     this.FieldContainer.Location = new System.Drawing.Point(34, 51);
     this.FieldContainer.Name = "FieldContainer";
     this.FieldContainer.Size = new System.Drawing.Size(424, 260);
     this.FieldContainer.TabIndex = 19;
     this.FieldContainer.UseCompatibleStateImageBehavior = false;
     this.FieldContainer.View = System.Windows.Forms.View.List;
     //
     // lblExplanation
     //
     this.lblExplanation.AutoSize = true;
     this.lblExplanation.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblExplanation.BackgroundStyle.Class = "";
     this.lblExplanation.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblExplanation.Location = new System.Drawing.Point(34, 15);
     this.lblExplanation.Name = "lblExplanation";
     this.lblExplanation.Size = new System.Drawing.Size(74, 21);
     this.lblExplanation.TabIndex = 20;
     this.lblExplanation.Text = "請選擇欄位";
     //
     // SelectField
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(492, 366);
     this.Controls.Add(this.lblExplanation);
     this.Controls.Add(this.FieldContainer);
     this.Controls.Add(this.btnConfirm);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.chkSelectAll);
     this.DoubleBuffered = true;
     this.Name = "SelectField";
     this.Text = "GatherData";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #48
0
ファイル: Frmhntzd1.designer.cs プロジェクト: callme119/civil
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.wd_22 = new DevComponents.DotNetBar.TabControl();
     this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
     this.Grp_Item1 = new System.Windows.Forms.GroupBox();
     this.wd_lx = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.c45 = new DevComponents.Editors.ComboItem();
     this.c50 = new DevComponents.Editors.ComboItem();
     this.c55 = new DevComponents.Editors.ComboItem();
     this.c60 = new DevComponents.Editors.ComboItem();
     this.Lb_Item1KD = new DevComponents.DotNetBar.LabelX();
     this.wd_11 = new DevComponents.DotNetBar.TabItem(this.components);
     this.tabControlPanel2 = new DevComponents.DotNetBar.TabControlPanel();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.richTextBox4 = new System.Windows.Forms.RichTextBox();
     this.richTextBox3 = new System.Windows.Forms.RichTextBox();
     this.richTextBox2 = new System.Windows.Forms.RichTextBox();
     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.richTextBox1 = new System.Windows.Forms.RichTextBox();
     this.wd_222 = 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 = new DevComponents.DotNetBar.PanelEx();
     this.BtnSubmit = new DevComponents.DotNetBar.ButtonX();
     ((System.ComponentModel.ISupportInitialize)(this.wd_22)).BeginInit();
     this.wd_22.SuspendLayout();
     this.tabControlPanel1.SuspendLayout();
     this.Grp_Item1.SuspendLayout();
     this.tabControlPanel2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.tabControlPanel3.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.groupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).BeginInit();
     this.panelEx1.SuspendLayout();
     this.SuspendLayout();
     //
     // wd_22
     //
     this.wd_22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.wd_22.CanReorderTabs = true;
     this.wd_22.Controls.Add(this.tabControlPanel2);
     this.wd_22.Controls.Add(this.tabControlPanel1);
     this.wd_22.Controls.Add(this.tabControlPanel3);
     this.wd_22.Dock = System.Windows.Forms.DockStyle.Fill;
     this.wd_22.Location = new System.Drawing.Point(0, 0);
     this.wd_22.Name = "wd_22";
     this.wd_22.SelectedTabFont = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Bold);
     this.wd_22.SelectedTabIndex = 0;
     this.wd_22.Size = new System.Drawing.Size(650, 513);
     this.wd_22.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
     this.wd_22.TabIndex = 54;
     this.wd_22.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.MultilineNoNavigationBox;
     this.wd_22.Tabs.Add(this.wd_11);
     this.wd_22.Tabs.Add(this.wd_222);
     //
     // tabControlPanel1
     //
     this.tabControlPanel1.Controls.Add(this.Grp_Item1);
     this.tabControlPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel1.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel1.Name = "tabControlPanel1";
     this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel1.Size = new System.Drawing.Size(650, 488);
     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.wd_11;
     //
     // 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.wd_lx);
     this.Grp_Item1.Controls.Add(this.Lb_Item1KD);
     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(648, 486);
     this.Grp_Item1.TabIndex = 0;
     this.Grp_Item1.TabStop = false;
     //
     // wd_lx
     //
     this.wd_lx.DisplayMember = "Text";
     this.wd_lx.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.wd_lx.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.wd_lx.FormattingEnabled = true;
     this.wd_lx.ItemHeight = 15;
     this.wd_lx.Items.AddRange(new object[] {
     this.c45,
     this.c50,
     this.c55,
     this.c60});
     this.wd_lx.Location = new System.Drawing.Point(212, 38);
     this.wd_lx.Name = "wd_lx";
     this.wd_lx.Size = new System.Drawing.Size(127, 21);
     this.wd_lx.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.wd_lx.TabIndex = 60;
     //
     // c45
     //
     this.c45.Text = "大体积混凝土";
     //
     // c50
     //
     this.c50.Text = "厚度大";
     //
     // c55
     //
     this.c55.Text = "厚度薄";
     //
     // c60
     //
     this.c60.Text = "表面大而平整、配筋密、混凝土预制构件或实验室制试块";
     //
     // Lb_Item1KD
     //
     //
     //
     //
     this.Lb_Item1KD.BackgroundStyle.Class = "";
     this.Lb_Item1KD.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.Lb_Item1KD.Location = new System.Drawing.Point(35, 38);
     this.Lb_Item1KD.Name = "Lb_Item1KD";
     this.Lb_Item1KD.Size = new System.Drawing.Size(126, 20);
     this.Lb_Item1KD.TabIndex = 0;
     this.Lb_Item1KD.Text = "混凝土主要特点:";
     //
     // wd_11
     //
     this.wd_11.AttachedControl = this.tabControlPanel1;
     this.wd_11.Name = "wd_11";
     this.wd_11.Text = "推荐方案";
     //
     // tabControlPanel2
     //
     this.tabControlPanel2.CanvasColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.tabControlPanel2.Controls.Add(this.groupBox1);
     this.tabControlPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel2.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel2.Name = "tabControlPanel2";
     this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel2.Size = new System.Drawing.Size(650, 488);
     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.wd_222;
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.groupBox1.Controls.Add(this.richTextBox4);
     this.groupBox1.Controls.Add(this.richTextBox3);
     this.groupBox1.Controls.Add(this.richTextBox2);
     this.groupBox1.Controls.Add(this.checkBox4);
     this.groupBox1.Controls.Add(this.checkBox3);
     this.groupBox1.Controls.Add(this.checkBox2);
     this.groupBox1.Controls.Add(this.checkBox1);
     this.groupBox1.Controls.Add(this.richTextBox1);
     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(648, 486);
     this.groupBox1.TabIndex = 5;
     this.groupBox1.TabStop = false;
     //
     // richTextBox4
     //
     this.richTextBox4.Location = new System.Drawing.Point(184, 312);
     this.richTextBox4.Name = "richTextBox4";
     this.richTextBox4.Size = new System.Drawing.Size(285, 64);
     this.richTextBox4.TabIndex = 89;
     this.richTextBox4.Text = "适于混凝土预制构件的振捣及试验室制作试块的捣实\n";
     //
     // richTextBox3
     //
     this.richTextBox3.Location = new System.Drawing.Point(184, 210);
     this.richTextBox3.Name = "richTextBox3";
     this.richTextBox3.Size = new System.Drawing.Size(285, 64);
     this.richTextBox3.TabIndex = 88;
     this.richTextBox3.Text = "适用于振捣钢筋较密、厚度在30cm 以下的墙、柱、梁以及不宜用";
     //
     // richTextBox2
     //
     this.richTextBox2.Location = new System.Drawing.Point(184, 125);
     this.richTextBox2.Name = "richTextBox2";
     this.richTextBox2.Size = new System.Drawing.Size(285, 64);
     this.richTextBox2.TabIndex = 87;
     this.richTextBox2.Text = "适用于振捣表面积大而平整的结构物,如楼板、屋面板、地面、道";
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.Location = new System.Drawing.Point(48, 148);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(84, 16);
     this.checkBox4.TabIndex = 86;
     this.checkBox4.Text = "平板振动器";
     this.checkBox4.UseVisualStyleBackColor = true;
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.Location = new System.Drawing.Point(48, 225);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(96, 16);
     this.checkBox3.TabIndex = 85;
     this.checkBox3.Text = "附着式振动器";
     this.checkBox3.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.Location = new System.Drawing.Point(48, 324);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(60, 16);
     this.checkBox2.TabIndex = 84;
     this.checkBox2.Text = "振动台";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.Location = new System.Drawing.Point(48, 62);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(96, 16);
     this.checkBox1.TabIndex = 83;
     this.checkBox1.Text = "插入式振动棒";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // richTextBox1
     //
     this.richTextBox1.Location = new System.Drawing.Point(184, 41);
     this.richTextBox1.Name = "richTextBox1";
     this.richTextBox1.Size = new System.Drawing.Size(285, 64);
     this.richTextBox1.TabIndex = 82;
     this.richTextBox1.Text = "适用于大体积混凝土基础、柱、梁、墙和厚度较大的板以及预制构件等的捣实,对配筋特别稠密或厚度很薄的结构和构件不宜使用";
     //
     // wd_222
     //
     this.wd_222.AttachedControl = this.tabControlPanel2;
     this.wd_222.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(194)))), ((int)(((byte)(217)))), ((int)(((byte)(247)))));
     this.wd_222.Name = "wd_222";
     this.wd_222.Text = "自选方案";
     //
     // tabControlPanel3
     //
     this.tabControlPanel3.Controls.Add(this.groupBox5);
     this.tabControlPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControlPanel3.Location = new System.Drawing.Point(0, 25);
     this.tabControlPanel3.Name = "tabControlPanel3";
     this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
     this.tabControlPanel3.Size = new System.Drawing.Size(650, 488);
     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(648, 486);
     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 = "连墙件间距";
     //
     // 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.Location = new System.Drawing.Point(-92, 478);
     this.panelEx1.Name = "panelEx1";
     this.panelEx1.Size = new System.Drawing.Size(742, 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 = 57;
     //
     // 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(667, 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);
     //
     // Frmhntzd1
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(650, 513);
     this.Controls.Add(this.panelEx1);
     this.Controls.Add(this.wd_22);
     this.DoubleBuffered = true;
     this.Name = "Frmhntzd1";
     this.Text = "混凝土振捣";
     ((System.ComponentModel.ISupportInitialize)(this.wd_22)).EndInit();
     this.wd_22.ResumeLayout(false);
     this.tabControlPanel1.ResumeLayout(false);
     this.Grp_Item1.ResumeLayout(false);
     this.tabControlPanel2.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tabControlPanel3.ResumeLayout(false);
     this.groupBox5.ResumeLayout(false);
     this.groupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.doubleInput8)).EndInit();
     this.panelEx1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
コード例 #49
0
 /// <summary> 
 /// Método necesario para admitir el Diseñador. No se puede modificar 
 /// el contenido del método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Empresa));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = 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();
     this.comboBoxEx1 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.dateTimeInput2 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX21 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX12 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX15 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX11 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX14 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX10 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX13 = new DevComponents.DotNetBar.LabelX();
     this.labelX12 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX8 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX11 = new DevComponents.DotNetBar.LabelX();
     this.labelX10 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX7 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX9 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX6 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX8 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX5 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX4 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.dateTimeInput1 = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX3 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX2 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX1 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.superValidator1 = new DevComponents.DotNetBar.Validator.SuperValidator();
     this.regularExpressionValidator1 = new DevComponents.DotNetBar.Validator.RegularExpressionValidator();
     this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
     this.highlighter1 = new DevComponents.DotNetBar.Validator.Highlighter();
     this.comboBoxEx6 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx2 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cADINDataSet = new Sistema_De_Administracion_De_Servicios.CADINDataSet();
     this.departamentosBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.departamentosTableAdapter = new Sistema_De_Administracion_De_Servicios.CADINDataSetTableAdapters.DepartamentosTableAdapter();
     this.checkBoxX1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.checkBoxX2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX22 = new DevComponents.DotNetBar.LabelX();
     this.labelX20 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx3 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboBoxEx4 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX23 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx5 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX24 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX3 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.textBoxX17 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.txtCodCiiu = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX26 = new DevComponents.DotNetBar.LabelX();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.labelX29 = new DevComponents.DotNetBar.LabelX();
     this.labelX28 = new DevComponents.DotNetBar.LabelX();
     this.cboAgrupacion = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX27 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX9 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btnGenerarPagos = new DevComponents.DotNetBar.ButtonX();
     this.dataGridViewX1 = new DevComponents.DotNetBar.Controls.DataGridViewX();
     this.labelX16 = new DevComponents.DotNetBar.LabelX();
     this.textBoxX13 = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.btnEliminarContacto = new DevComponents.DotNetBar.ButtonX();
     this.labelX25 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx9 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX19 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx8 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX18 = new DevComponents.DotNetBar.LabelX();
     this.comboBoxEx7 = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX17 = new DevComponents.DotNetBar.LabelX();
     this.customValidator1 = new DevComponents.DotNetBar.Validator.CustomValidator();
     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.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.departamentosBindingSource)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).BeginInit();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // comboBoxEx1
     //
     this.comboBoxEx1.DisplayMember = "cod_dept";
     this.comboBoxEx1.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx1.Enabled = false;
     this.comboBoxEx1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxEx1.FormattingEnabled = true;
     this.comboBoxEx1.ItemHeight = 15;
     this.comboBoxEx1.Location = new System.Drawing.Point(138, 91);
     this.comboBoxEx1.Name = "comboBoxEx1";
     this.comboBoxEx1.Size = new System.Drawing.Size(139, 21);
     this.comboBoxEx1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx1.TabIndex = 3;
     this.comboBoxEx1.ValueMember = "cod_dept";
     //
     // 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.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimeInput2.IsPopupCalendarOpen = false;
     this.dateTimeInput2.Location = new System.Drawing.Point(517, 22);
     //
     //
     //
     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(2012, 5, 1, 0, 0, 0, 0);
     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.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput2.Name = "dateTimeInput2";
     this.dateTimeInput2.Size = new System.Drawing.Size(98, 21);
     this.dateTimeInput2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput2.TabIndex = 100;
     //
     // labelX21
     //
     //
     //
     //
     this.labelX21.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX21.Enabled = false;
     this.labelX21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX21.Location = new System.Drawing.Point(391, 21);
     this.labelX21.Name = "labelX21";
     this.labelX21.Size = new System.Drawing.Size(109, 23);
     this.labelX21.TabIndex = 84;
     this.labelX21.Text = "Fecha de Inscripcion :";
     //
     // textBoxX12
     //
     this.textBoxX12.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX12.Border.Class = "TextBoxBorder";
     this.textBoxX12.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX12.ForeColor = System.Drawing.Color.Black;
     this.textBoxX12.Location = new System.Drawing.Point(358, 108);
     this.textBoxX12.Multiline = true;
     this.textBoxX12.Name = "textBoxX12";
     this.textBoxX12.ReadOnly = true;
     this.textBoxX12.Size = new System.Drawing.Size(329, 57);
     this.textBoxX12.TabIndex = 17;
     //
     // labelX15
     //
     //
     //
     //
     this.labelX15.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX15.Location = new System.Drawing.Point(360, 86);
     this.labelX15.Name = "labelX15";
     this.labelX15.Size = new System.Drawing.Size(109, 23);
     this.labelX15.TabIndex = 72;
     this.labelX15.Text = "Materia Prima :";
     //
     // textBoxX11
     //
     this.textBoxX11.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX11.Border.Class = "TextBoxBorder";
     this.textBoxX11.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX11.ForeColor = System.Drawing.Color.Black;
     this.textBoxX11.Location = new System.Drawing.Point(360, 46);
     this.textBoxX11.Multiline = true;
     this.textBoxX11.Name = "textBoxX11";
     this.textBoxX11.ReadOnly = true;
     this.textBoxX11.Size = new System.Drawing.Size(327, 40);
     this.textBoxX11.TabIndex = 16;
     //
     // labelX14
     //
     //
     //
     //
     this.labelX14.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX14.Location = new System.Drawing.Point(360, 21);
     this.labelX14.Name = "labelX14";
     this.labelX14.Size = new System.Drawing.Size(121, 23);
     this.labelX14.TabIndex = 70;
     this.labelX14.Text = "Articulos que Produce :";
     //
     // textBoxX10
     //
     this.textBoxX10.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX10.Border.Class = "TextBoxBorder";
     this.textBoxX10.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX10.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX10.ForeColor = System.Drawing.Color.Black;
     this.textBoxX10.Location = new System.Drawing.Point(146, 144);
     this.textBoxX10.Name = "textBoxX10";
     this.textBoxX10.ReadOnly = true;
     this.textBoxX10.Size = new System.Drawing.Size(90, 21);
     this.textBoxX10.TabIndex = 15;
     this.textBoxX10.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxX10_Validating);
     //
     // labelX13
     //
     this.labelX13.AutoSize = true;
     //
     //
     //
     this.labelX13.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX13.Location = new System.Drawing.Point(47, 144);
     this.labelX13.Name = "labelX13";
     this.labelX13.Size = new System.Drawing.Size(74, 15);
     this.labelX13.TabIndex = 68;
     this.labelX13.Text = "Inversion Fija :";
     //
     // labelX12
     //
     this.labelX12.AutoSize = true;
     //
     //
     //
     this.labelX12.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX12.Location = new System.Drawing.Point(13, 116);
     this.labelX12.Name = "labelX12";
     this.labelX12.Size = new System.Drawing.Size(108, 15);
     this.labelX12.TabIndex = 66;
     this.labelX12.Text = "Promedio de Ventas :";
     //
     // textBoxX8
     //
     this.textBoxX8.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX8.Border.Class = "TextBoxBorder";
     this.textBoxX8.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX8.ForeColor = System.Drawing.Color.Black;
     this.textBoxX8.Location = new System.Drawing.Point(138, 89);
     this.textBoxX8.MaxLength = 4;
     this.textBoxX8.Name = "textBoxX8";
     this.textBoxX8.ReadOnly = true;
     this.textBoxX8.Size = new System.Drawing.Size(50, 21);
     this.textBoxX8.TabIndex = 13;
     this.textBoxX8.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxX8_KeyPress);
     //
     // labelX11
     //
     this.labelX11.AutoSize = true;
     //
     //
     //
     this.labelX11.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX11.Location = new System.Drawing.Point(10, 89);
     this.labelX11.Name = "labelX11";
     this.labelX11.Size = new System.Drawing.Size(111, 15);
     this.labelX11.TabIndex = 64;
     this.labelX11.Text = "Cantidad Empleados :";
     //
     // labelX10
     //
     this.labelX10.AutoSize = true;
     //
     //
     //
     this.labelX10.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX10.Location = new System.Drawing.Point(81, 35);
     this.labelX10.Name = "labelX10";
     this.labelX10.Size = new System.Drawing.Size(40, 15);
     this.labelX10.TabIndex = 62;
     this.labelX10.Text = "Sector :";
     //
     // textBoxX7
     //
     this.textBoxX7.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX7.Border.Class = "TextBoxBorder";
     this.textBoxX7.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX7.ForeColor = System.Drawing.Color.Black;
     this.textBoxX7.Location = new System.Drawing.Point(487, 177);
     this.textBoxX7.MaxLength = 50;
     this.textBoxX7.Name = "textBoxX7";
     this.textBoxX7.ReadOnly = true;
     this.textBoxX7.Size = new System.Drawing.Size(200, 21);
     this.textBoxX7.TabIndex = 10;
     //
     // labelX9
     //
     //
     //
     //
     this.labelX9.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX9.Location = new System.Drawing.Point(360, 176);
     this.labelX9.Name = "labelX9";
     this.labelX9.Size = new System.Drawing.Size(109, 23);
     this.labelX9.TabIndex = 60;
     this.labelX9.Text = "Pagina Web :";
     //
     // textBoxX6
     //
     this.textBoxX6.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX6.Border.Class = "TextBoxBorder";
     this.textBoxX6.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX6.ForeColor = System.Drawing.Color.Black;
     this.textBoxX6.Location = new System.Drawing.Point(487, 148);
     this.textBoxX6.Name = "textBoxX6";
     this.textBoxX6.ReadOnly = true;
     this.textBoxX6.Size = new System.Drawing.Size(200, 21);
     this.textBoxX6.TabIndex = 9;
     this.superValidator1.SetValidator1(this.textBoxX6, this.regularExpressionValidator1);
     this.textBoxX6.WatermarkText = "*****@*****.**";
     //
     // labelX8
     //
     //
     //
     //
     this.labelX8.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX8.Location = new System.Drawing.Point(360, 147);
     this.labelX8.Name = "labelX8";
     this.labelX8.Size = new System.Drawing.Size(109, 23);
     this.labelX8.TabIndex = 58;
     this.labelX8.Text = "e-mail :";
     //
     // textBoxX5
     //
     this.textBoxX5.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX5.Border.Class = "TextBoxBorder";
     this.textBoxX5.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX5.ForeColor = System.Drawing.Color.Black;
     this.textBoxX5.Location = new System.Drawing.Point(486, 119);
     this.textBoxX5.MaxLength = 20;
     this.textBoxX5.Name = "textBoxX5";
     this.textBoxX5.ReadOnly = true;
     this.textBoxX5.Size = new System.Drawing.Size(139, 21);
     this.textBoxX5.TabIndex = 8;
     this.textBoxX5.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxX5_KeyPress);
     //
     // labelX7
     //
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX7.Location = new System.Drawing.Point(360, 118);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(92, 23);
     this.labelX7.TabIndex = 56;
     this.labelX7.Text = "Fax :";
     //
     // textBoxX4
     //
     this.textBoxX4.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX4.Border.Class = "TextBoxBorder";
     this.textBoxX4.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX4.ForeColor = System.Drawing.Color.Black;
     this.textBoxX4.Location = new System.Drawing.Point(487, 90);
     this.textBoxX4.MaxLength = 20;
     this.textBoxX4.Name = "textBoxX4";
     this.textBoxX4.ReadOnly = true;
     this.textBoxX4.Size = new System.Drawing.Size(139, 21);
     this.textBoxX4.TabIndex = 7;
     this.superValidator1.SetValidator1(this.textBoxX4, this.regularExpressionValidator1);
     this.textBoxX4.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textBoxX4_KeyPress);
     //
     // labelX6
     //
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX6.Location = new System.Drawing.Point(360, 89);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(109, 23);
     this.labelX6.TabIndex = 54;
     this.labelX6.Text = "Telefono :";
     //
     // labelX5
     //
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX5.Location = new System.Drawing.Point(11, 89);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(121, 23);
     this.labelX5.TabIndex = 53;
     this.labelX5.Text = "Departamento :";
     //
     // 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.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dateTimeInput1.IsPopupCalendarOpen = false;
     this.dateTimeInput1.Location = new System.Drawing.Point(486, 59);
     //
     //
     //
     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(2012, 5, 1, 0, 0, 0, 0);
     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.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.dateTimeInput1.Name = "dateTimeInput1";
     this.dateTimeInput1.Size = new System.Drawing.Size(87, 21);
     this.dateTimeInput1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.dateTimeInput1.TabIndex = 6;
     //
     // labelX4
     //
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX4.Location = new System.Drawing.Point(360, 59);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(109, 23);
     this.labelX4.TabIndex = 51;
     this.labelX4.Text = "Fecha Constitucion :";
     //
     // textBoxX3
     //
     this.textBoxX3.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX3.Border.Class = "TextBoxBorder";
     this.textBoxX3.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX3.ForeColor = System.Drawing.Color.Black;
     this.textBoxX3.Location = new System.Drawing.Point(137, 119);
     this.textBoxX3.Multiline = true;
     this.textBoxX3.Name = "textBoxX3";
     this.textBoxX3.ReadOnly = true;
     this.textBoxX3.Size = new System.Drawing.Size(201, 80);
     this.textBoxX3.TabIndex = 4;
     //
     // labelX3
     //
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX3.Location = new System.Drawing.Point(11, 118);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(121, 23);
     this.labelX3.TabIndex = 49;
     this.labelX3.Text = "Direccion de Empresa :";
     //
     // textBoxX2
     //
     this.textBoxX2.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX2.Border.Class = "TextBoxBorder";
     this.textBoxX2.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX2.ForeColor = System.Drawing.Color.Black;
     this.textBoxX2.Location = new System.Drawing.Point(138, 61);
     this.textBoxX2.MaxLength = 100;
     this.textBoxX2.Name = "textBoxX2";
     this.textBoxX2.ReadOnly = true;
     this.textBoxX2.Size = new System.Drawing.Size(200, 21);
     this.textBoxX2.TabIndex = 2;
     //
     // labelX2
     //
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX2.Location = new System.Drawing.Point(11, 60);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(109, 23);
     this.labelX2.TabIndex = 47;
     this.labelX2.Text = "Nombre Comercial :";
     //
     // textBoxX1
     //
     this.textBoxX1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX1.Border.Class = "TextBoxBorder";
     this.textBoxX1.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX1.ForeColor = System.Drawing.Color.Black;
     this.textBoxX1.Location = new System.Drawing.Point(138, 34);
     this.textBoxX1.MaxLength = 100;
     this.textBoxX1.Name = "textBoxX1";
     this.textBoxX1.ReadOnly = true;
     this.textBoxX1.Size = new System.Drawing.Size(200, 21);
     this.textBoxX1.TabIndex = 1;
     //
     // labelX1
     //
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX1.Location = new System.Drawing.Point(11, 31);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(109, 23);
     this.labelX1.TabIndex = 45;
     this.labelX1.Text = "Nombre de Empresa :";
     //
     // superValidator1
     //
     this.superValidator1.ContainerControl = this;
     this.superValidator1.ErrorProvider = this.errorProvider1;
     this.superValidator1.Highlighter = this.highlighter1;
     //
     // regularExpressionValidator1
     //
     this.regularExpressionValidator1.Enabled = false;
     this.regularExpressionValidator1.ErrorMessage = "E-mail inválido";
     this.regularExpressionValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     this.regularExpressionValidator1.ValidationExpression = "^([0-9a-zA-Z]([-\\.\\w]*[0-9a-zA-Z])*@([0-9a-zA-Z][-\\w]*[0-9a-zA-Z]\\.)+[a-zA-Z]{2,9" +
         "})$";
     //
     // errorProvider1
     //
     this.errorProvider1.ContainerControl = this;
     this.errorProvider1.Icon = ((System.Drawing.Icon)(resources.GetObject("errorProvider1.Icon")));
     //
     // highlighter1
     //
     this.highlighter1.ContainerControl = this;
     //
     // comboBoxEx6
     //
     this.comboBoxEx6.DisplayMember = "Text";
     this.comboBoxEx6.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx6.FormattingEnabled = true;
     this.comboBoxEx6.ItemHeight = 16;
     this.comboBoxEx6.Location = new System.Drawing.Point(125, 265);
     this.comboBoxEx6.Name = "comboBoxEx6";
     this.comboBoxEx6.Size = new System.Drawing.Size(207, 22);
     this.comboBoxEx6.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx6.TabIndex = 24;
     //
     // comboBoxEx2
     //
     this.comboBoxEx2.DisplayMember = "Text";
     this.comboBoxEx2.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx2.Enabled = false;
     this.comboBoxEx2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxEx2.FormattingEnabled = true;
     this.comboBoxEx2.ItemHeight = 15;
     this.comboBoxEx2.Location = new System.Drawing.Point(138, 35);
     this.comboBoxEx2.Name = "comboBoxEx2";
     this.comboBoxEx2.Size = new System.Drawing.Size(139, 21);
     this.comboBoxEx2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx2.TabIndex = 11;
     //
     // cADINDataSet
     //
     this.cADINDataSet.DataSetName = "CADINDataSet";
     this.cADINDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // departamentosBindingSource
     //
     this.departamentosBindingSource.DataMember = "Departamentos";
     this.departamentosBindingSource.DataSource = this.cADINDataSet;
     //
     // departamentosTableAdapter
     //
     this.departamentosTableAdapter.ClearBeforeFill = true;
     //
     // checkBoxX1
     //
     //
     //
     //
     this.checkBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX1.Enabled = false;
     this.checkBoxX1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBoxX1.Location = new System.Drawing.Point(11, 30);
     this.checkBoxX1.Name = "checkBoxX1";
     this.checkBoxX1.Size = new System.Drawing.Size(115, 23);
     this.checkBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX1.TabIndex = 18;
     this.checkBoxX1.Text = "Afiliado a CENAMI";
     //
     // checkBoxX2
     //
     //
     //
     //
     this.checkBoxX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX2.Enabled = false;
     this.checkBoxX2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.checkBoxX2.Location = new System.Drawing.Point(162, 30);
     this.checkBoxX2.Name = "checkBoxX2";
     this.checkBoxX2.Size = new System.Drawing.Size(100, 23);
     this.checkBoxX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX2.TabIndex = 19;
     this.checkBoxX2.Text = "Socio de CADIN";
     //
     // labelX22
     //
     //
     //
     //
     this.labelX22.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX22.Location = new System.Drawing.Point(331, 95);
     this.labelX22.Name = "labelX22";
     this.labelX22.Size = new System.Drawing.Size(81, 23);
     this.labelX22.TabIndex = 86;
     this.labelX22.Text = "Cuota Anual :";
     //
     // labelX20
     //
     //
     //
     //
     this.labelX20.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX20.Location = new System.Drawing.Point(10, 67);
     this.labelX20.Name = "labelX20";
     this.labelX20.Size = new System.Drawing.Size(109, 23);
     this.labelX20.TabIndex = 92;
     this.labelX20.Text = "Tipo de Membresia :";
     //
     // comboBoxEx3
     //
     this.comboBoxEx3.DisplayMember = "Text";
     this.comboBoxEx3.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx3.Enabled = false;
     this.comboBoxEx3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxEx3.FormattingEnabled = true;
     this.comboBoxEx3.ItemHeight = 15;
     this.comboBoxEx3.Location = new System.Drawing.Point(137, 67);
     this.comboBoxEx3.Name = "comboBoxEx3";
     this.comboBoxEx3.Size = new System.Drawing.Size(143, 21);
     this.comboBoxEx3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx3.TabIndex = 20;
     //
     // comboBoxEx4
     //
     this.comboBoxEx4.DisplayMember = "Text";
     this.comboBoxEx4.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx4.Enabled = false;
     this.comboBoxEx4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxEx4.FormattingEnabled = true;
     this.comboBoxEx4.ItemHeight = 15;
     this.comboBoxEx4.Location = new System.Drawing.Point(433, 68);
     this.comboBoxEx4.Name = "comboBoxEx4";
     this.comboBoxEx4.Size = new System.Drawing.Size(125, 21);
     this.comboBoxEx4.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx4.TabIndex = 22;
     this.comboBoxEx4.Click += new System.EventHandler(this.comboBoxEx4_Click);
     //
     // labelX23
     //
     //
     //
     //
     this.labelX23.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX23.Location = new System.Drawing.Point(331, 67);
     this.labelX23.Name = "labelX23";
     this.labelX23.Size = new System.Drawing.Size(109, 23);
     this.labelX23.TabIndex = 94;
     this.labelX23.Text = "Tipo de Tarifa :";
     //
     // comboBoxEx5
     //
     this.comboBoxEx5.DisplayMember = "Text";
     this.comboBoxEx5.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx5.Enabled = false;
     this.comboBoxEx5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.comboBoxEx5.FormattingEnabled = true;
     this.comboBoxEx5.ItemHeight = 15;
     this.comboBoxEx5.Location = new System.Drawing.Point(137, 97);
     this.comboBoxEx5.Name = "comboBoxEx5";
     this.comboBoxEx5.Size = new System.Drawing.Size(143, 21);
     this.comboBoxEx5.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx5.TabIndex = 21;
     //
     // labelX24
     //
     //
     //
     //
     this.labelX24.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX24.Location = new System.Drawing.Point(10, 96);
     this.labelX24.Name = "labelX24";
     this.labelX24.Size = new System.Drawing.Size(109, 23);
     this.labelX24.TabIndex = 96;
     this.labelX24.Text = "Tipo de Empresa :";
     //
     // checkBoxX3
     //
     //
     //
     //
     this.checkBoxX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX3.Enabled = false;
     this.checkBoxX3.Location = new System.Drawing.Point(593, 377);
     this.checkBoxX3.Name = "checkBoxX3";
     this.checkBoxX3.Size = new System.Drawing.Size(142, 23);
     this.checkBoxX3.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX3.TabIndex = 28;
     this.checkBoxX3.Text = "Desea recibir correos";
     //
     // textBoxX17
     //
     this.textBoxX17.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX17.Border.Class = "TextBoxBorder";
     this.textBoxX17.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX17.ForeColor = System.Drawing.Color.Black;
     this.textBoxX17.Location = new System.Drawing.Point(433, 96);
     this.textBoxX17.Name = "textBoxX17";
     this.textBoxX17.Size = new System.Drawing.Size(125, 21);
     this.textBoxX17.TabIndex = 100;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.txtCodCiiu);
     this.groupBox1.Controls.Add(this.labelX26);
     this.groupBox1.Controls.Add(this.textBoxX2);
     this.groupBox1.Controls.Add(this.labelX1);
     this.groupBox1.Controls.Add(this.textBoxX1);
     this.groupBox1.Controls.Add(this.labelX2);
     this.groupBox1.Controls.Add(this.labelX3);
     this.groupBox1.Controls.Add(this.labelX4);
     this.groupBox1.Controls.Add(this.dateTimeInput1);
     this.groupBox1.Controls.Add(this.textBoxX3);
     this.groupBox1.Controls.Add(this.comboBoxEx1);
     this.groupBox1.Controls.Add(this.labelX5);
     this.groupBox1.Controls.Add(this.labelX6);
     this.groupBox1.Controls.Add(this.textBoxX4);
     this.groupBox1.Controls.Add(this.labelX7);
     this.groupBox1.Controls.Add(this.textBoxX5);
     this.groupBox1.Controls.Add(this.labelX8);
     this.groupBox1.Controls.Add(this.textBoxX6);
     this.groupBox1.Controls.Add(this.labelX9);
     this.groupBox1.Controls.Add(this.textBoxX7);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(12, 17);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(732, 216);
     this.groupBox1.TabIndex = 100;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Informacion General";
     //
     // txtCodCiiu
     //
     this.txtCodCiiu.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.txtCodCiiu.Border.Class = "TextBoxBorder";
     this.txtCodCiiu.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtCodCiiu.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtCodCiiu.ForeColor = System.Drawing.Color.Black;
     this.txtCodCiiu.Location = new System.Drawing.Point(487, 31);
     this.txtCodCiiu.Name = "txtCodCiiu";
     this.txtCodCiiu.Size = new System.Drawing.Size(128, 20);
     this.txtCodCiiu.TabIndex = 5;
     //
     // labelX26
     //
     //
     //
     //
     this.labelX26.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX26.Location = new System.Drawing.Point(358, 30);
     this.labelX26.Name = "labelX26";
     this.labelX26.Size = new System.Drawing.Size(109, 23);
     this.labelX26.TabIndex = 61;
     this.labelX26.Text = "Codigo CIIU:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label6);
     this.groupBox2.Controls.Add(this.labelX29);
     this.groupBox2.Controls.Add(this.labelX28);
     this.groupBox2.Controls.Add(this.cboAgrupacion);
     this.groupBox2.Controls.Add(this.labelX27);
     this.groupBox2.Controls.Add(this.textBoxX9);
     this.groupBox2.Controls.Add(this.textBoxX12);
     this.groupBox2.Controls.Add(this.labelX10);
     this.groupBox2.Controls.Add(this.labelX11);
     this.groupBox2.Controls.Add(this.textBoxX8);
     this.groupBox2.Controls.Add(this.labelX12);
     this.groupBox2.Controls.Add(this.labelX13);
     this.groupBox2.Controls.Add(this.textBoxX10);
     this.groupBox2.Controls.Add(this.labelX14);
     this.groupBox2.Controls.Add(this.textBoxX11);
     this.groupBox2.Controls.Add(this.labelX15);
     this.groupBox2.Controls.Add(this.comboBoxEx2);
     this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.Location = new System.Drawing.Point(12, 239);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(735, 185);
     this.groupBox2.TabIndex = 101;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Datos de Produccion";
     //
     // labelX29
     //
     this.labelX29.AutoSize = true;
     //
     //
     //
     this.labelX29.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX29.Location = new System.Drawing.Point(127, 147);
     this.labelX29.Name = "labelX29";
     this.labelX29.Size = new System.Drawing.Size(17, 15);
     this.labelX29.TabIndex = 77;
     this.labelX29.Text = "C$";
     //
     // labelX28
     //
     this.labelX28.AutoSize = true;
     //
     //
     //
     this.labelX28.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX28.Location = new System.Drawing.Point(127, 119);
     this.labelX28.Name = "labelX28";
     this.labelX28.Size = new System.Drawing.Size(17, 15);
     this.labelX28.TabIndex = 76;
     this.labelX28.Text = "C$";
     //
     // cboAgrupacion
     //
     this.cboAgrupacion.DisplayMember = "Text";
     this.cboAgrupacion.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboAgrupacion.Enabled = false;
     this.cboAgrupacion.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cboAgrupacion.FormattingEnabled = true;
     this.cboAgrupacion.ItemHeight = 15;
     this.cboAgrupacion.Location = new System.Drawing.Point(138, 62);
     this.cboAgrupacion.Name = "cboAgrupacion";
     this.cboAgrupacion.Size = new System.Drawing.Size(139, 21);
     this.cboAgrupacion.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboAgrupacion.TabIndex = 12;
     //
     // labelX27
     //
     this.labelX27.AutoSize = true;
     //
     //
     //
     this.labelX27.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX27.Location = new System.Drawing.Point(57, 62);
     this.labelX27.Name = "labelX27";
     this.labelX27.Size = new System.Drawing.Size(64, 15);
     this.labelX27.TabIndex = 75;
     this.labelX27.Text = "Agrupación :";
     //
     // textBoxX9
     //
     this.textBoxX9.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX9.Border.Class = "TextBoxBorder";
     this.textBoxX9.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBoxX9.ForeColor = System.Drawing.Color.Black;
     this.textBoxX9.Location = new System.Drawing.Point(145, 116);
     this.textBoxX9.Name = "textBoxX9";
     this.textBoxX9.Size = new System.Drawing.Size(90, 21);
     this.textBoxX9.TabIndex = 14;
     this.textBoxX9.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxX9_Validating_1);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label10);
     this.groupBox4.Controls.Add(this.label9);
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.label7);
     this.groupBox4.Controls.Add(this.btnGenerarPagos);
     this.groupBox4.Controls.Add(this.comboBoxEx3);
     this.groupBox4.Controls.Add(this.labelX21);
     this.groupBox4.Controls.Add(this.dateTimeInput2);
     this.groupBox4.Controls.Add(this.labelX22);
     this.groupBox4.Controls.Add(this.textBoxX17);
     this.groupBox4.Controls.Add(this.checkBoxX1);
     this.groupBox4.Controls.Add(this.comboBoxEx5);
     this.groupBox4.Controls.Add(this.checkBoxX2);
     this.groupBox4.Controls.Add(this.labelX24);
     this.groupBox4.Controls.Add(this.labelX20);
     this.groupBox4.Controls.Add(this.comboBoxEx4);
     this.groupBox4.Controls.Add(this.labelX23);
     this.groupBox4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox4.Location = new System.Drawing.Point(12, 430);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(731, 138);
     this.groupBox4.TabIndex = 103;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Informacion de Membresia";
     //
     // btnGenerarPagos
     //
     this.btnGenerarPagos.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnGenerarPagos.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnGenerarPagos.Location = new System.Drawing.Point(593, 94);
     this.btnGenerarPagos.Name = "btnGenerarPagos";
     this.btnGenerarPagos.Size = new System.Drawing.Size(116, 23);
     this.btnGenerarPagos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnGenerarPagos.TabIndex = 97;
     this.btnGenerarPagos.Text = "Pagos";
     this.btnGenerarPagos.Click += new System.EventHandler(this.btnGenerarPagos_Click);
     //
     // dataGridViewX1
     //
     this.dataGridViewX1.AllowUserToAddRows = false;
     this.dataGridViewX1.AllowUserToDeleteRows = false;
     this.dataGridViewX1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridViewX1.BackgroundColor = System.Drawing.SystemColors.GradientInactiveCaption;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dataGridViewX1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dataGridViewX1.DefaultCellStyle = dataGridViewCellStyle2;
     this.dataGridViewX1.EnableHeadersVisualStyles = false;
     this.dataGridViewX1.GridColor = System.Drawing.Color.FromArgb(((int)(((byte)(101)))), ((int)(((byte)(107)))), ((int)(((byte)(114)))));
     this.dataGridViewX1.Location = new System.Drawing.Point(11, 19);
     this.dataGridViewX1.Name = "dataGridViewX1";
     this.dataGridViewX1.ReadOnly = true;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Black;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dataGridViewX1.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.dataGridViewX1.Size = new System.Drawing.Size(720, 176);
     this.dataGridViewX1.TabIndex = 23;
     //
     // labelX16
     //
     //
     //
     //
     this.labelX16.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX16.Location = new System.Drawing.Point(528, 3);
     this.labelX16.Name = "labelX16";
     this.labelX16.Size = new System.Drawing.Size(109, 19);
     this.labelX16.TabIndex = 104;
     this.labelX16.Text = "Codigo de Empresa :";
     //
     // textBoxX13
     //
     this.textBoxX13.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     //
     //
     //
     this.textBoxX13.Border.Class = "TextBoxBorder";
     this.textBoxX13.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.textBoxX13.ForeColor = System.Drawing.Color.Black;
     this.textBoxX13.Location = new System.Drawing.Point(643, 2);
     this.textBoxX13.Name = "textBoxX13";
     this.textBoxX13.ReadOnly = true;
     this.textBoxX13.Size = new System.Drawing.Size(100, 20);
     this.textBoxX13.TabIndex = 46;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label11);
     this.groupBox3.Controls.Add(this.btnEliminarContacto);
     this.groupBox3.Controls.Add(this.labelX25);
     this.groupBox3.Controls.Add(this.comboBoxEx9);
     this.groupBox3.Controls.Add(this.labelX19);
     this.groupBox3.Controls.Add(this.comboBoxEx8);
     this.groupBox3.Controls.Add(this.labelX18);
     this.groupBox3.Controls.Add(this.comboBoxEx7);
     this.groupBox3.Controls.Add(this.labelX17);
     this.groupBox3.Controls.Add(this.comboBoxEx6);
     this.groupBox3.Controls.Add(this.checkBoxX3);
     this.groupBox3.Controls.Add(this.dataGridViewX1);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.Location = new System.Drawing.Point(12, 574);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(741, 406);
     this.groupBox3.TabIndex = 105;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Contactos";
     //
     // btnEliminarContacto
     //
     this.btnEliminarContacto.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnEliminarContacto.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnEliminarContacto.Location = new System.Drawing.Point(608, 201);
     this.btnEliminarContacto.Name = "btnEliminarContacto";
     this.btnEliminarContacto.Size = new System.Drawing.Size(123, 23);
     this.btnEliminarContacto.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnEliminarContacto.TabIndex = 109;
     this.btnEliminarContacto.Text = "Eliminar Contacto";
     this.btnEliminarContacto.Click += new System.EventHandler(this.btnEliminarContacto_Click);
     //
     // labelX25
     //
     //
     //
     //
     this.labelX25.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX25.Location = new System.Drawing.Point(391, 302);
     this.labelX25.Name = "labelX25";
     this.labelX25.Size = new System.Drawing.Size(95, 23);
     this.labelX25.TabIndex = 108;
     this.labelX25.Text = "Tercer suplente :";
     //
     // comboBoxEx9
     //
     this.comboBoxEx9.DisplayMember = "Text";
     this.comboBoxEx9.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx9.FormattingEnabled = true;
     this.comboBoxEx9.ItemHeight = 16;
     this.comboBoxEx9.Location = new System.Drawing.Point(516, 303);
     this.comboBoxEx9.Name = "comboBoxEx9";
     this.comboBoxEx9.Size = new System.Drawing.Size(207, 22);
     this.comboBoxEx9.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx9.TabIndex = 27;
     //
     // labelX19
     //
     //
     //
     //
     this.labelX19.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX19.Location = new System.Drawing.Point(10, 301);
     this.labelX19.Name = "labelX19";
     this.labelX19.Size = new System.Drawing.Size(95, 23);
     this.labelX19.TabIndex = 106;
     this.labelX19.Text = "Segundo suplente :";
     //
     // comboBoxEx8
     //
     this.comboBoxEx8.DisplayMember = "Text";
     this.comboBoxEx8.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx8.FormattingEnabled = true;
     this.comboBoxEx8.ItemHeight = 16;
     this.comboBoxEx8.Location = new System.Drawing.Point(125, 302);
     this.comboBoxEx8.Name = "comboBoxEx8";
     this.comboBoxEx8.Size = new System.Drawing.Size(207, 22);
     this.comboBoxEx8.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx8.TabIndex = 25;
     //
     // labelX18
     //
     //
     //
     //
     this.labelX18.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX18.Location = new System.Drawing.Point(391, 265);
     this.labelX18.Name = "labelX18";
     this.labelX18.Size = new System.Drawing.Size(95, 23);
     this.labelX18.TabIndex = 104;
     this.labelX18.Text = "Primer suplente :";
     //
     // comboBoxEx7
     //
     this.comboBoxEx7.DisplayMember = "Text";
     this.comboBoxEx7.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.comboBoxEx7.FormattingEnabled = true;
     this.comboBoxEx7.ItemHeight = 16;
     this.comboBoxEx7.Location = new System.Drawing.Point(516, 265);
     this.comboBoxEx7.Name = "comboBoxEx7";
     this.comboBoxEx7.Size = new System.Drawing.Size(207, 22);
     this.comboBoxEx7.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.comboBoxEx7.TabIndex = 26;
     //
     // labelX17
     //
     //
     //
     //
     this.labelX17.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelX17.Location = new System.Drawing.Point(11, 265);
     this.labelX17.Name = "labelX17";
     this.labelX17.Size = new System.Drawing.Size(108, 23);
     this.labelX17.TabIndex = 102;
     this.labelX17.Text = "Contacto principal :";
     //
     // customValidator1
     //
     this.customValidator1.ErrorMessage = "Your error message here.";
     this.customValidator1.HighlightColor = DevComponents.DotNetBar.Validator.eHighlightColor.Red;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label1.Location = new System.Drawing.Point(339, 39);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(14, 16);
     this.label1.TabIndex = 62;
     this.label1.Text = "*";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label2.Location = new System.Drawing.Point(339, 67);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(14, 16);
     this.label2.TabIndex = 63;
     this.label2.Text = "*";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label3.Location = new System.Drawing.Point(283, 96);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(14, 16);
     this.label3.TabIndex = 64;
     this.label3.Text = "*";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label4.Location = new System.Drawing.Point(339, 121);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(14, 16);
     this.label4.TabIndex = 65;
     this.label4.Text = "*";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label5.Location = new System.Drawing.Point(573, 64);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(14, 16);
     this.label5.TabIndex = 66;
     this.label5.Text = "*";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label6.Location = new System.Drawing.Point(283, 40);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(14, 16);
     this.label6.TabIndex = 67;
     this.label6.Text = "*";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label7.Location = new System.Drawing.Point(286, 72);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(14, 16);
     this.label7.TabIndex = 78;
     this.label7.Text = "*";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label8.Location = new System.Drawing.Point(286, 102);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(14, 16);
     this.label8.TabIndex = 101;
     this.label8.Text = "*";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label9.Location = new System.Drawing.Point(559, 74);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(14, 16);
     this.label9.TabIndex = 102;
     this.label9.Text = "*";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label10.Location = new System.Drawing.Point(559, 102);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(14, 16);
     this.label10.TabIndex = 103;
     this.label10.Text = "*";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.label11.Location = new System.Drawing.Point(338, 271);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(14, 16);
     this.label11.TabIndex = 104;
     this.label11.Text = "*";
     //
     // Empresa
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.textBoxX13);
     this.Controls.Add(this.labelX16);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "Empresa";
     this.Size = new System.Drawing.Size(768, 983);
     this.Load += new System.EventHandler(this.Empresa_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateTimeInput1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cADINDataSet)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.departamentosBindingSource)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridViewX1)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
 }
コード例 #50
0
ファイル: ObjectInstanceEditor.cs プロジェクト: xnum/hasuite
 private int?GetOptionalInt(DevComponents.Editors.IntegerInput intinput, DevComponents.DotNetBar.Controls.CheckBoxX checkbox)
 {
     return(checkbox.Checked ? (int?)intinput.Value : null);
 }
コード例 #51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.txtName = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.btnCancel = new DevComponents.DotNetBar.ButtonX();
     this.btnSubmit = new DevComponents.DotNetBar.ButtonX();
     this.checkBoxX1 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.checkBoxX2 = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.linkLabel1 = new System.Windows.Forms.LinkLabel();
     this.linkLabel2 = new System.Windows.Forms.LinkLabel();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     this.labelX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX1.BackgroundStyle.Class = "";
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(13, 13);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(74, 21);
     this.labelX1.TabIndex = 0;
     this.labelX1.Text = "樣板名稱:";
     //
     // txtName
     //
     //
     //
     //
     this.txtName.Border.Class = "TextBoxBorder";
     this.txtName.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.txtName.Location = new System.Drawing.Point(93, 11);
     this.txtName.Name = "txtName";
     this.txtName.Size = new System.Drawing.Size(225, 25);
     this.txtName.TabIndex = 1;
     this.txtName.TextChanged += new System.EventHandler(this.checkReady);
     //
     // btnCancel
     //
     this.btnCancel.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnCancel.BackColor = System.Drawing.Color.Transparent;
     this.btnCancel.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(243, 297);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnCancel.TabIndex = 3;
     this.btnCancel.Text = "取消";
     //
     // btnSubmit
     //
     this.btnSubmit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnSubmit.BackColor = System.Drawing.Color.Transparent;
     this.btnSubmit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnSubmit.Enabled = false;
     this.btnSubmit.Location = new System.Drawing.Point(162, 297);
     this.btnSubmit.Name = "btnSubmit";
     this.btnSubmit.Size = new System.Drawing.Size(75, 23);
     this.btnSubmit.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnSubmit.TabIndex = 3;
     this.btnSubmit.Text = "確定";
     this.btnSubmit.Click += new System.EventHandler(this.btnSubmit_Click);
     //
     // checkBoxX1
     //
     this.checkBoxX1.AutoSize = true;
     this.checkBoxX1.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.checkBoxX1.BackgroundStyle.Class = "";
     this.checkBoxX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX1.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxX1.Location = new System.Drawing.Point(13, 163);
     this.checkBoxX1.Name = "checkBoxX1";
     this.checkBoxX1.Size = new System.Drawing.Size(121, 21);
     this.checkBoxX1.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX1.TabIndex = 4;
     this.checkBoxX1.Text = "使用高中版樣板";
     this.checkBoxX1.CheckedChanged += new System.EventHandler(this.checkReady);
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     this.labelX3.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX3.BackgroundStyle.Class = "";
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(13, 42);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(74, 21);
     this.labelX3.TabIndex = 0;
     this.labelX3.Text = "選用樣板:";
     //
     // checkBoxX2
     //
     this.checkBoxX2.AutoSize = true;
     this.checkBoxX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.checkBoxX2.BackgroundStyle.Class = "";
     this.checkBoxX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.checkBoxX2.CheckBoxStyle = DevComponents.DotNetBar.eCheckBoxStyle.RadioButton;
     this.checkBoxX2.Location = new System.Drawing.Point(13, 190);
     this.checkBoxX2.Name = "checkBoxX2";
     this.checkBoxX2.Size = new System.Drawing.Size(107, 21);
     this.checkBoxX2.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.checkBoxX2.TabIndex = 4;
     this.checkBoxX2.Text = "使用自訂樣板";
     this.checkBoxX2.CheckedChanged += new System.EventHandler(this.checkReady);
     //
     // labelX4
     //
     this.labelX4.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX4.BackgroundStyle.Class = "";
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(32, 69);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(286, 88);
     this.labelX4.TabIndex = 5;
     this.labelX4.Text = "上傳的樣板將會決定成績單產出樣式以及包含的內容。本功能將盡量提供更多種類的資料內容,部分資料可能會在不同的使用情境中是不被需要的,只要在樣板中移除相對應的合併欄位" +
     ",就不會印出這些資料。";
     this.labelX4.WordWrap = true;
     //
     // linkLabel1
     //
     this.linkLabel1.AutoSize = true;
     this.linkLabel1.BackColor = System.Drawing.Color.Transparent;
     this.linkLabel1.Location = new System.Drawing.Point(134, 165);
     this.linkLabel1.Name = "linkLabel1";
     this.linkLabel1.Size = new System.Drawing.Size(60, 17);
     this.linkLabel1.TabIndex = 6;
     this.linkLabel1.TabStop = true;
     this.linkLabel1.Text = "檢視樣板";
     this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
     //
     // linkLabel2
     //
     this.linkLabel2.AutoSize = true;
     this.linkLabel2.BackColor = System.Drawing.Color.Transparent;
     this.linkLabel2.Location = new System.Drawing.Point(134, 192);
     this.linkLabel2.Name = "linkLabel2";
     this.linkLabel2.Size = new System.Drawing.Size(112, 17);
     this.linkLabel2.TabIndex = 6;
     this.linkLabel2.TabStop = true;
     this.linkLabel2.Text = "檢視合併欄位總表";
     this.linkLabel2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel2_LinkClicked);
     //
     // labelX2
     //
     this.labelX2.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.labelX2.BackgroundStyle.Class = "";
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(32, 217);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(286, 74);
     this.labelX2.TabIndex = 5;
     this.labelX2.Text = "透過自訂樣板可以將報表設定成最符合使用情境的樣貌。但樣板中合併欄位非常的多,建議從合併欄位總表中,利用複製貼上的方式填入您的樣板,如此將可保障樣板的正確性。";
     this.labelX2.WordWrap = true;
     //
     // NewConfigure
     //
     this.AcceptButton = this.btnSubmit;
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(330, 328);
     this.Controls.Add(this.linkLabel2);
     this.Controls.Add(this.linkLabel1);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.checkBoxX2);
     this.Controls.Add(this.checkBoxX1);
     this.Controls.Add(this.btnSubmit);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.txtName);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Name = "NewConfigure";
     this.Text = "新增列印樣板";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_mov_balancestock));
     this.btnPrint121 = new DevComponents.DotNetBar.ButtonX();
     this.btnPrint131 = new DevComponents.DotNetBar.ButtonX();
     this.chkimpresion = new System.Windows.Forms.CheckBox();
     this.dtmfecha = new System.Windows.Forms.DateTimePicker();
     this.labelX7 = new DevComponents.DotNetBar.LabelX();
     this.productid = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.labelX6 = new DevComponents.DotNetBar.LabelX();
     this.labelX5 = new DevComponents.DotNetBar.LabelX();
     this.labelX4 = new DevComponents.DotNetBar.LabelX();
     this.subgruponame = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.subgrupoid = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.gruponame = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.grupoid = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lineaname = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.lineaid = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.cboPerimesfin = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cboPerimesini = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.cboPerianio = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX3 = new DevComponents.DotNetBar.LabelX();
     this.chkTodos = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.cboLocal = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX2 = new DevComponents.DotNetBar.LabelX();
     this.cboModuloid = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.labelX1 = new DevComponents.DotNetBar.LabelX();
     this.SuspendLayout();
     //
     // btnPrint121
     //
     this.btnPrint121.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrint121.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrint121.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnPrint121.Image = global::BapFormulariosNet.Properties.Resources.PDT1;
     this.btnPrint121.Location = new System.Drawing.Point(246, 243);
     this.btnPrint121.Name = "btnPrint121";
     this.btnPrint121.Size = new System.Drawing.Size(99, 41);
     this.btnPrint121.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnPrint121.TabIndex = 121;
     this.btnPrint121.Text = "Form 12.1";
     this.btnPrint121.Click += new System.EventHandler(this.btnPrint121_Click);
     //
     // btnPrint131
     //
     this.btnPrint131.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnPrint131.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnPrint131.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnPrint131.Image = global::BapFormulariosNet.Properties.Resources.PDT1;
     this.btnPrint131.Location = new System.Drawing.Point(131, 243);
     this.btnPrint131.Name = "btnPrint131";
     this.btnPrint131.Size = new System.Drawing.Size(101, 41);
     this.btnPrint131.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.btnPrint131.TabIndex = 120;
     this.btnPrint131.Text = "Form 13.1";
     this.btnPrint131.Click += new System.EventHandler(this.btnPrint131_Click);
     //
     // chkimpresion
     //
     this.chkimpresion.AutoSize = true;
     this.chkimpresion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkimpresion.Location = new System.Drawing.Point(215, 201);
     this.chkimpresion.Name = "chkimpresion";
     this.chkimpresion.Size = new System.Drawing.Size(141, 17);
     this.chkimpresion.TabIndex = 119;
     this.chkimpresion.Text = "Fecha de Impresion:";
     this.chkimpresion.UseVisualStyleBackColor = true;
     //
     // dtmfecha
     //
     this.dtmfecha.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtmfecha.Location = new System.Drawing.Point(111, 197);
     this.dtmfecha.Name = "dtmfecha";
     this.dtmfecha.Size = new System.Drawing.Size(97, 21);
     this.dtmfecha.TabIndex = 118;
     //
     // labelX7
     //
     this.labelX7.AutoSize = true;
     //
     //
     //
     this.labelX7.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX7.Location = new System.Drawing.Point(16, 174);
     this.labelX7.Name = "labelX7";
     this.labelX7.Size = new System.Drawing.Size(82, 16);
     this.labelX7.TabIndex = 117;
     this.labelX7.Text = "Artículo/Modelo:";
     //
     // productid
     //
     //
     //
     //
     this.productid.Border.Class = "TextBoxBorder";
     this.productid.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.productid.ButtonCustom.Tooltip = "";
     this.productid.ButtonCustom2.Tooltip = "";
     this.productid.Location = new System.Drawing.Point(111, 172);
     this.productid.Name = "productid";
     this.productid.PreventEnterBeep = true;
     this.productid.Size = new System.Drawing.Size(113, 21);
     this.productid.TabIndex = 116;
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     //
     // labelX6
     //
     this.labelX6.AutoSize = true;
     //
     //
     //
     this.labelX6.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX6.Location = new System.Drawing.Point(15, 152);
     this.labelX6.Name = "labelX6";
     this.labelX6.Size = new System.Drawing.Size(82, 16);
     this.labelX6.TabIndex = 115;
     this.labelX6.Text = "Artículo/Modelo:";
     //
     // labelX5
     //
     this.labelX5.AutoSize = true;
     //
     //
     //
     this.labelX5.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX5.Location = new System.Drawing.Point(15, 123);
     this.labelX5.Name = "labelX5";
     this.labelX5.Size = new System.Drawing.Size(83, 16);
     this.labelX5.TabIndex = 114;
     this.labelX5.Text = "Marca/Provedor:";
     //
     // labelX4
     //
     this.labelX4.AutoSize = true;
     //
     //
     //
     this.labelX4.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX4.Location = new System.Drawing.Point(15, 98);
     this.labelX4.Name = "labelX4";
     this.labelX4.Size = new System.Drawing.Size(32, 16);
     this.labelX4.TabIndex = 113;
     this.labelX4.Text = "Línea:";
     //
     // subgruponame
     //
     //
     //
     //
     this.subgruponame.Border.Class = "TextBoxBorder";
     this.subgruponame.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.subgruponame.ButtonCustom.Tooltip = "";
     this.subgruponame.ButtonCustom2.Tooltip = "";
     this.subgruponame.Enabled = false;
     this.subgruponame.Location = new System.Drawing.Point(158, 147);
     this.subgruponame.Name = "subgruponame";
     this.subgruponame.PreventEnterBeep = true;
     this.subgruponame.Size = new System.Drawing.Size(201, 21);
     this.subgruponame.TabIndex = 112;
     //
     // subgrupoid
     //
     //
     //
     //
     this.subgrupoid.Border.Class = "TextBoxBorder";
     this.subgrupoid.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.subgrupoid.ButtonCustom.Tooltip = "";
     this.subgrupoid.ButtonCustom2.Tooltip = "";
     this.subgrupoid.Location = new System.Drawing.Point(111, 148);
     this.subgrupoid.Name = "subgrupoid";
     this.subgrupoid.PreventEnterBeep = true;
     this.subgrupoid.Size = new System.Drawing.Size(41, 21);
     this.subgrupoid.TabIndex = 111;
     this.subgrupoid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.subgrupoid_KeyDown);
     //
     // gruponame
     //
     //
     //
     //
     this.gruponame.Border.Class = "TextBoxBorder";
     this.gruponame.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.gruponame.ButtonCustom.Tooltip = "";
     this.gruponame.ButtonCustom2.Tooltip = "";
     this.gruponame.Enabled = false;
     this.gruponame.Location = new System.Drawing.Point(158, 120);
     this.gruponame.Name = "gruponame";
     this.gruponame.PreventEnterBeep = true;
     this.gruponame.Size = new System.Drawing.Size(201, 21);
     this.gruponame.TabIndex = 110;
     //
     // grupoid
     //
     //
     //
     //
     this.grupoid.Border.Class = "TextBoxBorder";
     this.grupoid.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.grupoid.ButtonCustom.Tooltip = "";
     this.grupoid.ButtonCustom2.Tooltip = "";
     this.grupoid.Location = new System.Drawing.Point(111, 121);
     this.grupoid.Name = "grupoid";
     this.grupoid.PreventEnterBeep = true;
     this.grupoid.Size = new System.Drawing.Size(41, 21);
     this.grupoid.TabIndex = 109;
     this.grupoid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.grupoid_KeyDown);
     //
     // lineaname
     //
     //
     //
     //
     this.lineaname.Border.Class = "TextBoxBorder";
     this.lineaname.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lineaname.ButtonCustom.Tooltip = "";
     this.lineaname.ButtonCustom2.Tooltip = "";
     this.lineaname.Enabled = false;
     this.lineaname.Location = new System.Drawing.Point(158, 93);
     this.lineaname.Name = "lineaname";
     this.lineaname.PreventEnterBeep = true;
     this.lineaname.Size = new System.Drawing.Size(201, 21);
     this.lineaname.TabIndex = 108;
     //
     // lineaid
     //
     //
     //
     //
     this.lineaid.Border.Class = "TextBoxBorder";
     this.lineaid.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lineaid.ButtonCustom.Tooltip = "";
     this.lineaid.ButtonCustom2.Tooltip = "";
     this.lineaid.Location = new System.Drawing.Point(111, 94);
     this.lineaid.Name = "lineaid";
     this.lineaid.PreventEnterBeep = true;
     this.lineaid.Size = new System.Drawing.Size(41, 21);
     this.lineaid.TabIndex = 107;
     this.lineaid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.lineaid_KeyDown);
     //
     // cboPerimesfin
     //
     this.cboPerimesfin.DisplayMember = "Text";
     this.cboPerimesfin.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboPerimesfin.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboPerimesfin.FormattingEnabled = true;
     this.cboPerimesfin.ItemHeight = 15;
     this.cboPerimesfin.Location = new System.Drawing.Point(365, 66);
     this.cboPerimesfin.Name = "cboPerimesfin";
     this.cboPerimesfin.Size = new System.Drawing.Size(121, 21);
     this.cboPerimesfin.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboPerimesfin.TabIndex = 106;
     //
     // cboPerimesini
     //
     this.cboPerimesini.DisplayMember = "Text";
     this.cboPerimesini.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboPerimesini.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboPerimesini.FormattingEnabled = true;
     this.cboPerimesini.ItemHeight = 15;
     this.cboPerimesini.Location = new System.Drawing.Point(238, 66);
     this.cboPerimesini.Name = "cboPerimesini";
     this.cboPerimesini.Size = new System.Drawing.Size(121, 21);
     this.cboPerimesini.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboPerimesini.TabIndex = 105;
     //
     // cboPerianio
     //
     this.cboPerianio.DisplayMember = "Text";
     this.cboPerianio.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboPerianio.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboPerianio.FormattingEnabled = true;
     this.cboPerianio.ItemHeight = 15;
     this.cboPerianio.Location = new System.Drawing.Point(111, 66);
     this.cboPerianio.Name = "cboPerianio";
     this.cboPerianio.Size = new System.Drawing.Size(121, 21);
     this.cboPerianio.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboPerianio.TabIndex = 104;
     //
     // labelX3
     //
     this.labelX3.AutoSize = true;
     //
     //
     //
     this.labelX3.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX3.Location = new System.Drawing.Point(15, 66);
     this.labelX3.Name = "labelX3";
     this.labelX3.Size = new System.Drawing.Size(43, 16);
     this.labelX3.TabIndex = 103;
     this.labelX3.Text = "Período:";
     //
     // chkTodos
     //
     this.chkTodos.AutoSize = true;
     //
     //
     //
     this.chkTodos.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkTodos.Location = new System.Drawing.Point(281, 39);
     this.chkTodos.Name = "chkTodos";
     this.chkTodos.Size = new System.Drawing.Size(52, 16);
     this.chkTodos.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkTodos.TabIndex = 102;
     this.chkTodos.Text = "Todos";
     //
     // cboLocal
     //
     this.cboLocal.DisplayMember = "Text";
     this.cboLocal.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboLocal.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboLocal.FormattingEnabled = true;
     this.cboLocal.ItemHeight = 15;
     this.cboLocal.Location = new System.Drawing.Point(111, 39);
     this.cboLocal.Name = "cboLocal";
     this.cboLocal.Size = new System.Drawing.Size(164, 21);
     this.cboLocal.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboLocal.TabIndex = 101;
     //
     // labelX2
     //
     this.labelX2.AutoSize = true;
     //
     //
     //
     this.labelX2.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX2.Location = new System.Drawing.Point(15, 39);
     this.labelX2.Name = "labelX2";
     this.labelX2.Size = new System.Drawing.Size(31, 16);
     this.labelX2.TabIndex = 100;
     this.labelX2.Text = "Local:";
     //
     // cboModuloid
     //
     this.cboModuloid.DisplayMember = "Text";
     this.cboModuloid.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cboModuloid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboModuloid.FormattingEnabled = true;
     this.cboModuloid.ItemHeight = 15;
     this.cboModuloid.Location = new System.Drawing.Point(111, 12);
     this.cboModuloid.Name = "cboModuloid";
     this.cboModuloid.Size = new System.Drawing.Size(164, 21);
     this.cboModuloid.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.cboModuloid.TabIndex = 99;
     //
     // labelX1
     //
     this.labelX1.AutoSize = true;
     //
     //
     //
     this.labelX1.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.labelX1.Location = new System.Drawing.Point(15, 12);
     this.labelX1.Name = "labelX1";
     this.labelX1.Size = new System.Drawing.Size(42, 16);
     this.labelX1.TabIndex = 98;
     this.labelX1.Text = "Módulo:";
     //
     // Frm_reporte_mov_balancestock
     //
     this.Appearance.BackColor = System.Drawing.SystemColors.Control;
     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(492, 291);
     this.Controls.Add(this.btnPrint121);
     this.Controls.Add(this.btnPrint131);
     this.Controls.Add(this.chkimpresion);
     this.Controls.Add(this.dtmfecha);
     this.Controls.Add(this.labelX7);
     this.Controls.Add(this.productid);
     this.Controls.Add(this.labelX6);
     this.Controls.Add(this.labelX5);
     this.Controls.Add(this.labelX4);
     this.Controls.Add(this.subgruponame);
     this.Controls.Add(this.subgrupoid);
     this.Controls.Add(this.gruponame);
     this.Controls.Add(this.grupoid);
     this.Controls.Add(this.lineaname);
     this.Controls.Add(this.lineaid);
     this.Controls.Add(this.cboPerimesfin);
     this.Controls.Add(this.cboPerimesini);
     this.Controls.Add(this.cboPerianio);
     this.Controls.Add(this.labelX3);
     this.Controls.Add(this.chkTodos);
     this.Controls.Add(this.cboLocal);
     this.Controls.Add(this.labelX2);
     this.Controls.Add(this.cboModuloid);
     this.Controls.Add(this.labelX1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_mov_balancestock";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Balance del stock";
     this.Load += new System.EventHandler(this.Frm_reporte_stockrollo_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
コード例 #53
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.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();
 }
コード例 #54
0
 /// <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);
 }
コード例 #55
0
 private void _Options_ItemsChanged(object sender, EventArgs e)
 {
     _CheckBoxs.Clear();
     _RadioButtons.Clear();
     int width = 0;
     int Y = 1;
     int speace = 1;
     int visibleCount = 0;
     foreach (Control control in _OptionsContainer.Controls)
     {
         control.Dispose();
     }
     _OptionsContainer.Controls.Clear();
     foreach (VirtualCheckItem item in _Options)
     {
         if (!_AllItems.Contains(item))
         {
             _AllItems.Add(item);
             item.VisibleChanged += new EventHandler(item_VisibleChanged);
         }
         if (item.Visible)
         {
             visibleCount++;
             if (item is VirtualCheckBox)
             {
                 #region 加入CheckBox
                 DevComponents.DotNetBar.Controls.CheckBoxX checkbox = new DevComponents.DotNetBar.Controls.CheckBoxX();
                 checkbox.TabIndex = 0;
                 checkbox.TabStop = true;
                 checkbox.AutoSize = true;
                 checkbox.Text = item.Text;
                 checkbox.Checked = item.Checked;
                 checkbox.Enabled = item.Enabled;
                 checkbox.Tag = item;
                 checkbox.CheckedChanged += new EventHandler(checkbox_CheckedChanged);
                 item.CheckedChanged += new EventHandler(syncCheckBox);
                 item.TextChanged += new EventHandler(syncCheckBox);
                 item.EnabledChanged += new EventHandler(syncCheckBox);
                 checkbox.Location = new Point(9, Y);
                 _OptionsContainer.Controls.Add(checkbox);//要先加入Panel後抓Size才準
                 Y += checkbox.Height + speace;
                 if (checkbox.PreferredSize.Width + 25 > width)
                     width = checkbox.PreferredSize.Width + 25;
                 _CheckBoxs.Add(item as VirtualCheckBox, checkbox);
                 #endregion
             }
             if (item is VirtualRadioButton)
             {
                 #region 加入RadioButton
                 System.Windows.Forms.RadioButton radioButton = new System.Windows.Forms.RadioButton();
                 radioButton.TabIndex = 0;
                 radioButton.TabStop = true;
                 radioButton.AutoSize = true;
                 radioButton.Text = item.Text;
                 radioButton.Checked = item.Checked;
                 radioButton.Enabled = item.Enabled; ;
                 radioButton.Tag = item;
                 radioButton.CheckedChanged += new EventHandler(radioButton_CheckedChanged);
                 item.CheckedChanged += new EventHandler(syncRadioButton);
                 item.TextChanged += new EventHandler(syncRadioButton);
                 item.EnabledChanged += new EventHandler(syncRadioButton);
                 radioButton.Location = new Point(12, Y);
                 _OptionsContainer.Controls.Add(radioButton);
                 //radioButton.Invalidate();
                 //radioButton.PerformLayout();
                 Y += radioButton.Height + speace;
                 if (radioButton.PreferredSize.Width + 25 > width)
                     width = radioButton.PreferredSize.Width + 25;
                 _RadioButtons.Add(item as VirtualRadioButton, radioButton);
                 #endregion
             }
         }
     }
     _OptionsContainer.Size = new Size(width, Y);
     advButton.Enabled = visibleCount > 0;
     advContainer.RecalcSize();
     SetForeColor(_OptionsContainer);
 }
コード例 #56
0
        private DevComponents.AdvTree.Node AddNode(DevComponents.AdvTree.Node parentNode, string tag, string name, string description, InputTypes inputType, object value, bool selected, SetOptionValue setOptionValue)
        {
            DevComponents.DotNetBar.SuperTooltipInfo tooltip = new DevComponents.DotNetBar.SuperTooltipInfo(name, null, description, null, null, DevComponents.DotNetBar.eTooltipColor.Gray);

            DevComponents.DotNetBar.Controls.CheckBoxX checkBoxSelect = new DevComponents.DotNetBar.Controls.CheckBoxX()
            {
                Checked = selected,
                Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled,
                BackColor = Color.Transparent,
                CheckBoxPosition = DevComponents.DotNetBar.eCheckBoxPosition.Right
            };
            DevComponents.AdvTree.Node newNode = new DevComponents.AdvTree.Node()
            {
                HostedControl = checkBoxSelect,
                Name = tag
            };
            DevComponents.AdvTree.Cell nameCell = new DevComponents.AdvTree.Cell()
            {
                Text = name
            };
            DevComponents.AdvTree.Cell valueCell = new DevComponents.AdvTree.Cell()
            {
                EditorType = DevComponents.AdvTree.eCellEditorType.Custom,
                Editable = true
            };
            switch (inputType)
            {
                case InputTypes.Double:
                    double? doubleValue = (double?)value;
                    DevComponents.Editors.DoubleInput doubleInput = new DevComponents.Editors.DoubleInput()
                    {
                        Value = doubleValue.HasValue ? doubleValue.Value : 0
                    };
                    valueCell.HostedControl = doubleInput;
                    doubleInput.ValueChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, doubleInput, setOptionValue); };
                    break;
                case InputTypes.Integer:
                    int? intValue = (int?)value;
                    DevComponents.Editors.IntegerInput integerInput = new DevComponents.Editors.IntegerInput()
                    {
                        Value = intValue.HasValue ? intValue.Value : 0
                    };
                    valueCell.HostedControl = integerInput;
                    integerInput.ValueChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, integerInput, setOptionValue); };
                    break;
                case InputTypes.String:
                    TextBox textBox = new TextBox()
                    {
                        Text = (string)value
                    };
                    valueCell.HostedControl = textBox;
                    textBox.TextChanged += delegate(object sender, EventArgs e) { ValueChanged(checkBoxSelect, textBox, setOptionValue); };
                    break;
                case InputTypes.Boolean:
                    bool? boolValue = (bool?)value;

                    DevComponents.DotNetBar.Controls.CheckBoxX checkBox = new DevComponents.DotNetBar.Controls.CheckBoxX()
                    {
                        Checked = boolValue.HasValue ? boolValue.Value : false,
                        Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled,
                        BackColor = Color.Transparent,
                    };
                    checkBox.CheckedChanged += delegate (object sender, EventArgs e) { ValueChanged(checkBoxSelect, checkBox, setOptionValue); };
                    valueCell.HostedControl = checkBox;
                    break;
                default:
                    throw new NotImplementedException("InputType not handled yet: " + inputType.ToString());
            }
            newNode.Cells.Add(nameCell);
            newNode.Cells.Add(valueCell);

            nameCell.Enabled = checkBoxSelect.Checked;
            valueCell.Enabled = checkBoxSelect.Checked;
            valueCell.HostedControl.Enabled = checkBoxSelect.Checked;

            superTooltip1.SetSuperTooltip(newNode, tooltip);
            superTooltip1.SetSuperTooltip(checkBoxSelect, tooltip);
            superTooltip1.SetSuperTooltip(valueCell.HostedControl, tooltip);

            checkBoxSelect.CheckedChanged += delegate
            {
                nameCell.Enabled = checkBoxSelect.Checked;
                valueCell.Enabled = checkBoxSelect.Checked;
                valueCell.HostedControl.Enabled = checkBoxSelect.Checked;

                if (checkBoxSelect.Checked)
                    valueCell.HostedControl.Focus();
            };
            if (parentNode == null)
                advTree1.Nodes.Add(newNode);
            else
                parentNode.Nodes.Add(newNode);

            return newNode;
        }