protected override object CreateControlsCore()
 {
     control = new GanttControl();
     foreach (IModelColumn column in Model.Columns)
     {
         var ganttColumn = new DevExpress.XtraTreeList.Columns.TreeListColumn();
         ganttColumn.Caption   = column.Caption;
         ganttColumn.FieldName = column.PropertyName;
         ganttColumn.Name      = column.PropertyName + "Column";
         ganttColumn.Visible   = true;
         ganttColumn.SortIndex = column.SortIndex;
         control.Columns.Add(ganttColumn);
     }
     control.KeyFieldName                                 = nameof(ITask.Id);
     control.ParentFieldName                              = nameof(ITask.Parent);
     control.ChartMappings.TextFieldName                  = nameof(ITask.Name);
     control.ChartMappings.StartDateFieldName             = nameof(ITask.StartDate);
     control.ChartMappings.FinishDateFieldName            = nameof(ITask.EndDate);
     control.ChartMappings.ProgressFieldName              = nameof(ITask.Progress);
     control.ChartMappings.PredecessorsFieldName          = nameof(ITask.PredecessorTasks);
     control.AllowTouchGestures                           = DevExpress.Utils.DefaultBoolean.True;
     control.OptionsBehavior.ScheduleMode                 = DevExpress.XtraGantt.Options.ScheduleMode.Auto;
     control.OptionsCustomization.AllowModifyTasks        = DevExpress.Utils.DefaultBoolean.True;
     control.OptionsCustomization.AllowModifyDependencies = DevExpress.Utils.DefaultBoolean.True;
     control.OptionsCustomization.AllowModifyProgress     = DevExpress.Utils.DefaultBoolean.True;
     control.SelectionChanged                            += Control_SelectedIndexChanged;
     control.FocusedNodeChanged                          += Control_FocusedNodeChanged;
     control.MouseDoubleClick                            += Control_MouseDoubleClick;
     control.KeyDown += Control_KeyDown;
     Refresh();
     return(control);
 }
Beispiel #2
0
 /// <summary>
 /// 格式化编辑的列。
 /// </summary>
 /// <param name="gridColumn"></param>
 /// <param name="colPropertyInfo"></param>
 /// <param name="columnName"></param>
 protected virtual void FormatColumn(DevExpress.XtraTreeList.Columns.TreeListColumn gridColumn,
                                     MB.WinBase.Common.ColumnPropertyInfo colPropertyInfo, string columnName, bool allowEdit)
 {
     gridColumn.Caption = colPropertyInfo.Description;
     if (columnName != null)
     {
         gridColumn.FieldName = columnName;
     }
     else
     {
         gridColumn.FieldName = colPropertyInfo.Name;
     }
     gridColumn.Name  = "XtCol" + colPropertyInfo.Name;
     gridColumn.Width = colPropertyInfo.VisibleWidth;
     if (colPropertyInfo.Visibled && colPropertyInfo.VisibleWidth > 0)
     {
         gridColumn.VisibleIndex = colPropertyInfo.OrderIndex;
     }
     else
     {
         gridColumn.VisibleIndex = -1;
     }
     gridColumn.OptionsColumn.AllowEdit  = allowEdit;
     gridColumn.OptionsColumn.ReadOnly   = !allowEdit;
     gridColumn.OptionsColumn.AllowFocus = false;
 }
Beispiel #3
0
        ///// <summary>
        ///// 设置子节点的状态
        ///// </summary>
        ///// <param name="node"></param>
        ///// <param name="check"></param>
        //private void SetCheckedChildNodes(TreeListNode node, CheckState check)
        //{
        //    for (int i = 0; i < node.Nodes.Count; i++)
        //    {
        //        node.Nodes[i].CheckState = check;
        //        SetCheckedChildNodes(node.Nodes[i], check);
        //    }
        //}

        ///// <summary>
        ///// 设置父节点的状态
        ///// </summary>
        ///// <param name="node"></param>
        ///// <param name="check"></param>
        //private void SetCheckedParentNodes(TreeListNode node, CheckState check)
        //{
        //    if (node.ParentNode != null)
        //    {
        //        bool b = false;
        //        CheckState state;
        //        for (int i = 0; i < node.ParentNode.Nodes.Count; i++)
        //        {
        //            state = (CheckState)node.ParentNode.Nodes[i].CheckState;
        //            if (!check.Equals(state))
        //            {
        //                b = !b;
        //                break;
        //            }
        //        }
        //        node.ParentNode.CheckState = b ? CheckState.Indeterminate : check;
        //        SetCheckedParentNodes(node.ParentNode, check);
        //    }
        //}
        ///// <summary>
        ///// 动态创建TreeList Layer Node节点
        ///// </summary>
        ///// <param name="layerName"></param>
        ///// <param name="check"></param>
        //private void creatMainLayerNode(string layerName, bool check)
        //{
        //    this.treeList1.BeginUnboundLoad();
        //    this.treeList1.AppendNode(new object[] { layerName, check }, -1);
        //    this.treeList1.EndUnboundLoad();
        //}
        ///// <summary>
        ///// 动态创建TreeList 字段属性值 Node节点
        ///// </summary>
        ///// <param name="ValueName"></param>
        ///// <param name="check"></param>
        ///// <param name="ID"></param>
        //private void CreatChildNode(string ValueName, bool check, int ID)
        //{
        //    this.treeList1.BeginUnboundLoad();
        //    this.treeList1.AppendNode(new object[] { ValueName, check }, ID);
        //    this.treeList1.EndUnboundLoad();
        //}
        ///// <summary>

        ///// 点击节点前

        ///// </summary>

        ///// <param name="sender"></param>

        ///// <param name="e"></param>

        //private void treeLstModuleAction_BeforeCheckNode(object sender, DevExpress.XtraTreeList.CheckNodeEventArgs e)
        //{

        //    e.State = (e.PrevState == CheckState.Checked ? CheckState.Unchecked : CheckState.Checked);

        //}
        ///// <summary>

        ///// 点击节点后

        ///// </summary>

        ///// <param name="sender"></param>

        ///// <param name="e"></param>

        //private void treeLstModuleAction_AfterCheckNode(object sender, DevExpress.XtraTreeList.NodeEventArgs e)
        //{

        //    SetCheckedChildNodes(e.Node, e.Node.CheckState);

        //    SetCheckedParentNodes(e.Node, e.Node.CheckState);

        //}

        /// <summary>

        /// 选择子节点时触发

        /// </summary>

        /// <param name="node"></param>

        /// <param name="check"></param>

        //private void SetCheckedChildNodes(TreeListNode node, CheckState check)
        //{

        //    for (int i = 0; i < node.Nodes.Count; i++)
        //    {

        //        node.Nodes[i].CheckState = check;

        //       SetCheckedChildNodes(node.Nodes[i], check);
        //       SetCheckedParentNodes(node.ParentNode, check);

        //    }

        //}

        /// <summary>

        /// 选择父节点时触发

        /// </summary>

        /// <param name="node"></param>

        /// <param name="check"></param>

        //private void SetCheckedParentNodes(TreeListNode node, CheckState check)
        //{

        //    if (node.ParentNode != null)
        //    {

        //        bool b = false;

        //        CheckState state;

        //        for (int i = 0; i < node.ParentNode.Nodes.Count; i++)
        //        {

        //            state = (CheckState)node.ParentNode.Nodes[i].CheckState;

        //            if (!check.Equals(state))
        //            {

        //                b = !b;

        //                break;

        //            }

        //        }

        //        node.ParentNode.CheckState = b ? CheckState.Indeterminate : check;

        //        SetCheckedParentNodes(node.ParentNode, check);

        //    }

        //}

        /// <summary>

        /// 判断此节点下的所有孩子节点是否选中

        /// </summary>

        /// <param name="node"></param>

        /// <returns></returns>

        //private Boolean IsChildsChecked(TreeListNode node)
        //{

        //    for (int i = 0; i < node.Nodes.Count; i++)
        //    {

        //        if (node.Nodes[i].CheckState == CheckState.Unchecked)
        //               return false;

        //        if (node.Nodes[i].HasChildren)

        //            IsChildsChecked(node.Nodes[i]);

        //    }

        //    return true;

        //}



        private void treeList1_FocusedNodeChanged(object sender, DevExpress.XtraTreeList.FocusedNodeChangedEventArgs e)
        {
            DevExpress.XtraTreeList.Columns.TreeListColumn treeListColumncityname = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            treeListColumncityname.Caption   = "名称";
            treeListColumncityname.FieldName = "cityname";
            treeListColumncityname.Name      = "treeListColumncityname";
        }
 private void InitializeComponent()
 {
     this.treeList = new TokenEditTest.CustomTreeList();
     this.colData  = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.treeList)).BeginInit();
     this.SuspendLayout();
     this.treeList.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.treeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { this.colData });
     this.treeList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList.Location = new System.Drawing.Point(0, 0);
     this.treeList.Name     = "treeList";
     this.treeList.OptionsBehavior.Editable        = false;
     this.treeList.OptionsBehavior.EnableFiltering = true;
     this.treeList.OptionsBehavior.ReadOnly        = true;
     this.treeList.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList.OptionsView.ShowIndentAsRowStyle             = true;
     this.treeList.Size                = new System.Drawing.Size(331, 209);
     this.treeList.TabIndex            = 0;
     this.treeList.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.OnTreeListFocusedNodeChanged);
     this.treeList.DoubleClick        += new System.EventHandler(this.OnTreeListDoubleClick);
     this.treeList.KeyFieldName        = "Id";
     this.treeList.ParentFieldName     = "ParentId";
     this.colData.Caption              = "Data";
     this.colData.FieldName            = "Text";
     this.colData.Name         = "colData";
     this.colData.Visible      = true;
     this.colData.VisibleIndex = 0;
     this.AutoScaleDimensions  = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode        = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.treeList);
     this.Name = "CustomTokenEditPopupControl";
     this.Size = new System.Drawing.Size(331, 209);
     ((System.ComponentModel.ISupportInitialize)(this.treeList)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #5
0
        static public void treelistColumnAdd(DevExpress.XtraTreeList.TreeList _view, String _caption, String _fild_name, int _width, bool _visible, DevExpress.Utils.HorzAlignment _text_align, bool _isSortable = true, bool _isEditable = false)
        {
            //DevExpress.XtraTreeList.ViewInfo.ColumnsInfo col_info = _view.ColumnsInfo;
            if (null != _view)
            {
                DevExpress.XtraTreeList.Columns.TreeListColumn new_column = new DevExpress.XtraTreeList.Columns.TreeListColumn();

                if (null != new_column)
                {
                    _view.Columns.Add(new_column);

                    new_column.Caption   = _caption;
                    new_column.FieldName = _fild_name;
                    new_column.Width     = _width;
                    new_column.Visible   = _visible;
                    new_column.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    new_column.AppearanceHeader.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                    new_column.AppearanceCell.TextOptions.HAlignment   = _text_align;
                    new_column.AppearanceCell.TextOptions.VAlignment   = DevExpress.Utils.VertAlignment.Center;

                    new_column.OptionsFilter.AllowFilter = false;
                    new_column.OptionsColumn.AllowEdit   = _isEditable;
                    new_column.OptionsColumn.AllowSort   = _isSortable;
                }
            }
        }
        public void Initialize( )
        {
            this.StateImageList = OwnerStudio.ToolbarImageList;

            this.OptionsBehavior.ShowEditorOnMouseUp       = false;
            this.OptionsBehavior.CloseEditorOnLostFocus    = true;
            this.OptionsBehavior.ImmediateEditor           = false;
            this.OptionsSelection.UseIndicatorForSelection = false;
            this.OptionsView.ShowColumns      = true;
            this.OptionsView.ShowVertLines    = false;
            this.OptionsView.ShowHorzLines    = false;
            this.OptionsView.ShowFocusedFrame = false;
            this.OptionsBehavior.DragNodes    = true;

            this.GetStateImage      += new GetStateImageEventHandler(Tree_GetStateImage);
            this.CustomDrawNodeCell += new DevExpress.XtraTreeList.CustomDrawNodeCellEventHandler(Tree_CustomDrawNodeCell);
            this.MouseDown          += new MouseEventHandler(FieldBindingTree_MouseDown);
            this.BeforeDragNode     += new BeforeDragNodeEventHandler(Tree_BeforeDragNode);
            this.DragOver           += new DragEventHandler(Tree_DragOver);
            this.DragDrop           += new DragEventHandler(Tree_DragDrop);

            #region Columns
            DevExpress.XtraTreeList.Columns.TreeListColumn colField = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colField.Caption                 = "Field";
            colField.FieldName               = "Display";
            colField.Visible                 = true;
            colField.VisibleIndex            = 0;
            colField.OptionsColumn.AllowEdit = false;

            this.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { colField });

            #endregion

            InitPopupMenu();
        }
Beispiel #7
0
        public AppListInfo LinkListToColumn(TableBase.TableEnum listName, DevExpress.XtraTreeList.Columns.TreeListColumn col)
        {
            AppListInfo l = AppListStore.Find(x => x.AppListName == listName);

            l.LinkListToColumn(col);
            return(l);
        }
Beispiel #8
0
        public static void ACL_Department_TreeListLookUpEdit(DevExpress.XtraEditors.TreeListLookUpEdit Control)
        {
            #region 列名
            DevExpress.XtraTreeList.Columns.TreeListColumn ID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            ID.Name         = "Id";
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;
            ID.Visible      = false;

            DevExpress.XtraTreeList.Columns.TreeListColumn Name = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            Name.Name         = "DepartmentName";
            Name.FieldName    = "DepartmentName";
            Name.Caption      = "部门";
            Name.VisibleIndex = 0;
            Name.Width        = 100;
            Name.Visible      = true;

            Control.Properties.TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { ID, Name });

            #endregion

            Control.Properties.DisplayMember            = "DepartmentName";
            Control.Properties.ValueMember              = "Id";
            Control.Properties.TreeList.KeyFieldName    = "Id";
            Control.Properties.TreeList.ParentFieldName = "ParentId";
            Control.Properties.ImmediatePopup           = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.DataSource     = GetAllDepartment();
        }
 protected override string GetColumnError(DevExpress.XtraTreeList.Columns.TreeListColumn column, DevExpress.XtraTreeList.Nodes.TreeListNode node)
 {
     if (column == null || column.FieldName == "Unbound")
     {
         return(string.Empty);                                              // your condition
     }
     return(base.GetColumnError(column, node));
 }
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            var resources = new System.ComponentModel.ComponentResourceManager(typeof(FileGroupSelectionControl));

            this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeImageList   = new DevExpress.Utils.ImageCollection(this.components);
            ((System.ComponentModel.ISupportInitialize) this.treeImageList).BeginInit();
            ((System.ComponentModel.ISupportInitialize) this).BeginInit();
            this.SuspendLayout();
            //
            // treeListColumn1
            //
            this.treeListColumn1.Caption   = "Name";
            this.treeListColumn1.FieldName = "Name";
            this.treeListColumn1.MinWidth  = 52;
            this.treeListColumn1.Name      = "treeListColumn1";
            this.treeListColumn1.OptionsColumn.AllowEdit = false;
            this.treeListColumn1.OptionsColumn.AllowMove = false;
            this.treeListColumn1.OptionsColumn.AllowSort = false;
            this.treeListColumn1.OptionsColumn.ReadOnly  = true;
            this.treeListColumn1.Visible      = true;
            this.treeListColumn1.VisibleIndex = 0;
            this.treeListColumn1.Width        = 108;
            //
            // treeImageList
            //
            this.treeImageList.ImageStream = (DevExpress.Utils.ImageCollectionStreamer)resources.GetObject("treeImageList.ImageStream");
            this.treeImageList.Images.SetKeyName(0, "root");
            this.treeImageList.Images.SetKeyName(1, "group");
            this.treeImageList.Images.SetKeyName(2, "file");
            this.treeImageList.Images.SetKeyName(3, "projectfolder");
            //
            // FileGroupSelectionControl
            //
            this.AllowDrop = true;
            this.Columns.AddRange(new[] {
                this.treeListColumn1
            });
            this.OptionsBehavior.AllowExpandOnDblClick        = false;
            this.OptionsBehavior.AllowIncrementalSearch       = true;
            this.OptionsBehavior.ImmediateEditor              = false;
            this.OptionsDragAndDrop.DragNodesMode             = DevExpress.XtraTreeList.DragNodesMode.Single;
            this.OptionsSelection.EnableAppearanceFocusedCell = false;
            this.OptionsView.FocusRectStyle = DrawFocusRectStyle.None;
            this.OptionsView.ShowCheckBoxes = true;
            this.OptionsView.ShowColumns    = false;
            this.OptionsView.ShowHorzLines  = false;
            this.OptionsView.ShowIndicator  = false;
            this.OptionsView.ShowRoot       = false;
            this.OptionsView.ShowVertLines  = false;
            this.SelectImageList            = this.treeImageList;
            this.NodeCellStyle  += this.treeView_NodeCellStyle;
            this.AfterCheckNode += this.FileGroupSelectionControl_AfterCheckNode;
            ((System.ComponentModel.ISupportInitialize) this.treeImageList).EndInit();
            ((System.ComponentModel.ISupportInitialize) this).EndInit();
            this.ResumeLayout(false);
        }
Beispiel #11
0
 IColumnAdapter IGridAdapter.ColumnByFieldName(string fn)
 {
     DevExpress.XtraTreeList.Columns.TreeListColumn c = _tree.Columns.ColumnByFieldName(fn);
     if (ReferenceEquals(c, null))
     {
         return(null);
     }
     return(new TreeColumnAdapter(c));
 }
        /// <summary> 
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.dateNavigator1 = new DevExpress.XtraScheduler.DateNavigator();
            this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
            ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
            this.SuspendLayout();
            //
            // dateNavigator1
            //
            this.dateNavigator1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;

            this.dateNavigator1.DateTime = DateTime.Now;
            this.dateNavigator1.HotDate = null;
            this.dateNavigator1.Location = new System.Drawing.Point(0, 0);
            this.dateNavigator1.Name = "dateNavigator1";
            this.dateNavigator1.ShowWeekNumbers = false;
            this.dateNavigator1.Size = new System.Drawing.Size(167, 170);
            this.dateNavigator1.TabIndex = 1;
            //
            // treeListColumn1
            //
            this.treeListColumn1.FieldName = "Name";
            this.treeListColumn1.MinWidth = 68;
            this.treeListColumn1.Name = "treeListColumn1";
            this.treeListColumn1.OptionsColumn.AllowFocus = false;
            this.treeListColumn1.Visible = true;
            this.treeListColumn1.VisibleIndex = 0;
            //
            // panelControl1
            //
            this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panelControl1.Location = new System.Drawing.Point(0, 1);
            this.panelControl1.Name = "panelControl1";
            this.panelControl1.Size = new System.Drawing.Size(166, 1);
            this.panelControl1.TabIndex = 9;
            //
            // NavigateCalendar
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.Controls.Add(this.dateNavigator1);
            this.Controls.Add(this.panelControl1);
            this.Name = "NavigateCalendar";
            this.Padding = new System.Windows.Forms.Padding(0, 1, 1, 1);
            this.Size = new System.Drawing.Size(167, 171);
            ((System.ComponentModel.ISupportInitialize)(this.dateNavigator1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
            this.ResumeLayout(false);
        }
Beispiel #13
0
 private void InitGvColumns()
 {
     this.treeList1.Columns.Clear();
     for (int i = 0; i < this.strFieldCodeDiction.Length; i++)
     {
         DevExpress.XtraTreeList.Columns.TreeListColumn col = this.treeList1.Columns.Add();
         col.Visible      = true;
         col.Caption      = this.strFieldCaptionDiction[i];
         col.FieldName    = this.strFieldCodeDiction[i];
         col.Name         = this.strFieldCodeDiction[i];
         col.VisibleIndex = i;
     }
 }
Beispiel #14
0
        bool IsNodeMatchFilter(TreeListNode node, DevExpress.XtraTreeList.Columns.TreeListColumn column)
        {
            string filterValue = treeListLoaiTB.FindFilterText;

            if (node.GetDisplayText(column).ToUpper().Contains(filterValue.ToUpper()))
            {
                return(true);
            }
            foreach (TreeListNode n in node.Nodes)
            {
                if (IsNodeMatchFilter(n, column))
                {
                    return(true);
                }
            }
            return(false);
        }
Beispiel #15
0
        public void CopySettings(DevExpress.XtraTreeList.TreeList sourceTL, DevExpress.XtraTreeList.TreeList targetTL)
        {
            targetTL.ForceInitialize();
            targetTL.OptionsView.AutoWidth                  = sourceTL.OptionsView.AutoWidth;
            targetTL.OptionsView.ShowAutoFilterRow          = sourceTL.OptionsView.ShowAutoFilterRow;
            targetTL.OptionsView.ExpandButtonCentered       = sourceTL.OptionsView.ExpandButtonCentered;
            targetTL.OptionsView.FocusRectStyle             = sourceTL.OptionsView.FocusRectStyle;
            targetTL.OptionsView.EnableAppearanceEvenRow    = sourceTL.OptionsView.EnableAppearanceEvenRow;
            targetTL.OptionsView.EnableAppearanceOddRow     = sourceTL.OptionsView.EnableAppearanceOddRow;
            targetTL.OptionsView.ShowFilterPanelMode        = sourceTL.OptionsView.ShowFilterPanelMode;
            targetTL.OptionsView.HeaderFilterButtonShowMode = sourceTL.OptionsView.HeaderFilterButtonShowMode;
            targetTL.OptionsView.ShowBandsMode              = sourceTL.OptionsView.ShowBandsMode;
            targetTL.OptionsView.ShowButtons                = sourceTL.OptionsView.ShowButtons;
            targetTL.OptionsView.ShowColumns                = sourceTL.OptionsView.ShowColumns;
            targetTL.OptionsView.ShowHorzLines              = sourceTL.OptionsView.ShowHorzLines;
            targetTL.OptionsView.ShowIndicator              = sourceTL.OptionsView.ShowIndicator;
            targetTL.OptionsView.ShowPreview                = sourceTL.OptionsView.ShowPreview;
            targetTL.OptionsView.ShowRoot             = sourceTL.OptionsView.ShowRoot;
            targetTL.OptionsView.ShowRowFooterSummary = sourceTL.OptionsView.ShowRowFooterSummary;
            targetTL.OptionsView.ShowSummaryFooter    = sourceTL.OptionsView.ShowSummaryFooter;
            targetTL.OptionsView.ShowVertLines        = sourceTL.OptionsView.ShowVertLines;

            targetTL.KeyFieldName       = sourceTL.KeyFieldName;
            targetTL.ParentFieldName    = sourceTL.ParentFieldName;
            targetTL.ActiveFilterString = sourceTL.ActiveFilterString;
            targetTL.DataSource         = sourceTL.DataSource;
            targetTL.DataMember         = sourceTL.DataMember;
            targetTL.FixedLineWidth     = sourceTL.FixedLineWidth;

            targetTL.Columns.Clear();//reset all columns

            foreach (DevExpress.XtraTreeList.Columns.TreeListColumn col in sourceTL.Columns)
            {
                DevExpress.XtraTreeList.Columns.TreeListColumn colToken = targetTL.Columns.AddField(col.FieldName);
                colToken.Caption           = col.GetCaption();
                colToken.SortIndex         = col.SortIndex;
                colToken.SortMode          = col.SortMode;
                colToken.SortOrder         = col.SortOrder;
                colToken.Visible           = col.Visible;
                colToken.VisibleIndex      = col.VisibleIndex;
                colToken.Width             = col.Width;
                colToken.UnboundExpression = col.UnboundExpression;
                colToken.UnboundType       = col.UnboundType;
            }
        }
Beispiel #16
0
        /// <summary>
        /// Построение столбцов и строк в дереве
        /// </summary>
        private void InitializeTreeList()
        {
            try
            {
                List <CCustomerCategory> objCustomerCategoryList = CCustomerCategory.GetCustomerCategoryList(m_objProfile, null);
                if (objCustomerCategoryList != null)
                {
                    DevExpress.XtraTreeList.Columns.TreeListColumn colCustomerCategory = null;
                    foreach (CCustomerCategory objCustomerCategory in objCustomerCategoryList)
                    {
                        colCustomerCategory            = this.treeList.Columns.Add();
                        colCustomerCategory.ColumnEdit = repItemCheckEdit;
                        colCustomerCategory.Caption    = objCustomerCategory.Code;
                        colCustomerCategory.FieldName  = objCustomerCategory.Code;
                        colCustomerCategory.MinWidth   = 50;
                        colCustomerCategory.Name       = objCustomerCategory.ID.ToString();
                        colCustomerCategory.OptionsColumn.AllowSort = false;
                        colCustomerCategory.Visible = true;
                        colCustomerCategory.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                        colCustomerCategory.Tag = objCustomerCategory;
                    }
                }
                objCustomerCategoryList = null;

                List <CCompany> objCompanyList = CCompany.GetCompanyList(m_objProfile, null);
                if (objCompanyList != null)
                {
                    foreach (CCompany objCompany in objCompanyList)
                    {
                        treeList.AppendNode(new object[] { objCompany.Abbr }, null).Tag = objCompany;
                    }
                }
                objCompanyList = null;
            }
            catch (System.Exception f)
            {
                SendMessageToLog("Ошибка установки начальных настроек дерева. Текст ошибки: " + f.Message);
            }
            finally
            {
            }

            return;
        }
Beispiel #17
0
        /// <summary>
        /// 是否可以编辑
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void treeList1_ShowingEditor(object sender, CancelEventArgs e)
        {
            TreeList currentTreeList = sender as TreeList;

            if (currentTreeList != null)
            {
                TreeListNode node = currentTreeList.FocusedNode;
                DevExpress.XtraTreeList.Columns.TreeListColumn column = currentTreeList.FocusedColumn;

                if (column.FieldName == "RG003" && node.GetValue("RG003").ToString() == "寄存结构")
                {
                    e.Cancel = true;
                }
                else
                {
                    e.Cancel = false;
                }
            }
        }
Beispiel #18
0
        public TreeListNode CreateDbCodeTreeHead(DevExpress.XtraTreeList.TreeList treeList)
        {
            if (treeList.Nodes.Count > 0)
            {
                return(treeList.Nodes.FirstNode.RootNode);
            }


            treeList.Appearance.Row.Font              = new System.Drawing.Font("宋体", 15f, System.Drawing.FontStyle.Bold);
            treeList.Appearance.Row.ForeColor         = System.Drawing.Color.Blue;
            treeList.Appearance.SelectedRow.Font      = new System.Drawing.Font("宋体", 15f);
            treeList.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Blue;
            treeList.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Blue;
            treeList.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Red;

            DevExpress.XtraTreeList.Columns.TreeListColumn colo = treeList.Columns.Add();
            colo.Caption = "DB服务器";
            colo.Visible = true;
            treeList.OptionsView.ShowColumns   = false;          //隐藏列头
            treeList.OptionsView.ShowVertLines = false;          //去掉列边框线
            treeList.OptionsView.ShowIndicator = false;          //是否隐藏行号列

            treeList.OptionsView.AutoWidth = true;               //设置是否自动调节列宽

            treeList.Columns[0].OptionsColumn.AllowEdit = false; //设置是否编辑

            treeList.EndSort();                                  //禁止排序
            treeList.OptionsBehavior.Editable = false;           //禁止编辑

            TreeListNode _node = treeList.Nodes.Add("DB服务器", 0);

            //为添加下文的Node做准备
            DbLoginFor _DbLoginFor = new DbLoginFor();

            _DbLoginFor.LoginDb_Id    = "0";
            _DbLoginFor.LoginDb_Descp = "DB服务器";
            _node.Tag              = _DbLoginFor;
            _node.ImageIndex       = 0;
            _node.SelectImageIndex = 0;
            _node.ExpandAll();

            return(_node);
        }
Beispiel #19
0
        public void Initialize( )
        {
            this.StateImageList = OwnerStudio.ToolbarImageList;


            this.OptionsBehavior.ShowEditorOnMouseUp       = false;
            this.OptionsBehavior.CloseEditorOnLostFocus    = true;
            this.OptionsBehavior.ImmediateEditor           = false;
            this.OptionsSelection.UseIndicatorForSelection = false;
            this.OptionsView.ShowColumns      = false;
            this.OptionsView.ShowVertLines    = false;
            this.OptionsView.ShowHorzLines    = false;
            this.OptionsView.ShowFocusedFrame = false;
            this.OptionsBehavior.DragNodes    = true;

            this.DoubleClick        += new EventHandler(ViewTree_DoubleClick);
            this.MouseUp            += new MouseEventHandler(ViewTree_MouseUp);
            this.GetStateImage      += new GetStateImageEventHandler(ViewTree_GetStateImage);
            this.CustomDrawNodeCell += new DevExpress.XtraTreeList.CustomDrawNodeCellEventHandler(ViewTree_CustomDrawNodeCell);

            this.DragNodesMode     = DevExpress.XtraTreeList.TreeListDragNodesMode.Advanced;
            this.DragOver         += new DragEventHandler(ViewTree_DragOver);
            this.BeforeDragNode   += new DevExpress.XtraTreeList.BeforeDragNodeEventHandler(ViewTree_BeforeDragNode);
            this.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(ViewExplorer_CellValueChanged);

            #region Columns
            DevExpress.XtraTreeList.Columns.TreeListColumn colNo = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colNo.Caption      = "No";
            colNo.Visible      = true;
            colNo.VisibleIndex = 0;
            //  colNo.OptionsColumn.AllowEdit=true;

            DevExpress.XtraTreeList.Columns.TreeListColumn colID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colID.Caption      = "ID";
            colID.Visible      = true;
            colID.VisibleIndex = -1;
            this.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { colNo, colID });

            #endregion

            InitPopupMenu();
        }
        /// <summary>
        /// 创建树控件
        /// </summary>
        public virtual DevExpress.XtraTreeList.TreeList buildTreeControl(string[] cols, string[] nodes)
        {
            List <DevExpress.XtraTreeList.Columns.TreeListColumn> colList = new List <DevExpress.XtraTreeList.Columns.TreeListColumn>();

            foreach (string c in cols)
            {
                DevExpress.XtraTreeList.Columns.TreeListColumn colObj = new DevExpress.XtraTreeList.Columns.TreeListColumn();
                colObj.MinWidth = 52;
                colObj.Name     = Guid.NewGuid().ToString();
                colObj.Caption  = c;
                colObj.OptionsColumn.AllowFocus = false;
                colObj.Visible      = true;
                colObj.VisibleIndex = 0;
                colObj.Width        = 100;
                colList.Add(colObj);
            }

            DevExpress.XtraTreeList.TreeList resultControl = new TreeList();
            resultControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            resultControl.Columns.AddRange(colList.ToArray());
            resultControl.Dock     = System.Windows.Forms.DockStyle.Fill;
            resultControl.Location = new System.Drawing.Point(0, 0);
            resultControl.Name     = Guid.NewGuid().ToString();
            resultControl.BeginUnboundLoad();

            foreach (string n in nodes)
            {
                resultControl.AppendNode(new object[] { n }, -1);
            }

            resultControl.EndUnboundLoad();
            resultControl.OptionsBehavior.Editable         = false;
            resultControl.OptionsView.ShowColumns          = false;
            resultControl.OptionsView.ShowHorzLines        = false;
            resultControl.OptionsView.ShowIndentAsRowStyle = true;
            resultControl.OptionsView.ShowIndicator        = false;
            resultControl.OptionsView.ShowVertLines        = false;
            resultControl.Size     = new System.Drawing.Size(176, 402);
            resultControl.TabIndex = 0;

            return(resultControl);
        }
Beispiel #21
0
        public void Initialize(MainForm mainForm)
        {
            OwnerMainForm       = mainForm;
            this.StateImageList = ABCControls.ABCImageList.List16x16;

            // this.OptionsBehavior.ShowEditorOnMouseUp=false;
            //   this.OptionsBehavior.CloseEditorOnLostFocus=true;
            this.OptionsBehavior.ImmediateEditor           = false;
            this.OptionsSelection.UseIndicatorForSelection = false;
            this.OptionsView.ShowColumns      = false;
            this.OptionsView.ShowVertLines    = false;
            this.OptionsView.ShowHorzLines    = false;
            this.OptionsView.ShowFocusedFrame = false;
            this.OptionsBehavior.DragNodes    = false;
            this.OptionsBehavior.Editable     = false;

            this.MouseClick         += new MouseEventHandler(ModulesExplorer_MouseClick);
            this.GetStateImage      += new GetStateImageEventHandler(ViewTree_GetStateImage);
            this.CustomDrawNodeCell += new DevExpress.XtraTreeList.CustomDrawNodeCellEventHandler(ViewTree_CustomDrawNodeCell);
            this.NodeCellStyle      += new DevExpress.XtraTreeList.GetCustomNodeCellStyleEventHandler(ModulesExplorer_NodeCellStyle);
            this.MouseMove          += new MouseEventHandler(ModulesExplorer_MouseMove);
            this.MouseLeave         += new EventHandler(ModulesExplorer_MouseLeave);

            #region Columns

            DevExpress.XtraTreeList.Columns.TreeListColumn colName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colName.Caption                 = "Name";
            colName.Visible                 = true;
            colName.VisibleIndex            = 0;
            colName.OptionsColumn.AllowEdit = false;

            DevExpress.XtraTreeList.Columns.TreeListColumn colID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colID.Caption      = "ID";
            colID.Visible      = true;
            colID.VisibleIndex = -1;
            this.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { colName, colID });

            #endregion

            RefreshViewList();
        }
Beispiel #22
0
        /// <summary>
        /// 创建列
        /// </summary>
        /// <param name="trvList"></param>
        /// <param name="colPropertys"></param>
        /// <param name="editCols"></param>
        protected virtual void CreateViewColumns(DevExpress.XtraTreeList.TreeList trvList,
                                                 Dictionary <string, MB.WinBase.Common.ColumnPropertyInfo> colPropertys,
                                                 Dictionary <string, MB.WinBase.Common.ColumnEditCfgInfo> editCols, bool allowEdit)
        {
            Type entityType = typeof(T);

            trvList.Columns.Clear();
            List <DevExpress.XtraTreeList.Columns.TreeListColumn> tCols = new List <DevExpress.XtraTreeList.Columns.TreeListColumn>();

            foreach (MB.WinBase.Common.ColumnPropertyInfo colInfo in colPropertys.Values)
            {
                if (!colInfo.Visibled)
                {
                    continue;
                }
                if (entityType.GetProperty(colInfo.Name) == null)
                {
                    continue;
                }
                DevExpress.XtraTreeList.Columns.TreeListColumn col = new DevExpress.XtraTreeList.Columns.TreeListColumn();

                //默认情况下,先把Byte[] 类型

                if (editCols != null && editCols.Count > 0 && editCols.ContainsKey(colInfo.Name))
                {
                    MB.WinBase.Common.ColumnEditCfgInfo editIno = editCols[colInfo.Name];
                    if (editIno != null)
                    {
                        DevExpress.XtraEditors.Repository.RepositoryItem rItem = XtraGridEditHelper.Instance.CreateEditItemByEditInfo(editIno, colInfo.DataType);
                        rItem.ReadOnly = !allowEdit;
                        col.ColumnEdit = rItem;
                        trvList.RepositoryItems.Add(rItem);
                    }
                }

                FormatColumn(col, colInfo, colInfo.Name, allowEdit);

                tCols.Add(col);
            }
            trvList.Columns.AddRange(tCols.ToArray());
        }
Beispiel #23
0
        void InitColumns()
        {
            treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();

            treeListColumn1.Caption   = "FullName";
            treeListColumn1.FieldName = "FullName";

            treeListColumn2.Caption      = "Name";
            treeListColumn2.FieldName    = "Name";
            treeListColumn2.VisibleIndex = 0;
            treeListColumn2.Visible      = true;

            treeListColumn3.Caption      = "Type";
            treeListColumn3.FieldName    = "Type";
            treeListColumn3.VisibleIndex = 1;
            treeListColumn3.Visible      = false;

            treeListColumn4.AppearanceCell.Options.UseTextOptions = true;
            treeListColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            treeListColumn4.Caption      = "Size(Bytes)";
            treeListColumn4.FieldName    = "Size";
            treeListColumn4.VisibleIndex = 2;
            treeListColumn4.Visible      = false;

            treeListColumn5.Caption   = "treeListColumn5";
            treeListColumn5.FieldName = "Info";
            treeListColumn5.Name      = "treeListColumn5";
            treeListColumn5.Visible   = false;

            Tree.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
                treeListColumn1,
                treeListColumn2,
                treeListColumn3,
                treeListColumn4,
                treeListColumn5,
            });
        }
Beispiel #24
0
 /// <summary>
 /// 设置以TreeListNode作为数据源
 /// </summary>
 /// <param name="nodeSource"></param>
 public void SetTreeListNode(TreeListNode treeListNode)
 {
     gcResult.Visible       = false;
     treeListResult.Visible = true;
     treeListResult.Columns.Clear();
     treeListResult.Nodes.Clear();
     if (treeListNode.Nodes.Count > 0)
     {
         for (int i = 0; i < treeListNode.TreeList.Columns.Count; i++)
         {
             DevExpress.XtraTreeList.Columns.TreeListColumn curColumn = treeListNode.TreeList.Columns[i];
             DevExpress.XtraTreeList.Columns.TreeListColumn colNew    = treeListResult.Columns.Add();
             colNew.Caption   = curColumn.Caption;
             colNew.Name      = curColumn.Name;
             colNew.FieldName = curColumn.FieldName;
             colNew.Visible   = curColumn.Visible;
             colNew.OptionsColumn.AllowEdit = curColumn.OptionsColumn.AllowEdit;
         }
         AddNode(treeListNode, null);
     }
 }
Beispiel #25
0
        public static void ys_AssetsCategory_TreeListLookUpEdit(DevExpress.XtraEditors.TreeListLookUpEdit Control)
        {
            #region 列名
            DevExpress.XtraTreeList.Columns.TreeListColumn ID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            ID.Name         = "Id";
            ID.FieldName    = "Id";
            ID.Caption      = "编号";
            ID.VisibleIndex = -1;
            ID.Visible      = false;

            DevExpress.XtraTreeList.Columns.TreeListColumn Name = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            Name.Name         = "CategoryName";
            Name.FieldName    = "CategoryName";
            Name.Caption      = "类别";
            Name.VisibleIndex = 1;
            Name.Width        = 100;
            Name.Visible      = true;

            DevExpress.XtraTreeList.Columns.TreeListColumn Code = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            Code.Name         = "SimpleCode";
            Code.FieldName    = "SimpleCode";
            Code.Caption      = "简码";
            Code.VisibleIndex = 2;
            Code.Width        = 100;
            Code.Visible      = true;

            Control.Properties.TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { ID, Name, Code });

            #endregion

            Control.Properties.DisplayMember            = "CategoryName";
            Control.Properties.ValueMember              = "Id";
            Control.Properties.TreeList.KeyFieldName    = "Id";
            Control.Properties.TreeList.ParentFieldName = "ParentId";
            Control.Properties.ImmediatePopup           = true;
            Control.Properties.NullText       = "";
            Control.Properties.TextEditStyle  = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
            Control.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True;
            Control.Properties.DataSource     = InitalControlHelper.GetAllAssetsCategory();
        }
Beispiel #26
0
        private void  除ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {
                DevExpress.XtraTreeList.Columns.TreeListColumn currentcol = this.treeList1.FocusedColumn;
                this.treeList1.FocusedColumn = this.treeList1.Columns[0];
                this.treeList1.FocusedColumn = this.treeList1.Columns[1];
                this.treeList1.FocusedColumn = currentcol;
                this.treeList1.FocusedNode   = this.treeList1.FocusedNode;
                DataTable tb = (DataTable)this.treeList1.DataSource;
                this.BindingContext[tb].EndCurrentEdit();
                DataRow[] row = tb.Select("选择='1'");

                nodelist.Clear();
                Deldele(this.treeList1.Nodes);
                for (int i = 0; i < nodelist.Count; i++)
                {
                    this.treeList1.DeleteNode(nodelist[i]);
                }
            }
            catch (Exception ex) { MessageBox.Show(ex.Message); }
        }
Beispiel #27
0
        private void OnBeforePrint(object sender, System.Drawing.Printing.PrintEventArgs e)
        {
            DevExpress.XtraTreeList.TreeList tree = new DevExpress.XtraTreeList.TreeList();
            tree.ParentChanged += new EventHandler(tree_ParentChanged);
            tree.BeginUpdate();
            DevExpress.XtraTreeList.Columns.TreeListColumn colName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            colName.Caption      = "Name";
            colName.FieldName    = "Name";
            colName.Name         = "colName";
            colName.Visible      = true;
            colName.VisibleIndex = 0;
            colName.Width        = 45;
            tree.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] { colName });

            WinControlContainer wcc = new WinControlContainer();

            this.ReportHeader.Controls.Add(wcc);
            wcc.WinControl       = tree;
            tree.KeyFieldName    = "Oid";
            tree.ParentFieldName = "Parent!Key";
            tree.DataSource      = this.DataSource;
            tree.EndUpdate();
        }
        protected virtual Image GetImage()
        {
            Image      img = null;
            MyTreeList mtl = TreeList as MyTreeList;

            if (mtl.AvatarImageFieldName == string.Empty)
            {
                return(img);
            }

            try
            {
                DevExpress.XtraTreeList.Columns.TreeListColumn col = TreeList.Columns[mtl.AvatarImageFieldName];
                byte[] buffer = (byte[])GetValue(TreeList.Columns.IndexOf(col));
                img = ByteImageConverter.FromByteArray(buffer);
            }
            catch
            {
                img = null;
            }

            return(img);
        }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormFqHistory));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1 = new DevExpress.XtraBars.Bar();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem10 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem13 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem14 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem12 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem9 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem8 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItem15 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem16 = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.barButtonItem20 = new DevExpress.XtraBars.BarButtonItem();
     this.splitterControl1 = new DevExpress.XtraEditors.SplitterControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.AllowCustomization = false;
     this.barManager1.AllowQuickCustomization = false;
     this.barManager1.AllowShowToolbarsPopup = false;
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.bar1});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem20,
     this.barButtonItem6,
     this.barSubItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5,
     this.barButtonItem7,
     this.barButtonItem8,
     this.barButtonItem9,
     this.barButtonItem10,
     this.barButtonItem12,
     this.barButtonItem13,
     this.barButtonItem14,
     this.barSubItem2,
     this.barButtonItem15,
     this.barButtonItem16});
     this.barManager1.MaxItemId = 70;
     //
     // bar1
     //
     this.bar1.BarName = "Custom 1";
     this.bar1.DockCol = 0;
     this.bar1.DockRow = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem13, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem14),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barButtonItem12, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.PaintStyle, this.barSubItem2, "", true, true, true, 0, null, DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem9),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem8, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem6, true)});
     this.bar1.OptionsBar.AllowQuickCustomization = false;
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.UseWholeRow = true;
     this.bar1.Text = "Custom 1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "�������";
     this.barSubItem1.Id = 46;
     this.barSubItem1.ImageIndex = 13;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem7),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem10)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "���һ������";
     this.barButtonItem7.Id = 59;
     this.barButtonItem7.ImageIndex = 9;
     this.barButtonItem7.Name = "barButtonItem7";
     this.barButtonItem7.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem7_ItemClick);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "����ӷ���";
     this.barButtonItem1.Id = 47;
     this.barButtonItem1.ImageIndex = 17;
     this.barButtonItem1.Name = "barButtonItem1";
     this.barButtonItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "�޸ķ���";
     this.barButtonItem3.Id = 56;
     this.barButtonItem3.ImageIndex = 18;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "ɾ������";
     this.barButtonItem2.Id = 48;
     this.barButtonItem2.ImageIndex = 10;
     this.barButtonItem2.Name = "barButtonItem2";
     this.barButtonItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem2.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem2_ItemClick);
     //
     // barButtonItem10
     //
     this.barButtonItem10.Caption = "Ĭ��������";
     this.barButtonItem10.Id = 62;
     this.barButtonItem10.ImageIndex = 13;
     this.barButtonItem10.Name = "barButtonItem10";
     this.barButtonItem10.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem10_ItemClick);
     //
     // barButtonItem13
     //
     this.barButtonItem13.Hint = "����һλ";
     this.barButtonItem13.Id = 65;
     this.barButtonItem13.ImageIndex = 20;
     this.barButtonItem13.Name = "barButtonItem13";
     this.barButtonItem13.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem13_ItemClick);
     //
     // barButtonItem14
     //
     this.barButtonItem14.Hint = "����һλ";
     this.barButtonItem14.Id = 66;
     this.barButtonItem14.ImageIndex = 21;
     this.barButtonItem14.Name = "barButtonItem14";
     this.barButtonItem14.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem14_ItemClick);
     //
     // barButtonItem12
     //
     this.barButtonItem12.Caption = "��������";
     this.barButtonItem12.Id = 64;
     this.barButtonItem12.ImageIndex = 17;
     this.barButtonItem12.Name = "barButtonItem12";
     this.barButtonItem12.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem12_ItemClick);
     //
     // barButtonItem9
     //
     this.barButtonItem9.Caption = "��������";
     this.barButtonItem9.Id = 61;
     this.barButtonItem9.ImageIndex = 3;
     this.barButtonItem9.Name = "barButtonItem9";
     this.barButtonItem9.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem9.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem9_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "�趨���";
     this.barButtonItem4.Id = 57;
     this.barButtonItem4.ImageIndex = 1;
     this.barButtonItem4.Name = "barButtonItem4";
     this.barButtonItem4.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem4.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem4_ItemClick);
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "���ݿ���";
     this.barButtonItem5.Id = 58;
     this.barButtonItem5.ImageIndex = 11;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // barButtonItem8
     //
     this.barButtonItem8.Caption = "�����������";
     this.barButtonItem8.Id = 60;
     this.barButtonItem8.ImageIndex = 10;
     this.barButtonItem8.Name = "barButtonItem8";
     this.barButtonItem8.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem8.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem8_ItemClick);
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "�ر�";
     this.barButtonItem6.Id = 35;
     this.barButtonItem6.ImageIndex = 7;
     this.barButtonItem6.Name = "barButtonItem6";
     this.barButtonItem6.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem6.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem6_ItemClick);
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "��������";
     this.barSubItem2.Id = 67;
     this.barSubItem2.ImageIndex = 5;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem15),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem16)});
     this.barSubItem2.Name = "barSubItem2";
     //
     // barButtonItem15
     //
     this.barButtonItem15.Caption = "ֱ�ӵ���";
     this.barButtonItem15.Id = 68;
     this.barButtonItem15.ImageIndex = 3;
     this.barButtonItem15.Name = "barButtonItem15";
     this.barButtonItem15.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem15_ItemClick);
     //
     // barButtonItem16
     //
     this.barButtonItem16.Caption = "ѡ����ݺ�������";
     this.barButtonItem16.Id = 69;
     this.barButtonItem16.ImageIndex = 5;
     this.barButtonItem16.Name = "barButtonItem16";
     this.barButtonItem16.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem16_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(1074, 34);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 729);
     this.barDockControlBottom.Size = new System.Drawing.Size(1074, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 34);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 695);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1074, 34);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 695);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "����.ico");
     this.imageList1.Images.SetKeyName(1, "����.ico");
     this.imageList1.Images.SetKeyName(2, "��ѯ.ico");
     this.imageList1.Images.SetKeyName(3, "������±�.ico");
     this.imageList1.Images.SetKeyName(4, "��ӡ.ico");
     this.imageList1.Images.SetKeyName(5, "����.ico");
     this.imageList1.Images.SetKeyName(6, "�ر�1.ico");
     this.imageList1.Images.SetKeyName(7, "�ر�.ico");
     this.imageList1.Images.SetKeyName(8, "��ɫ.ico");
     this.imageList1.Images.SetKeyName(9, "���ȹ���1.ico");
     this.imageList1.Images.SetKeyName(10, "ɾ��.ico");
     this.imageList1.Images.SetKeyName(11, "���.ico");
     this.imageList1.Images.SetKeyName(12, "����.ico");
     this.imageList1.Images.SetKeyName(13, "��Ȩ.ico");
     this.imageList1.Images.SetKeyName(14, "ˢ��.ico");
     this.imageList1.Images.SetKeyName(15, "���ͬ��.ico");
     this.imageList1.Images.SetKeyName(16, "����¼�.ico");
     this.imageList1.Images.SetKeyName(17, "�½�.ico");
     this.imageList1.Images.SetKeyName(18, "�޸�.ico");
     this.imageList1.Images.SetKeyName(19, "����.ico");
     this.imageList1.Images.SetKeyName(20, "FillUpHS.png");
     this.imageList1.Images.SetKeyName(21, "FillDownHS.png");
     //
     // barButtonItem20
     //
     this.barButtonItem20.Caption = "��������";
     this.barButtonItem20.Id = 30;
     this.barButtonItem20.ImageIndex = 5;
     this.barButtonItem20.Name = "barButtonItem20";
     this.barButtonItem20.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItem20.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem20_ItemClick);
     //
     // splitterControl1
     //
     this.splitterControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.splitterControl1.Location = new System.Drawing.Point(0, 34);
     this.splitterControl1.Name = "splitterControl1";
     this.splitterControl1.Size = new System.Drawing.Size(1074, 6);
     this.splitterControl1.TabIndex = 5;
     this.splitterControl1.TabStop = false;
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.HorzScrollVisibility = DevExpress.XtraTreeList.ScrollVisibility.Always;
     this.treeList1.Location = new System.Drawing.Point(0, 40);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.Size = new System.Drawing.Size(1074, 689);
     this.treeList1.TabIndex = 6;
     this.treeList1.CellValueChanged += new DevExpress.XtraTreeList.CellValueChangedEventHandler(this.treeList1_CellValueChanged_1);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "treeListColumn2";
     this.treeListColumn2.FieldName = "Sort";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.SortOrder = System.Windows.Forms.SortOrder.Ascending;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "treeListColumn1";
     this.treeListColumn1.FieldName = "Sort";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.SortOrder = System.Windows.Forms.SortOrder.Ascending;
     //
     // FormFqHistory
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1074, 729);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.splitterControl1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FormFqHistory";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "����Ԥ���";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load += new System.EventHandler(this.Form8Forecast_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
            this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.MaPMT = new DevExpress.XtraEditors.TextEdit();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.label1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4});
            this.barManager1.MaxItemId = 37;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1000, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1000, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1000, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 139);
            this.dockPanel1.Size = new System.Drawing.Size(1000, 139);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(994, 111);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ChuaTra);
            this.popupControlContainerFilter.Controls.Add(this.ngayTra);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.gridControlDetail);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NgayMuon);
            this.popupControlContainerFilter.Controls.Add(this.MaPMT);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenChuongTrinh);
            this.popupControlContainerFilter.Controls.Add(this.CongTyMuon);
            this.popupControlContainerFilter.Controls.Add(this.BoPhanMuon);
            this.popupControlContainerFilter.Controls.Add(this.NguoiMuon);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.NuocSX);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.label1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(994, 111);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // ChuaTra
            //
            this.ChuaTra.Location = new System.Drawing.Point(908, 84);
            this.ChuaTra.MenuManager = this.barManager1;
            this.ChuaTra.Name = "ChuaTra";
            this.ChuaTra.Properties.Caption = "Chưa trả";
            this.ChuaTra.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Default;
            this.ChuaTra.Size = new System.Drawing.Size(65, 19);
            this.ChuaTra.TabIndex = 243;
            //
            // ngayTra
            //
            this.ngayTra.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.ngayTra.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.Location = new System.Drawing.Point(533, 83);
            this.ngayTra.Name = "ngayTra";
            this.ngayTra.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayTra.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 34, 0);
            this.ngayTra.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayTra.Size = new System.Drawing.Size(285, 21);
            this.ngayTra.TabIndex = 226;
            this.ngayTra.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 34, 0);
            this.ngayTra.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(485, 87);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(42, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày trả";

            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Location = new System.Drawing.Point(974, 138);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.MenuManager = this.barManager1;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(10, 10);
            this.gridControlDetail.TabIndex = 0;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            this.gridControlDetail.Visible = false;
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsBehavior.Editable = false;
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsSelection.MultiSelect = true;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Biên mục (Cấp 3)";
            //
            // TapSoDen
            //
            this.TapSoDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoDen.Location = new System.Drawing.Point(925, 32);
            this.TapSoDen.Name = "TapSoDen";
            this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoDen.Size = new System.Drawing.Size(59, 20);
            this.TapSoDen.TabIndex = 241;
            //
            // TapSoTu
            //
            this.TapSoTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoTu.Location = new System.Drawing.Point(837, 32);
            this.TapSoTu.Name = "TapSoTu";
            this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoTu.Size = new System.Drawing.Size(56, 20);
            this.TapSoTu.TabIndex = 242;
            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(772, 33);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(46, 13);
            this.plLabel8.TabIndex = 239;
            this.plLabel8.Text = "Tập số từ";

            //
            // plLabel15
            //
            this.plLabel15.Location = new System.Drawing.Point(901, 37);
            this.plLabel15.Name = "plLabel15";
            this.plLabel15.Size = new System.Drawing.Size(18, 13);
            this.plLabel15.TabIndex = 239;
            this.plLabel15.Text = "đến";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(269, 60);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(40, 13);
            this.plLabel5.TabIndex = 240;
            this.plLabel5.Text = "Tiết mục";

            //
            // plLabel12
            //
            this.plLabel12.Location = new System.Drawing.Point(772, 63);
            this.plLabel12.Name = "plLabel12";
            this.plLabel12.Size = new System.Drawing.Size(51, 13);
            this.plLabel12.TabIndex = 240;
            this.plLabel12.Text = "Phòng ban";

            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(837, 59);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(147, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NgayMuon
            //
            this.NgayMuon.Caption = "Từ ngày 4/16/2012 đến ngày 4/23/2012";
            this.NgayMuon.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.FirstFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.FirstTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.FromDate = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.Location = new System.Drawing.Point(74, 83);
            this.NgayMuon.Name = "NgayMuon";
            this.NgayMuon.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayMuon.SecondFrom = new System.DateTime(2012, 4, 16, 11, 28, 38, 734);
            this.NgayMuon.SecondTo = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayMuon.Size = new System.Drawing.Size(285, 21);
            this.NgayMuon.TabIndex = 226;
            this.NgayMuon.ToDate = new System.DateTime(2012, 4, 23, 11, 28, 38, 734);
            this.NgayMuon.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // MaPMT
            //
            this.MaPMT.Location = new System.Drawing.Point(74, 7);
            this.MaPMT.Name = "MaPMT";
            this.MaPMT.Size = new System.Drawing.Size(192, 20);
            this.MaPMT.TabIndex = 223;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(593, 6);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(173, 20);
            this.Category.TabIndex = 222;
            //
            // TenChuongTrinh
            //
            this.TenChuongTrinh._DataSource = null;
            this.TenChuongTrinh._GetField = null;
            this.TenChuongTrinh.Location = new System.Drawing.Point(339, 32);
            this.TenChuongTrinh.Name = "TenChuongTrinh";
            this.TenChuongTrinh.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenChuongTrinh.Size = new System.Drawing.Size(187, 20);
            this.TenChuongTrinh.TabIndex = 222;
            //
            // CongTyMuon
            //
            this.CongTyMuon._DataSource = null;
            this.CongTyMuon._GetField = null;
            this.CongTyMuon.Location = new System.Drawing.Point(340, 6);
            this.CongTyMuon.Name = "CongTyMuon";
            this.CongTyMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.CongTyMuon.Size = new System.Drawing.Size(187, 20);
            this.CongTyMuon.TabIndex = 222;
            //
            // BoPhanMuon
            //
            this.BoPhanMuon._DataSource = null;
            this.BoPhanMuon._GetField = null;
            this.BoPhanMuon.Location = new System.Drawing.Point(74, 56);
            this.BoPhanMuon.Name = "BoPhanMuon";
            this.BoPhanMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.BoPhanMuon.Size = new System.Drawing.Size(192, 20);
            this.BoPhanMuon.TabIndex = 222;
            //
            // NguoiMuon
            //
            this.NguoiMuon._DataSource = null;
            this.NguoiMuon._GetField = null;
            this.NguoiMuon.Location = new System.Drawing.Point(74, 31);
            this.NguoiMuon.Name = "NguoiMuon";
            this.NguoiMuon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NguoiMuon.Size = new System.Drawing.Size(192, 20);
            this.NguoiMuon.TabIndex = 222;
            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(837, 6);
            this.LoaiLuuTru.Name = "LoaiLuuTru";
            this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.LoaiLuuTru.Size = new System.Drawing.Size(147, 20);
            this.LoaiLuuTru.TabIndex = 220;
            this.LoaiLuuTru.ValueField = null;
            //
            // NuocSX
            //
            this.NuocSX.DataSource = null;
            this.NuocSX.DisplayField = null;
            this.NuocSX.Location = new System.Drawing.Point(593, 30);
            this.NuocSX.Name = "NuocSX";
            this.NuocSX.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NuocSX.Size = new System.Drawing.Size(173, 20);
            this.NuocSX.TabIndex = 220;
            this.NuocSX.ValueField = null;
            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(593, 56);
            this.PostMaster.Name = "PostMaster";
            this.PostMaster.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.PostMaster.Size = new System.Drawing.Size(173, 20);
            this.PostMaster.TabIndex = 220;
            this.PostMaster.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(339, 56);
            this.TietMuc.Name = "TietMuc";
            this.TietMuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.TietMuc.Size = new System.Drawing.Size(187, 20);
            this.TietMuc.TabIndex = 216;
            this.TietMuc.ValueField = null;
            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(772, 10);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(55, 13);
            this.plLabel2.TabIndex = 213;
            this.plLabel2.Text = "Loại lưu trữ";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(269, 35);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(34, 13);
            this.plLabel4.TabIndex = 213;
            this.plLabel4.Text = "Tên CT";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(532, 34);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(40, 13);
            this.plLabel7.TabIndex = 213;
            this.plLabel7.Text = "Nước SX";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(532, 12);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(45, 13);
            this.plLabel6.TabIndex = 213;
            this.plLabel6.Text = "Category";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(532, 59);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Post/Master";

            //
            // label1
            //
            this.label1.Location = new System.Drawing.Point(4, 12);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(37, 13);
            this.label1.TabIndex = 214;
            this.label1.Text = "Mã PMT";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(269, 12);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(68, 13);
            this.plLabel3.TabIndex = 217;
            this.plLabel3.Text = "Công ty mượn";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(2, 87);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(55, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Ngày mượn";

            //
            // label3
            //
            this.label3.Location = new System.Drawing.Point(3, 34);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(58, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Người mượn";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(2, 60);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(69, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Bộ phận mượn";

            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 163);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1000, 382);
            this.splitContainerControl1.SplitterPosition = 199;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1000, 199);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MaPhieu,
            this.Col_NguoiMuon,
            this.Col_BoPhanMuon,
            this.Col_CongTyMuon,
            this.Col_NgayMuon,
            this.Col_MucDich,
            this.Col_NgayTra,
            this.Col_NguoiTao,
            this.Col_NgayTao,
            this.Col_PhongBan,
            this.Col_CongTy});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách phiếu mượn/trả";
            //
            // Col_MaPhieu
            //
            this.Col_MaPhieu.Caption = "Mã PMT";
            this.Col_MaPhieu.Name = "Col_MaPhieu";
            this.Col_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MaPhieu.Visible = true;
            this.Col_MaPhieu.Width = 49;
            //
            // Col_NguoiMuon
            //
            this.Col_NguoiMuon.Caption = "Người mượn";
            this.Col_NguoiMuon.Name = "Col_NguoiMuon";
            this.Col_NguoiMuon.Visible = true;
            this.Col_NguoiMuon.Width = 70;
            //
            // Col_BoPhanMuon
            //
            this.Col_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_BoPhanMuon.Name = "Col_BoPhanMuon";
            this.Col_BoPhanMuon.Visible = true;
            this.Col_BoPhanMuon.Width = 81;
            //
            // Col_CongTyMuon
            //
            this.Col_CongTyMuon.Caption = "Công ty mượn";
            this.Col_CongTyMuon.Name = "Col_CongTyMuon";
            this.Col_CongTyMuon.Visible = true;
            this.Col_CongTyMuon.Width = 80;
            //
            // Col_NgayMuon
            //
            this.Col_NgayMuon.Caption = "Ngày mượn";
            this.Col_NgayMuon.Name = "Col_NgayMuon";
            this.Col_NgayMuon.Visible = true;
            this.Col_NgayMuon.Width = 67;
            //
            // Col_MucDich
            //
            this.Col_MucDich.Caption = "Mục đích mượn";
            this.Col_MucDich.Name = "Col_MucDich";
            this.Col_MucDich.Visible = true;
            this.Col_MucDich.Width = 83;
            //
            // Col_NgayTra
            //
            this.Col_NgayTra.Caption = "Ngày trả";
            this.Col_NgayTra.Name = "Col_NgayTra";
            this.Col_NgayTra.Visible = true;
            this.Col_NgayTra.Width = 54;
            //
            // Col_NguoiTao
            //
            this.Col_NguoiTao.Caption = "Người tạo";
            this.Col_NguoiTao.Name = "Col_NguoiTao";
            this.Col_NguoiTao.Visible = true;
            this.Col_NguoiTao.Width = 59;
            //
            // Col_NgayTao
            //
            this.Col_NgayTao.Caption = "Ngày tạo";
            this.Col_NgayTao.Name = "Col_NgayTao";
            this.Col_NgayTao.Visible = true;
            this.Col_NgayTao.Width = 56;
            //
            // Col_PhongBan
            //
            this.Col_PhongBan.Caption = "Phòng ban";
            this.Col_PhongBan.Name = "Col_PhongBan";
            this.Col_PhongBan.Visible = true;
            this.Col_PhongBan.Width = 63;
            //
            // Col_CongTy
            //
            this.Col_CongTy.Caption = "Công ty";
            this.Col_CongTy.Name = "Col_CongTy";
            this.Col_CongTy.Visible = true;
            this.Col_CongTy.Width = 50;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Appearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.xtraTabControlDetail.Appearance.Options.UseBorderColor = true;
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1000, 177);
            this.xtraTabControlDetail.TabIndex = 10;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.TreeDes);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(993, 148);
            this.xtraTabPageDetail.Text = "Danh sách chương trình - post/master - biên mục mượn/trả của phiếu đang chọn";
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(993, 148);
            this.TreeDes.TabIndex = 35;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_NgayTra);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 484;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // frmMuonTraQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1000, 545);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanel1);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmMuonTraQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý phiếu mượn trả";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.ChuaTra.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaPMT.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenChuongTrinh.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.CongTyMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BoPhanMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiMuon.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NuocSX.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
Beispiel #31
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要使用代码编辑器修改
 /// 此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmItemQuery));
     this.treeListColumnName     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnCode     = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnID       = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumnParentID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupControlDataList   = new DevExpress.XtraEditors.GroupControl();
     this.gridControlDetail      = new DevExpress.XtraGrid.GridControl();
     this.gridView1              = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemTypeID   = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemAttnCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnRemark       = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7            = new DevExpress.XtraGrid.Columns.GridColumn();
     this.drpGridYesOrNo         = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.groupControl1          = new DevExpress.XtraEditors.GroupControl();
     this.treeList1              = new DevExpress.XtraTreeList.TreeList();
     this.groupControl2          = new DevExpress.XtraEditors.GroupControl();
     this.txtQItemModel          = new DevExpress.XtraEditors.TextEdit();
     this.label15            = new System.Windows.Forms.Label();
     this.txtQItemAttnCode   = new DevExpress.XtraEditors.TextEdit();
     this.label4             = new System.Windows.Forms.Label();
     this.btnToExcel         = new DevExpress.XtraEditors.SimpleButton();
     this.txtQItemCode       = new DevExpress.XtraEditors.TextEdit();
     this.label2             = new System.Windows.Forms.Label();
     this.txtQItemStd        = new DevExpress.XtraEditors.TextEdit();
     this.label9             = new System.Windows.Forms.Label();
     this.txtQItemName       = new DevExpress.XtraEditors.TextEdit();
     this.label1             = new System.Windows.Forms.Label();
     this.gridColumnItemCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemUnit = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemStd  = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumnItemName = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).BeginInit();
     this.groupControlDataList.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // BaseIlYesOrNo
     //
     this.BaseIlYesOrNo.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlYesOrNo.ImageStream")));
     this.BaseIlYesOrNo.Images.SetKeyName(0, "");
     this.BaseIlYesOrNo.Images.SetKeyName(1, "");
     //
     // BaseIlAll
     //
     this.BaseIlAll.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("BaseIlAll.ImageStream")));
     this.BaseIlAll.Images.SetKeyName(0, "");
     this.BaseIlAll.Images.SetKeyName(1, "");
     this.BaseIlAll.Images.SetKeyName(2, "");
     this.BaseIlAll.Images.SetKeyName(3, "");
     this.BaseIlAll.Images.SetKeyName(4, "");
     this.BaseIlAll.Images.SetKeyName(5, "");
     this.BaseIlAll.Images.SetKeyName(6, "");
     this.BaseIlAll.Images.SetKeyName(7, "");
     this.BaseIlAll.Images.SetKeyName(8, "");
     this.BaseIlAll.Images.SetKeyName(9, "");
     this.BaseIlAll.Images.SetKeyName(10, "");
     this.BaseIlAll.Images.SetKeyName(11, "");
     this.BaseIlAll.Images.SetKeyName(12, "");
     this.BaseIlAll.Images.SetKeyName(13, "");
     this.BaseIlAll.Images.SetKeyName(14, "");
     this.BaseIlAll.Images.SetKeyName(15, "");
     this.BaseIlAll.Images.SetKeyName(16, "");
     this.BaseIlAll.Images.SetKeyName(17, "");
     this.BaseIlAll.Images.SetKeyName(18, "");
     this.BaseIlAll.Images.SetKeyName(19, "");
     this.BaseIlAll.Images.SetKeyName(20, "");
     this.BaseIlAll.Images.SetKeyName(21, "");
     this.BaseIlAll.Images.SetKeyName(22, "");
     this.BaseIlAll.Images.SetKeyName(23, "");
     this.BaseIlAll.Images.SetKeyName(24, "");
     this.BaseIlAll.Images.SetKeyName(25, "");
     this.BaseIlAll.Images.SetKeyName(26, "");
     this.BaseIlAll.Images.SetKeyName(27, "");
     this.BaseIlAll.Images.SetKeyName(28, "");
     this.BaseIlAll.Images.SetKeyName(29, "");
     this.BaseIlAll.Images.SetKeyName(30, "");
     this.BaseIlAll.Images.SetKeyName(31, "");
     this.BaseIlAll.Images.SetKeyName(32, "");
     this.BaseIlAll.Images.SetKeyName(33, "");
     this.BaseIlAll.Images.SetKeyName(34, "");
     //
     // treeListColumnName
     //
     this.treeListColumnName.Caption   = "名称";
     this.treeListColumnName.FieldName = "Name";
     this.treeListColumnName.MinWidth  = 151;
     this.treeListColumnName.Name      = "treeListColumnName";
     this.treeListColumnName.OptionsColumn.AllowEdit = false;
     this.treeListColumnName.OptionsColumn.ReadOnly  = true;
     this.treeListColumnName.VisibleIndex            = 0;
     this.treeListColumnName.Width = 151;
     //
     // treeListColumnCode
     //
     this.treeListColumnCode.Caption             = "编码";
     this.treeListColumnCode.FieldName           = "Code";
     this.treeListColumnCode.Format.FormatString = "d";
     this.treeListColumnCode.Format.FormatType   = DevExpress.Utils.FormatType.DateTime;
     this.treeListColumnCode.MinWidth            = 45;
     this.treeListColumnCode.Name = "treeListColumnCode";
     this.treeListColumnCode.OptionsColumn.AllowEdit = false;
     this.treeListColumnCode.OptionsColumn.ReadOnly  = true;
     this.treeListColumnCode.Width = 81;
     //
     // treeListColumnID
     //
     this.treeListColumnID.Caption   = "ID";
     this.treeListColumnID.FieldName = "ID";
     this.treeListColumnID.MinWidth  = 45;
     this.treeListColumnID.Name      = "treeListColumnID";
     this.treeListColumnID.OptionsColumn.AllowEdit = false;
     this.treeListColumnID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnID.Width = 109;
     //
     // treeListColumnParentID
     //
     this.treeListColumnParentID.Caption   = "父节点";
     this.treeListColumnParentID.FieldName = "ParentID";
     this.treeListColumnParentID.Name      = "treeListColumnParentID";
     this.treeListColumnParentID.OptionsColumn.AllowEdit = false;
     this.treeListColumnParentID.OptionsColumn.ReadOnly  = true;
     this.treeListColumnParentID.Width = 49;
     //
     // groupControlDataList
     //
     this.groupControlDataList.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControlDataList.AppearanceCaption.Options.UseForeColor = true;
     this.groupControlDataList.Controls.Add(this.gridControlDetail);
     this.groupControlDataList.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlDataList.Location = new System.Drawing.Point(197, 56);
     this.groupControlDataList.Name     = "groupControlDataList";
     this.groupControlDataList.Size     = new System.Drawing.Size(727, 478);
     this.groupControlDataList.TabIndex = 275;
     this.groupControlDataList.Text     = "数据列表";
     //
     // gridControlDetail
     //
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.EmbeddedNavigator.Name = "";
     this.gridControlDetail.Location          = new System.Drawing.Point(4, 19);
     this.gridControlDetail.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
     this.gridControlDetail.MainView          = this.gridView1;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.drpGridYesOrNo
     });
     this.gridControlDetail.Size     = new System.Drawing.Size(719, 455);
     this.gridControlDetail.TabIndex = 34;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridView1
     });
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
         this.gridColumn1,
         this.gridColumnItemTypeID,
         this.gridColumn2,
         this.gridColumn3,
         this.gridColumnItemAttnCode,
         this.gridColumnRemark,
         this.gridColumn4,
         this.gridColumn5,
         this.gridColumn6,
         this.gridColumn7
     });
     this.gridView1.GridControl = this.gridControlDetail;
     this.gridView1.Name        = "gridView1";
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedRow  = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel  = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption      = "物品编码";
     this.gridColumn1.FieldName    = "ItemCode";
     this.gridColumn1.Name         = "gridColumn1";
     this.gridColumn1.Visible      = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumnItemTypeID
     //
     this.gridColumnItemTypeID.Caption      = "物品类型";
     this.gridColumnItemTypeID.FieldName    = "ItemTypeID";
     this.gridColumnItemTypeID.Name         = "gridColumnItemTypeID";
     this.gridColumnItemTypeID.Visible      = true;
     this.gridColumnItemTypeID.VisibleIndex = 1;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption      = "物品名称";
     this.gridColumn2.FieldName    = "ItemName";
     this.gridColumn2.Name         = "gridColumn2";
     this.gridColumn2.Visible      = true;
     this.gridColumn2.VisibleIndex = 2;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption      = "物品规格";
     this.gridColumn3.FieldName    = "ItemStd";
     this.gridColumn3.Name         = "gridColumn3";
     this.gridColumn3.Visible      = true;
     this.gridColumn3.VisibleIndex = 3;
     //
     // gridColumnItemAttnCode
     //
     this.gridColumnItemAttnCode.Caption      = "辅助编码";
     this.gridColumnItemAttnCode.FieldName    = "ItemAttnCode";
     this.gridColumnItemAttnCode.Name         = "gridColumnItemAttnCode";
     this.gridColumnItemAttnCode.Visible      = true;
     this.gridColumnItemAttnCode.VisibleIndex = 5;
     //
     // gridColumnRemark
     //
     this.gridColumnRemark.Caption      = "备注";
     this.gridColumnRemark.FieldName    = "Remark";
     this.gridColumnRemark.Name         = "gridColumnRemark";
     this.gridColumnRemark.Visible      = true;
     this.gridColumnRemark.VisibleIndex = 6;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption      = "单位";
     this.gridColumn4.FieldName    = "ItemUnit";
     this.gridColumn4.Name         = "gridColumn4";
     this.gridColumn4.Visible      = true;
     this.gridColumn4.VisibleIndex = 7;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption      = "季节";
     this.gridColumn5.FieldName    = "ItemrSeason";
     this.gridColumn5.Name         = "gridColumn5";
     this.gridColumn5.Visible      = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width        = 66;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption      = "类别";
     this.gridColumn6.FieldName    = "ItemClassName";
     this.gridColumn6.Name         = "gridColumn6";
     this.gridColumn6.Visible      = true;
     this.gridColumn6.VisibleIndex = 8;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption      = "品名";
     this.gridColumn7.FieldName    = "ItemModel";
     this.gridColumn7.Name         = "gridColumn7";
     this.gridColumn7.Visible      = true;
     this.gridColumn7.VisibleIndex = 9;
     //
     // drpGridYesOrNo
     //
     this.drpGridYesOrNo.AutoHeight = false;
     this.drpGridYesOrNo.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.drpGridYesOrNo.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.drpGridYesOrNo.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("是", 1, 1),
         new DevExpress.XtraEditors.Controls.ImageComboBoxItem("否", 0, 0)
     });
     this.drpGridYesOrNo.Name        = "drpGridYesOrNo";
     this.drpGridYesOrNo.SmallImages = this.BaseIlYesOrNo;
     //
     // groupControl1
     //
     this.groupControl1.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl1.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl1.Controls.Add(this.treeList1);
     this.groupControl1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.groupControl1.Location = new System.Drawing.Point(0, 56);
     this.groupControl1.Name     = "groupControl1";
     this.groupControl1.Size     = new System.Drawing.Size(197, 478);
     this.groupControl1.TabIndex = 274;
     this.groupControl1.Text     = "数据列表";
     //
     // treeList1
     //
     this.treeList1.AllowDrop = true;
     this.treeList1.Appearance.EvenRow.BackColor                  = System.Drawing.Color.White;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor       = true;
     this.treeList1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.treeList1.Appearance.HeaderPanel.TextOptions.Trimming   = DevExpress.Utils.Trimming.None;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumnID,
         this.treeListColumnCode,
         this.treeListColumnName,
         this.treeListColumnParentID
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(4, 19);
     this.treeList1.Name     = "treeList1";
     this.treeList1.BeginUnboundLoad();
     this.treeList1.AppendNode(new object[] {
         null,
         null,
         null,
         0
     }, -1, 0, 0, 7);
     this.treeList1.EndUnboundLoad();
     this.treeList1.OptionsBehavior.AutoChangeParent       = false;
     this.treeList1.OptionsBehavior.AutoNodeHeight         = false;
     this.treeList1.OptionsBehavior.CanCloneNodesOnDrop    = true;
     this.treeList1.OptionsBehavior.CloseEditorOnLostFocus = false;
     this.treeList1.OptionsBehavior.DragNodes           = true;
     this.treeList1.OptionsBehavior.KeepSelectedOnClick = false;
     this.treeList1.OptionsBehavior.ShowEditorOnMouseUp = true;
     this.treeList1.OptionsBehavior.SmartMouseHover     = false;
     this.treeList1.OptionsView.AutoWidth = false;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.ShowFocusedFrame        = false;
     this.treeList1.Size                = new System.Drawing.Size(189, 455);
     this.treeList1.TabIndex            = 33;
     this.treeList1.TreeLineStyle       = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     //
     // groupControl2
     //
     this.groupControl2.AppearanceCaption.ForeColor            = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.groupControl2.AppearanceCaption.Options.UseForeColor = true;
     this.groupControl2.Controls.Add(this.txtQItemModel);
     this.groupControl2.Controls.Add(this.label15);
     this.groupControl2.Controls.Add(this.txtQItemAttnCode);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.btnToExcel);
     this.groupControl2.Controls.Add(this.txtQItemCode);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.txtQItemStd);
     this.groupControl2.Controls.Add(this.label9);
     this.groupControl2.Controls.Add(this.txtQItemName);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.groupControl2.Location = new System.Drawing.Point(0, 0);
     this.groupControl2.Name     = "groupControl2";
     this.groupControl2.Size     = new System.Drawing.Size(924, 56);
     this.groupControl2.TabIndex = 277;
     this.groupControl2.Text     = "数据列表";
     //
     // txtQItemModel
     //
     this.txtQItemModel.EditValue = "";
     this.txtQItemModel.Location  = new System.Drawing.Point(692, 21);
     this.txtQItemModel.Name      = "txtQItemModel";
     this.txtQItemModel.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemModel.Properties.MaxLength   = 50;
     this.txtQItemModel.Size              = new System.Drawing.Size(70, 23);
     this.txtQItemModel.TabIndex          = 5;
     this.txtQItemModel.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(658, 26);
     this.label15.Name     = "label15";
     this.label15.Size     = new System.Drawing.Size(29, 12);
     this.label15.TabIndex = 301;
     this.label15.Text     = "品名";
     //
     // txtQItemAttnCode
     //
     this.txtQItemAttnCode.Location          = new System.Drawing.Point(573, 22);
     this.txtQItemAttnCode.Name              = "txtQItemAttnCode";
     this.txtQItemAttnCode.Size              = new System.Drawing.Size(70, 21);
     this.txtQItemAttnCode.TabIndex          = 4;
     this.txtQItemAttnCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(517, 26);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(53, 12);
     this.label4.TabIndex = 298;
     this.label4.Text     = "辅助编码";
     //
     // btnToExcel
     //
     this.btnToExcel.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.btnToExcel.Location    = new System.Drawing.Point(788, 21);
     this.btnToExcel.Name        = "btnToExcel";
     this.btnToExcel.Size        = new System.Drawing.Size(75, 23);
     this.btnToExcel.TabIndex    = 293;
     this.btnToExcel.Text        = "转Excel";
     this.btnToExcel.Click      += new System.EventHandler(this.btnToExcel_Click);
     //
     // txtQItemCode
     //
     this.txtQItemCode.EditValue = "";
     this.txtQItemCode.Location  = new System.Drawing.Point(55, 21);
     this.txtQItemCode.Name      = "txtQItemCode";
     this.txtQItemCode.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemCode.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemCode.TabIndex          = 1;
     this.txtQItemCode.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(21, 26);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(29, 12);
     this.label2.TabIndex = 291;
     this.label2.Text     = "编码";
     //
     // txtQItemStd
     //
     this.txtQItemStd.EditValue = "";
     this.txtQItemStd.Location  = new System.Drawing.Point(423, 21);
     this.txtQItemStd.Name      = "txtQItemStd";
     this.txtQItemStd.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemStd.Size              = new System.Drawing.Size(88, 23);
     this.txtQItemStd.TabIndex          = 3;
     this.txtQItemStd.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(391, 26);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(29, 12);
     this.label9.TabIndex = 289;
     this.label9.Text     = "规格";
     //
     // txtQItemName
     //
     this.txtQItemName.EditValue = "";
     this.txtQItemName.Location  = new System.Drawing.Point(191, 21);
     this.txtQItemName.Name      = "txtQItemName";
     this.txtQItemName.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Style3D;
     this.txtQItemName.Size              = new System.Drawing.Size(184, 23);
     this.txtQItemName.TabIndex          = 2;
     this.txtQItemName.EditValueChanged += new System.EventHandler(this.drpQ_EditValueChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(157, 26);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(29, 12);
     this.label1.TabIndex = 287;
     this.label1.Text     = "名称";
     //
     // gridColumnItemCode
     //
     this.gridColumnItemCode.Caption   = "纱线编码";
     this.gridColumnItemCode.FieldName = "ItemCode";
     this.gridColumnItemCode.Name      = "gridColumnItemCode";
     this.gridColumnItemCode.OptionsColumn.AllowEdit = false;
     this.gridColumnItemCode.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemCode.Visible      = true;
     this.gridColumnItemCode.VisibleIndex = 0;
     this.gridColumnItemCode.Width        = 90;
     //
     // gridColumnItemUnit
     //
     this.gridColumnItemUnit.Caption   = "单位";
     this.gridColumnItemUnit.FieldName = "ItemUnit";
     this.gridColumnItemUnit.Name      = "gridColumnItemUnit";
     this.gridColumnItemUnit.OptionsColumn.AllowEdit = false;
     this.gridColumnItemUnit.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemUnit.Visible      = true;
     this.gridColumnItemUnit.VisibleIndex = 3;
     this.gridColumnItemUnit.Width        = 61;
     //
     // gridColumnItemStd
     //
     this.gridColumnItemStd.Caption   = "纱线支数";
     this.gridColumnItemStd.FieldName = "ItemStd";
     this.gridColumnItemStd.Name      = "gridColumnItemStd";
     this.gridColumnItemStd.OptionsColumn.AllowEdit = false;
     this.gridColumnItemStd.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemStd.Visible      = true;
     this.gridColumnItemStd.VisibleIndex = 2;
     this.gridColumnItemStd.Width        = 90;
     //
     // gridColumnItemName
     //
     this.gridColumnItemName.Caption   = "纱线成份";
     this.gridColumnItemName.FieldName = "ItemName";
     this.gridColumnItemName.Name      = "gridColumnItemName";
     this.gridColumnItemName.OptionsColumn.AllowEdit = false;
     this.gridColumnItemName.OptionsColumn.ReadOnly  = true;
     this.gridColumnItemName.Visible      = true;
     this.gridColumnItemName.VisibleIndex = 1;
     this.gridColumnItemName.Width        = 263;
     //
     // frmItemQuery
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.ClientSize          = new System.Drawing.Size(924, 534);
     this.Controls.Add(this.groupControlDataList);
     this.Controls.Add(this.groupControl1);
     this.Controls.Add(this.groupControl2);
     this.Name  = "frmItemQuery";
     this.Text  = "纱种查询";
     this.Load += new System.EventHandler(this.frmItemQuery_Load);
     this.Controls.SetChildIndex(this.groupControl2, 0);
     this.Controls.SetChildIndex(this.groupControl1, 0);
     this.Controls.SetChildIndex(this.groupControlDataList, 0);
     this.Controls.SetChildIndex(this.BaseFocusLabelTemp, 0);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlDataList)).EndInit();
     this.groupControlDataList.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.drpGridYesOrNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemAttnCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemCode.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtQItemName.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccTypesFrm));
     this.TreeListAcc = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.imageCollectionNodes = new DevExpress.Utils.ImageCollection(this.components);
     this.GCCodes = new DevExpress.XtraEditors.GroupControl();
     this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
     this.LlHyCode = new DevExpress.XtraEditors.LabelControl();
     this.LblAccCode = new DevExpress.XtraEditors.LabelControl();
     this.LblParentName = new DevExpress.XtraEditors.LabelControl();
     this.LblTreeID = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.GCDetails = new DevExpress.XtraEditors.GroupControl();
     this.LUEAccEndCount = new DevExpress.XtraEditors.LookUpEdit();
     this.LUEAccType = new DevExpress.XtraEditors.LookUpEdit();
     this.TxtBudge = new DevExpress.XtraEditors.TextEdit();
     this.TxtAccName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
     this.BtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.BtnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
     this.BtnNew = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).BeginInit();
     this.GCCodes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).BeginInit();
     this.GCDetails.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit();
     this.groupControl3.SuspendLayout();
     this.SuspendLayout();
     //
     // TreeListAcc
     //
     this.TreeListAcc.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.TreeListAcc.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn6,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn7});
     this.TreeListAcc.Location = new System.Drawing.Point(10, 12);
     this.TreeListAcc.Name = "TreeListAcc";
     this.TreeListAcc.BeginUnboundLoad();
     this.TreeListAcc.AppendNode(new object[] {
     "شجرة الحسابات",
     null,
     null,
     null,
     null,
     null,
     null}, -1, 0, 1, -1);
     this.TreeListAcc.EndUnboundLoad();
     this.TreeListAcc.OptionsBehavior.Editable = false;
     this.TreeListAcc.OptionsBehavior.PopulateServiceColumns = true;
     this.TreeListAcc.OptionsLayout.AddNewColumns = false;
     this.TreeListAcc.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.TreeListAcc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1});
     this.TreeListAcc.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.TreeListAcc.SelectImageList = this.imageCollectionNodes;
     this.TreeListAcc.Size = new System.Drawing.Size(840, 300);
     this.TreeListAcc.TabIndex = 0;
     this.TreeListAcc.AfterExpand += new DevExpress.XtraTreeList.NodeEventHandler(this.TreeListAcc_AfterExpand);
     this.TreeListAcc.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.TreeListAcc_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "-   الحســــابات   -";
     this.treeListColumn1.FieldName = "اسم الحساب";
     this.treeListColumn1.MinWidth = 91;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "كود الدليل";
     this.treeListColumn6.FieldName = "AccountTreeId";
     this.treeListColumn6.Name = "treeListColumn6";
     this.treeListColumn6.Visible = true;
     this.treeListColumn6.VisibleIndex = 1;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "اسم الحساب";
     this.treeListColumn2.ColumnEdit = this.repositoryItemButtonEdit1;
     this.treeListColumn2.FieldName = "AccountDes";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 2;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AllowNullInput = DevExpress.Utils.DefaultBoolean.False;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.OK, "حفظ", 30, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
     this.repositoryItemButtonEdit1.MaxLength = 150;
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "طبيعة الحساب";
     this.treeListColumn3.FieldName = "AccNatueName";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 3;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "مبلغ الموازنه";
     this.treeListColumn4.FieldName = "AccountBudget";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 4;
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "كود الحساب الختامي";
     this.treeListColumn5.FieldName = "AsKhtamiaccName";
     this.treeListColumn5.Name = "treeListColumn5";
     this.treeListColumn5.Visible = true;
     this.treeListColumn5.VisibleIndex = 5;
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "AccountId";
     this.treeListColumn7.FieldName = "AccountId";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.Visible = true;
     this.treeListColumn7.VisibleIndex = 6;
     //
     // imageCollectionNodes
     //
     this.imageCollectionNodes.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollectionNodes.ImageStream")));
     this.imageCollectionNodes.Images.SetKeyName(0, "NodeItems.jpg");
     this.imageCollectionNodes.Images.SetKeyName(1, "NodeSelected.png");
     this.imageCollectionNodes.Images.SetKeyName(2, "NodeNotSelected.png");
     //
     // GCCodes
     //
     this.GCCodes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.GCCodes.Controls.Add(this.labelControl15);
     this.GCCodes.Controls.Add(this.LlHyCode);
     this.GCCodes.Controls.Add(this.LblAccCode);
     this.GCCodes.Controls.Add(this.LblParentName);
     this.GCCodes.Controls.Add(this.LblTreeID);
     this.GCCodes.Controls.Add(this.labelControl1);
     this.GCCodes.Location = new System.Drawing.Point(12, 318);
     this.GCCodes.Name = "GCCodes";
     this.GCCodes.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.GCCodes.Size = new System.Drawing.Size(293, 136);
     this.GCCodes.TabIndex = 1;
     this.GCCodes.Text = "اكواد";
     this.GCCodes.Visible = false;
     //
     // labelControl15
     //
     this.labelControl15.Location = new System.Drawing.Point(175, 34);
     this.labelControl15.Name = "labelControl15";
     this.labelControl15.Size = new System.Drawing.Size(93, 13);
     this.labelControl15.TabIndex = 0;
     this.labelControl15.Text = "اسم الحساب الاب";
     //
     // LlHyCode
     //
     this.LlHyCode.Location = new System.Drawing.Point(85, 85);
     this.LlHyCode.Name = "LlHyCode";
     this.LlHyCode.Size = new System.Drawing.Size(128, 13);
     this.LlHyCode.TabIndex = 0;
     this.LlHyCode.Text = "كود الحساب في الدليل";
     //
     // LblAccCode
     //
     this.LblAccCode.Appearance.Options.UseTextOptions = true;
     this.LblAccCode.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblAccCode.Location = new System.Drawing.Point(31, 53);
     this.LblAccCode.Name = "LblAccCode";
     this.LblAccCode.Size = new System.Drawing.Size(25, 13);
     this.LblAccCode.TabIndex = 0;
     this.LblAccCode.Text = "None";
     //
     // LblParentName
     //
     this.LblParentName.Location = new System.Drawing.Point(31, 34);
     this.LblParentName.Name = "LblParentName";
     this.LblParentName.Size = new System.Drawing.Size(25, 13);
     this.LblParentName.TabIndex = 0;
     this.LblParentName.Text = "None";
     //
     // LblTreeID
     //
     this.LblTreeID.Appearance.Options.UseTextOptions = true;
     this.LblTreeID.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.LblTreeID.Location = new System.Drawing.Point(137, 104);
     this.LblTreeID.Name = "LblTreeID";
     this.LblTreeID.Size = new System.Drawing.Size(25, 13);
     this.LblTreeID.TabIndex = 0;
     this.LblTreeID.Text = "None";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(205, 53);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(63, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "كود الحساب";
     //
     // GCDetails
     //
     this.GCDetails.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.GCDetails.Controls.Add(this.LUEAccEndCount);
     this.GCDetails.Controls.Add(this.LUEAccType);
     this.GCDetails.Controls.Add(this.TxtBudge);
     this.GCDetails.Controls.Add(this.TxtAccName);
     this.GCDetails.Controls.Add(this.labelControl10);
     this.GCDetails.Controls.Add(this.labelControl9);
     this.GCDetails.Controls.Add(this.labelControl8);
     this.GCDetails.Controls.Add(this.labelControl7);
     this.GCDetails.Location = new System.Drawing.Point(311, 318);
     this.GCDetails.Name = "GCDetails";
     this.GCDetails.Size = new System.Drawing.Size(319, 136);
     this.GCDetails.TabIndex = 1;
     this.GCDetails.Text = "تفاصيل الحساب";
     this.GCDetails.Visible = false;
     //
     // LUEAccEndCount
     //
     this.LUEAccEndCount.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccEndCount.Location = new System.Drawing.Point(12, 105);
     this.LUEAccEndCount.Name = "LUEAccEndCount";
     this.LUEAccEndCount.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccEndCount.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccID", "KhtamiaccID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("KhtamiaccName", "اسماء الاكواد الختاميه")});
     this.LUEAccEndCount.Properties.NullText = "";
     this.LUEAccEndCount.Properties.NullValuePrompt = "اختار الحساب الختامي";
     this.LUEAccEndCount.Size = new System.Drawing.Size(187, 19);
     this.LUEAccEndCount.TabIndex = 4;
     //
     // LUEAccType
     //
     this.LUEAccType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.LUEAccType.Location = new System.Drawing.Point(12, 55);
     this.LUEAccType.Name = "LUEAccType";
     this.LUEAccType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LUEAccType.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueID", "AccNatueID", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("AccNatueName", "انوع طبيعة الحسابات")});
     this.LUEAccType.Properties.NullText = "";
     this.LUEAccType.Properties.NullValuePrompt = "اختار طبيعة";
     this.LUEAccType.Size = new System.Drawing.Size(187, 19);
     this.LUEAccType.TabIndex = 2;
     //
     // TxtBudge
     //
     this.TxtBudge.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtBudge.Location = new System.Drawing.Point(12, 80);
     this.TxtBudge.Name = "TxtBudge";
     this.TxtBudge.Properties.Mask.EditMask = "#####.00";
     this.TxtBudge.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.TxtBudge.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.TxtBudge.Properties.MaxLength = 8;
     this.TxtBudge.Size = new System.Drawing.Size(187, 19);
     this.TxtBudge.TabIndex = 3;
     //
     // TxtAccName
     //
     this.TxtAccName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.TxtAccName.Location = new System.Drawing.Point(12, 30);
     this.TxtAccName.Name = "TxtAccName";
     this.TxtAccName.Properties.MaxLength = 150;
     this.TxtAccName.Size = new System.Drawing.Size(187, 19);
     this.TxtAccName.TabIndex = 1;
     this.TxtAccName.EditValueChanged += new System.EventHandler(this.TxtAccName_EditValueChanged);
     //
     // labelControl10
     //
     this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl10.Location = new System.Drawing.Point(205, 108);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(102, 13);
     this.labelControl10.TabIndex = 0;
     this.labelControl10.Text = "كود الحساب الختام";
     //
     // labelControl9
     //
     this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl9.Location = new System.Drawing.Point(233, 83);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(74, 13);
     this.labelControl9.TabIndex = 0;
     this.labelControl9.Text = "مبلغ الموازنه";
     //
     // labelControl8
     //
     this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl8.Location = new System.Drawing.Point(224, 58);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(83, 13);
     this.labelControl8.TabIndex = 0;
     this.labelControl8.Text = "طبيعة الحساب";
     //
     // labelControl7
     //
     this.labelControl7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl7.Location = new System.Drawing.Point(239, 33);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(68, 13);
     this.labelControl7.TabIndex = 0;
     this.labelControl7.Text = "اسم الحساب";
     //
     // groupControl3
     //
     this.groupControl3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.groupControl3.Controls.Add(this.BtnCancel);
     this.groupControl3.Controls.Add(this.BtnDelete);
     this.groupControl3.Controls.Add(this.BtnSave);
     this.groupControl3.Controls.Add(this.BtnNew);
     this.groupControl3.Location = new System.Drawing.Point(636, 318);
     this.groupControl3.Name = "groupControl3";
     this.groupControl3.Size = new System.Drawing.Size(214, 136);
     this.groupControl3.TabIndex = 5;
     this.groupControl3.Text = "الاوامر";
     //
     // BtnCancel
     //
     this.BtnCancel.Location = new System.Drawing.Point(134, 33);
     this.BtnCancel.Name = "BtnCancel";
     this.BtnCancel.Size = new System.Drawing.Size(72, 81);
     this.BtnCancel.TabIndex = 8;
     this.BtnCancel.Text = "الغاء الامر";
     this.BtnCancel.Visible = false;
     this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
     //
     // BtnDelete
     //
     this.BtnDelete.Enabled = false;
     this.BtnDelete.Location = new System.Drawing.Point(8, 91);
     this.BtnDelete.Name = "BtnDelete";
     this.BtnDelete.Size = new System.Drawing.Size(120, 23);
     this.BtnDelete.TabIndex = 7;
     this.BtnDelete.Text = "حذف";
     this.BtnDelete.Click += new System.EventHandler(this.BtnDelete_Click);
     //
     // BtnSave
     //
     this.BtnSave.Enabled = false;
     this.BtnSave.Location = new System.Drawing.Point(8, 62);
     this.BtnSave.Name = "BtnSave";
     this.BtnSave.Size = new System.Drawing.Size(120, 23);
     this.BtnSave.TabIndex = 6;
     this.BtnSave.Text = "حفظ";
     this.BtnSave.Visible = false;
     this.BtnSave.Click += new System.EventHandler(this.BtnSave_Click);
     //
     // BtnNew
     //
     this.BtnNew.Location = new System.Drawing.Point(8, 33);
     this.BtnNew.Name = "BtnNew";
     this.BtnNew.Size = new System.Drawing.Size(120, 23);
     this.BtnNew.TabIndex = 5;
     this.BtnNew.Text = "جديد";
     this.BtnNew.Click += new System.EventHandler(this.BtnNew_Click);
     //
     // AccTypesFrm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(862, 462);
     this.Controls.Add(this.groupControl3);
     this.Controls.Add(this.GCDetails);
     this.Controls.Add(this.GCCodes);
     this.Controls.Add(this.TreeListAcc);
     this.MinimumSize = new System.Drawing.Size(870, 496);
     this.Name = "AccTypesFrm";
     this.Text = "الحسابات";
     this.Load += new System.EventHandler(this.AccTypesFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TreeListAcc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GCCodes)).EndInit();
     this.GCCodes.ResumeLayout(false);
     this.GCCodes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.GCDetails)).EndInit();
     this.GCDetails.ResumeLayout(false);
     this.GCDetails.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccEndCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LUEAccType.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtBudge.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtAccName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit();
     this.groupControl3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #33
0
		/// <summary> 
		/// Required method for Designer support - do not modify 
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(NutritionManagement));
			this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
			this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_FoodCategory = new DevExpress.XtraEditors.GroupControl();
			this.treeList_FoodStock = new DevExpress.XtraTreeList.TreeList();
			this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.groupControl_FoodNutModify = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel7 = new DevExpress.Utils.Frames.NotePanel();
			this.memoEdit_FoodRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_FoodRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_Energy = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Carbohydrate = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Fat = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_Protein = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Energy = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Carbohydrate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Fat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Protein = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_FoodNutrition = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_FoodModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_FoodAdd = new DevExpress.XtraEditors.SimpleButton();
			this.textEdit_FoodSearch = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
			this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_Recipe_FoodNutrition = new DevExpress.XtraGrid.GridControl();
			this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
			this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel4 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeLogin = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_RecipeLogin_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_RecipeLogin_Name = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_Name = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_RecipeLogin_Date = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_RecipeLogin_Date = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_FoodTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeLogin_BindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeLogin_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_RecipeSer_FoodCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_RecipeSer_FoodCategory = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_RecipeSer_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_RecipeSer_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_RecipeOpr = new DevExpress.XtraEditors.GroupControl();
			this.simpleButton_RecipeModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_RecipeSave = new DevExpress.XtraEditors.SimpleButton();
			this.panelControl11 = new DevExpress.XtraEditors.PanelControl();
			this.gridControl_RecipeLogin = new DevExpress.XtraGrid.GridControl();
			this.gridView13 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel5 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
			this.textEdit_Recipe_FoodName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_Recipe_FoodName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Recipe = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_Recipe_RecipeCategory = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_Recipe_RecipeCategory = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Recipe_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Recipe_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl3 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MealLogin = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MealArr = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_Snack = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Dinner = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Lunch = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_Breakfast = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_MealAdd = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MealName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MealRemark = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MealID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MealName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealNameAdd = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealArr = new DevExpress.XtraEditors.GroupControl();
			this.splitContainerControl4 = new DevExpress.XtraEditors.SplitContainerControl();
			this.notePanel_GradeArr = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MealArr_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gThree = new DevExpress.XtraEditors.CheckEdit();
			this.notePanel_MealArr_Name = new DevExpress.Utils.Frames.NotePanel();
			this.checkEdit_MealArr_gTwo = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gOne = new DevExpress.XtraEditors.CheckEdit();
			this.comboBoxEdit_MealArr_Name = new DevExpress.XtraEditors.ComboBoxEdit();
			this.checkEdit_MealArr_gFour = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_gFive = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_MealArr_IsUsed = new DevExpress.XtraEditors.CheckEdit();
			this.label_Lunch = new System.Windows.Forms.Label();
			this.label_Snack = new System.Windows.Forms.Label();
			this.label_Super = new System.Windows.Forms.Label();
			this.label_Breakfast = new System.Windows.Forms.Label();
			this.notePanel_MealArr_ePreview = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MealPreview = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MealPreview = new DevExpress.XtraGrid.GridControl();
			this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel3 = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MealBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAppend = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MealAdd = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl5 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_Meal_Search = new DevExpress.XtraEditors.GroupControl();
			this.dateEdit_Meal_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_Meal_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_Meal_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_Meal_Search = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_Meal_ReportPreview = new DevExpress.XtraEditors.GroupControl();
			this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_Meal_PrintReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_Meal_PreviewReport = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl6 = new DevExpress.XtraEditors.SplitContainerControl();
			this.gridControl_HInputStu = new DevExpress.XtraGrid.GridControl();
			this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.groupControl_HInputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGender = new DevExpress.Utils.Frames.NotePanel();
			this.dataNavigator_HInputNav = new DevExpress.XtraEditors.DataNavigator();
			this.textEdit_HInputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HInputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HInputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputSer = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HInputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel6 = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HInputStd = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HInputStd = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagCheckBindingID = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_HInputDiagResult = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_DiagResultX = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWHOPer = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultHeightWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultUnderWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel8 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel9 = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel10 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultStunting = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWasting = new DevExpress.XtraEditors.TextEdit();
			this.notePanel1 = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultHeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultWeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagResultWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultNut = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultWHO = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultHeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagResultAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagResultWHO = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultNut = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagResultAge = new DevExpress.XtraEditors.TextEdit();
			this.memoEdit_DiagRemark = new DevExpress.XtraEditors.MemoEdit();
			this.notePanel_DiagRemark = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagWeight = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_DiagHeight = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_HInputDaigInfo = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagWeight = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_DiagHeight = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_DiagCheckDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_DiagCheckDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HInputBirthday = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HInputBirthday = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_DiagCheckGender = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_DiagCheckGender = new DevExpress.XtraEditors.TextEdit();
			this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HInputModify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputSave = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HInputDiag = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl7 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_HOutputPrintType = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_HOutputPrintType4th = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType3rd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType2nd = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_HOutputPrintType1st = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_HOutputSer = new DevExpress.XtraEditors.GroupControl();
			this.comboBoxEdit_HOutputRegion = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel11 = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_HOutputEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_HOutputBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_HOutputEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGender = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputResult = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputResult = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputType = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_HOutputAge = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputAge = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_HOutputNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_HOutputName = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_HOutputClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_HOutputGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_HOutputGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputName = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_HOutputGender = new DevExpress.Utils.Frames.NotePanel();
			this.gridControl_HOutputNchsGrid = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView2 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn16 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn19 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn17 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn23 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn18 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn20 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn21 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn22 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn26 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn29 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn30 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn24 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn25 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn27 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn28 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridControl_HOutputGridShow = new DevExpress.XtraGrid.GridControl();
			this.advBandedGridView1 = new DevExpress.XtraGrid.Views.BandedGrid.AdvBandedGridView();
			this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn5 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn6 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn7 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn8 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn10 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn12 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn15 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn9 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn11 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.bandedGridColumn13 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
			this.bandedGridColumn14 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
			this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_HOutputSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_HOutputPrint = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl8 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_WatchMorningRec = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchMorningTreat = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningTreat = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningOState = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningOState = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningMouth = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningHeat = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningMouth = new DevExpress.XtraEditors.ComboBoxEdit();
			this.comboBoxEdit_WatchMorningSpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningHeat = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningSkin = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchMorningSkin = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchMorningSpirit = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchMorningNumber = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_WatchMorningName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchMorningNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchMorningName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchSer = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchName = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_WatchEndDate = new DevExpress.XtraEditors.DateEdit();
			this.dateEdit_WatchBegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_WatchEndDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchBegDate = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchState = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchState = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_WatchNumber = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_WatchClass = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchClass = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchGrade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchGrade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchNumber = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_WatchName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchWholeDay = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_WatchWholDayHandle = new DevExpress.XtraEditors.GroupControl();
			this.checkEdit_WatchWholeDayHeat = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrSeafood = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayLifeAttention = new DevExpress.XtraEditors.CheckEdit();
			this.checkEdit_WatchWholeDayCtrAct = new DevExpress.XtraEditors.CheckEdit();
			this.groupControl_WatchWholeDayReg = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_WatchWholeDayElse = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_WatchWholeDayElse = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayCough = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayCough = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySleep = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySleep = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayStool = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayStool = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayAppetite = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayAppetite = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDaySpirit = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDaySpirit = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_WatchWholeDayMovement = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_WatchWholeDayMovement = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_WatchRecList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_WatchRecList = new DevExpress.XtraGrid.GridControl();
			this.gridView8 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_WatchRecList = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_WatchSearch = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchBack = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchDelete = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchReport = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_WatchHandle = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage8 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl9 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedReg_StuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedReg_StuList = new DevExpress.XtraGrid.GridControl();
			this.gridView9 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel2 = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_Ser = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedReg_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Name = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedReg_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_MedName = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_Taketimes = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_MedType = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Taketimes = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedType = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.GroupControl();
			this.listBoxControl_MedReg_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.simpleButton_MedReg_MedCarrDel = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_MedCarrAdd = new DevExpress.XtraEditors.SimpleButton();
			this.listBoxControl_MedReg_MedInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.groupControl_MedReg_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedReg_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedReg_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedReg_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel__MedReg_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedReg_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedReg_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedReg_Diag = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedReg_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_MedReg_Ser = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Modify = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Reg = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Save = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedReg_Back = new DevExpress.XtraEditors.SimpleButton();
			this.xtraTabPage9 = new DevExpress.XtraTab.XtraTabPage();
			this.splitContainerControl10 = new DevExpress.XtraEditors.SplitContainerControl();
			this.groupControl_MedRec_AbnStuList = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_AbnStuList = new DevExpress.XtraGrid.GridControl();
			this.gridView10 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.notePanel_MedRec_AbnStuList = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_Ser = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Number = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Name = new DevExpress.XtraEditors.TextEdit();
			this.dateEdit_MedRec_EndDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_EndDate = new DevExpress.Utils.Frames.NotePanel();
			this.dateEdit_MedRec_BegDate = new DevExpress.XtraEditors.DateEdit();
			this.notePanel_MedRec_BegDate = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Ser = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_DoseRecDiaID = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbnDiaID = new DevExpress.XtraEditors.TextEdit();
			this.comboBoxEdit_MedRec_Class = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Class = new DevExpress.Utils.Frames.NotePanel();
			this.comboBoxEdit_MedRec_Grade = new DevExpress.XtraEditors.ComboBoxEdit();
			this.notePanel_MedRec_Grade = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Number = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Name = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagAndDoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.groupControl_MedRec_DoseAdd = new DevExpress.XtraEditors.GroupControl();
			this.notePanel_MedRec_TakeRule = new DevExpress.Utils.Frames.NotePanel();
			this.listBoxControl_MedRec_MedCarrInfo = new DevExpress.XtraEditors.ListBoxControl();
			this.comboBoxEdit_MedRec_TakeRule = new DevExpress.XtraEditors.ComboBoxEdit();
			this.timeEdit_MedRec_TakeTime = new DevExpress.XtraEditors.TimeEdit();
			this.notePanel_MedRec_TakeDate = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedTake = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedTake = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_MedName = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_MedName = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DiagInfo = new DevExpress.XtraEditors.GroupControl();
			this.textEdit_MedRec_Diag = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_Else = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_FacialSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_Else = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_FacialSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_SkinSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_AbdomenSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_EnteronSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_SkinSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_AbdomenSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_EnteronSym = new DevExpress.XtraEditors.TextEdit();
			this.textEdit_MedRec_ThroatSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_ThroatSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_LungSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_LungSym = new DevExpress.Utils.Frames.NotePanel();
			this.textEdit_MedRec_UpperSym = new DevExpress.XtraEditors.TextEdit();
			this.notePanel_MedRec_UpperSym = new DevExpress.Utils.Frames.NotePanel();
			this.notePanel_MedRec_Diag = new DevExpress.Utils.Frames.NotePanel();
			this.groupControl_MedRec_DoseRec = new DevExpress.XtraEditors.GroupControl();
			this.gridControl_MedRec_DoseRec = new DevExpress.XtraGrid.GridControl();
			this.gridView11 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView12 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.notePanel_MedRec_DoseRec = new DevExpress.Utils.Frames.NotePanel();
			this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
			this.simpleButton_AbnormalSer = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Report = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Add = new DevExpress.XtraEditors.SimpleButton();
			this.simpleButton_MedRec_Back = new DevExpress.XtraEditors.SimpleButton();
			this.barManager1 = new DevExpress.XtraBars.BarManager();
			this.popupMenu4 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_RecipeRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_RecipeDelete = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu1 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MealRefresh = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu2 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedReg_MedAdd = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedModify = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedReg_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.popupMenu3 = new DevExpress.XtraBars.PopupMenu();
			this.barButtonItem_MedRec_MultiSer = new DevExpress.XtraBars.BarButtonItem();
			this.barButtonItem_MedRec_MedDel = new DevExpress.XtraBars.BarButtonItem();
			this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
			this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
			this.gridView14 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
			this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
			this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
			this.helpProvider_NutritionInfo = new System.Windows.Forms.HelpProvider();
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
			this.xtraTabControl1.SuspendLayout();
			this.xtraTabPage1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
			this.splitContainerControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).BeginInit();
			this.groupControl_FoodCategory.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).BeginInit();
			this.groupControl_FoodNutModify.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).BeginInit();
			this.groupControl_FoodNutrition.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
			this.panelControl1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).BeginInit();
			this.xtraTabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
			this.splitContainerControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
			this.panelControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).BeginInit();
			this.groupControl_RecipeLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).BeginInit();
			this.groupControl_RecipeSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).BeginInit();
			this.groupControl_RecipeOpr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).BeginInit();
			this.panelControl11.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
			this.panelControl2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).BeginInit();
			this.xtraTabPage3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).BeginInit();
			this.splitContainerControl3.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).BeginInit();
			this.groupControl_MealLogin.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).BeginInit();
			this.groupControl_MealAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).BeginInit();
			this.groupControl_MealArr.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).BeginInit();
			this.splitContainerControl4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).BeginInit();
			this.groupControl_MealPreview.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
			this.panelControl3.SuspendLayout();
			this.xtraTabPage4.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).BeginInit();
			this.splitContainerControl5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).BeginInit();
			this.groupControl_Meal_Search.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
			this.panelControl4.SuspendLayout();
			this.xtraTabPage5.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).BeginInit();
			this.splitContainerControl6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).BeginInit();
			this.groupControl_HInputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).BeginInit();
			this.groupControl_HInputDiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).BeginInit();
			this.groupControl_HInputDiagResult.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
			this.panelControl5.SuspendLayout();
			this.xtraTabPage6.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).BeginInit();
			this.splitContainerControl7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).BeginInit();
			this.groupControl_HOutputPrintType.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).BeginInit();
			this.groupControl_HOutputSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
			this.panelControl6.SuspendLayout();
			this.xtraTabPage7.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).BeginInit();
			this.splitContainerControl8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).BeginInit();
			this.groupControl_WatchMorningRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).BeginInit();
			this.groupControl_WatchStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).BeginInit();
			this.groupControl_WatchSer.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).BeginInit();
			this.groupControl_WatchWholeDay.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).BeginInit();
			this.groupControl_WatchWholDayHandle.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).BeginInit();
			this.groupControl_WatchWholeDayReg.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).BeginInit();
			this.groupControl_WatchRecList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
			this.panelControl7.SuspendLayout();
			this.xtraTabPage8.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).BeginInit();
			this.splitContainerControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).BeginInit();
			this.groupControl_MedReg_StuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).BeginInit();
			this.groupControl_MedReg_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).BeginInit();
			this.groupControl_MedReg_MedInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).BeginInit();
			this.groupControl_MedReg_MedCarrInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).BeginInit();
			this.groupControl_MedReg_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
			this.panelControl8.SuspendLayout();
			this.xtraTabPage9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).BeginInit();
			this.splitContainerControl10.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).BeginInit();
			this.groupControl_MedRec_AbnStuList.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).BeginInit();
			this.groupControl_MedRec_Ser.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).BeginInit();
			this.groupControl_MedRec_DiagAndDoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).BeginInit();
			this.groupControl_MedRec_DoseAdd.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).BeginInit();
			this.groupControl_MedRec_DiagInfo.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).BeginInit();
			this.groupControl_MedRec_DoseRec.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
			this.panelControl9.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).BeginInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
			this.SuspendLayout();
			// 
			// xtraTabControl1
			// 
			this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
			this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
			this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage3);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage4);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage5);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage6);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage7);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage8);
			this.xtraTabControl1.Controls.Add(this.xtraTabPage9);
			this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
			this.xtraTabControl1.Name = "xtraTabControl1";
			this.xtraTabControl1.SelectedTabPage = this.xtraTabPage9;
			this.xtraTabControl1.Size = new System.Drawing.Size(772, 540);
			this.xtraTabControl1.TabIndex = 0;
			this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
																							this.xtraTabPage1,
																							this.xtraTabPage2,
																							this.xtraTabPage3,
																							this.xtraTabPage4,
																							this.xtraTabPage5,
																							this.xtraTabPage6,
																							this.xtraTabPage7,
																							this.xtraTabPage8,
																							this.xtraTabPage9});
			this.xtraTabControl1.Text = "xtraTabControl1";
			// 
			// xtraTabPage1
			// 
			this.xtraTabPage1.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage1.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage1.Controls.Add(this.splitContainerControl1);
			this.xtraTabPage1.Name = "xtraTabPage1";
			this.xtraTabPage1.PageVisible = false;
			this.xtraTabPage1.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage1.Text = "食物库存管理";
			// 
			// splitContainerControl1
			// 
			this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl1.Name = "splitContainerControl1";
			this.splitContainerControl1.Panel1.Controls.Add(this.groupControl_FoodCategory);
			this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutModify);
			this.splitContainerControl1.Panel2.Controls.Add(this.groupControl_FoodNutrition);
			this.splitContainerControl1.Panel2.Controls.Add(this.panelControl1);
			this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
			this.splitContainerControl1.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl1.SplitterPosition = 175;
			this.splitContainerControl1.TabIndex = 0;
			this.splitContainerControl1.Text = "splitContainerControl1";
			// 
			// groupControl_FoodCategory
			// 
			this.groupControl_FoodCategory.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodCategory.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodCategory.Controls.Add(this.treeList_FoodStock);
			this.groupControl_FoodCategory.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodCategory.Location = new System.Drawing.Point(0, 0);
			this.groupControl_FoodCategory.Name = "groupControl_FoodCategory";
			this.groupControl_FoodCategory.Size = new System.Drawing.Size(169, 272);
			this.groupControl_FoodCategory.TabIndex = 0;
			this.groupControl_FoodCategory.Text = "食物库存分类";
			// 
			// treeList_FoodStock
			// 
			this.treeList_FoodStock.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
																											  this.treeListColumn1});
			this.treeList_FoodStock.Dock = System.Windows.Forms.DockStyle.Fill;
			this.treeList_FoodStock.Location = new System.Drawing.Point(3, 18);
			this.treeList_FoodStock.Name = "treeList_FoodStock";
			this.treeList_FoodStock.Size = new System.Drawing.Size(163, 251);
			this.treeList_FoodStock.StateImageList = this.imageList1;
			this.treeList_FoodStock.TabIndex = 0;
			this.treeList_FoodStock.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList_FoodStock_FocusedNodeChanged);
			// 
			// treeListColumn1
			// 
			this.treeListColumn1.Caption = "食物库存";
			this.treeListColumn1.FieldName = "食物库存";
			this.treeListColumn1.Name = "treeListColumn1";
			this.treeListColumn1.OptionsColumn.AllowEdit = false;
			this.treeListColumn1.OptionsColumn.AllowMove = false;
			this.treeListColumn1.OptionsColumn.AllowMoveToCustomizationForm = false;
			this.treeListColumn1.OptionsColumn.AllowSize = false;
			this.treeListColumn1.VisibleIndex = 0;
			// 
			// imageList1
			// 
			this.imageList1.ImageSize = new System.Drawing.Size(16, 16);
			this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
			this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
			// 
			// groupControl_FoodNutModify
			// 
			this.groupControl_FoodNutModify.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutModify.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_FoodName);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel7);
			this.groupControl_FoodNutModify.Controls.Add(this.memoEdit_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodRemark);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.textEdit_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Energy);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Carbohydrate);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Fat);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_Protein);
			this.groupControl_FoodNutModify.Controls.Add(this.comboBoxEdit_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodCategory);
			this.groupControl_FoodNutModify.Controls.Add(this.notePanel_FoodName);
			this.groupControl_FoodNutModify.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_FoodNutModify.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutModify.Name = "groupControl_FoodNutModify";
			this.groupControl_FoodNutModify.Size = new System.Drawing.Size(583, 272);
			this.groupControl_FoodNutModify.TabIndex = 2;
			this.groupControl_FoodNutModify.Text = "成份修改与保存";
			// 
			// textEdit_FoodName
			// 
			this.textEdit_FoodName.EditValue = "";
			this.textEdit_FoodName.Location = new System.Drawing.Point(152, 64);
			this.textEdit_FoodName.Name = "textEdit_FoodName";
			this.textEdit_FoodName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_FoodName.TabIndex = 45;
			// 
			// notePanel7
			// 
			this.notePanel7.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel7.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel7.ForeColor = System.Drawing.Color.Gray;
			this.notePanel7.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel7.Location = new System.Drawing.Point(3, 18);
			this.notePanel7.MaxRows = 5;
			this.notePanel7.Name = "notePanel7";
			this.notePanel7.ParentAutoHeight = true;
			this.notePanel7.Size = new System.Drawing.Size(577, 23);
			this.notePanel7.TabIndex = 44;
			this.notePanel7.TabStop = false;
			this.notePanel7.Text = "注: 食物营成份以(克/斤)计算";
			// 
			// memoEdit_FoodRemark
			// 
			this.memoEdit_FoodRemark.EditValue = "";
			this.memoEdit_FoodRemark.Location = new System.Drawing.Point(272, 96);
			this.memoEdit_FoodRemark.Name = "memoEdit_FoodRemark";
			this.memoEdit_FoodRemark.Size = new System.Drawing.Size(208, 152);
			this.memoEdit_FoodRemark.TabIndex = 43;
			// 
			// notePanel_FoodRemark
			// 
			this.notePanel_FoodRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodRemark.Location = new System.Drawing.Point(272, 64);
			this.notePanel_FoodRemark.MaxRows = 5;
			this.notePanel_FoodRemark.Name = "notePanel_FoodRemark";
			this.notePanel_FoodRemark.ParentAutoHeight = true;
			this.notePanel_FoodRemark.Size = new System.Drawing.Size(208, 22);
			this.notePanel_FoodRemark.TabIndex = 42;
			this.notePanel_FoodRemark.TabStop = false;
			this.notePanel_FoodRemark.Text = "                     备  注:";
			// 
			// textEdit_Energy
			// 
			this.textEdit_Energy.EditValue = "";
			this.textEdit_Energy.Location = new System.Drawing.Point(152, 224);
			this.textEdit_Energy.Name = "textEdit_Energy";
			this.textEdit_Energy.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Energy.TabIndex = 40;
			// 
			// textEdit_Carbohydrate
			// 
			this.textEdit_Carbohydrate.EditValue = "";
			this.textEdit_Carbohydrate.Location = new System.Drawing.Point(152, 192);
			this.textEdit_Carbohydrate.Name = "textEdit_Carbohydrate";
			this.textEdit_Carbohydrate.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Carbohydrate.TabIndex = 39;
			// 
			// textEdit_Fat
			// 
			this.textEdit_Fat.EditValue = "";
			this.textEdit_Fat.Location = new System.Drawing.Point(152, 160);
			this.textEdit_Fat.Name = "textEdit_Fat";
			this.textEdit_Fat.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Fat.TabIndex = 38;
			// 
			// textEdit_Protein
			// 
			this.textEdit_Protein.EditValue = "";
			this.textEdit_Protein.Location = new System.Drawing.Point(152, 128);
			this.textEdit_Protein.Name = "textEdit_Protein";
			this.textEdit_Protein.Size = new System.Drawing.Size(96, 23);
			this.textEdit_Protein.TabIndex = 37;
			// 
			// notePanel_Energy
			// 
			this.notePanel_Energy.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Energy.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Energy.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Energy.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Energy.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Energy.Location = new System.Drawing.Point(40, 224);
			this.notePanel_Energy.MaxRows = 5;
			this.notePanel_Energy.Name = "notePanel_Energy";
			this.notePanel_Energy.ParentAutoHeight = true;
			this.notePanel_Energy.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Energy.TabIndex = 36;
			this.notePanel_Energy.TabStop = false;
			this.notePanel_Energy.Text = "     热  量:";
			// 
			// notePanel_Carbohydrate
			// 
			this.notePanel_Carbohydrate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Carbohydrate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Carbohydrate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Carbohydrate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Carbohydrate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Carbohydrate.Location = new System.Drawing.Point(40, 192);
			this.notePanel_Carbohydrate.MaxRows = 5;
			this.notePanel_Carbohydrate.Name = "notePanel_Carbohydrate";
			this.notePanel_Carbohydrate.ParentAutoHeight = true;
			this.notePanel_Carbohydrate.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Carbohydrate.TabIndex = 35;
			this.notePanel_Carbohydrate.TabStop = false;
			this.notePanel_Carbohydrate.Text = "碳水化合物:";
			// 
			// notePanel_Fat
			// 
			this.notePanel_Fat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Fat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Fat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Fat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Fat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Fat.Location = new System.Drawing.Point(40, 160);
			this.notePanel_Fat.MaxRows = 5;
			this.notePanel_Fat.Name = "notePanel_Fat";
			this.notePanel_Fat.ParentAutoHeight = true;
			this.notePanel_Fat.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Fat.TabIndex = 34;
			this.notePanel_Fat.TabStop = false;
			this.notePanel_Fat.Text = "  脂肪含量:";
			// 
			// notePanel_Protein
			// 
			this.notePanel_Protein.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Protein.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Protein.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Protein.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Protein.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Protein.Location = new System.Drawing.Point(40, 128);
			this.notePanel_Protein.MaxRows = 5;
			this.notePanel_Protein.Name = "notePanel_Protein";
			this.notePanel_Protein.ParentAutoHeight = true;
			this.notePanel_Protein.Size = new System.Drawing.Size(96, 22);
			this.notePanel_Protein.TabIndex = 33;
			this.notePanel_Protein.TabStop = false;
			this.notePanel_Protein.Text = "蛋白质含量:";
			// 
			// comboBoxEdit_FoodCategory
			// 
			this.comboBoxEdit_FoodCategory.EditValue = "其他";
			this.comboBoxEdit_FoodCategory.Location = new System.Drawing.Point(152, 96);
			this.comboBoxEdit_FoodCategory.Name = "comboBoxEdit_FoodCategory";
			// 
			// comboBoxEdit_FoodCategory.Properties
			// 
			this.comboBoxEdit_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_FoodCategory.Properties.Items.AddRange(new object[] {
																					  "肉禽水产类",
																					  "水果类",
																					  "蔬菜类",
																					  "粮食类",
																					  "调味品",
																					  "糕点",
																					  "豆制品",
																					  "乳类",
																					  "菌藻类",
																					  "其他"});
			this.comboBoxEdit_FoodCategory.Size = new System.Drawing.Size(96, 23);
			this.comboBoxEdit_FoodCategory.TabIndex = 32;
			// 
			// notePanel_FoodCategory
			// 
			this.notePanel_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodCategory.Location = new System.Drawing.Point(40, 96);
			this.notePanel_FoodCategory.MaxRows = 5;
			this.notePanel_FoodCategory.Name = "notePanel_FoodCategory";
			this.notePanel_FoodCategory.ParentAutoHeight = true;
			this.notePanel_FoodCategory.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodCategory.TabIndex = 31;
			this.notePanel_FoodCategory.TabStop = false;
			this.notePanel_FoodCategory.Text = "  食物类别:";
			// 
			// notePanel_FoodName
			// 
			this.notePanel_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_FoodName.Location = new System.Drawing.Point(40, 64);
			this.notePanel_FoodName.MaxRows = 5;
			this.notePanel_FoodName.Name = "notePanel_FoodName";
			this.notePanel_FoodName.ParentAutoHeight = true;
			this.notePanel_FoodName.Size = new System.Drawing.Size(96, 22);
			this.notePanel_FoodName.TabIndex = 13;
			this.notePanel_FoodName.TabStop = false;
			this.notePanel_FoodName.Text = "   食物名:";
			// 
			// groupControl_FoodNutrition
			// 
			this.groupControl_FoodNutrition.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_FoodNutrition.AppearanceCaption.Options.UseFont = true;
			this.groupControl_FoodNutrition.Controls.Add(this.gridControl_FoodNutrition);
			this.groupControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_FoodNutrition.Location = new System.Drawing.Point(0, 64);
			this.groupControl_FoodNutrition.Name = "groupControl_FoodNutrition";
			this.groupControl_FoodNutrition.Size = new System.Drawing.Size(583, 445);
			this.groupControl_FoodNutrition.TabIndex = 1;
			this.groupControl_FoodNutrition.Text = "食物营养成份";
			// 
			// gridControl_FoodNutrition
			// 
			this.gridControl_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_FoodNutrition.Location = new System.Drawing.Point(3, 18);
			this.gridControl_FoodNutrition.MainView = this.gridView1;
			this.gridControl_FoodNutrition.Name = "gridControl_FoodNutrition";
			this.gridControl_FoodNutrition.Size = new System.Drawing.Size(577, 424);
			this.gridControl_FoodNutrition.TabIndex = 1;
			this.gridControl_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													 this.gridView1});
			this.gridControl_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_FoodNutrition_DoubleClick);
			// 
			// gridView1
			// 
			this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn1,
																							 this.gridColumn2,
																							 this.gridColumn3,
																							 this.gridColumn4,
																							 this.gridColumn5,
																							 this.gridColumn6});
			this.gridView1.GridControl = this.gridControl_FoodNutrition;
			this.gridView1.Name = "gridView1";
			this.gridView1.OptionsCustomization.AllowFilter = false;
			this.gridView1.OptionsView.ShowFilterPanel = false;
			this.gridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn1
			// 
			this.gridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn1.Caption = "食物名称";
			this.gridColumn1.FieldName = "FoodNut_FoodName";
			this.gridColumn1.Name = "gridColumn1";
			this.gridColumn1.OptionsColumn.AllowEdit = false;
			this.gridColumn1.OptionsColumn.AllowFocus = false;
			this.gridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn1.OptionsColumn.AllowMove = false;
			this.gridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn1.OptionsColumn.FixedWidth = true;
			this.gridColumn1.OptionsColumn.ReadOnly = true;
			this.gridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn1.Visible = true;
			this.gridColumn1.VisibleIndex = 0;
			// 
			// gridColumn2
			// 
			this.gridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn2.Caption = "蛋白质";
			this.gridColumn2.FieldName = "FoodNut_Protein";
			this.gridColumn2.Name = "gridColumn2";
			this.gridColumn2.OptionsColumn.AllowEdit = false;
			this.gridColumn2.OptionsColumn.AllowFocus = false;
			this.gridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn2.OptionsColumn.AllowMove = false;
			this.gridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn2.OptionsColumn.FixedWidth = true;
			this.gridColumn2.OptionsColumn.ReadOnly = true;
			this.gridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn2.Visible = true;
			this.gridColumn2.VisibleIndex = 1;
			// 
			// gridColumn3
			// 
			this.gridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn3.Caption = "脂肪";
			this.gridColumn3.FieldName = "FoodNut_Fat";
			this.gridColumn3.Name = "gridColumn3";
			this.gridColumn3.OptionsColumn.AllowEdit = false;
			this.gridColumn3.OptionsColumn.AllowFocus = false;
			this.gridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn3.OptionsColumn.AllowMove = false;
			this.gridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn3.OptionsColumn.FixedWidth = true;
			this.gridColumn3.OptionsColumn.ReadOnly = true;
			this.gridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn3.Visible = true;
			this.gridColumn3.VisibleIndex = 2;
			// 
			// gridColumn4
			// 
			this.gridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn4.Caption = "碳水化合物";
			this.gridColumn4.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn4.Name = "gridColumn4";
			this.gridColumn4.OptionsColumn.AllowEdit = false;
			this.gridColumn4.OptionsColumn.AllowFocus = false;
			this.gridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn4.OptionsColumn.AllowMove = false;
			this.gridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn4.OptionsColumn.FixedWidth = true;
			this.gridColumn4.OptionsColumn.ReadOnly = true;
			this.gridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn4.Visible = true;
			this.gridColumn4.VisibleIndex = 3;
			// 
			// gridColumn5
			// 
			this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn5.Caption = "热量";
			this.gridColumn5.FieldName = "FoodNut_Energy";
			this.gridColumn5.Name = "gridColumn5";
			this.gridColumn5.OptionsColumn.AllowEdit = false;
			this.gridColumn5.OptionsColumn.AllowFocus = false;
			this.gridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn5.OptionsColumn.AllowMove = false;
			this.gridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn5.OptionsColumn.FixedWidth = true;
			this.gridColumn5.OptionsColumn.ReadOnly = true;
			this.gridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn5.Visible = true;
			this.gridColumn5.VisibleIndex = 4;
			// 
			// gridColumn6
			// 
			this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn6.Caption = "备注";
			this.gridColumn6.FieldName = "FoodNut_Remark";
			this.gridColumn6.Name = "gridColumn6";
			this.gridColumn6.OptionsColumn.AllowEdit = false;
			this.gridColumn6.OptionsColumn.AllowFocus = false;
			this.gridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn6.OptionsColumn.AllowMove = false;
			this.gridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn6.OptionsColumn.FixedWidth = true;
			this.gridColumn6.OptionsColumn.ReadOnly = true;
			this.gridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn6.Visible = true;
			this.gridColumn6.VisibleIndex = 5;
			// 
			// panelControl1
			// 
			this.panelControl1.Controls.Add(this.simpleButton_FoodModify);
			this.panelControl1.Controls.Add(this.simpleButton_FoodBack);
			this.panelControl1.Controls.Add(this.simpleButton_FoodDelete);
			this.panelControl1.Controls.Add(this.simpleButton_FoodSave);
			this.panelControl1.Controls.Add(this.simpleButton_FoodAdd);
			this.panelControl1.Controls.Add(this.textEdit_FoodSearch);
			this.panelControl1.Controls.Add(this.textEdit_BindingID);
			this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl1.Location = new System.Drawing.Point(0, 0);
			this.panelControl1.Name = "panelControl1";
			this.panelControl1.Size = new System.Drawing.Size(583, 64);
			this.panelControl1.TabIndex = 0;
			this.panelControl1.Text = "panelControl1";
			// 
			// simpleButton_FoodModify
			// 
			this.simpleButton_FoodModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodModify.Appearance.Options.UseFont = true;
			this.simpleButton_FoodModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodModify.Enabled = false;
			this.simpleButton_FoodModify.Location = new System.Drawing.Point(304, 8);
			this.simpleButton_FoodModify.Name = "simpleButton_FoodModify";
			this.simpleButton_FoodModify.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodModify.TabIndex = 31;
			this.simpleButton_FoodModify.Tag = 4;
			this.simpleButton_FoodModify.Text = "修  改";
			this.simpleButton_FoodModify.Click += new System.EventHandler(this.simpleButton_FoodModify_Click);
			// 
			// simpleButton_FoodBack
			// 
			this.simpleButton_FoodBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodBack.Appearance.Options.UseFont = true;
			this.simpleButton_FoodBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodBack.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_FoodBack.Name = "simpleButton_FoodBack";
			this.simpleButton_FoodBack.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodBack.TabIndex = 6;
			this.simpleButton_FoodBack.Tag = 4;
			this.simpleButton_FoodBack.Text = "返  回";
			this.simpleButton_FoodBack.Click += new System.EventHandler(this.simpleButton_FoodBack_Click);
			// 
			// simpleButton_FoodDelete
			// 
			this.simpleButton_FoodDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodDelete.Appearance.Options.UseFont = true;
			this.simpleButton_FoodDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodDelete.Location = new System.Drawing.Point(400, 8);
			this.simpleButton_FoodDelete.Name = "simpleButton_FoodDelete";
			this.simpleButton_FoodDelete.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodDelete.TabIndex = 4;
			this.simpleButton_FoodDelete.Tag = 4;
			this.simpleButton_FoodDelete.Text = "删  除";
			this.simpleButton_FoodDelete.Click += new System.EventHandler(this.simpleButton_FoodDelete_Click);
			// 
			// simpleButton_FoodSave
			// 
			this.simpleButton_FoodSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodSave.Appearance.Options.UseFont = true;
			this.simpleButton_FoodSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodSave.Enabled = false;
			this.simpleButton_FoodSave.Location = new System.Drawing.Point(208, 8);
			this.simpleButton_FoodSave.Name = "simpleButton_FoodSave";
			this.simpleButton_FoodSave.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodSave.TabIndex = 3;
			this.simpleButton_FoodSave.Tag = 4;
			this.simpleButton_FoodSave.Text = "保  存";
			this.simpleButton_FoodSave.Click += new System.EventHandler(this.simpleButton_FoodSave_Click);
			// 
			// simpleButton_FoodAdd
			// 
			this.simpleButton_FoodAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_FoodAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_FoodAdd.Appearance.Options.UseFont = true;
			this.simpleButton_FoodAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_FoodAdd.Location = new System.Drawing.Point(112, 8);
			this.simpleButton_FoodAdd.Name = "simpleButton_FoodAdd";
			this.simpleButton_FoodAdd.Size = new System.Drawing.Size(88, 26);
			this.simpleButton_FoodAdd.TabIndex = 2;
			this.simpleButton_FoodAdd.Tag = 4;
			this.simpleButton_FoodAdd.Text = "新  增";
			this.simpleButton_FoodAdd.Click += new System.EventHandler(this.simpleButton_FoodAdd_Click);
			// 
			// textEdit_FoodSearch
			// 
			this.textEdit_FoodSearch.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.textEdit_FoodSearch.EditValue = "";
			this.textEdit_FoodSearch.Location = new System.Drawing.Point(3, 38);
			this.textEdit_FoodSearch.Name = "textEdit_FoodSearch";
			this.textEdit_FoodSearch.Size = new System.Drawing.Size(577, 23);
			this.textEdit_FoodSearch.TabIndex = 0;
			this.textEdit_FoodSearch.EditValueChanged += new System.EventHandler(this.textEdit_FoodSearch_EditValueChanged);
			// 
			// textEdit_BindingID
			// 
			this.textEdit_BindingID.EditValue = "";
			this.textEdit_BindingID.Location = new System.Drawing.Point(536, 48);
			this.textEdit_BindingID.Name = "textEdit_BindingID";
			// 
			// textEdit_BindingID.Properties
			// 
			this.textEdit_BindingID.Properties.AutoHeight = false;
			this.textEdit_BindingID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_BindingID.TabIndex = 30;
			// 
			// xtraTabPage2
			// 
			this.xtraTabPage2.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage2.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage2.Controls.Add(this.splitContainerControl2);
			this.xtraTabPage2.Name = "xtraTabPage2";
			this.xtraTabPage2.PageVisible = false;
			this.xtraTabPage2.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage2.Text = "每日食谱安排";
			// 
			// splitContainerControl2
			// 
			this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl2.Name = "splitContainerControl2";
			this.splitContainerControl2.Panel1.Controls.Add(this.panelControl10);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeLogin);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeSer);
			this.splitContainerControl2.Panel1.Controls.Add(this.groupControl_RecipeOpr);
			this.splitContainerControl2.Panel1.Text = "splitContainerControl2_Panel1";
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl11);
			this.splitContainerControl2.Panel2.Controls.Add(this.panelControl2);
			this.splitContainerControl2.Panel2.Text = "splitContainerControl2_Panel2";
			this.splitContainerControl2.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl2.SplitterPosition = 270;
			this.splitContainerControl2.TabIndex = 0;
			this.splitContainerControl2.Text = "splitContainerControl2";
			// 
			// panelControl10
			// 
			this.panelControl10.Controls.Add(this.gridControl_Recipe_FoodNutrition);
			this.panelControl10.Controls.Add(this.notePanel4);
			this.panelControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl10.Location = new System.Drawing.Point(0, 312);
			this.panelControl10.Name = "panelControl10";
			this.panelControl10.Size = new System.Drawing.Size(264, 197);
			this.panelControl10.TabIndex = 41;
			this.panelControl10.Text = "panelControl10";
			// 
			// gridControl_Recipe_FoodNutrition
			// 
			this.gridControl_Recipe_FoodNutrition.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_Recipe_FoodNutrition.EmbeddedNavigator
			// 
			this.gridControl_Recipe_FoodNutrition.EmbeddedNavigator.Name = "";
			this.gridControl_Recipe_FoodNutrition.Location = new System.Drawing.Point(3, 26);
			this.gridControl_Recipe_FoodNutrition.MainView = this.gridView4;
			this.gridControl_Recipe_FoodNutrition.Name = "gridControl_Recipe_FoodNutrition";
			this.gridControl_Recipe_FoodNutrition.Size = new System.Drawing.Size(258, 168);
			this.gridControl_Recipe_FoodNutrition.TabIndex = 47;
			this.gridControl_Recipe_FoodNutrition.ToolTipController = this.toolTipController1;
			this.gridControl_Recipe_FoodNutrition.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																															this.gridView4,
																															this.gridView2});
			this.gridControl_Recipe_FoodNutrition.DoubleClick += new System.EventHandler(this.gridControl_Recipe_FoodNutrition_DoubleClick);
			// 
			// gridView4
			// 
			this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn7,
																							 this.gridColumn8,
																							 this.gridColumn9,
																							 this.gridColumn10,
																							 this.gridColumn11,
																							 this.gridColumn16});
			this.gridView4.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView4.Name = "gridView4";
			this.gridView4.OptionsCustomization.AllowFilter = false;
			this.gridView4.OptionsView.ShowFilterPanel = false;
			this.gridView4.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn7
			// 
			this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn7.Caption = "食物名";
			this.gridColumn7.FieldName = "FoodNut_FoodName";
			this.gridColumn7.Name = "gridColumn7";
			this.gridColumn7.OptionsColumn.AllowEdit = false;
			this.gridColumn7.OptionsColumn.AllowFocus = false;
			this.gridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn7.OptionsColumn.ReadOnly = true;
			this.gridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn7.Visible = true;
			this.gridColumn7.VisibleIndex = 0;
			// 
			// gridColumn8
			// 
			this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn8.Caption = "蛋白质";
			this.gridColumn8.FieldName = "FoodNut_Protein";
			this.gridColumn8.Name = "gridColumn8";
			this.gridColumn8.OptionsColumn.AllowEdit = false;
			this.gridColumn8.OptionsColumn.AllowFocus = false;
			this.gridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn8.OptionsColumn.ReadOnly = true;
			this.gridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn8.Visible = true;
			this.gridColumn8.VisibleIndex = 1;
			// 
			// gridColumn9
			// 
			this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn9.Caption = "脂肪";
			this.gridColumn9.FieldName = "FoodNut_Fat";
			this.gridColumn9.Name = "gridColumn9";
			this.gridColumn9.OptionsColumn.AllowEdit = false;
			this.gridColumn9.OptionsColumn.AllowFocus = false;
			this.gridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn9.OptionsColumn.ReadOnly = true;
			this.gridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn9.Visible = true;
			this.gridColumn9.VisibleIndex = 2;
			// 
			// gridColumn10
			// 
			this.gridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn10.Caption = "碳水化合物";
			this.gridColumn10.FieldName = "FoodNut_Carbohydrate";
			this.gridColumn10.Name = "gridColumn10";
			this.gridColumn10.OptionsColumn.AllowEdit = false;
			this.gridColumn10.OptionsColumn.AllowFocus = false;
			this.gridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn10.OptionsColumn.ReadOnly = true;
			this.gridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn10.Visible = true;
			this.gridColumn10.VisibleIndex = 3;
			// 
			// gridColumn11
			// 
			this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn11.Caption = "能量";
			this.gridColumn11.FieldName = "FoodNut_Energy";
			this.gridColumn11.Name = "gridColumn11";
			this.gridColumn11.OptionsColumn.AllowEdit = false;
			this.gridColumn11.OptionsColumn.AllowFocus = false;
			this.gridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn11.OptionsColumn.ReadOnly = true;
			this.gridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn11.Visible = true;
			this.gridColumn11.VisibleIndex = 4;
			// 
			// gridColumn16
			// 
			this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn16.Caption = "备注";
			this.gridColumn16.FieldName = "FoodNut_Remark";
			this.gridColumn16.Name = "gridColumn16";
			this.gridColumn16.OptionsColumn.AllowEdit = false;
			this.gridColumn16.OptionsColumn.AllowFocus = false;
			this.gridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn16.OptionsColumn.ReadOnly = true;
			this.gridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn16.Visible = true;
			this.gridColumn16.VisibleIndex = 5;
			// 
			// toolTipController1
			// 
			this.toolTipController1.GetActiveObjectInfo += new DevExpress.Utils.ToolTipControllerGetActiveObjectInfoEventHandler(this.toolTipController1_GetActiveObjectInfo);
			// 
			// gridView2
			// 
			this.gridView2.GridControl = this.gridControl_Recipe_FoodNutrition;
			this.gridView2.Name = "gridView2";
			// 
			// notePanel4
			// 
			this.notePanel4.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel4.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel4.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel4.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel4.Location = new System.Drawing.Point(3, 3);
			this.notePanel4.MaxRows = 5;
			this.notePanel4.Name = "notePanel4";
			this.notePanel4.ParentAutoHeight = true;
			this.notePanel4.Size = new System.Drawing.Size(258, 23);
			this.notePanel4.TabIndex = 46;
			this.notePanel4.TabStop = false;
			this.notePanel4.Text = "双击在食物用料登记处获取食物名称";
			// 
			// groupControl_RecipeLogin
			// 
			this.groupControl_RecipeLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Name);
			this.groupControl_RecipeLogin.Controls.Add(this.dateEdit_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_Date);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodTake);
			this.groupControl_RecipeLogin.Controls.Add(this.textEdit_RecipeLogin_BindingID);
			this.groupControl_RecipeLogin.Controls.Add(this.notePanel_RecipeLogin_FoodName);
			this.groupControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_RecipeLogin.Name = "groupControl_RecipeLogin";
			this.groupControl_RecipeLogin.Size = new System.Drawing.Size(264, 160);
			this.groupControl_RecipeLogin.TabIndex = 40;
			this.groupControl_RecipeLogin.Text = "食物用料登记";
			// 
			// textEdit_RecipeLogin_FoodName
			// 
			this.textEdit_RecipeLogin_FoodName.EditValue = "";
			this.textEdit_RecipeLogin_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeLogin_FoodName.Name = "textEdit_RecipeLogin_FoodName";
			// 
			// textEdit_RecipeLogin_FoodName.Properties
			// 
			this.textEdit_RecipeLogin_FoodName.Properties.Enabled = false;
			this.textEdit_RecipeLogin_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodName.TabIndex = 34;
			// 
			// textEdit_RecipeLogin_Name
			// 
			this.textEdit_RecipeLogin_Name.EditValue = "";
			this.textEdit_RecipeLogin_Name.Location = new System.Drawing.Point(128, 120);
			this.textEdit_RecipeLogin_Name.Name = "textEdit_RecipeLogin_Name";
			this.textEdit_RecipeLogin_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_Name.TabIndex = 33;
			// 
			// notePanel_RecipeLogin_Name
			// 
			this.notePanel_RecipeLogin_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_RecipeLogin_Name.MaxRows = 5;
			this.notePanel_RecipeLogin_Name.Name = "notePanel_RecipeLogin_Name";
			this.notePanel_RecipeLogin_Name.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Name.TabIndex = 32;
			this.notePanel_RecipeLogin_Name.TabStop = false;
			this.notePanel_RecipeLogin_Name.Text = "菜谱名称:";
			// 
			// dateEdit_RecipeLogin_Date
			// 
			this.dateEdit_RecipeLogin_Date.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_RecipeLogin_Date.Location = new System.Drawing.Point(128, 88);
			this.dateEdit_RecipeLogin_Date.Name = "dateEdit_RecipeLogin_Date";
			// 
			// dateEdit_RecipeLogin_Date.Properties
			// 
			this.dateEdit_RecipeLogin_Date.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_RecipeLogin_Date.Properties.Enabled = false;
			this.dateEdit_RecipeLogin_Date.Properties.Mask.EditMask = "d";
			this.dateEdit_RecipeLogin_Date.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_RecipeLogin_Date.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_RecipeLogin_Date.TabIndex = 31;
			// 
			// notePanel_RecipeLogin_Date
			// 
			this.notePanel_RecipeLogin_Date.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_Date.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_Date.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_Date.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_Date.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_Date.Location = new System.Drawing.Point(40, 88);
			this.notePanel_RecipeLogin_Date.MaxRows = 5;
			this.notePanel_RecipeLogin_Date.Name = "notePanel_RecipeLogin_Date";
			this.notePanel_RecipeLogin_Date.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_Date.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_Date.TabIndex = 30;
			this.notePanel_RecipeLogin_Date.TabStop = false;
			this.notePanel_RecipeLogin_Date.Text = "登记日期:";
			// 
			// textEdit_RecipeLogin_FoodTake
			// 
			this.textEdit_RecipeLogin_FoodTake.EditValue = "";
			this.textEdit_RecipeLogin_FoodTake.Location = new System.Drawing.Point(128, 56);
			this.textEdit_RecipeLogin_FoodTake.Name = "textEdit_RecipeLogin_FoodTake";
			this.textEdit_RecipeLogin_FoodTake.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeLogin_FoodTake.TabIndex = 29;
			// 
			// notePanel_RecipeLogin_FoodTake
			// 
			this.notePanel_RecipeLogin_FoodTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodTake.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeLogin_FoodTake.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodTake.Name = "notePanel_RecipeLogin_FoodTake";
			this.notePanel_RecipeLogin_FoodTake.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodTake.TabIndex = 28;
			this.notePanel_RecipeLogin_FoodTake.TabStop = false;
			this.notePanel_RecipeLogin_FoodTake.Text = "  摄入量:";
			// 
			// textEdit_RecipeLogin_BindingID
			// 
			this.textEdit_RecipeLogin_BindingID.EditValue = "";
			this.textEdit_RecipeLogin_BindingID.Location = new System.Drawing.Point(200, 24);
			this.textEdit_RecipeLogin_BindingID.Name = "textEdit_RecipeLogin_BindingID";
			// 
			// textEdit_RecipeLogin_BindingID.Properties
			// 
			this.textEdit_RecipeLogin_BindingID.Properties.AutoHeight = false;
			this.textEdit_RecipeLogin_BindingID.Properties.Enabled = false;
			this.textEdit_RecipeLogin_BindingID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_RecipeLogin_BindingID.TabIndex = 27;
			// 
			// notePanel_RecipeLogin_FoodName
			// 
			this.notePanel_RecipeLogin_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeLogin_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeLogin_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeLogin_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeLogin_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeLogin_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeLogin_FoodName.MaxRows = 5;
			this.notePanel_RecipeLogin_FoodName.Name = "notePanel_RecipeLogin_FoodName";
			this.notePanel_RecipeLogin_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeLogin_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeLogin_FoodName.TabIndex = 26;
			this.notePanel_RecipeLogin_FoodName.TabStop = false;
			this.notePanel_RecipeLogin_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeSer
			// 
			this.groupControl_RecipeSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.Appearance.Options.UseFont = true;
			this.groupControl_RecipeSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeSer.Controls.Add(this.comboBoxEdit_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodCategory);
			this.groupControl_RecipeSer.Controls.Add(this.textEdit_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Controls.Add(this.notePanel_RecipeSer_FoodName);
			this.groupControl_RecipeSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeSer.Location = new System.Drawing.Point(0, 56);
			this.groupControl_RecipeSer.Name = "groupControl_RecipeSer";
			this.groupControl_RecipeSer.Size = new System.Drawing.Size(264, 96);
			this.groupControl_RecipeSer.TabIndex = 39;
			this.groupControl_RecipeSer.Text = "食物查询";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.EditValue = "全部";
			this.comboBoxEdit_RecipeSer_FoodCategory.Location = new System.Drawing.Point(128, 56);
			this.comboBoxEdit_RecipeSer_FoodCategory.Name = "comboBoxEdit_RecipeSer_FoodCategory";
			// 
			// comboBoxEdit_RecipeSer_FoodCategory.Properties
			// 
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																		new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.Items.AddRange(new object[] {
																								"肉禽水产类",
																								"水果类",
																								"蔬菜类",
																								"粮食类",
																								"调味品",
																								"糕点",
																								"豆制品",
																								"乳类",
																								"菌藻类",
																								"其他"});
			this.comboBoxEdit_RecipeSer_FoodCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_RecipeSer_FoodCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_RecipeSer_FoodCategory.TabIndex = 27;
			this.comboBoxEdit_RecipeSer_FoodCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_RecipeSer_FoodCategory_SelectedIndexChanged);
			// 
			// notePanel_RecipeSer_FoodCategory
			// 
			this.notePanel_RecipeSer_FoodCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodCategory.Location = new System.Drawing.Point(40, 56);
			this.notePanel_RecipeSer_FoodCategory.MaxRows = 5;
			this.notePanel_RecipeSer_FoodCategory.Name = "notePanel_RecipeSer_FoodCategory";
			this.notePanel_RecipeSer_FoodCategory.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodCategory.TabIndex = 26;
			this.notePanel_RecipeSer_FoodCategory.TabStop = false;
			this.notePanel_RecipeSer_FoodCategory.Text = "食物分类:";
			// 
			// textEdit_RecipeSer_FoodName
			// 
			this.textEdit_RecipeSer_FoodName.EditValue = "";
			this.textEdit_RecipeSer_FoodName.Location = new System.Drawing.Point(128, 24);
			this.textEdit_RecipeSer_FoodName.Name = "textEdit_RecipeSer_FoodName";
			this.textEdit_RecipeSer_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_RecipeSer_FoodName.TabIndex = 25;
			this.textEdit_RecipeSer_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_RecipeSer_FoodName_EditValueChanged);
			// 
			// notePanel_RecipeSer_FoodName
			// 
			this.notePanel_RecipeSer_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_RecipeSer_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_RecipeSer_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_RecipeSer_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_RecipeSer_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_RecipeSer_FoodName.Location = new System.Drawing.Point(40, 24);
			this.notePanel_RecipeSer_FoodName.MaxRows = 5;
			this.notePanel_RecipeSer_FoodName.Name = "notePanel_RecipeSer_FoodName";
			this.notePanel_RecipeSer_FoodName.ParentAutoHeight = true;
			this.notePanel_RecipeSer_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_RecipeSer_FoodName.TabIndex = 24;
			this.notePanel_RecipeSer_FoodName.TabStop = false;
			this.notePanel_RecipeSer_FoodName.Text = "食物名称:";
			// 
			// groupControl_RecipeOpr
			// 
			this.groupControl_RecipeOpr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_RecipeOpr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeModify);
			this.groupControl_RecipeOpr.Controls.Add(this.simpleButton_RecipeSave);
			this.groupControl_RecipeOpr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_RecipeOpr.Location = new System.Drawing.Point(0, 0);
			this.groupControl_RecipeOpr.Name = "groupControl_RecipeOpr";
			this.groupControl_RecipeOpr.Size = new System.Drawing.Size(264, 56);
			this.groupControl_RecipeOpr.TabIndex = 38;
			this.groupControl_RecipeOpr.Text = "食谱操作";
			// 
			// simpleButton_RecipeModify
			// 
			this.simpleButton_RecipeModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeModify.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeModify.Enabled = false;
			this.simpleButton_RecipeModify.Location = new System.Drawing.Point(144, 24);
			this.simpleButton_RecipeModify.Name = "simpleButton_RecipeModify";
			this.simpleButton_RecipeModify.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeModify.TabIndex = 40;
			this.simpleButton_RecipeModify.Tag = 4;
			this.simpleButton_RecipeModify.Text = "修改";
			this.simpleButton_RecipeModify.Click += new System.EventHandler(this.simpleButton_RecipeModify_Click);
			// 
			// simpleButton_RecipeSave
			// 
			this.simpleButton_RecipeSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_RecipeSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_RecipeSave.Appearance.Options.UseFont = true;
			this.simpleButton_RecipeSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_RecipeSave.Enabled = false;
			this.simpleButton_RecipeSave.Location = new System.Drawing.Point(48, 24);
			this.simpleButton_RecipeSave.Name = "simpleButton_RecipeSave";
			this.simpleButton_RecipeSave.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_RecipeSave.TabIndex = 38;
			this.simpleButton_RecipeSave.Tag = 4;
			this.simpleButton_RecipeSave.Text = "保存";
			this.simpleButton_RecipeSave.Click += new System.EventHandler(this.simpleButton_RecipeSave_Click);
			// 
			// panelControl11
			// 
			this.panelControl11.Controls.Add(this.gridControl_RecipeLogin);
			this.panelControl11.Controls.Add(this.notePanel5);
			this.panelControl11.Dock = System.Windows.Forms.DockStyle.Fill;
			this.panelControl11.Location = new System.Drawing.Point(0, 112);
			this.panelControl11.Name = "panelControl11";
			this.panelControl11.Size = new System.Drawing.Size(488, 397);
			this.panelControl11.TabIndex = 26;
			this.panelControl11.Text = "panelControl11";
			// 
			// gridControl_RecipeLogin
			// 
			this.gridControl_RecipeLogin.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_RecipeLogin.EmbeddedNavigator
			// 
			this.gridControl_RecipeLogin.EmbeddedNavigator.Name = "";
			this.gridControl_RecipeLogin.Location = new System.Drawing.Point(3, 26);
			this.gridControl_RecipeLogin.MainView = this.gridView13;
			this.gridControl_RecipeLogin.Name = "gridControl_RecipeLogin";
			this.barManager1.SetPopupContextMenu(this.gridControl_RecipeLogin, this.popupMenu4);
			this.gridControl_RecipeLogin.Size = new System.Drawing.Size(482, 368);
			this.gridControl_RecipeLogin.TabIndex = 34;
			this.gridControl_RecipeLogin.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView13});
			this.gridControl_RecipeLogin.Click += new System.EventHandler(this.gridControl_RecipeLogin_Click);
			// 
			// gridView13
			// 
			this.gridView13.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn50,
																							  this.gridColumn51,
																							  this.gridColumn52,
																							  this.gridColumn53});
			this.gridView13.GridControl = this.gridControl_RecipeLogin;
			this.gridView13.Name = "gridView13";
			this.gridView13.OptionsCustomization.AllowFilter = false;
			this.gridView13.OptionsView.ShowFilterPanel = false;
			this.gridView13.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn50
			// 
			this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn50.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn50.Caption = "食物名称";
			this.gridColumn50.FieldName = "FoodNut_FoodName";
			this.gridColumn50.Name = "gridColumn50";
			this.gridColumn50.OptionsColumn.AllowEdit = false;
			this.gridColumn50.OptionsColumn.AllowFocus = false;
			this.gridColumn50.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn50.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn50.OptionsColumn.AllowMove = false;
			this.gridColumn50.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn50.OptionsColumn.FixedWidth = true;
			this.gridColumn50.OptionsColumn.ReadOnly = true;
			this.gridColumn50.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn50.Visible = true;
			this.gridColumn50.VisibleIndex = 0;
			// 
			// gridColumn51
			// 
			this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn51.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn51.Caption = "登记日期";
			this.gridColumn51.FieldName = "ACCFood_AddTime";
			this.gridColumn51.Name = "gridColumn51";
			this.gridColumn51.OptionsColumn.AllowEdit = false;
			this.gridColumn51.OptionsColumn.AllowFocus = false;
			this.gridColumn51.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn51.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn51.OptionsColumn.AllowMove = false;
			this.gridColumn51.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn51.OptionsColumn.FixedWidth = true;
			this.gridColumn51.OptionsColumn.ReadOnly = true;
			this.gridColumn51.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn51.Visible = true;
			this.gridColumn51.VisibleIndex = 1;
			// 
			// gridColumn52
			// 
			this.gridColumn52.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn52.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn52.Caption = "摄入量";
			this.gridColumn52.FieldName = "ACCFood_TakeAmount";
			this.gridColumn52.Name = "gridColumn52";
			this.gridColumn52.OptionsColumn.AllowEdit = false;
			this.gridColumn52.OptionsColumn.AllowFocus = false;
			this.gridColumn52.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn52.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn52.OptionsColumn.AllowMove = false;
			this.gridColumn52.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn52.OptionsColumn.FixedWidth = true;
			this.gridColumn52.OptionsColumn.ReadOnly = true;
			this.gridColumn52.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn52.Visible = true;
			this.gridColumn52.VisibleIndex = 2;
			// 
			// gridColumn53
			// 
			this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn53.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn53.Caption = "菜谱名称";
			this.gridColumn53.FieldName = "ACCFood_Remark";
			this.gridColumn53.Name = "gridColumn53";
			this.gridColumn53.OptionsColumn.AllowEdit = false;
			this.gridColumn53.OptionsColumn.AllowFocus = false;
			this.gridColumn53.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn53.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn53.OptionsColumn.AllowMove = false;
			this.gridColumn53.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn53.OptionsColumn.FixedWidth = true;
			this.gridColumn53.OptionsColumn.ReadOnly = true;
			this.gridColumn53.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn53.Visible = true;
			this.gridColumn53.VisibleIndex = 3;
			// 
			// notePanel5
			// 
			this.notePanel5.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel5.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel5.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel5.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel5.Location = new System.Drawing.Point(3, 3);
			this.notePanel5.MaxRows = 5;
			this.notePanel5.Name = "notePanel5";
			this.notePanel5.ParentAutoHeight = true;
			this.notePanel5.Size = new System.Drawing.Size(482, 23);
			this.notePanel5.TabIndex = 33;
			this.notePanel5.TabStop = false;
			this.notePanel5.Text = "选中一行可以在食物用料登记处对当日的食谱用料进行修改";
			// 
			// panelControl2
			// 
			this.panelControl2.Controls.Add(this.textEdit_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_FoodName);
			this.panelControl2.Controls.Add(this.notePanel_Recipe);
			this.panelControl2.Controls.Add(this.comboBoxEdit_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_RecipeCategory);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_EndDate);
			this.panelControl2.Controls.Add(this.dateEdit_Recipe_BegDate);
			this.panelControl2.Controls.Add(this.notePanel_Recipe_BegDate);
			this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl2.Location = new System.Drawing.Point(0, 0);
			this.panelControl2.Name = "panelControl2";
			this.panelControl2.Size = new System.Drawing.Size(488, 112);
			this.panelControl2.TabIndex = 25;
			this.panelControl2.Text = "panelControl2";
			// 
			// textEdit_Recipe_FoodName
			// 
			this.textEdit_Recipe_FoodName.EditValue = "";
			this.textEdit_Recipe_FoodName.Location = new System.Drawing.Point(352, 40);
			this.textEdit_Recipe_FoodName.Name = "textEdit_Recipe_FoodName";
			this.textEdit_Recipe_FoodName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_Recipe_FoodName.TabIndex = 34;
			this.textEdit_Recipe_FoodName.EditValueChanged += new System.EventHandler(this.textEdit_Recipe_FoodName_EditValueChanged);
			// 
			// notePanel_Recipe_FoodName
			// 
			this.notePanel_Recipe_FoodName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_FoodName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_FoodName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_FoodName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_FoodName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_FoodName.Location = new System.Drawing.Point(256, 40);
			this.notePanel_Recipe_FoodName.MaxRows = 5;
			this.notePanel_Recipe_FoodName.Name = "notePanel_Recipe_FoodName";
			this.notePanel_Recipe_FoodName.ParentAutoHeight = true;
			this.notePanel_Recipe_FoodName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_FoodName.TabIndex = 33;
			this.notePanel_Recipe_FoodName.TabStop = false;
			this.notePanel_Recipe_FoodName.Text = "食物名称:";
			// 
			// notePanel_Recipe
			// 
			this.notePanel_Recipe.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Recipe.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Recipe.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Recipe.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe.Location = new System.Drawing.Point(3, 3);
			this.notePanel_Recipe.MaxRows = 5;
			this.notePanel_Recipe.Name = "notePanel_Recipe";
			this.notePanel_Recipe.ParentAutoHeight = true;
			this.notePanel_Recipe.Size = new System.Drawing.Size(482, 23);
			this.notePanel_Recipe.TabIndex = 32;
			this.notePanel_Recipe.TabStop = false;
			this.notePanel_Recipe.Text = "查询您已设置的食谱,摄入量以\"斤\"计算";
			// 
			// comboBoxEdit_Recipe_RecipeCategory
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.EditValue = "全部";
			this.comboBoxEdit_Recipe_RecipeCategory.Location = new System.Drawing.Point(152, 40);
			this.comboBoxEdit_Recipe_RecipeCategory.Name = "comboBoxEdit_Recipe_RecipeCategory";
			// 
			// comboBoxEdit_Recipe_RecipeCategory.Properties
			// 
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.Items.AddRange(new object[] {
																							   "全部",
																							   "肉禽水产类",
																							   "水果类",
																							   "蔬菜类",
																							   "粮食类",
																							   "调味品",
																							   "糕点",
																							   "豆制品",
																							   "乳类",
																							   "菌藻类",
																							   "其他"});
			this.comboBoxEdit_Recipe_RecipeCategory.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_Recipe_RecipeCategory.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_Recipe_RecipeCategory.TabIndex = 30;
			this.comboBoxEdit_Recipe_RecipeCategory.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_Recipe_RecipeCategory_SelectedIndexChanged);
			// 
			// notePanel_Recipe_RecipeCategory
			// 
			this.notePanel_Recipe_RecipeCategory.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_RecipeCategory.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_RecipeCategory.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_RecipeCategory.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_RecipeCategory.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_RecipeCategory.Location = new System.Drawing.Point(56, 40);
			this.notePanel_Recipe_RecipeCategory.MaxRows = 5;
			this.notePanel_Recipe_RecipeCategory.Name = "notePanel_Recipe_RecipeCategory";
			this.notePanel_Recipe_RecipeCategory.ParentAutoHeight = true;
			this.notePanel_Recipe_RecipeCategory.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_RecipeCategory.TabIndex = 29;
			this.notePanel_Recipe_RecipeCategory.TabStop = false;
			this.notePanel_Recipe_RecipeCategory.Text = "食谱分类:";
			// 
			// dateEdit_Recipe_EndDate
			// 
			this.dateEdit_Recipe_EndDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_EndDate.Location = new System.Drawing.Point(352, 72);
			this.dateEdit_Recipe_EndDate.Name = "dateEdit_Recipe_EndDate";
			// 
			// dateEdit_Recipe_EndDate.Properties
			// 
			this.dateEdit_Recipe_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_EndDate.TabIndex = 28;
			// 
			// notePanel_Recipe_EndDate
			// 
			this.notePanel_Recipe_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_EndDate.Location = new System.Drawing.Point(256, 72);
			this.notePanel_Recipe_EndDate.MaxRows = 5;
			this.notePanel_Recipe_EndDate.Name = "notePanel_Recipe_EndDate";
			this.notePanel_Recipe_EndDate.ParentAutoHeight = true;
			this.notePanel_Recipe_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_EndDate.TabIndex = 27;
			this.notePanel_Recipe_EndDate.TabStop = false;
			this.notePanel_Recipe_EndDate.Text = "结束时间:";
			// 
			// dateEdit_Recipe_BegDate
			// 
			this.dateEdit_Recipe_BegDate.EditValue = new System.DateTime(2005, 11, 17, 0, 0, 0, 0);
			this.dateEdit_Recipe_BegDate.Location = new System.Drawing.Point(152, 72);
			this.dateEdit_Recipe_BegDate.Name = "dateEdit_Recipe_BegDate";
			// 
			// dateEdit_Recipe_BegDate.Properties
			// 
			this.dateEdit_Recipe_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Recipe_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Recipe_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Recipe_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Recipe_BegDate.TabIndex = 26;
			// 
			// notePanel_Recipe_BegDate
			// 
			this.notePanel_Recipe_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Recipe_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Recipe_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Recipe_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Recipe_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Recipe_BegDate.Location = new System.Drawing.Point(56, 72);
			this.notePanel_Recipe_BegDate.MaxRows = 5;
			this.notePanel_Recipe_BegDate.Name = "notePanel_Recipe_BegDate";
			this.notePanel_Recipe_BegDate.ParentAutoHeight = true;
			this.notePanel_Recipe_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Recipe_BegDate.TabIndex = 25;
			this.notePanel_Recipe_BegDate.TabStop = false;
			this.notePanel_Recipe_BegDate.Text = "起始时间:";
			// 
			// xtraTabPage3
			// 
			this.xtraTabPage3.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage3.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage3.Controls.Add(this.splitContainerControl3);
			this.xtraTabPage3.Name = "xtraTabPage3";
			this.xtraTabPage3.PageVisible = false;
			this.xtraTabPage3.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage3.Text = "集体膳食安排";
			// 
			// splitContainerControl3
			// 
			this.splitContainerControl3.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl3.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl3.Name = "splitContainerControl3";
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealLogin);
			this.splitContainerControl3.Panel1.Controls.Add(this.groupControl_MealAdd);
			this.splitContainerControl3.Panel1.Text = "splitContainerControl3_Panel1";
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealArr);
			this.splitContainerControl3.Panel2.Controls.Add(this.groupControl_MealPreview);
			this.splitContainerControl3.Panel2.Controls.Add(this.panelControl3);
			this.splitContainerControl3.Panel2.Text = "splitContainerControl3_Panel2";
			this.splitContainerControl3.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl3.SplitterPosition = 239;
			this.splitContainerControl3.TabIndex = 0;
			this.splitContainerControl3.Text = "splitContainerControl3";
			// 
			// groupControl_MealLogin
			// 
			this.groupControl_MealLogin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealLogin.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealLogin.Controls.Add(this.notePanel_MealArr);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Snack);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Dinner);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Lunch);
			this.groupControl_MealLogin.Controls.Add(this.checkEdit_Breakfast);
			this.groupControl_MealLogin.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealLogin.Location = new System.Drawing.Point(0, 152);
			this.groupControl_MealLogin.Name = "groupControl_MealLogin";
			this.groupControl_MealLogin.Size = new System.Drawing.Size(233, 144);
			this.groupControl_MealLogin.TabIndex = 1;
			this.groupControl_MealLogin.Text = "用餐登记";
			// 
			// notePanel_MealArr
			// 
			this.notePanel_MealArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealArr.MaxRows = 5;
			this.notePanel_MealArr.Name = "notePanel_MealArr";
			this.notePanel_MealArr.ParentAutoHeight = true;
			this.notePanel_MealArr.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealArr.TabIndex = 34;
			this.notePanel_MealArr.TabStop = false;
			this.notePanel_MealArr.Text = "添加您的膳食安排";
			// 
			// checkEdit_Snack
			// 
			this.checkEdit_Snack.Location = new System.Drawing.Point(128, 96);
			this.checkEdit_Snack.Name = "checkEdit_Snack";
			// 
			// checkEdit_Snack.Properties
			// 
			this.checkEdit_Snack.Properties.Caption = "点心";
			this.checkEdit_Snack.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Snack.TabIndex = 3;
			// 
			// checkEdit_Dinner
			// 
			this.checkEdit_Dinner.Location = new System.Drawing.Point(48, 96);
			this.checkEdit_Dinner.Name = "checkEdit_Dinner";
			// 
			// checkEdit_Dinner.Properties
			// 
			this.checkEdit_Dinner.Properties.Caption = "晚餐";
			this.checkEdit_Dinner.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Dinner.TabIndex = 2;
			// 
			// checkEdit_Lunch
			// 
			this.checkEdit_Lunch.Location = new System.Drawing.Point(128, 64);
			this.checkEdit_Lunch.Name = "checkEdit_Lunch";
			// 
			// checkEdit_Lunch.Properties
			// 
			this.checkEdit_Lunch.Properties.Caption = "午餐";
			this.checkEdit_Lunch.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Lunch.TabIndex = 1;
			// 
			// checkEdit_Breakfast
			// 
			this.checkEdit_Breakfast.Location = new System.Drawing.Point(48, 64);
			this.checkEdit_Breakfast.Name = "checkEdit_Breakfast";
			// 
			// checkEdit_Breakfast.Properties
			// 
			this.checkEdit_Breakfast.Properties.Caption = "早餐";
			this.checkEdit_Breakfast.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_Breakfast.TabIndex = 0;
			// 
			// groupControl_MealAdd
			// 
			this.groupControl_MealAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealName);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealRemark);
			this.groupControl_MealAdd.Controls.Add(this.textEdit_MealID);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealName);
			this.groupControl_MealAdd.Controls.Add(this.notePanel_MealNameAdd);
			this.groupControl_MealAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealAdd.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MealAdd.Name = "groupControl_MealAdd";
			this.groupControl_MealAdd.Size = new System.Drawing.Size(233, 152);
			this.groupControl_MealAdd.TabIndex = 0;
			this.groupControl_MealAdd.Text = "膳食添加";
			// 
			// textEdit_MealName
			// 
			this.textEdit_MealName.EditValue = "";
			this.textEdit_MealName.Location = new System.Drawing.Point(112, 64);
			this.textEdit_MealName.Name = "textEdit_MealName";
			this.textEdit_MealName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealName.TabIndex = 38;
			// 
			// textEdit_MealRemark
			// 
			this.textEdit_MealRemark.EditValue = "";
			this.textEdit_MealRemark.Location = new System.Drawing.Point(112, 96);
			this.textEdit_MealRemark.Name = "textEdit_MealRemark";
			this.textEdit_MealRemark.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MealRemark.TabIndex = 37;
			// 
			// notePanel_MealRemark
			// 
			this.notePanel_MealRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealRemark.Location = new System.Drawing.Point(24, 96);
			this.notePanel_MealRemark.MaxRows = 5;
			this.notePanel_MealRemark.Name = "notePanel_MealRemark";
			this.notePanel_MealRemark.ParentAutoHeight = true;
			this.notePanel_MealRemark.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealRemark.TabIndex = 36;
			this.notePanel_MealRemark.TabStop = false;
			this.notePanel_MealRemark.Text = "膳食说明:";
			// 
			// textEdit_MealID
			// 
			this.textEdit_MealID.EditValue = "";
			this.textEdit_MealID.Location = new System.Drawing.Point(184, 64);
			this.textEdit_MealID.Name = "textEdit_MealID";
			// 
			// textEdit_MealID.Properties
			// 
			this.textEdit_MealID.Properties.AutoHeight = false;
			this.textEdit_MealID.Size = new System.Drawing.Size(8, 16);
			this.textEdit_MealID.TabIndex = 35;
			// 
			// notePanel_MealName
			// 
			this.notePanel_MealName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealName.Location = new System.Drawing.Point(24, 61);
			this.notePanel_MealName.MaxRows = 5;
			this.notePanel_MealName.Name = "notePanel_MealName";
			this.notePanel_MealName.ParentAutoHeight = true;
			this.notePanel_MealName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealName.TabIndex = 34;
			this.notePanel_MealName.TabStop = false;
			this.notePanel_MealName.Text = "膳食名称:";
			// 
			// notePanel_MealNameAdd
			// 
			this.notePanel_MealNameAdd.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealNameAdd.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealNameAdd.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealNameAdd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealNameAdd.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MealNameAdd.MaxRows = 5;
			this.notePanel_MealNameAdd.Name = "notePanel_MealNameAdd";
			this.notePanel_MealNameAdd.ParentAutoHeight = true;
			this.notePanel_MealNameAdd.Size = new System.Drawing.Size(227, 23);
			this.notePanel_MealNameAdd.TabIndex = 33;
			this.notePanel_MealNameAdd.TabStop = false;
			this.notePanel_MealNameAdd.Text = "添加您的膳食名称";
			// 
			// groupControl_MealArr
			// 
			this.groupControl_MealArr.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealArr.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealArr.Controls.Add(this.splitContainerControl4);
			this.groupControl_MealArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealArr.Location = new System.Drawing.Point(0, 312);
			this.groupControl_MealArr.Name = "groupControl_MealArr";
			this.groupControl_MealArr.Size = new System.Drawing.Size(519, 224);
			this.groupControl_MealArr.TabIndex = 2;
			this.groupControl_MealArr.Text = "膳食设置";
			this.groupControl_MealArr.Visible = false;
			// 
			// splitContainerControl4
			// 
			this.splitContainerControl4.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl4.Location = new System.Drawing.Point(3, 18);
			this.splitContainerControl4.Name = "splitContainerControl4";
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_GradeArr);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Grade);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gThree);
			this.splitContainerControl4.Panel1.Controls.Add(this.notePanel_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gTwo);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gOne);
			this.splitContainerControl4.Panel1.Controls.Add(this.comboBoxEdit_MealArr_Name);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFour);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_gFive);
			this.splitContainerControl4.Panel1.Controls.Add(this.checkEdit_MealArr_IsUsed);
			this.splitContainerControl4.Panel1.Text = "splitContainerControl4_Panel1";
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Lunch);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Snack);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Super);
			this.splitContainerControl4.Panel2.Controls.Add(this.label_Breakfast);
			this.splitContainerControl4.Panel2.Controls.Add(this.notePanel_MealArr_ePreview);
			this.splitContainerControl4.Panel2.Text = "splitContainerControl4_Panel2";
			this.splitContainerControl4.Size = new System.Drawing.Size(513, 203);
			this.splitContainerControl4.SplitterPosition = 242;
			this.splitContainerControl4.TabIndex = 0;
			this.splitContainerControl4.Text = "splitContainerControl4";
			// 
			// notePanel_GradeArr
			// 
			this.notePanel_GradeArr.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_GradeArr.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_GradeArr.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_GradeArr.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_GradeArr.Location = new System.Drawing.Point(0, 0);
			this.notePanel_GradeArr.MaxRows = 5;
			this.notePanel_GradeArr.Name = "notePanel_GradeArr";
			this.notePanel_GradeArr.ParentAutoHeight = true;
			this.notePanel_GradeArr.Size = new System.Drawing.Size(236, 23);
			this.notePanel_GradeArr.TabIndex = 44;
			this.notePanel_GradeArr.TabStop = false;
			this.notePanel_GradeArr.Text = "膳食适用年级安排";
			// 
			// notePanel_MealArr_Grade
			// 
			this.notePanel_MealArr_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Grade.Location = new System.Drawing.Point(16, 72);
			this.notePanel_MealArr_Grade.MaxRows = 5;
			this.notePanel_MealArr_Grade.Name = "notePanel_MealArr_Grade";
			this.notePanel_MealArr_Grade.ParentAutoHeight = true;
			this.notePanel_MealArr_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Grade.TabIndex = 37;
			this.notePanel_MealArr_Grade.TabStop = false;
			this.notePanel_MealArr_Grade.Text = "适用年级:";
			// 
			// checkEdit_MealArr_gThree
			// 
			this.checkEdit_MealArr_gThree.Location = new System.Drawing.Point(112, 96);
			this.checkEdit_MealArr_gThree.Name = "checkEdit_MealArr_gThree";
			// 
			// checkEdit_MealArr_gThree.Properties
			// 
			this.checkEdit_MealArr_gThree.Properties.Caption = "中班";
			this.checkEdit_MealArr_gThree.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gThree.TabIndex = 40;
			// 
			// notePanel_MealArr_Name
			// 
			this.notePanel_MealArr_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MealArr_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MealArr_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MealArr_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MealArr_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_Name.Location = new System.Drawing.Point(16, 40);
			this.notePanel_MealArr_Name.MaxRows = 5;
			this.notePanel_MealArr_Name.Name = "notePanel_MealArr_Name";
			this.notePanel_MealArr_Name.ParentAutoHeight = true;
			this.notePanel_MealArr_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MealArr_Name.TabIndex = 35;
			this.notePanel_MealArr_Name.TabStop = false;
			this.notePanel_MealArr_Name.Text = "餐次名称:";
			// 
			// checkEdit_MealArr_gTwo
			// 
			this.checkEdit_MealArr_gTwo.Location = new System.Drawing.Point(168, 72);
			this.checkEdit_MealArr_gTwo.Name = "checkEdit_MealArr_gTwo";
			// 
			// checkEdit_MealArr_gTwo.Properties
			// 
			this.checkEdit_MealArr_gTwo.Properties.Caption = "小班";
			this.checkEdit_MealArr_gTwo.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gTwo.TabIndex = 39;
			// 
			// checkEdit_MealArr_gOne
			// 
			this.checkEdit_MealArr_gOne.Location = new System.Drawing.Point(112, 72);
			this.checkEdit_MealArr_gOne.Name = "checkEdit_MealArr_gOne";
			// 
			// checkEdit_MealArr_gOne.Properties
			// 
			this.checkEdit_MealArr_gOne.Properties.Caption = "托班";
			this.checkEdit_MealArr_gOne.Size = new System.Drawing.Size(56, 19);
			this.checkEdit_MealArr_gOne.TabIndex = 38;
			// 
			// comboBoxEdit_MealArr_Name
			// 
			this.comboBoxEdit_MealArr_Name.EditValue = "";
			this.comboBoxEdit_MealArr_Name.Location = new System.Drawing.Point(112, 40);
			this.comboBoxEdit_MealArr_Name.Name = "comboBoxEdit_MealArr_Name";
			// 
			// comboBoxEdit_MealArr_Name.Properties
			// 
			this.comboBoxEdit_MealArr_Name.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MealArr_Name.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MealArr_Name.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MealArr_Name.TabIndex = 36;
			this.comboBoxEdit_MealArr_Name.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MealArr_Name_SelectedIndexChanged);
			// 
			// checkEdit_MealArr_gFour
			// 
			this.checkEdit_MealArr_gFour.Location = new System.Drawing.Point(168, 96);
			this.checkEdit_MealArr_gFour.Name = "checkEdit_MealArr_gFour";
			// 
			// checkEdit_MealArr_gFour.Properties
			// 
			this.checkEdit_MealArr_gFour.Properties.Caption = "大班";
			this.checkEdit_MealArr_gFour.Size = new System.Drawing.Size(48, 19);
			this.checkEdit_MealArr_gFour.TabIndex = 41;
			// 
			// checkEdit_MealArr_gFive
			// 
			this.checkEdit_MealArr_gFive.Location = new System.Drawing.Point(112, 120);
			this.checkEdit_MealArr_gFive.Name = "checkEdit_MealArr_gFive";
			// 
			// checkEdit_MealArr_gFive.Properties
			// 
			this.checkEdit_MealArr_gFive.Properties.Caption = "特色班";
			this.checkEdit_MealArr_gFive.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_gFive.TabIndex = 42;
			// 
			// checkEdit_MealArr_IsUsed
			// 
			this.checkEdit_MealArr_IsUsed.Location = new System.Drawing.Point(112, 144);
			this.checkEdit_MealArr_IsUsed.Name = "checkEdit_MealArr_IsUsed";
			// 
			// checkEdit_MealArr_IsUsed.Properties
			// 
			this.checkEdit_MealArr_IsUsed.Properties.Caption = "是否启用";
			this.checkEdit_MealArr_IsUsed.Size = new System.Drawing.Size(72, 19);
			this.checkEdit_MealArr_IsUsed.TabIndex = 43;
			// 
			// label_Lunch
			// 
			this.label_Lunch.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Lunch.ForeColor = System.Drawing.Color.Tomato;
			this.label_Lunch.Location = new System.Drawing.Point(136, 56);
			this.label_Lunch.Name = "label_Lunch";
			this.label_Lunch.Size = new System.Drawing.Size(88, 24);
			this.label_Lunch.TabIndex = 53;
			this.label_Lunch.Text = "午餐:  35%";
			// 
			// label_Snack
			// 
			this.label_Snack.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Snack.ForeColor = System.Drawing.Color.Tomato;
			this.label_Snack.Location = new System.Drawing.Point(136, 104);
			this.label_Snack.Name = "label_Snack";
			this.label_Snack.Size = new System.Drawing.Size(88, 24);
			this.label_Snack.TabIndex = 52;
			this.label_Snack.Text = "点心:  15%";
			// 
			// label_Super
			// 
			this.label_Super.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Super.ForeColor = System.Drawing.Color.Tomato;
			this.label_Super.Location = new System.Drawing.Point(24, 104);
			this.label_Super.Name = "label_Super";
			this.label_Super.Size = new System.Drawing.Size(88, 24);
			this.label_Super.TabIndex = 51;
			this.label_Super.Text = "晚餐:  30%";
			// 
			// label_Breakfast
			// 
			this.label_Breakfast.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.label_Breakfast.ForeColor = System.Drawing.Color.Tomato;
			this.label_Breakfast.Location = new System.Drawing.Point(24, 56);
			this.label_Breakfast.Name = "label_Breakfast";
			this.label_Breakfast.Size = new System.Drawing.Size(88, 24);
			this.label_Breakfast.TabIndex = 50;
			this.label_Breakfast.Text = "早餐:  20%";
			// 
			// notePanel_MealArr_ePreview
			// 
			this.notePanel_MealArr_ePreview.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MealArr_ePreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MealArr_ePreview.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MealArr_ePreview.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MealArr_ePreview.Location = new System.Drawing.Point(0, 0);
			this.notePanel_MealArr_ePreview.MaxRows = 5;
			this.notePanel_MealArr_ePreview.Name = "notePanel_MealArr_ePreview";
			this.notePanel_MealArr_ePreview.ParentAutoHeight = true;
			this.notePanel_MealArr_ePreview.Size = new System.Drawing.Size(261, 23);
			this.notePanel_MealArr_ePreview.TabIndex = 45;
			this.notePanel_MealArr_ePreview.TabStop = false;
			this.notePanel_MealArr_ePreview.Text = "热量分配一览";
			// 
			// groupControl_MealPreview
			// 
			this.groupControl_MealPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MealPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MealPreview.Controls.Add(this.gridControl_MealPreview);
			this.groupControl_MealPreview.Controls.Add(this.notePanel3);
			this.groupControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MealPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MealPreview.Name = "groupControl_MealPreview";
			this.groupControl_MealPreview.Size = new System.Drawing.Size(519, 264);
			this.groupControl_MealPreview.TabIndex = 1;
			this.groupControl_MealPreview.Text = "餐次设置一览";
			// 
			// gridControl_MealPreview
			// 
			this.gridControl_MealPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MealPreview.EmbeddedNavigator
			// 
			this.gridControl_MealPreview.EmbeddedNavigator.Name = "";
			this.gridControl_MealPreview.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MealPreview.MainView = this.gridView5;
			this.gridControl_MealPreview.Name = "gridControl_MealPreview";
			this.barManager1.SetPopupContextMenu(this.gridControl_MealPreview, this.popupMenu1);
			this.gridControl_MealPreview.Size = new System.Drawing.Size(513, 220);
			this.gridControl_MealPreview.TabIndex = 36;
			this.gridControl_MealPreview.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												   this.gridView5});
			this.gridControl_MealPreview.DoubleClick += new System.EventHandler(this.gridControl_MealPreview_DoubleClick);
			// 
			// gridView5
			// 
			this.gridView5.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn17,
																							 this.gridColumn18,
																							 this.gridColumn19,
																							 this.gridColumn20});
			this.gridView5.GridControl = this.gridControl_MealPreview;
			this.gridView5.Name = "gridView5";
			this.gridView5.OptionsCustomization.AllowFilter = false;
			this.gridView5.OptionsView.ShowFilterPanel = false;
			this.gridView5.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn17
			// 
			this.gridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn17.Caption = "膳食名称";
			this.gridColumn17.FieldName = "FoodArr_Name";
			this.gridColumn17.Name = "gridColumn17";
			this.gridColumn17.OptionsColumn.AllowEdit = false;
			this.gridColumn17.OptionsColumn.AllowFocus = false;
			this.gridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.AllowMove = false;
			this.gridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn17.OptionsColumn.ReadOnly = true;
			this.gridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn17.Visible = true;
			this.gridColumn17.VisibleIndex = 0;
			this.gridColumn17.Width = 92;
			// 
			// gridColumn18
			// 
			this.gridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn18.Caption = "膳食说明";
			this.gridColumn18.FieldName = "FoodArr_Remark";
			this.gridColumn18.Name = "gridColumn18";
			this.gridColumn18.OptionsColumn.AllowEdit = false;
			this.gridColumn18.OptionsColumn.AllowFocus = false;
			this.gridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.AllowMove = false;
			this.gridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn18.OptionsColumn.ReadOnly = true;
			this.gridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn18.Visible = true;
			this.gridColumn18.VisibleIndex = 1;
			this.gridColumn18.Width = 188;
			// 
			// gridColumn19
			// 
			this.gridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn19.Caption = "适用年级";
			this.gridColumn19.FieldName = "FoodArr_SuitAge";
			this.gridColumn19.Name = "gridColumn19";
			this.gridColumn19.OptionsColumn.AllowEdit = false;
			this.gridColumn19.OptionsColumn.AllowFocus = false;
			this.gridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.AllowMove = false;
			this.gridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn19.OptionsColumn.ReadOnly = true;
			this.gridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn19.Visible = true;
			this.gridColumn19.VisibleIndex = 2;
			this.gridColumn19.Width = 163;
			// 
			// gridColumn20
			// 
			this.gridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn20.Caption = "是否起用";
			this.gridColumn20.FieldName = "FoodArr_ISUsed";
			this.gridColumn20.Name = "gridColumn20";
			this.gridColumn20.OptionsColumn.AllowEdit = false;
			this.gridColumn20.OptionsColumn.AllowFocus = false;
			this.gridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.AllowMove = false;
			this.gridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn20.OptionsColumn.ReadOnly = true;
			this.gridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn20.Visible = true;
			this.gridColumn20.VisibleIndex = 3;
			this.gridColumn20.Width = 55;
			// 
			// notePanel3
			// 
			this.notePanel3.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel3.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel3.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel3.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel3.Location = new System.Drawing.Point(3, 18);
			this.notePanel3.MaxRows = 5;
			this.notePanel3.Name = "notePanel3";
			this.notePanel3.ParentAutoHeight = true;
			this.notePanel3.Size = new System.Drawing.Size(513, 23);
			this.notePanel3.TabIndex = 35;
			this.notePanel3.TabStop = false;
			this.notePanel3.Text = "双击进行幼儿餐适用年级登记";
			// 
			// panelControl3
			// 
			this.panelControl3.Controls.Add(this.simpleButton_MealBack);
			this.panelControl3.Controls.Add(this.simpleButton_MealAppend);
			this.panelControl3.Controls.Add(this.simpleButton_MealDelete);
			this.panelControl3.Controls.Add(this.simpleButton_MealSave);
			this.panelControl3.Controls.Add(this.simpleButton_MealAdd);
			this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl3.Location = new System.Drawing.Point(0, 0);
			this.panelControl3.Name = "panelControl3";
			this.panelControl3.Size = new System.Drawing.Size(519, 48);
			this.panelControl3.TabIndex = 0;
			this.panelControl3.Text = "panelControl3";
			// 
			// simpleButton_MealBack
			// 
			this.simpleButton_MealBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealBack.Appearance.Options.UseFont = true;
			this.simpleButton_MealBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealBack.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MealBack.Name = "simpleButton_MealBack";
			this.simpleButton_MealBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealBack.TabIndex = 47;
			this.simpleButton_MealBack.Tag = 4;
			this.simpleButton_MealBack.Text = "返回";
			this.simpleButton_MealBack.Click += new System.EventHandler(this.simpleButton_MealBack_Click);
			// 
			// simpleButton_MealAppend
			// 
			this.simpleButton_MealAppend.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAppend.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAppend.Appearance.Options.UseFont = true;
			this.simpleButton_MealAppend.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAppend.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_MealAppend.Name = "simpleButton_MealAppend";
			this.simpleButton_MealAppend.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAppend.TabIndex = 46;
			this.simpleButton_MealAppend.Tag = 4;
			this.simpleButton_MealAppend.Text = "新建膳食";
			this.simpleButton_MealAppend.Click += new System.EventHandler(this.simpleButton_MealAppend_Click);
			// 
			// simpleButton_MealDelete
			// 
			this.simpleButton_MealDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealDelete.Appearance.Options.UseFont = true;
			this.simpleButton_MealDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_MealDelete.Name = "simpleButton_MealDelete";
			this.simpleButton_MealDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealDelete.TabIndex = 45;
			this.simpleButton_MealDelete.Tag = 4;
			this.simpleButton_MealDelete.Text = "膳食删除";
			this.simpleButton_MealDelete.Click += new System.EventHandler(this.simpleButton_MealDelete_Click);
			// 
			// simpleButton_MealSave
			// 
			this.simpleButton_MealSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealSave.Appearance.Options.UseFont = true;
			this.simpleButton_MealSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealSave.Enabled = false;
			this.simpleButton_MealSave.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_MealSave.Name = "simpleButton_MealSave";
			this.simpleButton_MealSave.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MealSave.TabIndex = 43;
			this.simpleButton_MealSave.Tag = 4;
			this.simpleButton_MealSave.Text = "幼儿餐保存";
			this.simpleButton_MealSave.Click += new System.EventHandler(this.simpleButton_MealSave_Click);
			// 
			// simpleButton_MealAdd
			// 
			this.simpleButton_MealAdd.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MealAdd.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MealAdd.Appearance.Options.UseFont = true;
			this.simpleButton_MealAdd.Appearance.Options.UseForeColor = true;
			this.simpleButton_MealAdd.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_MealAdd.Name = "simpleButton_MealAdd";
			this.simpleButton_MealAdd.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_MealAdd.TabIndex = 41;
			this.simpleButton_MealAdd.Tag = 4;
			this.simpleButton_MealAdd.Text = "膳食保存";
			this.simpleButton_MealAdd.Click += new System.EventHandler(this.simpleButton_MealAdd_Click);
			// 
			// xtraTabPage4
			// 
			this.xtraTabPage4.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage4.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage4.Controls.Add(this.splitContainerControl5);
			this.xtraTabPage4.Name = "xtraTabPage4";
			this.xtraTabPage4.PageVisible = false;
			this.xtraTabPage4.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage4.Text = "膳食营养综合统计表";
			// 
			// splitContainerControl5
			// 
			this.splitContainerControl5.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl5.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl5.Name = "splitContainerControl5";
			this.splitContainerControl5.Panel1.Controls.Add(this.groupControl_Meal_Search);
			this.splitContainerControl5.Panel1.Text = "splitContainerControl5_Panel1";
			this.splitContainerControl5.Panel2.Controls.Add(this.groupControl_Meal_ReportPreview);
			this.splitContainerControl5.Panel2.Controls.Add(this.panelControl4);
			this.splitContainerControl5.Panel2.Text = "splitContainerControl5_Panel2";
			this.splitContainerControl5.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl5.SplitterPosition = 241;
			this.splitContainerControl5.TabIndex = 0;
			this.splitContainerControl5.Text = "splitContainerControl5";
			// 
			// groupControl_Meal_Search
			// 
			this.groupControl_Meal_Search.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_Search.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_EndDate);
			this.groupControl_Meal_Search.Controls.Add(this.dateEdit_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_BegDate);
			this.groupControl_Meal_Search.Controls.Add(this.notePanel_Meal_Search);
			this.groupControl_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_Meal_Search.Location = new System.Drawing.Point(0, 0);
			this.groupControl_Meal_Search.Name = "groupControl_Meal_Search";
			this.groupControl_Meal_Search.Size = new System.Drawing.Size(235, 176);
			this.groupControl_Meal_Search.TabIndex = 0;
			this.groupControl_Meal_Search.Text = "统计条件";
			// 
			// dateEdit_Meal_EndDate
			// 
			this.dateEdit_Meal_EndDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_EndDate.Location = new System.Drawing.Point(112, 104);
			this.dateEdit_Meal_EndDate.Name = "dateEdit_Meal_EndDate";
			// 
			// dateEdit_Meal_EndDate.Properties
			// 
			this.dateEdit_Meal_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_EndDate.TabIndex = 38;
			// 
			// notePanel_Meal_EndDate
			// 
			this.notePanel_Meal_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_EndDate.Location = new System.Drawing.Point(24, 104);
			this.notePanel_Meal_EndDate.MaxRows = 5;
			this.notePanel_Meal_EndDate.Name = "notePanel_Meal_EndDate";
			this.notePanel_Meal_EndDate.ParentAutoHeight = true;
			this.notePanel_Meal_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_EndDate.TabIndex = 37;
			this.notePanel_Meal_EndDate.TabStop = false;
			this.notePanel_Meal_EndDate.Text = "截止日期:";
			// 
			// dateEdit_Meal_BegDate
			// 
			this.dateEdit_Meal_BegDate.EditValue = new System.DateTime(2005, 11, 24, 0, 0, 0, 0);
			this.dateEdit_Meal_BegDate.Location = new System.Drawing.Point(112, 64);
			this.dateEdit_Meal_BegDate.Name = "dateEdit_Meal_BegDate";
			// 
			// dateEdit_Meal_BegDate.Properties
			// 
			this.dateEdit_Meal_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_Meal_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_Meal_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_Meal_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_Meal_BegDate.TabIndex = 36;
			// 
			// notePanel_Meal_BegDate
			// 
			this.notePanel_Meal_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_Meal_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_Meal_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_Meal_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_Meal_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_BegDate.Location = new System.Drawing.Point(24, 64);
			this.notePanel_Meal_BegDate.MaxRows = 5;
			this.notePanel_Meal_BegDate.Name = "notePanel_Meal_BegDate";
			this.notePanel_Meal_BegDate.ParentAutoHeight = true;
			this.notePanel_Meal_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_Meal_BegDate.TabIndex = 35;
			this.notePanel_Meal_BegDate.TabStop = false;
			this.notePanel_Meal_BegDate.Text = "起始日期:";
			// 
			// notePanel_Meal_Search
			// 
			this.notePanel_Meal_Search.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_Meal_Search.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_Meal_Search.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_Meal_Search.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_Meal_Search.Location = new System.Drawing.Point(3, 18);
			this.notePanel_Meal_Search.MaxRows = 5;
			this.notePanel_Meal_Search.Name = "notePanel_Meal_Search";
			this.notePanel_Meal_Search.ParentAutoHeight = true;
			this.notePanel_Meal_Search.Size = new System.Drawing.Size(229, 23);
			this.notePanel_Meal_Search.TabIndex = 34;
			this.notePanel_Meal_Search.TabStop = false;
			this.notePanel_Meal_Search.Text = "指定统计的时间范围";
			// 
			// groupControl_Meal_ReportPreview
			// 
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_Meal_ReportPreview.AppearanceCaption.Options.UseFont = true;
			this.groupControl_Meal_ReportPreview.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_Meal_ReportPreview.Location = new System.Drawing.Point(0, 48);
			this.groupControl_Meal_ReportPreview.Name = "groupControl_Meal_ReportPreview";
			this.groupControl_Meal_ReportPreview.Size = new System.Drawing.Size(517, 461);
			this.groupControl_Meal_ReportPreview.TabIndex = 1;
			this.groupControl_Meal_ReportPreview.Text = "图形报表预览";
			// 
			// panelControl4
			// 
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PrintReport);
			this.panelControl4.Controls.Add(this.simpleButton_Meal_PreviewReport);
			this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl4.Location = new System.Drawing.Point(0, 0);
			this.panelControl4.Name = "panelControl4";
			this.panelControl4.Size = new System.Drawing.Size(517, 48);
			this.panelControl4.TabIndex = 0;
			this.panelControl4.Text = "panelControl4";
			// 
			// simpleButton_Meal_PrintReport
			// 
			this.simpleButton_Meal_PrintReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PrintReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PrintReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PrintReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PrintReport.Image")));
			this.simpleButton_Meal_PrintReport.Location = new System.Drawing.Point(128, 11);
			this.simpleButton_Meal_PrintReport.Name = "simpleButton_Meal_PrintReport";
			this.simpleButton_Meal_PrintReport.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_Meal_PrintReport.TabIndex = 7;
			this.simpleButton_Meal_PrintReport.Tag = 4;
			this.simpleButton_Meal_PrintReport.Text = "图形打印";
			// 
			// simpleButton_Meal_PreviewReport
			// 
			this.simpleButton_Meal_PreviewReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_Meal_PreviewReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseFont = true;
			this.simpleButton_Meal_PreviewReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_Meal_PreviewReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Meal_PreviewReport.Image")));
			this.simpleButton_Meal_PreviewReport.Location = new System.Drawing.Point(16, 11);
			this.simpleButton_Meal_PreviewReport.Name = "simpleButton_Meal_PreviewReport";
			this.simpleButton_Meal_PreviewReport.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_Meal_PreviewReport.TabIndex = 6;
			this.simpleButton_Meal_PreviewReport.Tag = 4;
			this.simpleButton_Meal_PreviewReport.Text = "报  表";
			this.simpleButton_Meal_PreviewReport.Click += new System.EventHandler(this.simpleButton_Meal_PreviewReport_Click);
			// 
			// xtraTabPage5
			// 
			this.xtraTabPage5.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage5.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage5.Controls.Add(this.splitContainerControl6);
			this.xtraTabPage5.Name = "xtraTabPage5";
			this.xtraTabPage5.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage5.Text = "幼儿身体评测登记";
			// 
			// splitContainerControl6
			// 
			this.splitContainerControl6.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl6.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl6.Name = "splitContainerControl6";
			this.splitContainerControl6.Panel1.Controls.Add(this.gridControl_HInputStu);
			this.splitContainerControl6.Panel1.Controls.Add(this.groupControl_HInputSer);
			this.splitContainerControl6.Panel1.Text = "splitContainerControl6_Panel1";
			this.splitContainerControl6.Panel2.Controls.Add(this.groupControl_HInputDiagInfo);
			this.splitContainerControl6.Panel2.Controls.Add(this.panelControl5);
			this.splitContainerControl6.Panel2.Text = "splitContainerControl6_Panel2";
			this.splitContainerControl6.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl6.SplitterPosition = 204;
			this.splitContainerControl6.TabIndex = 0;
			this.splitContainerControl6.Text = "splitContainerControl6";
			// 
			// gridControl_HInputStu
			// 
			this.gridControl_HInputStu.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HInputStu.EmbeddedNavigator
			// 
			this.gridControl_HInputStu.EmbeddedNavigator.Name = "";
			this.gridControl_HInputStu.Location = new System.Drawing.Point(0, 256);
			this.gridControl_HInputStu.MainView = this.gridView6;
			this.gridControl_HInputStu.Name = "gridControl_HInputStu";
			this.gridControl_HInputStu.Size = new System.Drawing.Size(198, 253);
			this.gridControl_HInputStu.TabIndex = 1;
			this.gridControl_HInputStu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																												 this.gridView6});
			this.gridControl_HInputStu.DoubleClick += new System.EventHandler(this.gridControl_HInputStu_DoubleClick);
			// 
			// gridView6
			// 
			this.gridView6.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn21,
																							 this.gridColumn22,
																							 this.gridColumn23});
			this.gridView6.GridControl = this.gridControl_HInputStu;
			this.gridView6.Name = "gridView6";
			this.gridView6.OptionsCustomization.AllowFilter = false;
			this.gridView6.OptionsView.ShowFilterPanel = false;
			this.gridView6.OptionsView.ShowGroupPanel = false;
			this.gridView6.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView6_FocusedRowChanged);
			// 
			// gridColumn21
			// 
			this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn21.Caption = "学号";
			this.gridColumn21.FieldName = "info_stuNumber";
			this.gridColumn21.Name = "gridColumn21";
			this.gridColumn21.OptionsColumn.AllowEdit = false;
			this.gridColumn21.OptionsColumn.AllowFocus = false;
			this.gridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn21.OptionsColumn.AllowMove = false;
			this.gridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn21.OptionsColumn.ReadOnly = true;
			this.gridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn21.Visible = true;
			this.gridColumn21.VisibleIndex = 0;
			this.gridColumn21.Width = 62;
			// 
			// gridColumn22
			// 
			this.gridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn22.Caption = "姓名";
			this.gridColumn22.FieldName = "info_stuName";
			this.gridColumn22.Name = "gridColumn22";
			this.gridColumn22.OptionsColumn.AllowEdit = false;
			this.gridColumn22.OptionsColumn.AllowFocus = false;
			this.gridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn22.OptionsColumn.AllowMove = false;
			this.gridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn22.OptionsColumn.ReadOnly = true;
			this.gridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn22.Visible = true;
			this.gridColumn22.VisibleIndex = 1;
			this.gridColumn22.Width = 58;
			// 
			// gridColumn23
			// 
			this.gridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn23.Caption = "班级";
			this.gridColumn23.FieldName = "info_className";
			this.gridColumn23.Name = "gridColumn23";
			this.gridColumn23.OptionsColumn.AllowEdit = false;
			this.gridColumn23.OptionsColumn.AllowFocus = false;
			this.gridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn23.OptionsColumn.AllowMove = false;
			this.gridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn23.OptionsColumn.ReadOnly = true;
			this.gridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn23.Visible = true;
			this.gridColumn23.VisibleIndex = 2;
			this.gridColumn23.Width = 61;
			// 
			// groupControl_HInputSer
			// 
			this.groupControl_HInputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGender);
			this.groupControl_HInputSer.Controls.Add(this.dataNavigator_HInputNav);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.textEdit_HInputName);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputClass);
			this.groupControl_HInputSer.Controls.Add(this.comboBoxEdit_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputGrade);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputSer);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputNumber);
			this.groupControl_HInputSer.Controls.Add(this.notePanel_HInputName);
			this.groupControl_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HInputSer.Name = "groupControl_HInputSer";
			this.groupControl_HInputSer.Size = new System.Drawing.Size(198, 256);
			this.groupControl_HInputSer.TabIndex = 0;
			this.groupControl_HInputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HInputGender
			// 
			this.comboBoxEdit_HInputGender.EditValue = "全部";
			this.comboBoxEdit_HInputGender.Location = new System.Drawing.Point(88, 184);
			this.comboBoxEdit_HInputGender.Name = "comboBoxEdit_HInputGender";
			// 
			// comboBoxEdit_HInputGender.Properties
			// 
			this.comboBoxEdit_HInputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGender.Properties.Items.AddRange(new object[] {
																					  "全部",
																					  "男",
																					  "女"});
			this.comboBoxEdit_HInputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGender.TabIndex = 45;
			this.comboBoxEdit_HInputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGender_SelectedIndexChanged);
			// 
			// notePanel_HInputGender
			// 
			this.notePanel_HInputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGender.Location = new System.Drawing.Point(16, 184);
			this.notePanel_HInputGender.MaxRows = 5;
			this.notePanel_HInputGender.Name = "notePanel_HInputGender";
			this.notePanel_HInputGender.ParentAutoHeight = true;
			this.notePanel_HInputGender.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGender.TabIndex = 43;
			this.notePanel_HInputGender.TabStop = false;
			this.notePanel_HInputGender.Text = "性  别:";
			// 
			// dataNavigator_HInputNav
			// 
			this.dataNavigator_HInputNav.Buttons.Append.Hint = "新建卡";
			this.dataNavigator_HInputNav.Buttons.Append.Visible = false;
			this.dataNavigator_HInputNav.Buttons.CancelEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.EndEdit.Visible = false;
			this.dataNavigator_HInputNav.Buttons.First.Hint = "第一条记录";
			this.dataNavigator_HInputNav.Buttons.Last.Hint = "最后一条记录";
			this.dataNavigator_HInputNav.Buttons.Next.Hint = "下一条记录";
			this.dataNavigator_HInputNav.Buttons.NextPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Prev.Hint = "上一条记录";
			this.dataNavigator_HInputNav.Buttons.PrevPage.Visible = false;
			this.dataNavigator_HInputNav.Buttons.Remove.Visible = false;
			this.dataNavigator_HInputNav.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.dataNavigator_HInputNav.Location = new System.Drawing.Point(3, 225);
			this.dataNavigator_HInputNav.Name = "dataNavigator_HInputNav";
			this.dataNavigator_HInputNav.ShowToolTips = true;
			this.dataNavigator_HInputNav.Size = new System.Drawing.Size(192, 28);
			this.dataNavigator_HInputNav.TabIndex = 41;
			this.dataNavigator_HInputNav.Text = "dataNavigator1";
			this.dataNavigator_HInputNav.TextLocation = DevExpress.XtraEditors.NavigatorButtonsTextLocation.End;
			// 
			// textEdit_HInputNumber
			// 
			this.textEdit_HInputNumber.EditValue = "";
			this.textEdit_HInputNumber.Location = new System.Drawing.Point(88, 152);
			this.textEdit_HInputNumber.Name = "textEdit_HInputNumber";
			this.textEdit_HInputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputNumber.TabIndex = 40;
			this.textEdit_HInputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HInputNumber_EditValueChanged);
			// 
			// textEdit_HInputName
			// 
			this.textEdit_HInputName.EditValue = "";
			this.textEdit_HInputName.Location = new System.Drawing.Point(88, 120);
			this.textEdit_HInputName.Name = "textEdit_HInputName";
			this.textEdit_HInputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputName.TabIndex = 39;
			this.textEdit_HInputName.EditValueChanged += new System.EventHandler(this.textEdit_HInputName_EditValueChanged);
			// 
			// comboBoxEdit_HInputClass
			// 
			this.comboBoxEdit_HInputClass.EditValue = "全部";
			this.comboBoxEdit_HInputClass.Location = new System.Drawing.Point(88, 88);
			this.comboBoxEdit_HInputClass.Name = "comboBoxEdit_HInputClass";
			// 
			// comboBoxEdit_HInputClass.Properties
			// 
			this.comboBoxEdit_HInputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputClass.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputClass.TabIndex = 38;
			this.comboBoxEdit_HInputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputClass_SelectedIndexChanged);
			// 
			// notePanel_HInputClass
			// 
			this.notePanel_HInputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputClass.Location = new System.Drawing.Point(16, 88);
			this.notePanel_HInputClass.MaxRows = 5;
			this.notePanel_HInputClass.Name = "notePanel_HInputClass";
			this.notePanel_HInputClass.ParentAutoHeight = true;
			this.notePanel_HInputClass.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputClass.TabIndex = 37;
			this.notePanel_HInputClass.TabStop = false;
			this.notePanel_HInputClass.Text = "班  级:";
			// 
			// comboBoxEdit_HInputGrade
			// 
			this.comboBoxEdit_HInputGrade.EditValue = "全部";
			this.comboBoxEdit_HInputGrade.Location = new System.Drawing.Point(88, 56);
			this.comboBoxEdit_HInputGrade.Name = "comboBoxEdit_HInputGrade";
			// 
			// comboBoxEdit_HInputGrade.Properties
			// 
			this.comboBoxEdit_HInputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputGrade.Properties.Items.AddRange(new object[] {
																					 "全部"});
			this.comboBoxEdit_HInputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputGrade.TabIndex = 36;
			this.comboBoxEdit_HInputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputGrade_SelectedIndexChanged);
			// 
			// notePanel_HInputGrade
			// 
			this.notePanel_HInputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputGrade.Location = new System.Drawing.Point(16, 56);
			this.notePanel_HInputGrade.MaxRows = 5;
			this.notePanel_HInputGrade.Name = "notePanel_HInputGrade";
			this.notePanel_HInputGrade.ParentAutoHeight = true;
			this.notePanel_HInputGrade.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputGrade.TabIndex = 35;
			this.notePanel_HInputGrade.TabStop = false;
			this.notePanel_HInputGrade.Text = "年  级:";
			// 
			// notePanel_HInputSer
			// 
			this.notePanel_HInputSer.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputSer.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputSer.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputSer.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputSer.MaxRows = 5;
			this.notePanel_HInputSer.Name = "notePanel_HInputSer";
			this.notePanel_HInputSer.ParentAutoHeight = true;
			this.notePanel_HInputSer.Size = new System.Drawing.Size(192, 23);
			this.notePanel_HInputSer.TabIndex = 23;
			this.notePanel_HInputSer.TabStop = false;
			this.notePanel_HInputSer.Text = "检索您的幼儿";
			// 
			// notePanel_HInputNumber
			// 
			this.notePanel_HInputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputNumber.Location = new System.Drawing.Point(16, 152);
			this.notePanel_HInputNumber.MaxRows = 5;
			this.notePanel_HInputNumber.Name = "notePanel_HInputNumber";
			this.notePanel_HInputNumber.ParentAutoHeight = true;
			this.notePanel_HInputNumber.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputNumber.TabIndex = 32;
			this.notePanel_HInputNumber.TabStop = false;
			this.notePanel_HInputNumber.Text = "学  号:";
			// 
			// notePanel_HInputName
			// 
			this.notePanel_HInputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputName.Location = new System.Drawing.Point(16, 120);
			this.notePanel_HInputName.MaxRows = 5;
			this.notePanel_HInputName.Name = "notePanel_HInputName";
			this.notePanel_HInputName.ParentAutoHeight = true;
			this.notePanel_HInputName.Size = new System.Drawing.Size(64, 22);
			this.notePanel_HInputName.TabIndex = 31;
			this.notePanel_HInputName.TabStop = false;
			this.notePanel_HInputName.Text = "姓  名:";
			// 
			// groupControl_HInputDiagInfo
			// 
			this.groupControl_HInputDiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputRegion);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel6);
			this.groupControl_HInputDiagInfo.Controls.Add(this.comboBoxEdit_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputStd);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckBindingID);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckName);
			this.groupControl_HInputDiagInfo.Controls.Add(this.groupControl_HInputDiagResult);
			this.groupControl_HInputDiagInfo.Controls.Add(this.memoEdit_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagRemark);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputDaigInfo);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagWeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagHeight);
			this.groupControl_HInputDiagInfo.Controls.Add(this.dateEdit_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckDate);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_HInputBirthday);
			this.groupControl_HInputDiagInfo.Controls.Add(this.notePanel_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Controls.Add(this.textEdit_DiagCheckGender);
			this.groupControl_HInputDiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HInputDiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_HInputDiagInfo.Name = "groupControl_HInputDiagInfo";
			this.groupControl_HInputDiagInfo.Size = new System.Drawing.Size(554, 432);
			this.groupControl_HInputDiagInfo.TabIndex = 1;
			this.groupControl_HInputDiagInfo.Text = "诊断信息";
			this.groupControl_HInputDiagInfo.Paint += new System.Windows.Forms.PaintEventHandler(this.groupControl_HInputDiagInfo_Paint);
			// 
			// comboBoxEdit_HInputRegion
			// 
			this.comboBoxEdit_HInputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HInputRegion.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HInputRegion.Name = "comboBoxEdit_HInputRegion";
			// 
			// comboBoxEdit_HInputRegion.Properties
			// 
			this.comboBoxEdit_HInputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputRegion.Properties.Items.AddRange(new object[] {
																					  "上海标准",
																					  "全国标准"});
			this.comboBoxEdit_HInputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputRegion.TabIndex = 55;
			this.comboBoxEdit_HInputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputRegion_SelectedIndexChanged);
			// 
			// notePanel6
			// 
			this.notePanel6.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel6.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel6.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel6.ForeColor = System.Drawing.Color.Black;
			this.notePanel6.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel6.Location = new System.Drawing.Point(40, 152);
			this.notePanel6.MaxRows = 5;
			this.notePanel6.Name = "notePanel6";
			this.notePanel6.ParentAutoHeight = true;
			this.notePanel6.Size = new System.Drawing.Size(80, 22);
			this.notePanel6.TabIndex = 54;
			this.notePanel6.TabStop = false;
			this.notePanel6.Text = "地区标准:";
			// 
			// comboBoxEdit_HInputStd
			// 
			this.comboBoxEdit_HInputStd.EditValue = "市区标准";
			this.comboBoxEdit_HInputStd.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HInputStd.Name = "comboBoxEdit_HInputStd";
			// 
			// comboBoxEdit_HInputStd.Properties
			// 
			this.comboBoxEdit_HInputStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HInputStd.Properties.Items.AddRange(new object[] {
																				   "市区标准",
																				   "郊区标准"});
			this.comboBoxEdit_HInputStd.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HInputStd.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HInputStd.TabIndex = 53;
			this.comboBoxEdit_HInputStd.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HInputStd_SelectedIndexChanged);
			// 
			// notePanel_HInputStd
			// 
			this.notePanel_HInputStd.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputStd.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputStd.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputStd.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputStd.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputStd.Location = new System.Drawing.Point(40, 184);
			this.notePanel_HInputStd.MaxRows = 5;
			this.notePanel_HInputStd.Name = "notePanel_HInputStd";
			this.notePanel_HInputStd.ParentAutoHeight = true;
			this.notePanel_HInputStd.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputStd.TabIndex = 52;
			this.notePanel_HInputStd.TabStop = false;
			this.notePanel_HInputStd.Text = "市郊标准:";
			// 
			// textEdit_DiagCheckName
			// 
			this.textEdit_DiagCheckName.EditValue = "";
			this.textEdit_DiagCheckName.Location = new System.Drawing.Point(136, 56);
			this.textEdit_DiagCheckName.Name = "textEdit_DiagCheckName";
			// 
			// textEdit_DiagCheckName.Properties
			// 
			this.textEdit_DiagCheckName.Properties.Enabled = false;
			this.textEdit_DiagCheckName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckName.TabIndex = 49;
			// 
			// textEdit_DiagCheckBindingID
			// 
			this.textEdit_DiagCheckBindingID.EditValue = "";
			this.textEdit_DiagCheckBindingID.Location = new System.Drawing.Point(200, 64);
			this.textEdit_DiagCheckBindingID.Name = "textEdit_DiagCheckBindingID";
			// 
			// textEdit_DiagCheckBindingID.Properties
			// 
			this.textEdit_DiagCheckBindingID.Properties.AutoHeight = false;
			this.textEdit_DiagCheckBindingID.Properties.Enabled = false;
			this.textEdit_DiagCheckBindingID.Size = new System.Drawing.Size(16, 8);
			this.textEdit_DiagCheckBindingID.TabIndex = 48;
			// 
			// notePanel_DiagCheckName
			// 
			this.notePanel_DiagCheckName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckName.Location = new System.Drawing.Point(40, 56);
			this.notePanel_DiagCheckName.MaxRows = 5;
			this.notePanel_DiagCheckName.Name = "notePanel_DiagCheckName";
			this.notePanel_DiagCheckName.ParentAutoHeight = true;
			this.notePanel_DiagCheckName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckName.TabIndex = 47;
			this.notePanel_DiagCheckName.TabStop = false;
			this.notePanel_DiagCheckName.Text = "幼儿姓名:";
			// 
			// groupControl_HInputDiagResult
			// 
			this.groupControl_HInputDiagResult.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HInputDiagResult.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultX);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHOPer);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeightWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultUnderWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel8);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel9);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel10);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultStunting);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWasting);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel1);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultHeight);
			this.groupControl_HInputDiagResult.Controls.Add(this.notePanel_DiagResultAge);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultWHO);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultNut);
			this.groupControl_HInputDiagResult.Controls.Add(this.textEdit_DiagResultAge);
			this.groupControl_HInputDiagResult.Dock = System.Windows.Forms.DockStyle.Right;
			this.groupControl_HInputDiagResult.Location = new System.Drawing.Point(231, 41);
			this.groupControl_HInputDiagResult.Name = "groupControl_HInputDiagResult";
			this.groupControl_HInputDiagResult.Size = new System.Drawing.Size(320, 388);
			this.groupControl_HInputDiagResult.TabIndex = 46;
			this.groupControl_HInputDiagResult.Text = "诊断结果";
			// 
			// textEdit_DiagResultX
			// 
			this.textEdit_DiagResultX.EditValue = "";
			this.textEdit_DiagResultX.Location = new System.Drawing.Point(248, 224);
			this.textEdit_DiagResultX.Name = "textEdit_DiagResultX";
			// 
			// textEdit_DiagResultX.Properties
			// 
			this.textEdit_DiagResultX.Properties.Enabled = false;
			this.textEdit_DiagResultX.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultX.TabIndex = 76;
			this.textEdit_DiagResultX.Visible = false;
			// 
			// textEdit_DiagResultWHOPer
			// 
			this.textEdit_DiagResultWHOPer.EditValue = "";
			this.textEdit_DiagResultWHOPer.Location = new System.Drawing.Point(248, 184);
			this.textEdit_DiagResultWHOPer.Name = "textEdit_DiagResultWHOPer";
			// 
			// textEdit_DiagResultWHOPer.Properties
			// 
			this.textEdit_DiagResultWHOPer.Properties.Enabled = false;
			this.textEdit_DiagResultWHOPer.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHOPer.TabIndex = 75;
			this.textEdit_DiagResultWHOPer.Visible = false;
			// 
			// textEdit_DiagResultHeightWeight
			// 
			this.textEdit_DiagResultHeightWeight.EditValue = "";
			this.textEdit_DiagResultHeightWeight.Location = new System.Drawing.Point(248, 144);
			this.textEdit_DiagResultHeightWeight.Name = "textEdit_DiagResultHeightWeight";
			// 
			// textEdit_DiagResultHeightWeight.Properties
			// 
			this.textEdit_DiagResultHeightWeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeightWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeightWeight.TabIndex = 74;
			this.textEdit_DiagResultHeightWeight.Visible = false;
			// 
			// textEdit_DiagResultUnderWeight
			// 
			this.textEdit_DiagResultUnderWeight.EditValue = "";
			this.textEdit_DiagResultUnderWeight.Location = new System.Drawing.Point(152, 264);
			this.textEdit_DiagResultUnderWeight.Name = "textEdit_DiagResultUnderWeight";
			// 
			// textEdit_DiagResultUnderWeight.Properties
			// 
			this.textEdit_DiagResultUnderWeight.Properties.Enabled = false;
			this.textEdit_DiagResultUnderWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultUnderWeight.TabIndex = 70;
			// 
			// notePanel8
			// 
			this.notePanel8.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel8.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel8.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel8.ForeColor = System.Drawing.Color.Black;
			this.notePanel8.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel8.Location = new System.Drawing.Point(40, 264);
			this.notePanel8.MaxRows = 5;
			this.notePanel8.Name = "notePanel8";
			this.notePanel8.ParentAutoHeight = true;
			this.notePanel8.Size = new System.Drawing.Size(96, 22);
			this.notePanel8.TabIndex = 68;
			this.notePanel8.TabStop = false;
			this.notePanel8.Text = "  体重低下:";
			// 
			// notePanel9
			// 
			this.notePanel9.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel9.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel9.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel9.ForeColor = System.Drawing.Color.Black;
			this.notePanel9.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel9.Location = new System.Drawing.Point(40, 344);
			this.notePanel9.MaxRows = 5;
			this.notePanel9.Name = "notePanel9";
			this.notePanel9.ParentAutoHeight = true;
			this.notePanel9.Size = new System.Drawing.Size(96, 22);
			this.notePanel9.TabIndex = 71;
			this.notePanel9.TabStop = false;
			this.notePanel9.Text = "  消瘦情况:";
			// 
			// notePanel10
			// 
			this.notePanel10.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel10.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel10.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel10.ForeColor = System.Drawing.Color.Black;
			this.notePanel10.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel10.Location = new System.Drawing.Point(40, 304);
			this.notePanel10.MaxRows = 5;
			this.notePanel10.Name = "notePanel10";
			this.notePanel10.ParentAutoHeight = true;
			this.notePanel10.Size = new System.Drawing.Size(96, 22);
			this.notePanel10.TabIndex = 69;
			this.notePanel10.TabStop = false;
			this.notePanel10.Text = "   生长迟缓:";
			// 
			// textEdit_DiagResultStunting
			// 
			this.textEdit_DiagResultStunting.EditValue = "";
			this.textEdit_DiagResultStunting.Location = new System.Drawing.Point(152, 304);
			this.textEdit_DiagResultStunting.Name = "textEdit_DiagResultStunting";
			// 
			// textEdit_DiagResultStunting.Properties
			// 
			this.textEdit_DiagResultStunting.Properties.Enabled = false;
			this.textEdit_DiagResultStunting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultStunting.TabIndex = 72;
			// 
			// textEdit_DiagResultWasting
			// 
			this.textEdit_DiagResultWasting.EditValue = "";
			this.textEdit_DiagResultWasting.Location = new System.Drawing.Point(152, 344);
			this.textEdit_DiagResultWasting.Name = "textEdit_DiagResultWasting";
			// 
			// textEdit_DiagResultWasting.Properties
			// 
			this.textEdit_DiagResultWasting.Properties.Enabled = false;
			this.textEdit_DiagResultWasting.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWasting.TabIndex = 73;
			// 
			// notePanel1
			// 
			this.notePanel1.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel1.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel1.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel1.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel1.Location = new System.Drawing.Point(3, 18);
			this.notePanel1.MaxRows = 5;
			this.notePanel1.Name = "notePanel1";
			this.notePanel1.ParentAutoHeight = true;
			this.notePanel1.Size = new System.Drawing.Size(314, 23);
			this.notePanel1.TabIndex = 67;
			this.notePanel1.TabStop = false;
			this.notePanel1.Text = "儿童体格发育评价标准";
			// 
			// textEdit_DiagResultHeight
			// 
			this.textEdit_DiagResultHeight.EditValue = "";
			this.textEdit_DiagResultHeight.Location = new System.Drawing.Point(152, 104);
			this.textEdit_DiagResultHeight.Name = "textEdit_DiagResultHeight";
			// 
			// textEdit_DiagResultHeight.Properties
			// 
			this.textEdit_DiagResultHeight.Properties.Enabled = false;
			this.textEdit_DiagResultHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultHeight.TabIndex = 62;
			// 
			// textEdit_DiagResultWeight
			// 
			this.textEdit_DiagResultWeight.EditValue = "";
			this.textEdit_DiagResultWeight.Location = new System.Drawing.Point(152, 144);
			this.textEdit_DiagResultWeight.Name = "textEdit_DiagResultWeight";
			// 
			// textEdit_DiagResultWeight.Properties
			// 
			this.textEdit_DiagResultWeight.Properties.Enabled = false;
			this.textEdit_DiagResultWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWeight.TabIndex = 63;
			// 
			// notePanel_DiagResultWeight
			// 
			this.notePanel_DiagResultWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWeight.Location = new System.Drawing.Point(40, 144);
			this.notePanel_DiagResultWeight.MaxRows = 5;
			this.notePanel_DiagResultWeight.Name = "notePanel_DiagResultWeight";
			this.notePanel_DiagResultWeight.ParentAutoHeight = true;
			this.notePanel_DiagResultWeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWeight.TabIndex = 60;
			this.notePanel_DiagResultWeight.TabStop = false;
			this.notePanel_DiagResultWeight.Text = "  体重评价:";
			// 
			// notePanel_DiagResultNut
			// 
			this.notePanel_DiagResultNut.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultNut.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultNut.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultNut.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultNut.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultNut.Location = new System.Drawing.Point(40, 224);
			this.notePanel_DiagResultNut.MaxRows = 5;
			this.notePanel_DiagResultNut.Name = "notePanel_DiagResultNut";
			this.notePanel_DiagResultNut.ParentAutoHeight = true;
			this.notePanel_DiagResultNut.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultNut.TabIndex = 64;
			this.notePanel_DiagResultNut.TabStop = false;
			this.notePanel_DiagResultNut.Text = "  营养诊断:";
			// 
			// notePanel_DiagResultWHO
			// 
			this.notePanel_DiagResultWHO.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultWHO.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultWHO.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultWHO.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultWHO.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultWHO.Location = new System.Drawing.Point(40, 184);
			this.notePanel_DiagResultWHO.MaxRows = 5;
			this.notePanel_DiagResultWHO.Name = "notePanel_DiagResultWHO";
			this.notePanel_DiagResultWHO.ParentAutoHeight = true;
			this.notePanel_DiagResultWHO.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultWHO.TabIndex = 61;
			this.notePanel_DiagResultWHO.TabStop = false;
			this.notePanel_DiagResultWHO.Text = "肥胖儿诊断:";
			// 
			// notePanel_DiagResultHeight
			// 
			this.notePanel_DiagResultHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultHeight.Location = new System.Drawing.Point(40, 104);
			this.notePanel_DiagResultHeight.MaxRows = 5;
			this.notePanel_DiagResultHeight.Name = "notePanel_DiagResultHeight";
			this.notePanel_DiagResultHeight.ParentAutoHeight = true;
			this.notePanel_DiagResultHeight.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultHeight.TabIndex = 59;
			this.notePanel_DiagResultHeight.TabStop = false;
			this.notePanel_DiagResultHeight.Text = "  身高评价:";
			// 
			// notePanel_DiagResultAge
			// 
			this.notePanel_DiagResultAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagResultAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagResultAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagResultAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagResultAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagResultAge.Location = new System.Drawing.Point(40, 64);
			this.notePanel_DiagResultAge.MaxRows = 5;
			this.notePanel_DiagResultAge.Name = "notePanel_DiagResultAge";
			this.notePanel_DiagResultAge.ParentAutoHeight = true;
			this.notePanel_DiagResultAge.Size = new System.Drawing.Size(96, 22);
			this.notePanel_DiagResultAge.TabIndex = 57;
			this.notePanel_DiagResultAge.TabStop = false;
			this.notePanel_DiagResultAge.Text = "  幼儿年龄:";
			// 
			// textEdit_DiagResultWHO
			// 
			this.textEdit_DiagResultWHO.EditValue = "";
			this.textEdit_DiagResultWHO.Location = new System.Drawing.Point(152, 184);
			this.textEdit_DiagResultWHO.Name = "textEdit_DiagResultWHO";
			// 
			// textEdit_DiagResultWHO.Properties
			// 
			this.textEdit_DiagResultWHO.Properties.Enabled = false;
			this.textEdit_DiagResultWHO.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultWHO.TabIndex = 65;
			// 
			// textEdit_DiagResultNut
			// 
			this.textEdit_DiagResultNut.EditValue = "";
			this.textEdit_DiagResultNut.Location = new System.Drawing.Point(152, 224);
			this.textEdit_DiagResultNut.Name = "textEdit_DiagResultNut";
			// 
			// textEdit_DiagResultNut.Properties
			// 
			this.textEdit_DiagResultNut.Properties.Enabled = false;
			this.textEdit_DiagResultNut.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultNut.TabIndex = 66;
			// 
			// textEdit_DiagResultAge
			// 
			this.textEdit_DiagResultAge.EditValue = "";
			this.textEdit_DiagResultAge.Location = new System.Drawing.Point(152, 64);
			this.textEdit_DiagResultAge.Name = "textEdit_DiagResultAge";
			// 
			// textEdit_DiagResultAge.Properties
			// 
			this.textEdit_DiagResultAge.Properties.Enabled = false;
			this.textEdit_DiagResultAge.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagResultAge.TabIndex = 58;
			// 
			// memoEdit_DiagRemark
			// 
			this.memoEdit_DiagRemark.EditValue = "";
			this.memoEdit_DiagRemark.Location = new System.Drawing.Point(40, 344);
			this.memoEdit_DiagRemark.Name = "memoEdit_DiagRemark";
			this.memoEdit_DiagRemark.Size = new System.Drawing.Size(184, 80);
			this.memoEdit_DiagRemark.TabIndex = 45;
			// 
			// notePanel_DiagRemark
			// 
			this.notePanel_DiagRemark.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagRemark.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagRemark.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagRemark.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagRemark.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagRemark.Location = new System.Drawing.Point(40, 312);
			this.notePanel_DiagRemark.MaxRows = 5;
			this.notePanel_DiagRemark.Name = "notePanel_DiagRemark";
			this.notePanel_DiagRemark.ParentAutoHeight = true;
			this.notePanel_DiagRemark.Size = new System.Drawing.Size(184, 22);
			this.notePanel_DiagRemark.TabIndex = 44;
			this.notePanel_DiagRemark.TabStop = false;
			this.notePanel_DiagRemark.Text = "             测评备注:";
			// 
			// textEdit_DiagWeight
			// 
			this.textEdit_DiagWeight.EditValue = "";
			this.textEdit_DiagWeight.Location = new System.Drawing.Point(136, 280);
			this.textEdit_DiagWeight.Name = "textEdit_DiagWeight";
			this.textEdit_DiagWeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagWeight.TabIndex = 43;
			// 
			// textEdit_DiagHeight
			// 
			this.textEdit_DiagHeight.EditValue = "";
			this.textEdit_DiagHeight.Location = new System.Drawing.Point(136, 248);
			this.textEdit_DiagHeight.Name = "textEdit_DiagHeight";
			this.textEdit_DiagHeight.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagHeight.TabIndex = 42;
			// 
			// notePanel_HInputDaigInfo
			// 
			this.notePanel_HInputDaigInfo.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_HInputDaigInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_HInputDaigInfo.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_HInputDaigInfo.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputDaigInfo.Location = new System.Drawing.Point(3, 18);
			this.notePanel_HInputDaigInfo.MaxRows = 5;
			this.notePanel_HInputDaigInfo.Name = "notePanel_HInputDaigInfo";
			this.notePanel_HInputDaigInfo.ParentAutoHeight = true;
			this.notePanel_HInputDaigInfo.Size = new System.Drawing.Size(548, 23);
			this.notePanel_HInputDaigInfo.TabIndex = 41;
			this.notePanel_HInputDaigInfo.TabStop = false;
			this.notePanel_HInputDaigInfo.Text = "全国标准没有市郊之分(最后3项评测属全国标准,上海地区不会对该几项做评测)";
			// 
			// notePanel_DiagWeight
			// 
			this.notePanel_DiagWeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagWeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagWeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagWeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagWeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagWeight.Location = new System.Drawing.Point(40, 280);
			this.notePanel_DiagWeight.MaxRows = 5;
			this.notePanel_DiagWeight.Name = "notePanel_DiagWeight";
			this.notePanel_DiagWeight.ParentAutoHeight = true;
			this.notePanel_DiagWeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagWeight.TabIndex = 40;
			this.notePanel_DiagWeight.TabStop = false;
			this.notePanel_DiagWeight.Text = "幼儿体重:";
			// 
			// notePanel_DiagHeight
			// 
			this.notePanel_DiagHeight.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagHeight.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagHeight.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagHeight.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagHeight.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagHeight.Location = new System.Drawing.Point(40, 248);
			this.notePanel_DiagHeight.MaxRows = 5;
			this.notePanel_DiagHeight.Name = "notePanel_DiagHeight";
			this.notePanel_DiagHeight.ParentAutoHeight = true;
			this.notePanel_DiagHeight.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagHeight.TabIndex = 39;
			this.notePanel_DiagHeight.TabStop = false;
			this.notePanel_DiagHeight.Text = "幼儿身高:";
			// 
			// dateEdit_DiagCheckDate
			// 
			this.dateEdit_DiagCheckDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_DiagCheckDate.Location = new System.Drawing.Point(136, 216);
			this.dateEdit_DiagCheckDate.Name = "dateEdit_DiagCheckDate";
			// 
			// dateEdit_DiagCheckDate.Properties
			// 
			this.dateEdit_DiagCheckDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.dateEdit_DiagCheckDate.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.dateEdit_DiagCheckDate.Properties.Mask.EditMask = "d";
			this.dateEdit_DiagCheckDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_DiagCheckDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_DiagCheckDate.TabIndex = 38;
			// 
			// notePanel_DiagCheckDate
			// 
			this.notePanel_DiagCheckDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_DiagCheckDate.MaxRows = 5;
			this.notePanel_DiagCheckDate.Name = "notePanel_DiagCheckDate";
			this.notePanel_DiagCheckDate.ParentAutoHeight = true;
			this.notePanel_DiagCheckDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckDate.TabIndex = 36;
			this.notePanel_DiagCheckDate.TabStop = false;
			this.notePanel_DiagCheckDate.Text = "体检日期:";
			// 
			// notePanel_HInputBirthday
			// 
			this.notePanel_HInputBirthday.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HInputBirthday.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HInputBirthday.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HInputBirthday.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HInputBirthday.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HInputBirthday.Location = new System.Drawing.Point(40, 120);
			this.notePanel_HInputBirthday.MaxRows = 5;
			this.notePanel_HInputBirthday.Name = "notePanel_HInputBirthday";
			this.notePanel_HInputBirthday.ParentAutoHeight = true;
			this.notePanel_HInputBirthday.Size = new System.Drawing.Size(80, 22);
			this.notePanel_HInputBirthday.TabIndex = 46;
			this.notePanel_HInputBirthday.TabStop = false;
			this.notePanel_HInputBirthday.Text = "幼儿生日:";
			// 
			// textEdit_HInputBirthday
			// 
			this.textEdit_HInputBirthday.EditValue = "";
			this.textEdit_HInputBirthday.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HInputBirthday.Name = "textEdit_HInputBirthday";
			// 
			// textEdit_HInputBirthday.Properties
			// 
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatString = "yyyy-MM-dd";
			this.textEdit_HInputBirthday.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.textEdit_HInputBirthday.Properties.Enabled = false;
			this.textEdit_HInputBirthday.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.textEdit_HInputBirthday.Properties.ReadOnly = true;
			this.textEdit_HInputBirthday.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HInputBirthday.TabIndex = 47;
			// 
			// notePanel_DiagCheckGender
			// 
			this.notePanel_DiagCheckGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_DiagCheckGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_DiagCheckGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_DiagCheckGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_DiagCheckGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_DiagCheckGender.Location = new System.Drawing.Point(40, 88);
			this.notePanel_DiagCheckGender.MaxRows = 5;
			this.notePanel_DiagCheckGender.Name = "notePanel_DiagCheckGender";
			this.notePanel_DiagCheckGender.ParentAutoHeight = true;
			this.notePanel_DiagCheckGender.Size = new System.Drawing.Size(80, 22);
			this.notePanel_DiagCheckGender.TabIndex = 50;
			this.notePanel_DiagCheckGender.TabStop = false;
			this.notePanel_DiagCheckGender.Text = "幼儿性别:";
			// 
			// textEdit_DiagCheckGender
			// 
			this.textEdit_DiagCheckGender.EditValue = "";
			this.textEdit_DiagCheckGender.Location = new System.Drawing.Point(136, 88);
			this.textEdit_DiagCheckGender.Name = "textEdit_DiagCheckGender";
			// 
			// textEdit_DiagCheckGender.Properties
			// 
			this.textEdit_DiagCheckGender.Properties.Enabled = false;
			this.textEdit_DiagCheckGender.Size = new System.Drawing.Size(88, 23);
			this.textEdit_DiagCheckGender.TabIndex = 51;
			// 
			// panelControl5
			// 
			this.panelControl5.Controls.Add(this.simpleButton_HInputModify);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDelete);
			this.panelControl5.Controls.Add(this.simpleButton_HInputSave);
			this.panelControl5.Controls.Add(this.simpleButton_HInputDiag);
			this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl5.Location = new System.Drawing.Point(0, 0);
			this.panelControl5.Name = "panelControl5";
			this.panelControl5.Size = new System.Drawing.Size(554, 48);
			this.panelControl5.TabIndex = 0;
			this.panelControl5.Text = "panelControl5";
			// 
			// simpleButton_HInputModify
			// 
			this.simpleButton_HInputModify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputModify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputModify.Appearance.Options.UseFont = true;
			this.simpleButton_HInputModify.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputModify.Enabled = false;
			this.simpleButton_HInputModify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputModify.Image")));
			this.simpleButton_HInputModify.Location = new System.Drawing.Point(136, 8);
			this.simpleButton_HInputModify.Name = "simpleButton_HInputModify";
			this.simpleButton_HInputModify.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputModify.TabIndex = 12;
			this.simpleButton_HInputModify.Tag = 4;
			this.simpleButton_HInputModify.Text = "修  改";
			this.simpleButton_HInputModify.Click += new System.EventHandler(this.simpleButton_HInputModify_Click);
			// 
			// simpleButton_HInputDelete
			// 
			this.simpleButton_HInputDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDelete.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDelete.Image")));
			this.simpleButton_HInputDelete.Location = new System.Drawing.Point(240, 8);
			this.simpleButton_HInputDelete.Name = "simpleButton_HInputDelete";
			this.simpleButton_HInputDelete.Size = new System.Drawing.Size(92, 26);
			this.simpleButton_HInputDelete.TabIndex = 11;
			this.simpleButton_HInputDelete.Tag = 4;
			this.simpleButton_HInputDelete.Text = "删  除";
			this.simpleButton_HInputDelete.Click += new System.EventHandler(this.simpleButton_HInputDelete_Click);
			// 
			// simpleButton_HInputSave
			// 
			this.simpleButton_HInputSave.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputSave.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputSave.Appearance.Options.UseFont = true;
			this.simpleButton_HInputSave.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputSave.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputSave.Image")));
			this.simpleButton_HInputSave.Location = new System.Drawing.Point(240, 24);
			this.simpleButton_HInputSave.Name = "simpleButton_HInputSave";
			this.simpleButton_HInputSave.Size = new System.Drawing.Size(8, 8);
			this.simpleButton_HInputSave.TabIndex = 9;
			this.simpleButton_HInputSave.Tag = 4;
			this.simpleButton_HInputSave.Text = "保  存";
			this.simpleButton_HInputSave.Click += new System.EventHandler(this.simpleButton_HInputSave_Click);
			// 
			// simpleButton_HInputDiag
			// 
			this.simpleButton_HInputDiag.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HInputDiag.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HInputDiag.Appearance.Options.UseFont = true;
			this.simpleButton_HInputDiag.Appearance.Options.UseForeColor = true;
			this.simpleButton_HInputDiag.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HInputDiag.Image")));
			this.simpleButton_HInputDiag.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_HInputDiag.Name = "simpleButton_HInputDiag";
			this.simpleButton_HInputDiag.Size = new System.Drawing.Size(112, 26);
			this.simpleButton_HInputDiag.TabIndex = 8;
			this.simpleButton_HInputDiag.Tag = 4;
			this.simpleButton_HInputDiag.Text = "诊断并保存";
			this.simpleButton_HInputDiag.Click += new System.EventHandler(this.simpleButton_HInputDiag_Click);
			// 
			// xtraTabPage6
			// 
			this.xtraTabPage6.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage6.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage6.Controls.Add(this.splitContainerControl7);
			this.xtraTabPage6.Name = "xtraTabPage6";
			this.xtraTabPage6.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage6.Text = "幼儿评测结果浏览及打印";
			// 
			// splitContainerControl7
			// 
			this.splitContainerControl7.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl7.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl7.Name = "splitContainerControl7";
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputPrintType);
			this.splitContainerControl7.Panel1.Controls.Add(this.groupControl_HOutputSer);
			this.splitContainerControl7.Panel1.Text = "splitContainerControl7_Panel1";
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputNchsGrid);
			this.splitContainerControl7.Panel2.Controls.Add(this.gridControl_HOutputGridShow);
			this.splitContainerControl7.Panel2.Controls.Add(this.panelControl6);
			this.splitContainerControl7.Panel2.Text = "splitContainerControl7_Panel2";
			this.splitContainerControl7.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl7.SplitterPosition = 250;
			this.splitContainerControl7.TabIndex = 0;
			this.splitContainerControl7.Text = "splitContainerControl7";
			// 
			// groupControl_HOutputPrintType
			// 
			this.groupControl_HOutputPrintType.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputPrintType.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType4th);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType3rd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType2nd);
			this.groupControl_HOutputPrintType.Controls.Add(this.checkEdit_HOutputPrintType1st);
			this.groupControl_HOutputPrintType.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_HOutputPrintType.Location = new System.Drawing.Point(0, 376);
			this.groupControl_HOutputPrintType.Name = "groupControl_HOutputPrintType";
			this.groupControl_HOutputPrintType.Size = new System.Drawing.Size(244, 133);
			this.groupControl_HOutputPrintType.TabIndex = 1;
			this.groupControl_HOutputPrintType.Text = "报表格式及选项目";
			// 
			// checkEdit_HOutputPrintType4th
			// 
			this.checkEdit_HOutputPrintType4th.Location = new System.Drawing.Point(8, 96);
			this.checkEdit_HOutputPrintType4th.Name = "checkEdit_HOutputPrintType4th";
			// 
			// checkEdit_HOutputPrintType4th.Properties
			// 
			this.checkEdit_HOutputPrintType4th.Properties.Caption = "是否生成个人体格评价详细表(限全国)";
			this.checkEdit_HOutputPrintType4th.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType4th.TabIndex = 59;
			// 
			// checkEdit_HOutputPrintType3rd
			// 
			this.checkEdit_HOutputPrintType3rd.Location = new System.Drawing.Point(8, 72);
			this.checkEdit_HOutputPrintType3rd.Name = "checkEdit_HOutputPrintType3rd";
			// 
			// checkEdit_HOutputPrintType3rd.Properties
			// 
			this.checkEdit_HOutputPrintType3rd.Properties.Caption = "是否生成身高体重超均值统计(限上海)";
			this.checkEdit_HOutputPrintType3rd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType3rd.TabIndex = 57;
			// 
			// checkEdit_HOutputPrintType2nd
			// 
			this.checkEdit_HOutputPrintType2nd.Location = new System.Drawing.Point(8, 48);
			this.checkEdit_HOutputPrintType2nd.Name = "checkEdit_HOutputPrintType2nd";
			// 
			// checkEdit_HOutputPrintType2nd.Properties
			// 
			this.checkEdit_HOutputPrintType2nd.Properties.Caption = "是否生成身高体重均值统计";
			this.checkEdit_HOutputPrintType2nd.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType2nd.TabIndex = 56;
			// 
			// checkEdit_HOutputPrintType1st
			// 
			this.checkEdit_HOutputPrintType1st.Location = new System.Drawing.Point(8, 24);
			this.checkEdit_HOutputPrintType1st.Name = "checkEdit_HOutputPrintType1st";
			// 
			// checkEdit_HOutputPrintType1st.Properties
			// 
			this.checkEdit_HOutputPrintType1st.Properties.Caption = "是否按幼儿所在班级划分";
			this.checkEdit_HOutputPrintType1st.Size = new System.Drawing.Size(224, 19);
			this.checkEdit_HOutputPrintType1st.TabIndex = 55;
			// 
			// groupControl_HOutputSer
			// 
			this.groupControl_HOutputSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_HOutputSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputRegion);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel11);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.dateEdit_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputEndDate);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputBegDate);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGender);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputResult);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputType);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputAge);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.textEdit_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputClass);
			this.groupControl_HOutputSer.Controls.Add(this.comboBoxEdit_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGrade);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputNumber);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputName);
			this.groupControl_HOutputSer.Controls.Add(this.notePanel_HOutputGender);
			this.groupControl_HOutputSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_HOutputSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_HOutputSer.Name = "groupControl_HOutputSer";
			this.groupControl_HOutputSer.Size = new System.Drawing.Size(244, 376);
			this.groupControl_HOutputSer.TabIndex = 0;
			this.groupControl_HOutputSer.Text = "信息查询";
			// 
			// comboBoxEdit_HOutputRegion
			// 
			this.comboBoxEdit_HOutputRegion.EditValue = "上海标准";
			this.comboBoxEdit_HOutputRegion.Location = new System.Drawing.Point(136, 184);
			this.comboBoxEdit_HOutputRegion.Name = "comboBoxEdit_HOutputRegion";
			// 
			// comboBoxEdit_HOutputRegion.Properties
			// 
			this.comboBoxEdit_HOutputRegion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputRegion.Properties.Items.AddRange(new object[] {
																					   "上海标准",
																					   "全国标准"});
			this.comboBoxEdit_HOutputRegion.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputRegion.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputRegion.TabIndex = 61;
			this.comboBoxEdit_HOutputRegion.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputRegion_SelectedIndexChanged);
			// 
			// notePanel11
			// 
			this.notePanel11.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel11.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel11.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel11.ForeColor = System.Drawing.Color.Black;
			this.notePanel11.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel11.Location = new System.Drawing.Point(24, 184);
			this.notePanel11.MaxRows = 5;
			this.notePanel11.Name = "notePanel11";
			this.notePanel11.ParentAutoHeight = true;
			this.notePanel11.Size = new System.Drawing.Size(83, 22);
			this.notePanel11.TabIndex = 60;
			this.notePanel11.TabStop = false;
			this.notePanel11.Text = "地区标准:";
			// 
			// dateEdit_HOutputEndDate
			// 
			this.dateEdit_HOutputEndDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputEndDate.Location = new System.Drawing.Point(136, 344);
			this.dateEdit_HOutputEndDate.Name = "dateEdit_HOutputEndDate";
			// 
			// dateEdit_HOutputEndDate.Properties
			// 
			this.dateEdit_HOutputEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputEndDate.TabIndex = 59;
			// 
			// dateEdit_HOutputBegDate
			// 
			this.dateEdit_HOutputBegDate.EditValue = new System.DateTime(2005, 12, 1, 0, 0, 0, 0);
			this.dateEdit_HOutputBegDate.Location = new System.Drawing.Point(136, 312);
			this.dateEdit_HOutputBegDate.Name = "dateEdit_HOutputBegDate";
			// 
			// dateEdit_HOutputBegDate.Properties
			// 
			this.dateEdit_HOutputBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_HOutputBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_HOutputBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_HOutputBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_HOutputBegDate.TabIndex = 58;
			// 
			// notePanel_HOutputEndDate
			// 
			this.notePanel_HOutputEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputEndDate.Location = new System.Drawing.Point(24, 344);
			this.notePanel_HOutputEndDate.MaxRows = 5;
			this.notePanel_HOutputEndDate.Name = "notePanel_HOutputEndDate";
			this.notePanel_HOutputEndDate.ParentAutoHeight = true;
			this.notePanel_HOutputEndDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputEndDate.TabIndex = 57;
			this.notePanel_HOutputEndDate.TabStop = false;
			this.notePanel_HOutputEndDate.Text = "截止时间:";
			// 
			// notePanel_HOutputBegDate
			// 
			this.notePanel_HOutputBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputBegDate.Location = new System.Drawing.Point(24, 312);
			this.notePanel_HOutputBegDate.MaxRows = 5;
			this.notePanel_HOutputBegDate.Name = "notePanel_HOutputBegDate";
			this.notePanel_HOutputBegDate.ParentAutoHeight = true;
			this.notePanel_HOutputBegDate.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputBegDate.TabIndex = 56;
			this.notePanel_HOutputBegDate.TabStop = false;
			this.notePanel_HOutputBegDate.Text = "起始时间:";
			// 
			// comboBoxEdit_HOutputGender
			// 
			this.comboBoxEdit_HOutputGender.EditValue = "全部";
			this.comboBoxEdit_HOutputGender.Location = new System.Drawing.Point(136, 152);
			this.comboBoxEdit_HOutputGender.Name = "comboBoxEdit_HOutputGender";
			// 
			// comboBoxEdit_HOutputGender.Properties
			// 
			this.comboBoxEdit_HOutputGender.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGender.Properties.Items.AddRange(new object[] {
																					   "全部",
																					   "男",
																					   "女"});
			this.comboBoxEdit_HOutputGender.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGender.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGender.TabIndex = 55;
			this.comboBoxEdit_HOutputGender.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGender_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputResult
			// 
			this.comboBoxEdit_HOutputResult.EditValue = "全部";
			this.comboBoxEdit_HOutputResult.Location = new System.Drawing.Point(136, 280);
			this.comboBoxEdit_HOutputResult.Name = "comboBoxEdit_HOutputResult";
			// 
			// comboBoxEdit_HOutputResult.Properties
			// 
			this.comboBoxEdit_HOutputResult.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputResult.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputResult.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputResult.TabIndex = 54;
			this.comboBoxEdit_HOutputResult.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputResult_SelectedIndexChanged);
			// 
			// notePanel_HOutputResult
			// 
			this.notePanel_HOutputResult.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputResult.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputResult.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputResult.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputResult.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputResult.Location = new System.Drawing.Point(24, 280);
			this.notePanel_HOutputResult.MaxRows = 5;
			this.notePanel_HOutputResult.Name = "notePanel_HOutputResult";
			this.notePanel_HOutputResult.ParentAutoHeight = true;
			this.notePanel_HOutputResult.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputResult.TabIndex = 53;
			this.notePanel_HOutputResult.TabStop = false;
			this.notePanel_HOutputResult.Text = "诊断结果:";
			// 
			// comboBoxEdit_HOutputType
			// 
			this.comboBoxEdit_HOutputType.EditValue = "全部";
			this.comboBoxEdit_HOutputType.Location = new System.Drawing.Point(136, 248);
			this.comboBoxEdit_HOutputType.Name = "comboBoxEdit_HOutputType";
			// 
			// comboBoxEdit_HOutputType.Properties
			// 
			this.comboBoxEdit_HOutputType.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputType.Properties.Items.AddRange(new object[] {
																					 "全部",
																					 "身高评价",
																					 "体重评价",
																					 "肥胖评价",
																					 "营养评价"});
			this.comboBoxEdit_HOutputType.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputType.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputType.TabIndex = 52;
			this.comboBoxEdit_HOutputType.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputType_SelectedIndexChanged);
			// 
			// comboBoxEdit_HOutputAge
			// 
			this.comboBoxEdit_HOutputAge.EditValue = "全部";
			this.comboBoxEdit_HOutputAge.Location = new System.Drawing.Point(136, 216);
			this.comboBoxEdit_HOutputAge.Name = "comboBoxEdit_HOutputAge";
			// 
			// comboBoxEdit_HOutputAge.Properties
			// 
			this.comboBoxEdit_HOutputAge.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputAge.Properties.Items.AddRange(new object[] {
																					"全部",
																					"0-1岁组",
																					"1岁组",
																					"2岁组",
																					"3岁组",
																					"4岁组",
																					"5岁组",
																					"6-7岁组"});
			this.comboBoxEdit_HOutputAge.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputAge.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputAge.TabIndex = 51;
			this.comboBoxEdit_HOutputAge.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputAge_SelectedIndexChanged);
			// 
			// notePanel_HOutputType
			// 
			this.notePanel_HOutputType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputType.Location = new System.Drawing.Point(24, 248);
			this.notePanel_HOutputType.MaxRows = 5;
			this.notePanel_HOutputType.Name = "notePanel_HOutputType";
			this.notePanel_HOutputType.ParentAutoHeight = true;
			this.notePanel_HOutputType.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputType.TabIndex = 50;
			this.notePanel_HOutputType.TabStop = false;
			this.notePanel_HOutputType.Text = "诊断项目:";
			// 
			// notePanel_HOutputAge
			// 
			this.notePanel_HOutputAge.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputAge.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputAge.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputAge.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputAge.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputAge.Location = new System.Drawing.Point(24, 216);
			this.notePanel_HOutputAge.MaxRows = 5;
			this.notePanel_HOutputAge.Name = "notePanel_HOutputAge";
			this.notePanel_HOutputAge.ParentAutoHeight = true;
			this.notePanel_HOutputAge.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputAge.TabIndex = 49;
			this.notePanel_HOutputAge.TabStop = false;
			this.notePanel_HOutputAge.Text = "幼儿年龄:";
			// 
			// textEdit_HOutputNumber
			// 
			this.textEdit_HOutputNumber.EditValue = "";
			this.textEdit_HOutputNumber.Location = new System.Drawing.Point(136, 120);
			this.textEdit_HOutputNumber.Name = "textEdit_HOutputNumber";
			this.textEdit_HOutputNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputNumber.TabIndex = 48;
			this.textEdit_HOutputNumber.EditValueChanged += new System.EventHandler(this.textEdit_HOutputNumber_EditValueChanged);
			// 
			// textEdit_HOutputName
			// 
			this.textEdit_HOutputName.EditValue = "";
			this.textEdit_HOutputName.Location = new System.Drawing.Point(136, 88);
			this.textEdit_HOutputName.Name = "textEdit_HOutputName";
			this.textEdit_HOutputName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_HOutputName.TabIndex = 47;
			this.textEdit_HOutputName.EditValueChanged += new System.EventHandler(this.textEdit_HOutputName_EditValueChanged);
			// 
			// comboBoxEdit_HOutputClass
			// 
			this.comboBoxEdit_HOutputClass.EditValue = "全部";
			this.comboBoxEdit_HOutputClass.Location = new System.Drawing.Point(136, 56);
			this.comboBoxEdit_HOutputClass.Name = "comboBoxEdit_HOutputClass";
			// 
			// comboBoxEdit_HOutputClass.Properties
			// 
			this.comboBoxEdit_HOutputClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputClass.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputClass.TabIndex = 46;
			this.comboBoxEdit_HOutputClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputClass_SelectedIndexChanged);
			// 
			// notePanel_HOutputClass
			// 
			this.notePanel_HOutputClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputClass.Location = new System.Drawing.Point(24, 56);
			this.notePanel_HOutputClass.MaxRows = 5;
			this.notePanel_HOutputClass.Name = "notePanel_HOutputClass";
			this.notePanel_HOutputClass.ParentAutoHeight = true;
			this.notePanel_HOutputClass.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputClass.TabIndex = 45;
			this.notePanel_HOutputClass.TabStop = false;
			this.notePanel_HOutputClass.Text = "  班  级:";
			// 
			// comboBoxEdit_HOutputGrade
			// 
			this.comboBoxEdit_HOutputGrade.EditValue = "全部";
			this.comboBoxEdit_HOutputGrade.Location = new System.Drawing.Point(136, 24);
			this.comboBoxEdit_HOutputGrade.Name = "comboBoxEdit_HOutputGrade";
			// 
			// comboBoxEdit_HOutputGrade.Properties
			// 
			this.comboBoxEdit_HOutputGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_HOutputGrade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_HOutputGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_HOutputGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_HOutputGrade.TabIndex = 44;
			this.comboBoxEdit_HOutputGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_HOutputGrade_SelectedIndexChanged);
			// 
			// notePanel_HOutputGrade
			// 
			this.notePanel_HOutputGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGrade.Location = new System.Drawing.Point(24, 24);
			this.notePanel_HOutputGrade.MaxRows = 5;
			this.notePanel_HOutputGrade.Name = "notePanel_HOutputGrade";
			this.notePanel_HOutputGrade.ParentAutoHeight = true;
			this.notePanel_HOutputGrade.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGrade.TabIndex = 43;
			this.notePanel_HOutputGrade.TabStop = false;
			this.notePanel_HOutputGrade.Text = "  年  级:";
			// 
			// notePanel_HOutputNumber
			// 
			this.notePanel_HOutputNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputNumber.Location = new System.Drawing.Point(24, 120);
			this.notePanel_HOutputNumber.MaxRows = 5;
			this.notePanel_HOutputNumber.Name = "notePanel_HOutputNumber";
			this.notePanel_HOutputNumber.ParentAutoHeight = true;
			this.notePanel_HOutputNumber.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputNumber.TabIndex = 42;
			this.notePanel_HOutputNumber.TabStop = false;
			this.notePanel_HOutputNumber.Text = "  学  号:";
			// 
			// notePanel_HOutputName
			// 
			this.notePanel_HOutputName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputName.Location = new System.Drawing.Point(24, 88);
			this.notePanel_HOutputName.MaxRows = 5;
			this.notePanel_HOutputName.Name = "notePanel_HOutputName";
			this.notePanel_HOutputName.ParentAutoHeight = true;
			this.notePanel_HOutputName.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputName.TabIndex = 41;
			this.notePanel_HOutputName.TabStop = false;
			this.notePanel_HOutputName.Text = "  姓  名:";
			// 
			// notePanel_HOutputGender
			// 
			this.notePanel_HOutputGender.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_HOutputGender.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_HOutputGender.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_HOutputGender.ForeColor = System.Drawing.Color.Black;
			this.notePanel_HOutputGender.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_HOutputGender.Location = new System.Drawing.Point(24, 152);
			this.notePanel_HOutputGender.MaxRows = 5;
			this.notePanel_HOutputGender.Name = "notePanel_HOutputGender";
			this.notePanel_HOutputGender.ParentAutoHeight = true;
			this.notePanel_HOutputGender.Size = new System.Drawing.Size(83, 22);
			this.notePanel_HOutputGender.TabIndex = 42;
			this.notePanel_HOutputGender.TabStop = false;
			this.notePanel_HOutputGender.Text = "  性  别:";
			// 
			// gridControl_HOutputNchsGrid
			// 
			this.gridControl_HOutputNchsGrid.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputNchsGrid.EmbeddedNavigator
			// 
			this.gridControl_HOutputNchsGrid.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputNchsGrid.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputNchsGrid.MainView = this.advBandedGridView2;
			this.gridControl_HOutputNchsGrid.Name = "gridControl_HOutputNchsGrid";
			this.gridControl_HOutputNchsGrid.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputNchsGrid.TabIndex = 2;
			this.gridControl_HOutputNchsGrid.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView2});
			// 
			// advBandedGridView2
			// 
			this.advBandedGridView2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand5,
																										   this.gridBand6,
																										   this.gridBand7});
			this.advBandedGridView2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn1,
																													 this.bandedGridColumn16,
																													 this.bandedGridColumn17,
																													 this.bandedGridColumn18,
																													 this.bandedGridColumn19,
																													 this.bandedGridColumn20,
																													 this.bandedGridColumn21,
																													 this.bandedGridColumn22,
																													 this.bandedGridColumn23,
																													 this.bandedGridColumn24,
																													 this.bandedGridColumn25,
																													 this.bandedGridColumn26,
																													 this.bandedGridColumn27,
																													 this.bandedGridColumn28,
																													 this.bandedGridColumn29,
																													 this.bandedGridColumn30});
			this.advBandedGridView2.GridControl = this.gridControl_HOutputNchsGrid;
			this.advBandedGridView2.Name = "advBandedGridView2";
			this.advBandedGridView2.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView2.OptionsCustomization.AllowGroup = false;
			this.advBandedGridView2.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView2.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand5
			// 
			this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand5.Caption = "基本信息";
			this.gridBand5.Columns.Add(this.bandedGridColumn1);
			this.gridBand5.Columns.Add(this.bandedGridColumn16);
			this.gridBand5.MinWidth = 20;
			this.gridBand5.Name = "gridBand5";
			this.gridBand5.Width = 63;
			// 
			// bandedGridColumn1
			// 
			this.bandedGridColumn1.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn1.Caption = "姓名";
			this.bandedGridColumn1.FieldName = "info_stuName";
			this.bandedGridColumn1.Name = "bandedGridColumn1";
			this.bandedGridColumn1.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn1.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn1.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn1.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn1.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn1.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn1.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn1.Visible = true;
			this.bandedGridColumn1.Width = 63;
			// 
			// bandedGridColumn16
			// 
			this.bandedGridColumn16.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn16.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn16.Caption = "学号";
			this.bandedGridColumn16.FieldName = "nchsanaly_stunumber";
			this.bandedGridColumn16.Name = "bandedGridColumn16";
			this.bandedGridColumn16.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn16.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn16.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn16.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn16.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn16.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn16.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn16.RowIndex = 1;
			this.bandedGridColumn16.Visible = true;
			this.bandedGridColumn16.Width = 63;
			// 
			// gridBand6
			// 
			this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand6.Caption = "扩展信息";
			this.gridBand6.Columns.Add(this.bandedGridColumn19);
			this.gridBand6.Columns.Add(this.bandedGridColumn17);
			this.gridBand6.Columns.Add(this.bandedGridColumn23);
			this.gridBand6.Columns.Add(this.bandedGridColumn18);
			this.gridBand6.Name = "gridBand6";
			this.gridBand6.Width = 135;
			// 
			// bandedGridColumn19
			// 
			this.bandedGridColumn19.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn19.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn19.Caption = "出生年月";
			this.bandedGridColumn19.FieldName = "info_stuBirthday";
			this.bandedGridColumn19.Name = "bandedGridColumn19";
			this.bandedGridColumn19.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn19.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn19.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn19.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn19.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn19.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn19.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn19.Visible = true;
			this.bandedGridColumn19.Width = 60;
			// 
			// bandedGridColumn17
			// 
			this.bandedGridColumn17.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn17.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn17.Caption = "班级";
			this.bandedGridColumn17.FieldName = "info_className";
			this.bandedGridColumn17.Name = "bandedGridColumn17";
			this.bandedGridColumn17.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn17.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn17.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn17.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn17.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn17.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn17.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn17.Visible = true;
			this.bandedGridColumn17.Width = 65;
			// 
			// bandedGridColumn23
			// 
			this.bandedGridColumn23.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn23.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn23.Caption = "幼儿年龄";
			this.bandedGridColumn23.FieldName = "nchsanaly_realage";
			this.bandedGridColumn23.Name = "bandedGridColumn23";
			this.bandedGridColumn23.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn23.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn23.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn23.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn23.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn23.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn23.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn23.RowIndex = 1;
			this.bandedGridColumn23.Visible = true;
			this.bandedGridColumn23.Width = 64;
			// 
			// bandedGridColumn18
			// 
			this.bandedGridColumn18.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn18.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn18.Caption = "性别";
			this.bandedGridColumn18.FieldName = "info_stuGender";
			this.bandedGridColumn18.Name = "bandedGridColumn18";
			this.bandedGridColumn18.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn18.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn18.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn18.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn18.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn18.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn18.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn18.RowIndex = 1;
			this.bandedGridColumn18.Visible = true;
			this.bandedGridColumn18.Width = 71;
			// 
			// gridBand7
			// 
			this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand7.Caption = "评测信息";
			this.gridBand7.Columns.Add(this.bandedGridColumn20);
			this.gridBand7.Columns.Add(this.bandedGridColumn21);
			this.gridBand7.Columns.Add(this.bandedGridColumn22);
			this.gridBand7.Columns.Add(this.bandedGridColumn26);
			this.gridBand7.Columns.Add(this.bandedGridColumn29);
			this.gridBand7.Columns.Add(this.bandedGridColumn30);
			this.gridBand7.Columns.Add(this.bandedGridColumn24);
			this.gridBand7.Columns.Add(this.bandedGridColumn25);
			this.gridBand7.Columns.Add(this.bandedGridColumn27);
			this.gridBand7.Columns.Add(this.bandedGridColumn28);
			this.gridBand7.Name = "gridBand7";
			this.gridBand7.Width = 340;
			// 
			// bandedGridColumn20
			// 
			this.bandedGridColumn20.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn20.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn20.Caption = "体检日期";
			this.bandedGridColumn20.FieldName = "nchsanaly_checktime";
			this.bandedGridColumn20.Name = "bandedGridColumn20";
			this.bandedGridColumn20.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn20.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn20.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn20.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn20.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn20.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn20.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn20.Visible = true;
			this.bandedGridColumn20.Width = 80;
			// 
			// bandedGridColumn21
			// 
			this.bandedGridColumn21.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn21.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn21.Caption = "身高(cm)";
			this.bandedGridColumn21.FieldName = "nchsanaly_height";
			this.bandedGridColumn21.Name = "bandedGridColumn21";
			this.bandedGridColumn21.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn21.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn21.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn21.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn21.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn21.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn21.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn21.Visible = true;
			this.bandedGridColumn21.Width = 59;
			// 
			// bandedGridColumn22
			// 
			this.bandedGridColumn22.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn22.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn22.Caption = "体重(kg)";
			this.bandedGridColumn22.FieldName = "nchsanaly_weight";
			this.bandedGridColumn22.Name = "bandedGridColumn22";
			this.bandedGridColumn22.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn22.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn22.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn22.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn22.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn22.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn22.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn22.Visible = true;
			this.bandedGridColumn22.Width = 59;
			// 
			// bandedGridColumn26
			// 
			this.bandedGridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn26.Caption = "肥胖";
			this.bandedGridColumn26.FieldName = "nchsanaly_obesity";
			this.bandedGridColumn26.Name = "bandedGridColumn26";
			this.bandedGridColumn26.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn26.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn26.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn26.Visible = true;
			this.bandedGridColumn26.Width = 62;
			// 
			// bandedGridColumn29
			// 
			this.bandedGridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn29.Caption = "消瘦";
			this.bandedGridColumn29.FieldName = "nchsanaly_wasting";
			this.bandedGridColumn29.Name = "bandedGridColumn29";
			this.bandedGridColumn29.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn29.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn29.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn29.Visible = true;
			this.bandedGridColumn29.Width = 80;
			// 
			// bandedGridColumn30
			// 
			this.bandedGridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn30.Caption = "体重低下";
			this.bandedGridColumn30.FieldName = "nchsanaly_underweight";
			this.bandedGridColumn30.MinWidth = 10;
			this.bandedGridColumn30.Name = "bandedGridColumn30";
			this.bandedGridColumn30.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn30.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn30.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn30.RowIndex = 1;
			this.bandedGridColumn30.Visible = true;
			this.bandedGridColumn30.Width = 80;
			// 
			// bandedGridColumn24
			// 
			this.bandedGridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn24.Caption = "身高评价";
			this.bandedGridColumn24.FieldName = "nchsanaly_heightresult";
			this.bandedGridColumn24.Name = "bandedGridColumn24";
			this.bandedGridColumn24.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn24.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn24.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn24.RowIndex = 1;
			this.bandedGridColumn24.Visible = true;
			this.bandedGridColumn24.Width = 59;
			// 
			// bandedGridColumn25
			// 
			this.bandedGridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn25.Caption = "体重评价";
			this.bandedGridColumn25.FieldName = "nchsanaly_weightresult";
			this.bandedGridColumn25.Name = "bandedGridColumn25";
			this.bandedGridColumn25.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn25.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn25.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn25.RowIndex = 1;
			this.bandedGridColumn25.Visible = true;
			this.bandedGridColumn25.Width = 59;
			// 
			// bandedGridColumn27
			// 
			this.bandedGridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn27.Caption = "营养";
			this.bandedGridColumn27.FieldName = "nchsanaly_nut";
			this.bandedGridColumn27.Name = "bandedGridColumn27";
			this.bandedGridColumn27.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn27.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn27.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn27.RowIndex = 1;
			this.bandedGridColumn27.Visible = true;
			this.bandedGridColumn27.Width = 62;
			// 
			// bandedGridColumn28
			// 
			this.bandedGridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn28.Caption = "发育";
			this.bandedGridColumn28.FieldName = "nchsanaly_stunting";
			this.bandedGridColumn28.Name = "bandedGridColumn28";
			this.bandedGridColumn28.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn28.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn28.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn28.RowIndex = 1;
			this.bandedGridColumn28.Visible = true;
			this.bandedGridColumn28.Width = 80;
			// 
			// gridControl_HOutputGridShow
			// 
			this.gridControl_HOutputGridShow.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_HOutputGridShow.EmbeddedNavigator
			// 
			this.gridControl_HOutputGridShow.EmbeddedNavigator.Name = "";
			this.gridControl_HOutputGridShow.Location = new System.Drawing.Point(0, 48);
			this.gridControl_HOutputGridShow.MainView = this.advBandedGridView1;
			this.gridControl_HOutputGridShow.Name = "gridControl_HOutputGridShow";
			this.gridControl_HOutputGridShow.Size = new System.Drawing.Size(508, 461);
			this.gridControl_HOutputGridShow.TabIndex = 1;
			this.gridControl_HOutputGridShow.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													   this.advBandedGridView1});
			// 
			// advBandedGridView1
			// 
			this.advBandedGridView1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
																										   this.gridBand1,
																										   this.gridBand2,
																										   this.gridBand3,
																										   this.gridBand4});
			this.advBandedGridView1.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
																													 this.bandedGridColumn2,
																													 this.bandedGridColumn3,
																													 this.bandedGridColumn4,
																													 this.bandedGridColumn5,
																													 this.bandedGridColumn6,
																													 this.bandedGridColumn7,
																													 this.bandedGridColumn8,
																													 this.bandedGridColumn9,
																													 this.bandedGridColumn10,
																													 this.bandedGridColumn11,
																													 this.bandedGridColumn12,
																													 this.bandedGridColumn13,
																													 this.bandedGridColumn14,
																													 this.bandedGridColumn15});
			this.advBandedGridView1.GridControl = this.gridControl_HOutputGridShow;
			this.advBandedGridView1.Name = "advBandedGridView1";
			this.advBandedGridView1.OptionsCustomization.AllowFilter = false;
			this.advBandedGridView1.OptionsView.ShowFilterPanel = false;
			this.advBandedGridView1.OptionsView.ShowGroupPanel = false;
			// 
			// gridBand1
			// 
			this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand1.Caption = "基本信息";
			this.gridBand1.Columns.Add(this.bandedGridColumn4);
			this.gridBand1.Name = "gridBand1";
			this.gridBand1.Width = 59;
			// 
			// bandedGridColumn4
			// 
			this.bandedGridColumn4.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn4.AutoFillDown = true;
			this.bandedGridColumn4.Caption = "姓名";
			this.bandedGridColumn4.FieldName = "info_stuName";
			this.bandedGridColumn4.Name = "bandedGridColumn4";
			this.bandedGridColumn4.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn4.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn4.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn4.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.AllowMove = false;
			this.bandedGridColumn4.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn4.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn4.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn4.Visible = true;
			this.bandedGridColumn4.Width = 59;
			// 
			// gridBand2
			// 
			this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand2.Caption = "扩展信息";
			this.gridBand2.Columns.Add(this.bandedGridColumn2);
			this.gridBand2.Columns.Add(this.bandedGridColumn5);
			this.gridBand2.Columns.Add(this.bandedGridColumn6);
			this.gridBand2.Columns.Add(this.bandedGridColumn3);
			this.gridBand2.Name = "gridBand2";
			this.gridBand2.Width = 123;
			// 
			// bandedGridColumn2
			// 
			this.bandedGridColumn2.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn2.Caption = "学号";
			this.bandedGridColumn2.FieldName = "HealthAnaly_StuID";
			this.bandedGridColumn2.MinWidth = 10;
			this.bandedGridColumn2.Name = "bandedGridColumn2";
			this.bandedGridColumn2.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn2.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn2.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn2.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn2.OptionsColumn.AllowMove = false;
			this.bandedGridColumn2.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.bandedGridColumn2.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn2.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn2.Visible = true;
			this.bandedGridColumn2.Width = 58;
			// 
			// bandedGridColumn5
			// 
			this.bandedGridColumn5.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn5.Caption = "性别";
			this.bandedGridColumn5.FieldName = "info_stuGender";
			this.bandedGridColumn5.MinWidth = 10;
			this.bandedGridColumn5.Name = "bandedGridColumn5";
			this.bandedGridColumn5.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn5.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn5.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn5.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.AllowMove = false;
			this.bandedGridColumn5.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn5.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn5.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn5.RowIndex = 1;
			this.bandedGridColumn5.Visible = true;
			this.bandedGridColumn5.Width = 58;
			// 
			// bandedGridColumn6
			// 
			this.bandedGridColumn6.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn6.Caption = "出生年月";
			this.bandedGridColumn6.FieldName = "info_stuBirthday";
			this.bandedGridColumn6.Name = "bandedGridColumn6";
			this.bandedGridColumn6.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn6.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn6.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn6.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.AllowMove = false;
			this.bandedGridColumn6.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn6.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn6.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn6.RowIndex = 1;
			this.bandedGridColumn6.Visible = true;
			this.bandedGridColumn6.Width = 65;
			// 
			// bandedGridColumn3
			// 
			this.bandedGridColumn3.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn3.Caption = "班级";
			this.bandedGridColumn3.FieldName = "info_className";
			this.bandedGridColumn3.MinWidth = 10;
			this.bandedGridColumn3.Name = "bandedGridColumn3";
			this.bandedGridColumn3.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn3.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn3.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn3.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.AllowMove = false;
			this.bandedGridColumn3.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn3.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn3.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn3.Visible = true;
			this.bandedGridColumn3.Width = 65;
			// 
			// gridBand3
			// 
			this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand3.Caption = "评测信息";
			this.gridBand3.Columns.Add(this.bandedGridColumn7);
			this.gridBand3.Columns.Add(this.bandedGridColumn8);
			this.gridBand3.Columns.Add(this.bandedGridColumn10);
			this.gridBand3.Columns.Add(this.bandedGridColumn12);
			this.gridBand3.Columns.Add(this.bandedGridColumn15);
			this.gridBand3.Columns.Add(this.bandedGridColumn9);
			this.gridBand3.Columns.Add(this.bandedGridColumn11);
			this.gridBand3.Columns.Add(this.bandedGridColumn13);
			this.gridBand3.Name = "gridBand3";
			this.gridBand3.Width = 283;
			// 
			// bandedGridColumn7
			// 
			this.bandedGridColumn7.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn7.Caption = "体检日期";
			this.bandedGridColumn7.FieldName = "HealthAnaly_CheckTime";
			this.bandedGridColumn7.Name = "bandedGridColumn7";
			this.bandedGridColumn7.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn7.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn7.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn7.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.AllowMove = false;
			this.bandedGridColumn7.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn7.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn7.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn7.Visible = true;
			this.bandedGridColumn7.Width = 70;
			// 
			// bandedGridColumn8
			// 
			this.bandedGridColumn8.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn8.Caption = "身高(cm)";
			this.bandedGridColumn8.FieldName = "HealthAnaly_Height";
			this.bandedGridColumn8.Name = "bandedGridColumn8";
			this.bandedGridColumn8.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn8.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn8.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn8.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.AllowMove = false;
			this.bandedGridColumn8.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn8.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn8.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn8.Visible = true;
			this.bandedGridColumn8.Width = 65;
			// 
			// bandedGridColumn10
			// 
			this.bandedGridColumn10.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn10.Caption = "体重(kg)";
			this.bandedGridColumn10.FieldName = "HealthAnaly_Weight";
			this.bandedGridColumn10.MinWidth = 10;
			this.bandedGridColumn10.Name = "bandedGridColumn10";
			this.bandedGridColumn10.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn10.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn10.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn10.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.AllowMove = false;
			this.bandedGridColumn10.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn10.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn10.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn10.Visible = true;
			this.bandedGridColumn10.Width = 62;
			// 
			// bandedGridColumn12
			// 
			this.bandedGridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn12.Caption = "肥胖";
			this.bandedGridColumn12.FieldName = "HealthAnaly_FatCircs";
			this.bandedGridColumn12.Name = "bandedGridColumn12";
			this.bandedGridColumn12.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn12.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.AllowMove = false;
			this.bandedGridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn12.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn12.Visible = true;
			this.bandedGridColumn12.Width = 86;
			// 
			// bandedGridColumn15
			// 
			this.bandedGridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn15.Caption = "幼儿年龄";
			this.bandedGridColumn15.FieldName = "HealthAnaly_RealAge";
			this.bandedGridColumn15.MinWidth = 10;
			this.bandedGridColumn15.Name = "bandedGridColumn15";
			this.bandedGridColumn15.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn15.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.AllowMove = false;
			this.bandedGridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn15.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn15.RowIndex = 1;
			this.bandedGridColumn15.Visible = true;
			this.bandedGridColumn15.Width = 70;
			// 
			// bandedGridColumn9
			// 
			this.bandedGridColumn9.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn9.Caption = "身高评价";
			this.bandedGridColumn9.FieldName = "HealthAnaly_HeightAnaly";
			this.bandedGridColumn9.MinWidth = 10;
			this.bandedGridColumn9.Name = "bandedGridColumn9";
			this.bandedGridColumn9.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn9.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn9.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn9.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.AllowMove = false;
			this.bandedGridColumn9.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn9.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn9.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn9.RowIndex = 1;
			this.bandedGridColumn9.Visible = true;
			this.bandedGridColumn9.Width = 65;
			// 
			// bandedGridColumn11
			// 
			this.bandedGridColumn11.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn11.Caption = "体重评价";
			this.bandedGridColumn11.FieldName = "HealthAnaly_WeightAnaly";
			this.bandedGridColumn11.Name = "bandedGridColumn11";
			this.bandedGridColumn11.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn11.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn11.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn11.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.AllowMove = false;
			this.bandedGridColumn11.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn11.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn11.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn11.RowIndex = 1;
			this.bandedGridColumn11.Visible = true;
			this.bandedGridColumn11.Width = 62;
			// 
			// bandedGridColumn13
			// 
			this.bandedGridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn13.Caption = "营养";
			this.bandedGridColumn13.FieldName = "HealthAnaly_NutCircs";
			this.bandedGridColumn13.MinWidth = 10;
			this.bandedGridColumn13.Name = "bandedGridColumn13";
			this.bandedGridColumn13.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn13.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.AllowMove = false;
			this.bandedGridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn13.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn13.RowIndex = 1;
			this.bandedGridColumn13.Visible = true;
			this.bandedGridColumn13.Width = 86;
			// 
			// gridBand4
			// 
			this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
			this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridBand4.Caption = "备注信息";
			this.gridBand4.Columns.Add(this.bandedGridColumn14);
			this.gridBand4.Name = "gridBand4";
			this.gridBand4.Width = 75;
			// 
			// bandedGridColumn14
			// 
			this.bandedGridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.bandedGridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.bandedGridColumn14.AutoFillDown = true;
			this.bandedGridColumn14.Caption = "备注";
			this.bandedGridColumn14.FieldName = "HealthAnaly_Remark";
			this.bandedGridColumn14.Name = "bandedGridColumn14";
			this.bandedGridColumn14.OptionsColumn.AllowEdit = false;
			this.bandedGridColumn14.OptionsColumn.AllowFocus = false;
			this.bandedGridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.bandedGridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.AllowMove = false;
			this.bandedGridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
			this.bandedGridColumn14.OptionsColumn.ReadOnly = true;
			this.bandedGridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.bandedGridColumn14.Visible = true;
			// 
			// panelControl6
			// 
			this.panelControl6.Controls.Add(this.simpleButton_HOutputSearch);
			this.panelControl6.Controls.Add(this.simpleButton_HOutputPrint);
			this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl6.Location = new System.Drawing.Point(0, 0);
			this.panelControl6.Name = "panelControl6";
			this.panelControl6.Size = new System.Drawing.Size(508, 48);
			this.panelControl6.TabIndex = 0;
			this.panelControl6.Text = "panelControl6";
			// 
			// simpleButton_HOutputSearch
			// 
			this.simpleButton_HOutputSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputSearch.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputSearch.Image")));
			this.simpleButton_HOutputSearch.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_HOutputSearch.Name = "simpleButton_HOutputSearch";
			this.simpleButton_HOutputSearch.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputSearch.TabIndex = 14;
			this.simpleButton_HOutputSearch.Tag = 4;
			this.simpleButton_HOutputSearch.Text = "检  索";
			this.simpleButton_HOutputSearch.Click += new System.EventHandler(this.simpleButton_HOutputSearch_Click);
			// 
			// simpleButton_HOutputPrint
			// 
			this.simpleButton_HOutputPrint.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_HOutputPrint.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_HOutputPrint.Appearance.Options.UseFont = true;
			this.simpleButton_HOutputPrint.Appearance.Options.UseForeColor = true;
			this.simpleButton_HOutputPrint.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_HOutputPrint.Image")));
			this.simpleButton_HOutputPrint.Location = new System.Drawing.Point(128, 8);
			this.simpleButton_HOutputPrint.Name = "simpleButton_HOutputPrint";
			this.simpleButton_HOutputPrint.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_HOutputPrint.TabIndex = 12;
			this.simpleButton_HOutputPrint.Tag = 4;
			this.simpleButton_HOutputPrint.Text = "报  表";
			this.simpleButton_HOutputPrint.Click += new System.EventHandler(this.simpleButton_HOutputPrint_Click);
			// 
			// xtraTabPage7
			// 
			this.xtraTabPage7.Controls.Add(this.splitContainerControl8);
			this.xtraTabPage7.Name = "xtraTabPage7";
			this.xtraTabPage7.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage7.Text = "晨检及全日观察";
			// 
			// splitContainerControl8
			// 
			this.splitContainerControl8.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl8.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl8.Name = "splitContainerControl8";
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchMorningRec);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchStuList);
			this.splitContainerControl8.Panel1.Controls.Add(this.groupControl_WatchSer);
			this.splitContainerControl8.Panel1.Text = "splitContainerControl8_Panel1";
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchWholeDay);
			this.splitContainerControl8.Panel2.Controls.Add(this.groupControl_WatchRecList);
			this.splitContainerControl8.Panel2.Controls.Add(this.panelControl7);
			this.splitContainerControl8.Panel2.Text = "splitContainerControl8_Panel2";
			this.splitContainerControl8.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl8.SplitterPosition = 294;
			this.splitContainerControl8.TabIndex = 0;
			this.splitContainerControl8.Text = "splitContainerControl8";
			// 
			// groupControl_WatchMorningRec
			// 
			this.groupControl_WatchMorningRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchMorningRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningTreat);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningOState);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningMouth);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningHeat);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.comboBoxEdit_WatchMorningSkin);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningSpirit);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.textEdit_WatchMorningName);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningNumber);
			this.groupControl_WatchMorningRec.Controls.Add(this.notePanel_WatchMorningName);
			this.groupControl_WatchMorningRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchMorningRec.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchMorningRec.Name = "groupControl_WatchMorningRec";
			this.groupControl_WatchMorningRec.Size = new System.Drawing.Size(288, 248);
			this.groupControl_WatchMorningRec.TabIndex = 30;
			this.groupControl_WatchMorningRec.Text = "晨检检查情况";
			this.groupControl_WatchMorningRec.Visible = false;
			// 
			// textEdit_WatchMorningTreat
			// 
			this.textEdit_WatchMorningTreat.EditValue = "";
			this.textEdit_WatchMorningTreat.Location = new System.Drawing.Point(80, 200);
			this.textEdit_WatchMorningTreat.Name = "textEdit_WatchMorningTreat";
			this.textEdit_WatchMorningTreat.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningTreat.TabIndex = 85;
			// 
			// notePanel_WatchMorningTreat
			// 
			this.notePanel_WatchMorningTreat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningTreat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningTreat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningTreat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningTreat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningTreat.Location = new System.Drawing.Point(16, 200);
			this.notePanel_WatchMorningTreat.MaxRows = 5;
			this.notePanel_WatchMorningTreat.Name = "notePanel_WatchMorningTreat";
			this.notePanel_WatchMorningTreat.ParentAutoHeight = true;
			this.notePanel_WatchMorningTreat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningTreat.TabIndex = 84;
			this.notePanel_WatchMorningTreat.TabStop = false;
			this.notePanel_WatchMorningTreat.Text = "处理:";
			// 
			// textEdit_WatchMorningOState
			// 
			this.textEdit_WatchMorningOState.EditValue = "";
			this.textEdit_WatchMorningOState.Location = new System.Drawing.Point(80, 160);
			this.textEdit_WatchMorningOState.Name = "textEdit_WatchMorningOState";
			this.textEdit_WatchMorningOState.Size = new System.Drawing.Size(184, 23);
			this.textEdit_WatchMorningOState.TabIndex = 83;
			// 
			// notePanel_WatchMorningOState
			// 
			this.notePanel_WatchMorningOState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningOState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningOState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningOState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningOState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningOState.Location = new System.Drawing.Point(16, 160);
			this.notePanel_WatchMorningOState.MaxRows = 5;
			this.notePanel_WatchMorningOState.Name = "notePanel_WatchMorningOState";
			this.notePanel_WatchMorningOState.ParentAutoHeight = true;
			this.notePanel_WatchMorningOState.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningOState.TabIndex = 82;
			this.notePanel_WatchMorningOState.TabStop = false;
			this.notePanel_WatchMorningOState.Text = "代诉:";
			// 
			// notePanel_WatchMorningMouth
			// 
			this.notePanel_WatchMorningMouth.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningMouth.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningMouth.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningMouth.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningMouth.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningMouth.Location = new System.Drawing.Point(16, 120);
			this.notePanel_WatchMorningMouth.MaxRows = 5;
			this.notePanel_WatchMorningMouth.Name = "notePanel_WatchMorningMouth";
			this.notePanel_WatchMorningMouth.ParentAutoHeight = true;
			this.notePanel_WatchMorningMouth.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningMouth.TabIndex = 78;
			this.notePanel_WatchMorningMouth.TabStop = false;
			this.notePanel_WatchMorningMouth.Text = "口腔:";
			// 
			// comboBoxEdit_WatchMorningHeat
			// 
			this.comboBoxEdit_WatchMorningHeat.EditValue = "正常";
			this.comboBoxEdit_WatchMorningHeat.Location = new System.Drawing.Point(80, 80);
			this.comboBoxEdit_WatchMorningHeat.Name = "comboBoxEdit_WatchMorningHeat";
			// 
			// comboBoxEdit_WatchMorningHeat.Properties
			// 
			this.comboBoxEdit_WatchMorningHeat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningHeat.Properties.Items.AddRange(new object[] {
																						  "正常",
																						  "偏高",
																						  "偏低"});
			this.comboBoxEdit_WatchMorningHeat.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningHeat.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningHeat.TabIndex = 76;
			// 
			// comboBoxEdit_WatchMorningMouth
			// 
			this.comboBoxEdit_WatchMorningMouth.EditValue = "好";
			this.comboBoxEdit_WatchMorningMouth.Location = new System.Drawing.Point(80, 120);
			this.comboBoxEdit_WatchMorningMouth.Name = "comboBoxEdit_WatchMorningMouth";
			// 
			// comboBoxEdit_WatchMorningMouth.Properties
			// 
			this.comboBoxEdit_WatchMorningMouth.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningMouth.Properties.Items.AddRange(new object[] {
																						   "好",
																						   "中",
																						   "差"});
			this.comboBoxEdit_WatchMorningMouth.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningMouth.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningMouth.TabIndex = 81;
			// 
			// comboBoxEdit_WatchMorningSpirit
			// 
			this.comboBoxEdit_WatchMorningSpirit.EditValue = "好";
			this.comboBoxEdit_WatchMorningSpirit.Location = new System.Drawing.Point(208, 80);
			this.comboBoxEdit_WatchMorningSpirit.Name = "comboBoxEdit_WatchMorningSpirit";
			// 
			// comboBoxEdit_WatchMorningSpirit.Properties
			// 
			this.comboBoxEdit_WatchMorningSpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSpirit.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchMorningSpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSpirit.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSpirit.TabIndex = 77;
			// 
			// notePanel_WatchMorningHeat
			// 
			this.notePanel_WatchMorningHeat.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningHeat.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningHeat.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningHeat.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningHeat.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningHeat.Location = new System.Drawing.Point(16, 80);
			this.notePanel_WatchMorningHeat.MaxRows = 5;
			this.notePanel_WatchMorningHeat.Name = "notePanel_WatchMorningHeat";
			this.notePanel_WatchMorningHeat.ParentAutoHeight = true;
			this.notePanel_WatchMorningHeat.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningHeat.TabIndex = 74;
			this.notePanel_WatchMorningHeat.TabStop = false;
			this.notePanel_WatchMorningHeat.Text = "体温:";
			// 
			// notePanel_WatchMorningSkin
			// 
			this.notePanel_WatchMorningSkin.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSkin.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSkin.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSkin.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSkin.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSkin.Location = new System.Drawing.Point(144, 120);
			this.notePanel_WatchMorningSkin.MaxRows = 5;
			this.notePanel_WatchMorningSkin.Name = "notePanel_WatchMorningSkin";
			this.notePanel_WatchMorningSkin.ParentAutoHeight = true;
			this.notePanel_WatchMorningSkin.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSkin.TabIndex = 79;
			this.notePanel_WatchMorningSkin.TabStop = false;
			this.notePanel_WatchMorningSkin.Text = "皮肤:";
			// 
			// comboBoxEdit_WatchMorningSkin
			// 
			this.comboBoxEdit_WatchMorningSkin.EditValue = "好";
			this.comboBoxEdit_WatchMorningSkin.Location = new System.Drawing.Point(208, 120);
			this.comboBoxEdit_WatchMorningSkin.Name = "comboBoxEdit_WatchMorningSkin";
			// 
			// comboBoxEdit_WatchMorningSkin.Properties
			// 
			this.comboBoxEdit_WatchMorningSkin.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchMorningSkin.Properties.Items.AddRange(new object[] {
																						  "好",
																						  "中",
																						  "差"});
			this.comboBoxEdit_WatchMorningSkin.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchMorningSkin.Size = new System.Drawing.Size(56, 23);
			this.comboBoxEdit_WatchMorningSkin.TabIndex = 80;
			// 
			// notePanel_WatchMorningSpirit
			// 
			this.notePanel_WatchMorningSpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningSpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningSpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningSpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningSpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningSpirit.Location = new System.Drawing.Point(144, 80);
			this.notePanel_WatchMorningSpirit.MaxRows = 5;
			this.notePanel_WatchMorningSpirit.Name = "notePanel_WatchMorningSpirit";
			this.notePanel_WatchMorningSpirit.ParentAutoHeight = true;
			this.notePanel_WatchMorningSpirit.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningSpirit.TabIndex = 75;
			this.notePanel_WatchMorningSpirit.TabStop = false;
			this.notePanel_WatchMorningSpirit.Text = "精神:";
			// 
			// textEdit_WatchMorningNumber
			// 
			this.textEdit_WatchMorningNumber.EditValue = "";
			this.textEdit_WatchMorningNumber.Location = new System.Drawing.Point(208, 40);
			this.textEdit_WatchMorningNumber.Name = "textEdit_WatchMorningNumber";
			// 
			// textEdit_WatchMorningNumber.Properties
			// 
			this.textEdit_WatchMorningNumber.Properties.Enabled = false;
			this.textEdit_WatchMorningNumber.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningNumber.TabIndex = 60;
			// 
			// textEdit_WatchMorningName
			// 
			this.textEdit_WatchMorningName.EditValue = "";
			this.textEdit_WatchMorningName.Location = new System.Drawing.Point(80, 40);
			this.textEdit_WatchMorningName.Name = "textEdit_WatchMorningName";
			// 
			// textEdit_WatchMorningName.Properties
			// 
			this.textEdit_WatchMorningName.Properties.Enabled = false;
			this.textEdit_WatchMorningName.Size = new System.Drawing.Size(56, 23);
			this.textEdit_WatchMorningName.TabIndex = 59;
			// 
			// notePanel_WatchMorningNumber
			// 
			this.notePanel_WatchMorningNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningNumber.Location = new System.Drawing.Point(144, 40);
			this.notePanel_WatchMorningNumber.MaxRows = 5;
			this.notePanel_WatchMorningNumber.Name = "notePanel_WatchMorningNumber";
			this.notePanel_WatchMorningNumber.ParentAutoHeight = true;
			this.notePanel_WatchMorningNumber.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningNumber.TabIndex = 58;
			this.notePanel_WatchMorningNumber.TabStop = false;
			this.notePanel_WatchMorningNumber.Text = "学号:";
			// 
			// notePanel_WatchMorningName
			// 
			this.notePanel_WatchMorningName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchMorningName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchMorningName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchMorningName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchMorningName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchMorningName.Location = new System.Drawing.Point(16, 40);
			this.notePanel_WatchMorningName.MaxRows = 5;
			this.notePanel_WatchMorningName.Name = "notePanel_WatchMorningName";
			this.notePanel_WatchMorningName.ParentAutoHeight = true;
			this.notePanel_WatchMorningName.Size = new System.Drawing.Size(56, 22);
			this.notePanel_WatchMorningName.TabIndex = 57;
			this.notePanel_WatchMorningName.TabStop = false;
			this.notePanel_WatchMorningName.Text = "姓名:";
			// 
			// groupControl_WatchStuList
			// 
			this.groupControl_WatchStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchStuList.Controls.Add(this.gridControl_WatchStuList);
			this.groupControl_WatchStuList.Controls.Add(this.notePanel_WatchStuList);
			this.groupControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchStuList.Location = new System.Drawing.Point(0, 280);
			this.groupControl_WatchStuList.Name = "groupControl_WatchStuList";
			this.groupControl_WatchStuList.Size = new System.Drawing.Size(288, 229);
			this.groupControl_WatchStuList.TabIndex = 1;
			this.groupControl_WatchStuList.Text = "今天入园幼儿记录";
			// 
			// gridControl_WatchStuList
			// 
			this.gridControl_WatchStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchStuList.EmbeddedNavigator
			// 
			this.gridControl_WatchStuList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchStuList.MainView = this.gridView7;
			this.gridControl_WatchStuList.Name = "gridControl_WatchStuList";
			this.gridControl_WatchStuList.Size = new System.Drawing.Size(282, 185);
			this.gridControl_WatchStuList.TabIndex = 25;
			this.gridControl_WatchStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView7});
			this.gridControl_WatchStuList.DoubleClick += new System.EventHandler(this.gridControl_WatchStuList_DoubleClick);
			// 
			// gridView7
			// 
			this.gridView7.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn24,
																							 this.gridColumn25,
																							 this.gridColumn26,
																							 this.gridColumn27,
																							 this.gridColumn28});
			this.gridView7.GridControl = this.gridControl_WatchStuList;
			this.gridView7.Name = "gridView7";
			this.gridView7.OptionsCustomization.AllowFilter = false;
			this.gridView7.OptionsView.ShowFilterPanel = false;
			this.gridView7.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn24
			// 
			this.gridColumn24.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn24.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn24.Caption = "学号";
			this.gridColumn24.FieldName = "info_stuNumber";
			this.gridColumn24.Name = "gridColumn24";
			this.gridColumn24.OptionsColumn.AllowEdit = false;
			this.gridColumn24.OptionsColumn.AllowFocus = false;
			this.gridColumn24.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn24.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn24.OptionsColumn.AllowMove = false;
			this.gridColumn24.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn24.OptionsColumn.ReadOnly = true;
			this.gridColumn24.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn24.Visible = true;
			this.gridColumn24.VisibleIndex = 0;
			// 
			// gridColumn25
			// 
			this.gridColumn25.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn25.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn25.Caption = "姓名";
			this.gridColumn25.FieldName = "info_stuName";
			this.gridColumn25.Name = "gridColumn25";
			this.gridColumn25.OptionsColumn.AllowEdit = false;
			this.gridColumn25.OptionsColumn.AllowFocus = false;
			this.gridColumn25.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn25.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn25.OptionsColumn.AllowMove = false;
			this.gridColumn25.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn25.OptionsColumn.ReadOnly = true;
			this.gridColumn25.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn25.Visible = true;
			this.gridColumn25.VisibleIndex = 1;
			// 
			// gridColumn26
			// 
			this.gridColumn26.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn26.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn26.Caption = "班级";
			this.gridColumn26.FieldName = "info_className";
			this.gridColumn26.Name = "gridColumn26";
			this.gridColumn26.OptionsColumn.AllowEdit = false;
			this.gridColumn26.OptionsColumn.AllowFocus = false;
			this.gridColumn26.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn26.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn26.OptionsColumn.AllowMove = false;
			this.gridColumn26.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn26.OptionsColumn.ReadOnly = true;
			this.gridColumn26.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn26.Visible = true;
			this.gridColumn26.VisibleIndex = 2;
			// 
			// gridColumn27
			// 
			this.gridColumn27.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn27.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn27.Caption = "晨检";
			this.gridColumn27.FieldName = "state_flowStateName";
			this.gridColumn27.Name = "gridColumn27";
			this.gridColumn27.OptionsColumn.AllowEdit = false;
			this.gridColumn27.OptionsColumn.AllowFocus = false;
			this.gridColumn27.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn27.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn27.OptionsColumn.AllowMove = false;
			this.gridColumn27.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn27.OptionsColumn.ReadOnly = true;
			this.gridColumn27.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn27.Visible = true;
			this.gridColumn27.VisibleIndex = 3;
			// 
			// gridColumn28
			// 
			this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn28.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn28.Caption = "时间";
			this.gridColumn28.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn28.Name = "gridColumn28";
			this.gridColumn28.OptionsColumn.AllowEdit = false;
			this.gridColumn28.OptionsColumn.AllowFocus = false;
			this.gridColumn28.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn28.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn28.OptionsColumn.AllowMove = false;
			this.gridColumn28.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn28.OptionsColumn.ReadOnly = true;
			this.gridColumn28.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn28.Visible = true;
			this.gridColumn28.VisibleIndex = 4;
			// 
			// notePanel_WatchStuList
			// 
			this.notePanel_WatchStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchStuList.MaxRows = 5;
			this.notePanel_WatchStuList.Name = "notePanel_WatchStuList";
			this.notePanel_WatchStuList.ParentAutoHeight = true;
			this.notePanel_WatchStuList.Size = new System.Drawing.Size(282, 23);
			this.notePanel_WatchStuList.TabIndex = 24;
			this.notePanel_WatchStuList.TabStop = false;
			this.notePanel_WatchStuList.Text = "双击进入晨检观察登记";
			// 
			// groupControl_WatchSer
			// 
			this.groupControl_WatchSer.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchSer.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchName);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.dateEdit_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchEndDate);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchBegDate);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchState);
			this.groupControl_WatchSer.Controls.Add(this.textEdit_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchClass);
			this.groupControl_WatchSer.Controls.Add(this.comboBoxEdit_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchGrade);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchNumber);
			this.groupControl_WatchSer.Controls.Add(this.notePanel_WatchName);
			this.groupControl_WatchSer.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchSer.Location = new System.Drawing.Point(0, 0);
			this.groupControl_WatchSer.Name = "groupControl_WatchSer";
			this.groupControl_WatchSer.Size = new System.Drawing.Size(288, 280);
			this.groupControl_WatchSer.TabIndex = 0;
			this.groupControl_WatchSer.Text = "信息查询";
			// 
			// textEdit_WatchName
			// 
			this.textEdit_WatchName.EditValue = "";
			this.textEdit_WatchName.Location = new System.Drawing.Point(144, 96);
			this.textEdit_WatchName.Name = "textEdit_WatchName";
			this.textEdit_WatchName.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchName.TabIndex = 63;
			// 
			// dateEdit_WatchEndDate
			// 
			this.dateEdit_WatchEndDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchEndDate.Location = new System.Drawing.Point(144, 238);
			this.dateEdit_WatchEndDate.Name = "dateEdit_WatchEndDate";
			// 
			// dateEdit_WatchEndDate.Properties
			// 
			this.dateEdit_WatchEndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchEndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchEndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchEndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchEndDate.TabIndex = 62;
			// 
			// dateEdit_WatchBegDate
			// 
			this.dateEdit_WatchBegDate.EditValue = new System.DateTime(2005, 3, 17, 0, 0, 0, 0);
			this.dateEdit_WatchBegDate.Location = new System.Drawing.Point(144, 196);
			this.dateEdit_WatchBegDate.Name = "dateEdit_WatchBegDate";
			// 
			// dateEdit_WatchBegDate.Properties
			// 
			this.dateEdit_WatchBegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																														  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_WatchBegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_WatchBegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_WatchBegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_WatchBegDate.TabIndex = 61;
			// 
			// notePanel_WatchEndDate
			// 
			this.notePanel_WatchEndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchEndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchEndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchEndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchEndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchEndDate.Location = new System.Drawing.Point(48, 232);
			this.notePanel_WatchEndDate.MaxRows = 5;
			this.notePanel_WatchEndDate.Name = "notePanel_WatchEndDate";
			this.notePanel_WatchEndDate.ParentAutoHeight = true;
			this.notePanel_WatchEndDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchEndDate.TabIndex = 60;
			this.notePanel_WatchEndDate.TabStop = false;
			this.notePanel_WatchEndDate.Text = "全日观察  截止时间:";
			// 
			// notePanel_WatchBegDate
			// 
			this.notePanel_WatchBegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchBegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchBegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchBegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchBegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchBegDate.Location = new System.Drawing.Point(48, 190);
			this.notePanel_WatchBegDate.MaxRows = 5;
			this.notePanel_WatchBegDate.Name = "notePanel_WatchBegDate";
			this.notePanel_WatchBegDate.ParentAutoHeight = true;
			this.notePanel_WatchBegDate.Size = new System.Drawing.Size(80, 35);
			this.notePanel_WatchBegDate.TabIndex = 59;
			this.notePanel_WatchBegDate.TabStop = false;
			this.notePanel_WatchBegDate.Text = "全日观察  起始时间:";
			// 
			// comboBoxEdit_WatchState
			// 
			this.comboBoxEdit_WatchState.EditValue = "全部";
			this.comboBoxEdit_WatchState.Location = new System.Drawing.Point(144, 160);
			this.comboBoxEdit_WatchState.Name = "comboBoxEdit_WatchState";
			// 
			// comboBoxEdit_WatchState.Properties
			// 
			this.comboBoxEdit_WatchState.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchState.Properties.Items.AddRange(new object[] {
																					"全部",
																					"健康",
																					"观察",
																					"服药"});
			this.comboBoxEdit_WatchState.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchState.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchState.TabIndex = 58;
			this.comboBoxEdit_WatchState.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchState_SelectedIndexChanged);
			// 
			// notePanel_WatchState
			// 
			this.notePanel_WatchState.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchState.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchState.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchState.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchState.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchState.Location = new System.Drawing.Point(48, 160);
			this.notePanel_WatchState.MaxRows = 5;
			this.notePanel_WatchState.Name = "notePanel_WatchState";
			this.notePanel_WatchState.ParentAutoHeight = true;
			this.notePanel_WatchState.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchState.TabIndex = 57;
			this.notePanel_WatchState.TabStop = false;
			this.notePanel_WatchState.Text = "  状  态:";
			// 
			// textEdit_WatchNumber
			// 
			this.textEdit_WatchNumber.EditValue = "";
			this.textEdit_WatchNumber.Location = new System.Drawing.Point(144, 128);
			this.textEdit_WatchNumber.Name = "textEdit_WatchNumber";
			this.textEdit_WatchNumber.Size = new System.Drawing.Size(88, 23);
			this.textEdit_WatchNumber.TabIndex = 56;
			this.textEdit_WatchNumber.EditValueChanged += new System.EventHandler(this.textEdit_WatchNumber_EditValueChanged);
			// 
			// comboBoxEdit_WatchClass
			// 
			this.comboBoxEdit_WatchClass.EditValue = "全部";
			this.comboBoxEdit_WatchClass.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_WatchClass.Name = "comboBoxEdit_WatchClass";
			// 
			// comboBoxEdit_WatchClass.Properties
			// 
			this.comboBoxEdit_WatchClass.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchClass.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchClass.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchClass.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchClass.TabIndex = 54;
			this.comboBoxEdit_WatchClass.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchClass_SelectedIndexChanged);
			// 
			// notePanel_WatchClass
			// 
			this.notePanel_WatchClass.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchClass.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchClass.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchClass.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchClass.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchClass.Location = new System.Drawing.Point(48, 64);
			this.notePanel_WatchClass.MaxRows = 5;
			this.notePanel_WatchClass.Name = "notePanel_WatchClass";
			this.notePanel_WatchClass.ParentAutoHeight = true;
			this.notePanel_WatchClass.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchClass.TabIndex = 53;
			this.notePanel_WatchClass.TabStop = false;
			this.notePanel_WatchClass.Text = "  班  级:";
			// 
			// comboBoxEdit_WatchGrade
			// 
			this.comboBoxEdit_WatchGrade.EditValue = "全部";
			this.comboBoxEdit_WatchGrade.Location = new System.Drawing.Point(144, 32);
			this.comboBoxEdit_WatchGrade.Name = "comboBoxEdit_WatchGrade";
			// 
			// comboBoxEdit_WatchGrade.Properties
			// 
			this.comboBoxEdit_WatchGrade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchGrade.Properties.Items.AddRange(new object[] {
																					"全部"});
			this.comboBoxEdit_WatchGrade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchGrade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_WatchGrade.TabIndex = 52;
			this.comboBoxEdit_WatchGrade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_WatchGrade_SelectedIndexChanged);
			// 
			// notePanel_WatchGrade
			// 
			this.notePanel_WatchGrade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchGrade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchGrade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchGrade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchGrade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchGrade.Location = new System.Drawing.Point(48, 32);
			this.notePanel_WatchGrade.MaxRows = 5;
			this.notePanel_WatchGrade.Name = "notePanel_WatchGrade";
			this.notePanel_WatchGrade.ParentAutoHeight = true;
			this.notePanel_WatchGrade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchGrade.TabIndex = 51;
			this.notePanel_WatchGrade.TabStop = false;
			this.notePanel_WatchGrade.Text = "  年  级:";
			// 
			// notePanel_WatchNumber
			// 
			this.notePanel_WatchNumber.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchNumber.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchNumber.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchNumber.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchNumber.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchNumber.Location = new System.Drawing.Point(48, 128);
			this.notePanel_WatchNumber.MaxRows = 5;
			this.notePanel_WatchNumber.Name = "notePanel_WatchNumber";
			this.notePanel_WatchNumber.ParentAutoHeight = true;
			this.notePanel_WatchNumber.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchNumber.TabIndex = 50;
			this.notePanel_WatchNumber.TabStop = false;
			this.notePanel_WatchNumber.Text = "  学  号:";
			// 
			// notePanel_WatchName
			// 
			this.notePanel_WatchName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchName.Location = new System.Drawing.Point(48, 96);
			this.notePanel_WatchName.MaxRows = 5;
			this.notePanel_WatchName.Name = "notePanel_WatchName";
			this.notePanel_WatchName.ParentAutoHeight = true;
			this.notePanel_WatchName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_WatchName.TabIndex = 49;
			this.notePanel_WatchName.TabStop = false;
			this.notePanel_WatchName.Text = "  姓  名:";
			// 
			// groupControl_WatchWholeDay
			// 
			this.groupControl_WatchWholeDay.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDay.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholDayHandle);
			this.groupControl_WatchWholeDay.Controls.Add(this.groupControl_WatchWholeDayReg);
			this.groupControl_WatchWholeDay.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDay.Location = new System.Drawing.Point(0, 509);
			this.groupControl_WatchWholeDay.Name = "groupControl_WatchWholeDay";
			this.groupControl_WatchWholeDay.Size = new System.Drawing.Size(464, 336);
			this.groupControl_WatchWholeDay.TabIndex = 2;
			this.groupControl_WatchWholeDay.Text = "全日观察登记";
			this.groupControl_WatchWholeDay.Visible = false;
			// 
			// groupControl_WatchWholDayHandle
			// 
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholDayHandle.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayHeat);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrSeafood);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayLifeAttention);
			this.groupControl_WatchWholDayHandle.Controls.Add(this.checkEdit_WatchWholeDayCtrAct);
			this.groupControl_WatchWholDayHandle.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_WatchWholDayHandle.Location = new System.Drawing.Point(3, 192);
			this.groupControl_WatchWholDayHandle.Name = "groupControl_WatchWholDayHandle";
			this.groupControl_WatchWholDayHandle.Size = new System.Drawing.Size(458, 141);
			this.groupControl_WatchWholDayHandle.TabIndex = 1;
			this.groupControl_WatchWholDayHandle.Text = "处理情况";
			// 
			// checkEdit_WatchWholeDayHeat
			// 
			this.checkEdit_WatchWholeDayHeat.Location = new System.Drawing.Point(272, 80);
			this.checkEdit_WatchWholeDayHeat.Name = "checkEdit_WatchWholeDayHeat";
			// 
			// checkEdit_WatchWholeDayHeat.Properties
			// 
			this.checkEdit_WatchWholeDayHeat.Properties.Caption = "按时测体温";
			this.checkEdit_WatchWholeDayHeat.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayHeat.TabIndex = 3;
			// 
			// checkEdit_WatchWholeDayCtrSeafood
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Location = new System.Drawing.Point(128, 80);
			this.checkEdit_WatchWholeDayCtrSeafood.Name = "checkEdit_WatchWholeDayCtrSeafood";
			// 
			// checkEdit_WatchWholeDayCtrSeafood.Properties
			// 
			this.checkEdit_WatchWholeDayCtrSeafood.Properties.Caption = "忌海鲜";
			this.checkEdit_WatchWholeDayCtrSeafood.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrSeafood.TabIndex = 2;
			// 
			// checkEdit_WatchWholeDayLifeAttention
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Location = new System.Drawing.Point(272, 40);
			this.checkEdit_WatchWholeDayLifeAttention.Name = "checkEdit_WatchWholeDayLifeAttention";
			// 
			// checkEdit_WatchWholeDayLifeAttention.Properties
			// 
			this.checkEdit_WatchWholeDayLifeAttention.Properties.Caption = "注意生活护理";
			this.checkEdit_WatchWholeDayLifeAttention.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayLifeAttention.TabIndex = 1;
			// 
			// checkEdit_WatchWholeDayCtrAct
			// 
			this.checkEdit_WatchWholeDayCtrAct.Location = new System.Drawing.Point(128, 40);
			this.checkEdit_WatchWholeDayCtrAct.Name = "checkEdit_WatchWholeDayCtrAct";
			// 
			// checkEdit_WatchWholeDayCtrAct.Properties
			// 
			this.checkEdit_WatchWholeDayCtrAct.Properties.Caption = "控制运动量";
			this.checkEdit_WatchWholeDayCtrAct.Size = new System.Drawing.Size(104, 19);
			this.checkEdit_WatchWholeDayCtrAct.TabIndex = 0;
			// 
			// groupControl_WatchWholeDayReg
			// 
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchWholeDayReg.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchWholeDayReg.Controls.Add(this.textEdit_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayElse);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayCough);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySleep);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayStool);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayAppetite);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDaySpirit);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.comboBoxEdit_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Controls.Add(this.notePanel_WatchWholeDayMovement);
			this.groupControl_WatchWholeDayReg.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchWholeDayReg.Location = new System.Drawing.Point(3, 18);
			this.groupControl_WatchWholeDayReg.Name = "groupControl_WatchWholeDayReg";
			this.groupControl_WatchWholeDayReg.Size = new System.Drawing.Size(458, 174);
			this.groupControl_WatchWholeDayReg.TabIndex = 0;
			this.groupControl_WatchWholeDayReg.Text = "体温,精神,食欲等情况";
			// 
			// textEdit_WatchWholeDayElse
			// 
			this.textEdit_WatchWholeDayElse.EditValue = "";
			this.textEdit_WatchWholeDayElse.Location = new System.Drawing.Point(120, 120);
			this.textEdit_WatchWholeDayElse.Name = "textEdit_WatchWholeDayElse";
			this.textEdit_WatchWholeDayElse.Size = new System.Drawing.Size(336, 23);
			this.textEdit_WatchWholeDayElse.TabIndex = 89;
			// 
			// notePanel_WatchWholeDayElse
			// 
			this.notePanel_WatchWholeDayElse.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayElse.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayElse.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayElse.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayElse.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayElse.Location = new System.Drawing.Point(24, 120);
			this.notePanel_WatchWholeDayElse.MaxRows = 5;
			this.notePanel_WatchWholeDayElse.Name = "notePanel_WatchWholeDayElse";
			this.notePanel_WatchWholeDayElse.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayElse.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayElse.TabIndex = 88;
			this.notePanel_WatchWholeDayElse.TabStop = false;
			this.notePanel_WatchWholeDayElse.Text = " 其他情况:";
			// 
			// comboBoxEdit_WatchWholeDayCough
			// 
			this.comboBoxEdit_WatchWholeDayCough.EditValue = "有";
			this.comboBoxEdit_WatchWholeDayCough.Location = new System.Drawing.Point(408, 80);
			this.comboBoxEdit_WatchWholeDayCough.Name = "comboBoxEdit_WatchWholeDayCough";
			// 
			// comboBoxEdit_WatchWholeDayCough.Properties
			// 
			this.comboBoxEdit_WatchWholeDayCough.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayCough.Properties.Items.AddRange(new object[] {
																							"有",
																							"无"});
			this.comboBoxEdit_WatchWholeDayCough.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayCough.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayCough.TabIndex = 87;
			// 
			// notePanel_WatchWholeDayCough
			// 
			this.notePanel_WatchWholeDayCough.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayCough.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayCough.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayCough.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayCough.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayCough.Location = new System.Drawing.Point(328, 80);
			this.notePanel_WatchWholeDayCough.MaxRows = 5;
			this.notePanel_WatchWholeDayCough.Name = "notePanel_WatchWholeDayCough";
			this.notePanel_WatchWholeDayCough.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayCough.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayCough.TabIndex = 86;
			this.notePanel_WatchWholeDayCough.TabStop = false;
			this.notePanel_WatchWholeDayCough.Text = " 咳  嗽:";
			// 
			// comboBoxEdit_WatchWholeDaySleep
			// 
			this.comboBoxEdit_WatchWholeDaySleep.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySleep.Location = new System.Drawing.Point(272, 80);
			this.comboBoxEdit_WatchWholeDaySleep.Name = "comboBoxEdit_WatchWholeDaySleep";
			// 
			// comboBoxEdit_WatchWholeDaySleep.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDaySleep.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySleep.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySleep.TabIndex = 85;
			// 
			// notePanel_WatchWholeDaySleep
			// 
			this.notePanel_WatchWholeDaySleep.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySleep.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySleep.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySleep.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySleep.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySleep.Location = new System.Drawing.Point(192, 80);
			this.notePanel_WatchWholeDaySleep.MaxRows = 5;
			this.notePanel_WatchWholeDaySleep.Name = "notePanel_WatchWholeDaySleep";
			this.notePanel_WatchWholeDaySleep.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySleep.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySleep.TabIndex = 84;
			this.notePanel_WatchWholeDaySleep.TabStop = false;
			this.notePanel_WatchWholeDaySleep.Text = " 睡  眠:";
			// 
			// comboBoxEdit_WatchWholeDayStool
			// 
			this.comboBoxEdit_WatchWholeDayStool.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayStool.Location = new System.Drawing.Point(120, 80);
			this.comboBoxEdit_WatchWholeDayStool.Name = "comboBoxEdit_WatchWholeDayStool";
			// 
			// comboBoxEdit_WatchWholeDayStool.Properties
			// 
			this.comboBoxEdit_WatchWholeDayStool.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayStool.Properties.Items.AddRange(new object[] {
																							"好",
																							"中",
																							"差"});
			this.comboBoxEdit_WatchWholeDayStool.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayStool.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayStool.TabIndex = 83;
			// 
			// notePanel_WatchWholeDayStool
			// 
			this.notePanel_WatchWholeDayStool.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayStool.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayStool.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayStool.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayStool.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayStool.Location = new System.Drawing.Point(24, 80);
			this.notePanel_WatchWholeDayStool.MaxRows = 5;
			this.notePanel_WatchWholeDayStool.Name = "notePanel_WatchWholeDayStool";
			this.notePanel_WatchWholeDayStool.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayStool.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayStool.TabIndex = 82;
			this.notePanel_WatchWholeDayStool.TabStop = false;
			this.notePanel_WatchWholeDayStool.Text = "   大小便:";
			// 
			// comboBoxEdit_WatchWholeDayAppetite
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.EditValue = "好";
			this.comboBoxEdit_WatchWholeDayAppetite.Location = new System.Drawing.Point(408, 40);
			this.comboBoxEdit_WatchWholeDayAppetite.Name = "comboBoxEdit_WatchWholeDayAppetite";
			// 
			// comboBoxEdit_WatchWholeDayAppetite.Properties
			// 
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.Items.AddRange(new object[] {
																							   "好",
																							   "中",
																							   "差"});
			this.comboBoxEdit_WatchWholeDayAppetite.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayAppetite.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDayAppetite.TabIndex = 81;
			// 
			// notePanel_WatchWholeDayAppetite
			// 
			this.notePanel_WatchWholeDayAppetite.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayAppetite.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayAppetite.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayAppetite.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayAppetite.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayAppetite.Location = new System.Drawing.Point(328, 40);
			this.notePanel_WatchWholeDayAppetite.MaxRows = 5;
			this.notePanel_WatchWholeDayAppetite.Name = "notePanel_WatchWholeDayAppetite";
			this.notePanel_WatchWholeDayAppetite.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayAppetite.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDayAppetite.TabIndex = 80;
			this.notePanel_WatchWholeDayAppetite.TabStop = false;
			this.notePanel_WatchWholeDayAppetite.Text = " 食  欲:";
			// 
			// comboBoxEdit_WatchWholeDaySpirit
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.EditValue = "好";
			this.comboBoxEdit_WatchWholeDaySpirit.Location = new System.Drawing.Point(272, 40);
			this.comboBoxEdit_WatchWholeDaySpirit.Name = "comboBoxEdit_WatchWholeDaySpirit";
			// 
			// comboBoxEdit_WatchWholeDaySpirit.Properties
			// 
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.Items.AddRange(new object[] {
																							 "好",
																							 "中",
																							 "差"});
			this.comboBoxEdit_WatchWholeDaySpirit.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDaySpirit.Size = new System.Drawing.Size(48, 23);
			this.comboBoxEdit_WatchWholeDaySpirit.TabIndex = 79;
			// 
			// notePanel_WatchWholeDaySpirit
			// 
			this.notePanel_WatchWholeDaySpirit.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDaySpirit.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDaySpirit.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDaySpirit.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDaySpirit.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDaySpirit.Location = new System.Drawing.Point(192, 40);
			this.notePanel_WatchWholeDaySpirit.MaxRows = 5;
			this.notePanel_WatchWholeDaySpirit.Name = "notePanel_WatchWholeDaySpirit";
			this.notePanel_WatchWholeDaySpirit.ParentAutoHeight = true;
			this.notePanel_WatchWholeDaySpirit.Size = new System.Drawing.Size(72, 22);
			this.notePanel_WatchWholeDaySpirit.TabIndex = 78;
			this.notePanel_WatchWholeDaySpirit.TabStop = false;
			this.notePanel_WatchWholeDaySpirit.Text = " 精  神:";
			// 
			// comboBoxEdit_WatchWholeDayMovement
			// 
			this.comboBoxEdit_WatchWholeDayMovement.EditValue = "强";
			this.comboBoxEdit_WatchWholeDayMovement.Location = new System.Drawing.Point(120, 40);
			this.comboBoxEdit_WatchWholeDayMovement.Name = "comboBoxEdit_WatchWholeDayMovement";
			// 
			// comboBoxEdit_WatchWholeDayMovement.Properties
			// 
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																	   new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.Items.AddRange(new object[] {
																							   "强",
																							   "中",
																							   "弱"});
			this.comboBoxEdit_WatchWholeDayMovement.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_WatchWholeDayMovement.Size = new System.Drawing.Size(64, 23);
			this.comboBoxEdit_WatchWholeDayMovement.TabIndex = 77;
			// 
			// notePanel_WatchWholeDayMovement
			// 
			this.notePanel_WatchWholeDayMovement.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_WatchWholeDayMovement.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_WatchWholeDayMovement.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_WatchWholeDayMovement.ForeColor = System.Drawing.Color.Black;
			this.notePanel_WatchWholeDayMovement.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchWholeDayMovement.Location = new System.Drawing.Point(24, 40);
			this.notePanel_WatchWholeDayMovement.MaxRows = 5;
			this.notePanel_WatchWholeDayMovement.Name = "notePanel_WatchWholeDayMovement";
			this.notePanel_WatchWholeDayMovement.ParentAutoHeight = true;
			this.notePanel_WatchWholeDayMovement.Size = new System.Drawing.Size(88, 22);
			this.notePanel_WatchWholeDayMovement.TabIndex = 50;
			this.notePanel_WatchWholeDayMovement.TabStop = false;
			this.notePanel_WatchWholeDayMovement.Text = "一日活动:";
			// 
			// groupControl_WatchRecList
			// 
			this.groupControl_WatchRecList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_WatchRecList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_WatchRecList.Controls.Add(this.gridControl_WatchRecList);
			this.groupControl_WatchRecList.Controls.Add(this.notePanel_WatchRecList);
			this.groupControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_WatchRecList.Location = new System.Drawing.Point(0, 40);
			this.groupControl_WatchRecList.Name = "groupControl_WatchRecList";
			this.groupControl_WatchRecList.Size = new System.Drawing.Size(464, 469);
			this.groupControl_WatchRecList.TabIndex = 1;
			this.groupControl_WatchRecList.Text = "幼儿观察列表";
			// 
			// gridControl_WatchRecList
			// 
			this.gridControl_WatchRecList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_WatchRecList.EmbeddedNavigator
			// 
			this.gridControl_WatchRecList.EmbeddedNavigator.Name = "";
			this.gridControl_WatchRecList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_WatchRecList.MainView = this.gridView8;
			this.gridControl_WatchRecList.Name = "gridControl_WatchRecList";
			this.gridControl_WatchRecList.Size = new System.Drawing.Size(458, 425);
			this.gridControl_WatchRecList.TabIndex = 26;
			this.gridControl_WatchRecList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													this.gridView8});
			this.gridControl_WatchRecList.DoubleClick += new System.EventHandler(this.gridControl_WatchRecList_DoubleClick);
			// 
			// gridView8
			// 
			this.gridView8.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn29,
																							 this.gridColumn30,
																							 this.gridColumn31,
																							 this.gridColumn32,
																							 this.gridColumn33,
																							 this.gridColumn34});
			this.gridView8.GridControl = this.gridControl_WatchRecList;
			this.gridView8.Name = "gridView8";
			this.gridView8.OptionsCustomization.AllowFilter = false;
			this.gridView8.OptionsView.ShowFilterPanel = false;
			this.gridView8.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn29
			// 
			this.gridColumn29.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn29.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn29.Caption = "幼儿序号";
			this.gridColumn29.FieldName = "info_stuOrderNumber";
			this.gridColumn29.Name = "gridColumn29";
			this.gridColumn29.OptionsColumn.AllowEdit = false;
			this.gridColumn29.OptionsColumn.AllowFocus = false;
			this.gridColumn29.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn29.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn29.OptionsColumn.AllowMove = false;
			this.gridColumn29.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn29.OptionsColumn.ReadOnly = true;
			this.gridColumn29.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn29.Visible = true;
			this.gridColumn29.VisibleIndex = 0;
			this.gridColumn29.Width = 60;
			// 
			// gridColumn30
			// 
			this.gridColumn30.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn30.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn30.Caption = "幼儿学号";
			this.gridColumn30.FieldName = "stu_id";
			this.gridColumn30.Name = "gridColumn30";
			this.gridColumn30.OptionsColumn.AllowEdit = false;
			this.gridColumn30.OptionsColumn.AllowFocus = false;
			this.gridColumn30.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn30.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn30.OptionsColumn.AllowMove = false;
			this.gridColumn30.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn30.OptionsColumn.ReadOnly = true;
			this.gridColumn30.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn30.Visible = true;
			this.gridColumn30.VisibleIndex = 1;
			this.gridColumn30.Width = 65;
			// 
			// gridColumn31
			// 
			this.gridColumn31.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn31.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn31.Caption = "幼儿姓名";
			this.gridColumn31.FieldName = "stu_name";
			this.gridColumn31.Name = "gridColumn31";
			this.gridColumn31.OptionsColumn.AllowEdit = false;
			this.gridColumn31.OptionsColumn.AllowFocus = false;
			this.gridColumn31.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn31.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn31.OptionsColumn.AllowMove = false;
			this.gridColumn31.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn31.OptionsColumn.ReadOnly = true;
			this.gridColumn31.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn31.Visible = true;
			this.gridColumn31.VisibleIndex = 2;
			this.gridColumn31.Width = 77;
			// 
			// gridColumn32
			// 
			this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn32.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn32.Caption = "幼儿班级";
			this.gridColumn32.FieldName = "info_className";
			this.gridColumn32.Name = "gridColumn32";
			this.gridColumn32.OptionsColumn.AllowEdit = false;
			this.gridColumn32.OptionsColumn.AllowFocus = false;
			this.gridColumn32.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn32.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn32.OptionsColumn.AllowMove = false;
			this.gridColumn32.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn32.OptionsColumn.ReadOnly = true;
			this.gridColumn32.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn32.Visible = true;
			this.gridColumn32.VisibleIndex = 3;
			this.gridColumn32.Width = 77;
			// 
			// gridColumn33
			// 
			this.gridColumn33.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn33.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn33.Caption = "观察时间";
			this.gridColumn33.FieldName = "observeTime";
			this.gridColumn33.Name = "gridColumn33";
			this.gridColumn33.OptionsColumn.AllowEdit = false;
			this.gridColumn33.OptionsColumn.AllowFocus = false;
			this.gridColumn33.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn33.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn33.OptionsColumn.AllowMove = false;
			this.gridColumn33.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn33.OptionsColumn.ReadOnly = true;
			this.gridColumn33.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn33.Visible = true;
			this.gridColumn33.VisibleIndex = 4;
			this.gridColumn33.Width = 81;
			// 
			// gridColumn34
			// 
			this.gridColumn34.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn34.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn34.Caption = "教师签名";
			this.gridColumn34.FieldName = "dailyReg_teacherSign";
			this.gridColumn34.Name = "gridColumn34";
			this.gridColumn34.OptionsColumn.AllowEdit = false;
			this.gridColumn34.OptionsColumn.AllowFocus = false;
			this.gridColumn34.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn34.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn34.OptionsColumn.AllowMove = false;
			this.gridColumn34.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn34.OptionsColumn.ReadOnly = true;
			this.gridColumn34.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn34.Visible = true;
			this.gridColumn34.VisibleIndex = 5;
			this.gridColumn34.Width = 95;
			// 
			// notePanel_WatchRecList
			// 
			this.notePanel_WatchRecList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_WatchRecList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_WatchRecList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_WatchRecList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_WatchRecList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_WatchRecList.MaxRows = 5;
			this.notePanel_WatchRecList.Name = "notePanel_WatchRecList";
			this.notePanel_WatchRecList.ParentAutoHeight = true;
			this.notePanel_WatchRecList.Size = new System.Drawing.Size(458, 23);
			this.notePanel_WatchRecList.TabIndex = 25;
			this.notePanel_WatchRecList.TabStop = false;
			this.notePanel_WatchRecList.Text = "双击进入幼儿全日观察";
			// 
			// panelControl7
			// 
			this.panelControl7.Controls.Add(this.simpleButton_WatchSearch);
			this.panelControl7.Controls.Add(this.simpleButton_WatchBack);
			this.panelControl7.Controls.Add(this.simpleButton_WatchDelete);
			this.panelControl7.Controls.Add(this.simpleButton_WatchReport);
			this.panelControl7.Controls.Add(this.simpleButton_WatchHandle);
			this.panelControl7.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl7.Location = new System.Drawing.Point(0, 0);
			this.panelControl7.Name = "panelControl7";
			this.panelControl7.Size = new System.Drawing.Size(464, 40);
			this.panelControl7.TabIndex = 0;
			this.panelControl7.Text = "panelControl7";
			// 
			// simpleButton_WatchSearch
			// 
			this.simpleButton_WatchSearch.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchSearch.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchSearch.Appearance.Options.UseFont = true;
			this.simpleButton_WatchSearch.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchSearch.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchSearch.Image")));
			this.simpleButton_WatchSearch.Location = new System.Drawing.Point(8, 9);
			this.simpleButton_WatchSearch.Name = "simpleButton_WatchSearch";
			this.simpleButton_WatchSearch.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchSearch.TabIndex = 21;
			this.simpleButton_WatchSearch.Tag = 4;
			this.simpleButton_WatchSearch.Text = "检索";
			this.simpleButton_WatchSearch.Click += new System.EventHandler(this.simpleButton_WatchSearch_Click);
			// 
			// simpleButton_WatchBack
			// 
			this.simpleButton_WatchBack.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchBack.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchBack.Appearance.Options.UseFont = true;
			this.simpleButton_WatchBack.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchBack.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchBack.Image")));
			this.simpleButton_WatchBack.Location = new System.Drawing.Point(88, 8);
			this.simpleButton_WatchBack.Name = "simpleButton_WatchBack";
			this.simpleButton_WatchBack.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchBack.TabIndex = 19;
			this.simpleButton_WatchBack.Tag = 4;
			this.simpleButton_WatchBack.Text = "返回";
			this.simpleButton_WatchBack.Click += new System.EventHandler(this.simpleButton_WatchBack_Click);
			// 
			// simpleButton_WatchDelete
			// 
			this.simpleButton_WatchDelete.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchDelete.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchDelete.Appearance.Options.UseFont = true;
			this.simpleButton_WatchDelete.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchDelete.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchDelete.Image")));
			this.simpleButton_WatchDelete.Location = new System.Drawing.Point(248, 8);
			this.simpleButton_WatchDelete.Name = "simpleButton_WatchDelete";
			this.simpleButton_WatchDelete.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchDelete.TabIndex = 18;
			this.simpleButton_WatchDelete.Tag = 4;
			this.simpleButton_WatchDelete.Text = "删除";
			this.simpleButton_WatchDelete.Click += new System.EventHandler(this.simpleButton_WatchDelete_Click);
			// 
			// simpleButton_WatchReport
			// 
			this.simpleButton_WatchReport.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchReport.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchReport.Appearance.Options.UseFont = true;
			this.simpleButton_WatchReport.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchReport.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchReport.Image")));
			this.simpleButton_WatchReport.Location = new System.Drawing.Point(328, 8);
			this.simpleButton_WatchReport.Name = "simpleButton_WatchReport";
			this.simpleButton_WatchReport.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchReport.TabIndex = 16;
			this.simpleButton_WatchReport.Tag = 4;
			this.simpleButton_WatchReport.Text = "报表";
			this.simpleButton_WatchReport.Click += new System.EventHandler(this.simpleButton_WatchReport_Click);
			// 
			// simpleButton_WatchHandle
			// 
			this.simpleButton_WatchHandle.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_WatchHandle.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_WatchHandle.Appearance.Options.UseFont = true;
			this.simpleButton_WatchHandle.Appearance.Options.UseForeColor = true;
			this.simpleButton_WatchHandle.Enabled = false;
			this.simpleButton_WatchHandle.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_WatchHandle.Image")));
			this.simpleButton_WatchHandle.Location = new System.Drawing.Point(168, 8);
			this.simpleButton_WatchHandle.Name = "simpleButton_WatchHandle";
			this.simpleButton_WatchHandle.Size = new System.Drawing.Size(72, 26);
			this.simpleButton_WatchHandle.TabIndex = 14;
			this.simpleButton_WatchHandle.Tag = 4;
			this.simpleButton_WatchHandle.Text = "保存";
			this.simpleButton_WatchHandle.Click += new System.EventHandler(this.simpleButton_WatchHandle_Click);
			// 
			// xtraTabPage8
			// 
			this.xtraTabPage8.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage8.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage8.Controls.Add(this.splitContainerControl9);
			this.xtraTabPage8.Name = "xtraTabPage8";
			this.xtraTabPage8.PageVisible = false;
			this.xtraTabPage8.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage8.Text = "服药登记";
			// 
			// splitContainerControl9
			// 
			this.splitContainerControl9.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl9.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl9.Name = "splitContainerControl9";
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_StuList);
			this.splitContainerControl9.Panel1.Controls.Add(this.groupControl_MedReg_Ser);
			this.splitContainerControl9.Panel1.Text = "splitContainerControl9_Panel1";
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_MedCarrInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.groupControl_MedReg_DiagInfo);
			this.splitContainerControl9.Panel2.Controls.Add(this.panelControl8);
			this.splitContainerControl9.Panel2.Text = "splitContainerControl9_Panel2";
			this.splitContainerControl9.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl9.SplitterPosition = 289;
			this.splitContainerControl9.TabIndex = 0;
			this.splitContainerControl9.Text = "splitContainerControl9";
			// 
			// groupControl_MedReg_StuList
			// 
			this.groupControl_MedReg_StuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_StuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_StuList.Controls.Add(this.gridControl_MedReg_StuList);
			this.groupControl_MedReg_StuList.Controls.Add(this.notePanel2);
			this.groupControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_StuList.Location = new System.Drawing.Point(0, 208);
			this.groupControl_MedReg_StuList.Name = "groupControl_MedReg_StuList";
			this.groupControl_MedReg_StuList.Size = new System.Drawing.Size(283, 301);
			this.groupControl_MedReg_StuList.TabIndex = 2;
			this.groupControl_MedReg_StuList.Text = "今天需要服药的幼儿";
			// 
			// gridControl_MedReg_StuList
			// 
			this.gridControl_MedReg_StuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedReg_StuList.EmbeddedNavigator
			// 
			this.gridControl_MedReg_StuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedReg_StuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedReg_StuList.MainView = this.gridView9;
			this.gridControl_MedReg_StuList.Name = "gridControl_MedReg_StuList";
			this.gridControl_MedReg_StuList.Size = new System.Drawing.Size(277, 257);
			this.gridControl_MedReg_StuList.TabIndex = 59;
			this.gridControl_MedReg_StuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView9});
			this.gridControl_MedReg_StuList.DoubleClick += new System.EventHandler(this.gridControl_MedReg_StuList_DoubleClick);
			// 
			// gridView9
			// 
			this.gridView9.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							 this.gridColumn35,
																							 this.gridColumn36,
																							 this.gridColumn37,
																							 this.gridColumn38});
			this.gridView9.GridControl = this.gridControl_MedReg_StuList;
			this.gridView9.Name = "gridView9";
			this.gridView9.OptionsCustomization.AllowFilter = false;
			this.gridView9.OptionsView.ShowFilterPanel = false;
			this.gridView9.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn35
			// 
			this.gridColumn35.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn35.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn35.Caption = "学号";
			this.gridColumn35.FieldName = "info_stuNumber";
			this.gridColumn35.Name = "gridColumn35";
			this.gridColumn35.OptionsColumn.AllowEdit = false;
			this.gridColumn35.OptionsColumn.AllowFocus = false;
			this.gridColumn35.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn35.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn35.OptionsColumn.AllowMove = false;
			this.gridColumn35.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn35.OptionsColumn.ReadOnly = true;
			this.gridColumn35.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn35.Visible = true;
			this.gridColumn35.VisibleIndex = 0;
			this.gridColumn35.Width = 48;
			// 
			// gridColumn36
			// 
			this.gridColumn36.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn36.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn36.Caption = "姓名";
			this.gridColumn36.FieldName = "info_stuName";
			this.gridColumn36.Name = "gridColumn36";
			this.gridColumn36.OptionsColumn.AllowEdit = false;
			this.gridColumn36.OptionsColumn.AllowFocus = false;
			this.gridColumn36.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn36.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn36.OptionsColumn.AllowMove = false;
			this.gridColumn36.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn36.OptionsColumn.ReadOnly = true;
			this.gridColumn36.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn36.Visible = true;
			this.gridColumn36.VisibleIndex = 1;
			this.gridColumn36.Width = 56;
			// 
			// gridColumn37
			// 
			this.gridColumn37.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn37.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn37.Caption = "班级";
			this.gridColumn37.FieldName = "info_className";
			this.gridColumn37.Name = "gridColumn37";
			this.gridColumn37.OptionsColumn.AllowEdit = false;
			this.gridColumn37.OptionsColumn.AllowFocus = false;
			this.gridColumn37.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn37.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn37.OptionsColumn.AllowMove = false;
			this.gridColumn37.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn37.OptionsColumn.ReadOnly = true;
			this.gridColumn37.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn37.Visible = true;
			this.gridColumn37.VisibleIndex = 2;
			this.gridColumn37.Width = 55;
			// 
			// gridColumn38
			// 
			this.gridColumn38.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn38.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn38.Caption = "晨检时间";
			this.gridColumn38.DisplayFormat.FormatString = "yyyy-MM-dd hh:mm:ss";
			this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn38.FieldName = "flow_stuFlowEnterDate";
			this.gridColumn38.Name = "gridColumn38";
			this.gridColumn38.OptionsColumn.AllowEdit = false;
			this.gridColumn38.OptionsColumn.AllowFocus = false;
			this.gridColumn38.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn38.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn38.OptionsColumn.AllowMove = false;
			this.gridColumn38.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn38.OptionsColumn.ReadOnly = true;
			this.gridColumn38.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn38.Visible = true;
			this.gridColumn38.VisibleIndex = 3;
			this.gridColumn38.Width = 101;
			// 
			// notePanel2
			// 
			this.notePanel2.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel2.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel2.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel2.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel2.Location = new System.Drawing.Point(3, 18);
			this.notePanel2.MaxRows = 5;
			this.notePanel2.Name = "notePanel2";
			this.notePanel2.ParentAutoHeight = true;
			this.notePanel2.Size = new System.Drawing.Size(277, 23);
			this.notePanel2.TabIndex = 58;
			this.notePanel2.TabStop = false;
			this.notePanel2.Text = "双击进行晨检诊断及药品携带信息管理";
			// 
			// groupControl_MedReg_Ser
			// 
			this.groupControl_MedReg_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Ser);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.textEdit_MedReg_Name);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Class);
			this.groupControl_MedReg_Ser.Controls.Add(this.comboBoxEdit_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Grade);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Number);
			this.groupControl_MedReg_Ser.Controls.Add(this.notePanel_MedReg_Name);
			this.groupControl_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedReg_Ser.Name = "groupControl_MedReg_Ser";
			this.groupControl_MedReg_Ser.Size = new System.Drawing.Size(283, 208);
			this.groupControl_MedReg_Ser.TabIndex = 1;
			this.groupControl_MedReg_Ser.Text = "信息查询";
			// 
			// notePanel_MedReg_Ser
			// 
			this.notePanel_MedReg_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedReg_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedReg_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedReg_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedReg_Ser.MaxRows = 5;
			this.notePanel_MedReg_Ser.Name = "notePanel_MedReg_Ser";
			this.notePanel_MedReg_Ser.ParentAutoHeight = true;
			this.notePanel_MedReg_Ser.Size = new System.Drawing.Size(277, 23);
			this.notePanel_MedReg_Ser.TabIndex = 57;
			this.notePanel_MedReg_Ser.TabStop = false;
			this.notePanel_MedReg_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedReg_Number
			// 
			this.textEdit_MedReg_Number.EditValue = "";
			this.textEdit_MedReg_Number.Location = new System.Drawing.Point(144, 160);
			this.textEdit_MedReg_Number.Name = "textEdit_MedReg_Number";
			this.textEdit_MedReg_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Number.TabIndex = 56;
			this.textEdit_MedReg_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Number_EditValueChanged);
			// 
			// textEdit_MedReg_Name
			// 
			this.textEdit_MedReg_Name.EditValue = "";
			this.textEdit_MedReg_Name.Location = new System.Drawing.Point(144, 128);
			this.textEdit_MedReg_Name.Name = "textEdit_MedReg_Name";
			this.textEdit_MedReg_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedReg_Name.TabIndex = 55;
			this.textEdit_MedReg_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedReg_Name_EditValueChanged);
			// 
			// comboBoxEdit_MedReg_Class
			// 
			this.comboBoxEdit_MedReg_Class.EditValue = "全部";
			this.comboBoxEdit_MedReg_Class.Location = new System.Drawing.Point(144, 96);
			this.comboBoxEdit_MedReg_Class.Name = "comboBoxEdit_MedReg_Class";
			// 
			// comboBoxEdit_MedReg_Class.Properties
			// 
			this.comboBoxEdit_MedReg_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Class.TabIndex = 54;
			this.comboBoxEdit_MedReg_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Class_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Class
			// 
			this.notePanel_MedReg_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Class.Location = new System.Drawing.Point(48, 96);
			this.notePanel_MedReg_Class.MaxRows = 5;
			this.notePanel_MedReg_Class.Name = "notePanel_MedReg_Class";
			this.notePanel_MedReg_Class.ParentAutoHeight = true;
			this.notePanel_MedReg_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Class.TabIndex = 53;
			this.notePanel_MedReg_Class.TabStop = false;
			this.notePanel_MedReg_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedReg_Grade
			// 
			this.comboBoxEdit_MedReg_Grade.EditValue = "全部";
			this.comboBoxEdit_MedReg_Grade.Location = new System.Drawing.Point(144, 64);
			this.comboBoxEdit_MedReg_Grade.Name = "comboBoxEdit_MedReg_Grade";
			// 
			// comboBoxEdit_MedReg_Grade.Properties
			// 
			this.comboBoxEdit_MedReg_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedReg_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedReg_Grade.TabIndex = 52;
			this.comboBoxEdit_MedReg_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedReg_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedReg_Grade
			// 
			this.notePanel_MedReg_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Grade.Location = new System.Drawing.Point(48, 64);
			this.notePanel_MedReg_Grade.MaxRows = 5;
			this.notePanel_MedReg_Grade.Name = "notePanel_MedReg_Grade";
			this.notePanel_MedReg_Grade.ParentAutoHeight = true;
			this.notePanel_MedReg_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Grade.TabIndex = 51;
			this.notePanel_MedReg_Grade.TabStop = false;
			this.notePanel_MedReg_Grade.Text = "  年  级:";
			// 
			// notePanel_MedReg_Number
			// 
			this.notePanel_MedReg_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Number.Location = new System.Drawing.Point(48, 160);
			this.notePanel_MedReg_Number.MaxRows = 5;
			this.notePanel_MedReg_Number.Name = "notePanel_MedReg_Number";
			this.notePanel_MedReg_Number.ParentAutoHeight = true;
			this.notePanel_MedReg_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Number.TabIndex = 50;
			this.notePanel_MedReg_Number.TabStop = false;
			this.notePanel_MedReg_Number.Text = "  学  号:";
			// 
			// notePanel_MedReg_Name
			// 
			this.notePanel_MedReg_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Name.Location = new System.Drawing.Point(48, 128);
			this.notePanel_MedReg_Name.MaxRows = 5;
			this.notePanel_MedReg_Name.Name = "notePanel_MedReg_Name";
			this.notePanel_MedReg_Name.ParentAutoHeight = true;
			this.notePanel_MedReg_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Name.TabIndex = 49;
			this.notePanel_MedReg_Name.TabStop = false;
			this.notePanel_MedReg_Name.Text = "  姓  名:";
			// 
			// groupControl_MedReg_MedInfo
			// 
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.textEdit_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_Taketimes);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedTake);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedType);
			this.groupControl_MedReg_MedInfo.Controls.Add(this.notePanel_MedReg_MedName);
			this.groupControl_MedReg_MedInfo.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedReg_MedInfo.Location = new System.Drawing.Point(0, 520);
			this.groupControl_MedReg_MedInfo.Name = "groupControl_MedReg_MedInfo";
			this.groupControl_MedReg_MedInfo.Size = new System.Drawing.Size(469, -11);
			this.groupControl_MedReg_MedInfo.TabIndex = 3;
			this.groupControl_MedReg_MedInfo.Text = "添加药品信息";
			this.groupControl_MedReg_MedInfo.Visible = false;
			// 
			// textEdit_MedReg_MedName
			// 
			this.textEdit_MedReg_MedName.EditValue = "";
			this.textEdit_MedReg_MedName.Location = new System.Drawing.Point(232, 32);
			this.textEdit_MedReg_MedName.Name = "textEdit_MedReg_MedName";
			this.textEdit_MedReg_MedName.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedName.TabIndex = 60;
			// 
			// textEdit_MedReg_Taketimes
			// 
			this.textEdit_MedReg_Taketimes.EditValue = "";
			this.textEdit_MedReg_Taketimes.Location = new System.Drawing.Point(232, 152);
			this.textEdit_MedReg_Taketimes.Name = "textEdit_MedReg_Taketimes";
			this.textEdit_MedReg_Taketimes.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_Taketimes.TabIndex = 59;
			// 
			// textEdit_MedReg_MedTake
			// 
			this.textEdit_MedReg_MedTake.EditValue = "";
			this.textEdit_MedReg_MedTake.Location = new System.Drawing.Point(232, 112);
			this.textEdit_MedReg_MedTake.Name = "textEdit_MedReg_MedTake";
			this.textEdit_MedReg_MedTake.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedTake.TabIndex = 58;
			// 
			// textEdit_MedReg_MedType
			// 
			this.textEdit_MedReg_MedType.EditValue = "";
			this.textEdit_MedReg_MedType.Location = new System.Drawing.Point(232, 72);
			this.textEdit_MedReg_MedType.Name = "textEdit_MedReg_MedType";
			this.textEdit_MedReg_MedType.Size = new System.Drawing.Size(96, 23);
			this.textEdit_MedReg_MedType.TabIndex = 57;
			// 
			// notePanel_MedReg_Taketimes
			// 
			this.notePanel_MedReg_Taketimes.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Taketimes.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Taketimes.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Taketimes.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Taketimes.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Taketimes.Location = new System.Drawing.Point(128, 152);
			this.notePanel_MedReg_Taketimes.MaxRows = 5;
			this.notePanel_MedReg_Taketimes.Name = "notePanel_MedReg_Taketimes";
			this.notePanel_MedReg_Taketimes.ParentAutoHeight = true;
			this.notePanel_MedReg_Taketimes.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_Taketimes.TabIndex = 55;
			this.notePanel_MedReg_Taketimes.TabStop = false;
			this.notePanel_MedReg_Taketimes.Text = "服用次数:";
			// 
			// notePanel_MedReg_MedTake
			// 
			this.notePanel_MedReg_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedTake.Location = new System.Drawing.Point(128, 112);
			this.notePanel_MedReg_MedTake.MaxRows = 5;
			this.notePanel_MedReg_MedTake.Name = "notePanel_MedReg_MedTake";
			this.notePanel_MedReg_MedTake.ParentAutoHeight = true;
			this.notePanel_MedReg_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedTake.TabIndex = 54;
			this.notePanel_MedReg_MedTake.TabStop = false;
			this.notePanel_MedReg_MedTake.Text = "服用剂量:";
			// 
			// notePanel_MedReg_MedType
			// 
			this.notePanel_MedReg_MedType.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedType.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedType.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedType.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedType.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedType.Location = new System.Drawing.Point(128, 72);
			this.notePanel_MedReg_MedType.MaxRows = 5;
			this.notePanel_MedReg_MedType.Name = "notePanel_MedReg_MedType";
			this.notePanel_MedReg_MedType.ParentAutoHeight = true;
			this.notePanel_MedReg_MedType.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedType.TabIndex = 53;
			this.notePanel_MedReg_MedType.TabStop = false;
			this.notePanel_MedReg_MedType.Text = "  种  类:";
			// 
			// notePanel_MedReg_MedName
			// 
			this.notePanel_MedReg_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_MedName.Location = new System.Drawing.Point(128, 32);
			this.notePanel_MedReg_MedName.MaxRows = 5;
			this.notePanel_MedReg_MedName.Name = "notePanel_MedReg_MedName";
			this.notePanel_MedReg_MedName.ParentAutoHeight = true;
			this.notePanel_MedReg_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedReg_MedName.TabIndex = 52;
			this.notePanel_MedReg_MedName.TabStop = false;
			this.notePanel_MedReg_MedName.Text = "  名  称:";
			// 
			// groupControl_MedReg_MedCarrInfo
			// 
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_MedCarrInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedCarrInfo);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrDel);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.simpleButton_MedReg_MedCarrAdd);
			this.groupControl_MedReg_MedCarrInfo.Controls.Add(this.listBoxControl_MedReg_MedInfo);
			this.groupControl_MedReg_MedCarrInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(0, 368);
			this.groupControl_MedReg_MedCarrInfo.Name = "groupControl_MedReg_MedCarrInfo";
			this.groupControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(469, 152);
			this.groupControl_MedReg_MedCarrInfo.TabIndex = 2;
			this.groupControl_MedReg_MedCarrInfo.Text = "幼儿药品携带信息";
			// 
			// listBoxControl_MedReg_MedCarrInfo
			// 
			this.listBoxControl_MedReg_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedCarrInfo.Location = new System.Drawing.Point(280, 24);
			this.listBoxControl_MedReg_MedCarrInfo.Name = "listBoxControl_MedReg_MedCarrInfo";
			this.listBoxControl_MedReg_MedCarrInfo.Size = new System.Drawing.Size(200, 112);
			this.listBoxControl_MedReg_MedCarrInfo.TabIndex = 3;
			this.listBoxControl_MedReg_MedCarrInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_Click);
			this.listBoxControl_MedReg_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_DoubleClick);
			this.listBoxControl_MedReg_MedCarrInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedCarrInfo_SelectedValueChanged);
			// 
			// simpleButton_MedReg_MedCarrDel
			// 
			this.simpleButton_MedReg_MedCarrDel.Enabled = false;
			this.simpleButton_MedReg_MedCarrDel.Location = new System.Drawing.Point(192, 88);
			this.simpleButton_MedReg_MedCarrDel.Name = "simpleButton_MedReg_MedCarrDel";
			this.simpleButton_MedReg_MedCarrDel.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrDel.TabIndex = 2;
			this.simpleButton_MedReg_MedCarrDel.Text = "< 删除";
			this.simpleButton_MedReg_MedCarrDel.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrDel_Click);
			// 
			// simpleButton_MedReg_MedCarrAdd
			// 
			this.simpleButton_MedReg_MedCarrAdd.Enabled = false;
			this.simpleButton_MedReg_MedCarrAdd.Location = new System.Drawing.Point(192, 48);
			this.simpleButton_MedReg_MedCarrAdd.Name = "simpleButton_MedReg_MedCarrAdd";
			this.simpleButton_MedReg_MedCarrAdd.Size = new System.Drawing.Size(64, 24);
			this.simpleButton_MedReg_MedCarrAdd.TabIndex = 1;
			this.simpleButton_MedReg_MedCarrAdd.Text = "添加 >";
			this.simpleButton_MedReg_MedCarrAdd.Click += new System.EventHandler(this.simpleButton_MedReg_MedCarrAdd_Click);
			// 
			// listBoxControl_MedReg_MedInfo
			// 
			this.listBoxControl_MedReg_MedInfo.ItemHeight = 16;
			this.listBoxControl_MedReg_MedInfo.Location = new System.Drawing.Point(24, 24);
			this.listBoxControl_MedReg_MedInfo.Name = "listBoxControl_MedReg_MedInfo";
			this.barManager1.SetPopupContextMenu(this.listBoxControl_MedReg_MedInfo, this.popupMenu2);
			this.listBoxControl_MedReg_MedInfo.Size = new System.Drawing.Size(152, 112);
			this.listBoxControl_MedReg_MedInfo.TabIndex = 0;
			this.listBoxControl_MedReg_MedInfo.Click += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_Click);
			this.listBoxControl_MedReg_MedInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_DoubleClick);
			this.listBoxControl_MedReg_MedInfo.SelectedValueChanged += new System.EventHandler(this.listBoxControl_MedReg_MedInfo_SelectedValueChanged);
			// 
			// groupControl_MedReg_DiagInfo
			// 
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedReg_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Else);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_FacialSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_SkinSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_AbdomenSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_EnteronSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel__MedReg_ThroatSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_LungSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.textEdit_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_UpperSym);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.comboBoxEdit_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Controls.Add(this.notePanel_MedReg_Diag);
			this.groupControl_MedReg_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedReg_DiagInfo.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedReg_DiagInfo.Name = "groupControl_MedReg_DiagInfo";
			this.groupControl_MedReg_DiagInfo.Size = new System.Drawing.Size(469, 320);
			this.groupControl_MedReg_DiagInfo.TabIndex = 1;
			this.groupControl_MedReg_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedReg_Else
			// 
			this.textEdit_MedReg_Else.EditValue = "";
			this.textEdit_MedReg_Else.Location = new System.Drawing.Point(144, 280);
			this.textEdit_MedReg_Else.Name = "textEdit_MedReg_Else";
			this.textEdit_MedReg_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_Else.TabIndex = 70;
			// 
			// textEdit_MedReg_FacialSym
			// 
			this.textEdit_MedReg_FacialSym.EditValue = "";
			this.textEdit_MedReg_FacialSym.Location = new System.Drawing.Point(144, 248);
			this.textEdit_MedReg_FacialSym.Name = "textEdit_MedReg_FacialSym";
			this.textEdit_MedReg_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedReg_Else
			// 
			this.notePanel_MedReg_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Else.Location = new System.Drawing.Point(24, 280);
			this.notePanel_MedReg_Else.MaxRows = 5;
			this.notePanel_MedReg_Else.Name = "notePanel_MedReg_Else";
			this.notePanel_MedReg_Else.ParentAutoHeight = true;
			this.notePanel_MedReg_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Else.TabIndex = 68;
			this.notePanel_MedReg_Else.TabStop = false;
			this.notePanel_MedReg_Else.Text = "  其他症状:";
			// 
			// notePanel_MedReg_FacialSym
			// 
			this.notePanel_MedReg_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_FacialSym.Location = new System.Drawing.Point(24, 248);
			this.notePanel_MedReg_FacialSym.MaxRows = 5;
			this.notePanel_MedReg_FacialSym.Name = "notePanel_MedReg_FacialSym";
			this.notePanel_MedReg_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedReg_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_FacialSym.TabIndex = 67;
			this.notePanel_MedReg_FacialSym.TabStop = false;
			this.notePanel_MedReg_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedReg_SkinSym
			// 
			this.notePanel_MedReg_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_SkinSym.Location = new System.Drawing.Point(24, 216);
			this.notePanel_MedReg_SkinSym.MaxRows = 5;
			this.notePanel_MedReg_SkinSym.Name = "notePanel_MedReg_SkinSym";
			this.notePanel_MedReg_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedReg_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_SkinSym.TabIndex = 66;
			this.notePanel_MedReg_SkinSym.TabStop = false;
			this.notePanel_MedReg_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedReg_AbdomenSym
			// 
			this.notePanel_MedReg_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_AbdomenSym.Location = new System.Drawing.Point(24, 184);
			this.notePanel_MedReg_AbdomenSym.MaxRows = 5;
			this.notePanel_MedReg_AbdomenSym.Name = "notePanel_MedReg_AbdomenSym";
			this.notePanel_MedReg_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedReg_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_AbdomenSym.TabIndex = 65;
			this.notePanel_MedReg_AbdomenSym.TabStop = false;
			this.notePanel_MedReg_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedReg_EnteronSym
			// 
			this.notePanel_MedReg_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_EnteronSym.Location = new System.Drawing.Point(24, 152);
			this.notePanel_MedReg_EnteronSym.MaxRows = 5;
			this.notePanel_MedReg_EnteronSym.Name = "notePanel_MedReg_EnteronSym";
			this.notePanel_MedReg_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedReg_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_EnteronSym.TabIndex = 64;
			this.notePanel_MedReg_EnteronSym.TabStop = false;
			this.notePanel_MedReg_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedReg_SkinSym
			// 
			this.textEdit_MedReg_SkinSym.EditValue = "";
			this.textEdit_MedReg_SkinSym.Location = new System.Drawing.Point(144, 216);
			this.textEdit_MedReg_SkinSym.Name = "textEdit_MedReg_SkinSym";
			this.textEdit_MedReg_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedReg_AbdomenSym
			// 
			this.textEdit_MedReg_AbdomenSym.EditValue = "";
			this.textEdit_MedReg_AbdomenSym.Location = new System.Drawing.Point(144, 184);
			this.textEdit_MedReg_AbdomenSym.Name = "textEdit_MedReg_AbdomenSym";
			this.textEdit_MedReg_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedReg_EnteronSym
			// 
			this.textEdit_MedReg_EnteronSym.EditValue = "";
			this.textEdit_MedReg_EnteronSym.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedReg_EnteronSym.Name = "textEdit_MedReg_EnteronSym";
			this.textEdit_MedReg_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedReg_ThroatSym
			// 
			this.textEdit_MedReg_ThroatSym.EditValue = "";
			this.textEdit_MedReg_ThroatSym.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedReg_ThroatSym.Name = "textEdit_MedReg_ThroatSym";
			this.textEdit_MedReg_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_ThroatSym.TabIndex = 60;
			// 
			// notePanel__MedReg_ThroatSym
			// 
			this.notePanel__MedReg_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel__MedReg_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel__MedReg_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel__MedReg_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel__MedReg_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel__MedReg_ThroatSym.Location = new System.Drawing.Point(24, 120);
			this.notePanel__MedReg_ThroatSym.MaxRows = 5;
			this.notePanel__MedReg_ThroatSym.Name = "notePanel__MedReg_ThroatSym";
			this.notePanel__MedReg_ThroatSym.ParentAutoHeight = true;
			this.notePanel__MedReg_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel__MedReg_ThroatSym.TabIndex = 59;
			this.notePanel__MedReg_ThroatSym.TabStop = false;
			this.notePanel__MedReg_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedReg_LungSym
			// 
			this.textEdit_MedReg_LungSym.EditValue = "";
			this.textEdit_MedReg_LungSym.Location = new System.Drawing.Point(144, 88);
			this.textEdit_MedReg_LungSym.Name = "textEdit_MedReg_LungSym";
			this.textEdit_MedReg_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_LungSym.TabIndex = 58;
			// 
			// notePanel_MedReg_LungSym
			// 
			this.notePanel_MedReg_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_LungSym.Location = new System.Drawing.Point(24, 88);
			this.notePanel_MedReg_LungSym.MaxRows = 5;
			this.notePanel_MedReg_LungSym.Name = "notePanel_MedReg_LungSym";
			this.notePanel_MedReg_LungSym.ParentAutoHeight = true;
			this.notePanel_MedReg_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_LungSym.TabIndex = 57;
			this.notePanel_MedReg_LungSym.TabStop = false;
			this.notePanel_MedReg_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedReg_UpperSym
			// 
			this.textEdit_MedReg_UpperSym.EditValue = "";
			this.textEdit_MedReg_UpperSym.Location = new System.Drawing.Point(144, 56);
			this.textEdit_MedReg_UpperSym.Name = "textEdit_MedReg_UpperSym";
			this.textEdit_MedReg_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedReg_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedReg_UpperSym
			// 
			this.notePanel_MedReg_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_UpperSym.Location = new System.Drawing.Point(24, 56);
			this.notePanel_MedReg_UpperSym.MaxRows = 5;
			this.notePanel_MedReg_UpperSym.Name = "notePanel_MedReg_UpperSym";
			this.notePanel_MedReg_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedReg_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_UpperSym.TabIndex = 54;
			this.notePanel_MedReg_UpperSym.TabStop = false;
			this.notePanel_MedReg_UpperSym.Text = "  上感症状:";
			// 
			// comboBoxEdit_MedReg_Diag
			// 
			this.comboBoxEdit_MedReg_Diag.EditValue = "";
			this.comboBoxEdit_MedReg_Diag.Location = new System.Drawing.Point(144, 24);
			this.comboBoxEdit_MedReg_Diag.Name = "comboBoxEdit_MedReg_Diag";
			// 
			// comboBoxEdit_MedReg_Diag.Properties
			// 
			this.comboBoxEdit_MedReg_Diag.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedReg_Diag.Properties.Items.AddRange(new object[] {
																					 "上感",
																					 "预防",
																					 "保健",
																					 "肺炎",
																					 "气管炎",
																					 "胃炎",
																					 "消化不良",
																					 "皮疹",
																					 "荨麻疹",
																					 "口腔溃疡",
																					 "口角炎",
																					 "浓疱疹",
																					 "腹痛",
																					 "腹泻",
																					 "中耳炎",
																					 "牙龈炎",
																					 "牙痛",
																					 "鼻出血",
																					 "外伤"});
			this.comboBoxEdit_MedReg_Diag.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedReg_Diag.Size = new System.Drawing.Size(104, 23);
			this.comboBoxEdit_MedReg_Diag.TabIndex = 53;
			// 
			// notePanel_MedReg_Diag
			// 
			this.notePanel_MedReg_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedReg_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedReg_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedReg_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedReg_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedReg_Diag.Location = new System.Drawing.Point(24, 24);
			this.notePanel_MedReg_Diag.MaxRows = 5;
			this.notePanel_MedReg_Diag.Name = "notePanel_MedReg_Diag";
			this.notePanel_MedReg_Diag.ParentAutoHeight = true;
			this.notePanel_MedReg_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedReg_Diag.TabIndex = 52;
			this.notePanel_MedReg_Diag.TabStop = false;
			this.notePanel_MedReg_Diag.Text = "  症状诊断:";
			// 
			// panelControl8
			// 
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Ser);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Modify);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Reg);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Save);
			this.panelControl8.Controls.Add(this.simpleButton_MedReg_Back);
			this.panelControl8.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl8.Location = new System.Drawing.Point(0, 0);
			this.panelControl8.Name = "panelControl8";
			this.panelControl8.Size = new System.Drawing.Size(469, 48);
			this.panelControl8.TabIndex = 0;
			this.panelControl8.Text = "panelControl8";
			// 
			// simpleButton_MedReg_Ser
			// 
			this.simpleButton_MedReg_Ser.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Ser.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Ser.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Ser.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Ser.Image")));
			this.simpleButton_MedReg_Ser.Location = new System.Drawing.Point(8, 8);
			this.simpleButton_MedReg_Ser.Name = "simpleButton_MedReg_Ser";
			this.simpleButton_MedReg_Ser.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Ser.TabIndex = 23;
			this.simpleButton_MedReg_Ser.Tag = 4;
			this.simpleButton_MedReg_Ser.Text = "检  索";
			this.simpleButton_MedReg_Ser.Click += new System.EventHandler(this.simpleButton_MedReg_Ser_Click);
			// 
			// simpleButton_MedReg_Modify
			// 
			this.simpleButton_MedReg_Modify.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Modify.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Modify.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Modify.Enabled = false;
			this.simpleButton_MedReg_Modify.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Modify.Image")));
			this.simpleButton_MedReg_Modify.Location = new System.Drawing.Point(392, 8);
			this.simpleButton_MedReg_Modify.Name = "simpleButton_MedReg_Modify";
			this.simpleButton_MedReg_Modify.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Modify.TabIndex = 22;
			this.simpleButton_MedReg_Modify.Tag = 4;
			this.simpleButton_MedReg_Modify.Text = "药品修改";
			this.simpleButton_MedReg_Modify.Click += new System.EventHandler(this.simpleButton_MedReg_Modify_Click);
			// 
			// simpleButton_MedReg_Reg
			// 
			this.simpleButton_MedReg_Reg.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Reg.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Reg.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Reg.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Reg.Image")));
			this.simpleButton_MedReg_Reg.Location = new System.Drawing.Point(184, 8);
			this.simpleButton_MedReg_Reg.Name = "simpleButton_MedReg_Reg";
			this.simpleButton_MedReg_Reg.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Reg.TabIndex = 20;
			this.simpleButton_MedReg_Reg.Tag = 4;
			this.simpleButton_MedReg_Reg.Text = "诊断登记";
			this.simpleButton_MedReg_Reg.Click += new System.EventHandler(this.simpleButton_MedReg_Reg_Click);
			// 
			// simpleButton_MedReg_Save
			// 
			this.simpleButton_MedReg_Save.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Save.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Save.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Save.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Save.Enabled = false;
			this.simpleButton_MedReg_Save.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Save.Image")));
			this.simpleButton_MedReg_Save.Location = new System.Drawing.Point(288, 8);
			this.simpleButton_MedReg_Save.Name = "simpleButton_MedReg_Save";
			this.simpleButton_MedReg_Save.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedReg_Save.TabIndex = 20;
			this.simpleButton_MedReg_Save.Tag = 4;
			this.simpleButton_MedReg_Save.Text = "药品保存";
			this.simpleButton_MedReg_Save.Click += new System.EventHandler(this.simpleButton_MedReg_Save_Click);
			// 
			// simpleButton_MedReg_Back
			// 
			this.simpleButton_MedReg_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedReg_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedReg_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedReg_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedReg_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedReg_Back.Image")));
			this.simpleButton_MedReg_Back.Location = new System.Drawing.Point(96, 8);
			this.simpleButton_MedReg_Back.Name = "simpleButton_MedReg_Back";
			this.simpleButton_MedReg_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedReg_Back.TabIndex = 21;
			this.simpleButton_MedReg_Back.Tag = 4;
			this.simpleButton_MedReg_Back.Text = "返  回";
			this.simpleButton_MedReg_Back.Click += new System.EventHandler(this.simpleButton_MedReg_Back_Click);
			// 
			// xtraTabPage9
			// 
			this.xtraTabPage9.Appearance.PageClient.BackColor = System.Drawing.Color.WhiteSmoke;
			this.xtraTabPage9.Appearance.PageClient.Options.UseBackColor = true;
			this.xtraTabPage9.Controls.Add(this.splitContainerControl10);
			this.xtraTabPage9.Name = "xtraTabPage9";
			this.xtraTabPage9.PageVisible = false;
			this.xtraTabPage9.Size = new System.Drawing.Size(768, 515);
			this.xtraTabPage9.Text = "服药记录";
			// 
			// splitContainerControl10
			// 
			this.splitContainerControl10.Dock = System.Windows.Forms.DockStyle.Fill;
			this.splitContainerControl10.Location = new System.Drawing.Point(0, 0);
			this.splitContainerControl10.Name = "splitContainerControl10";
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_AbnStuList);
			this.splitContainerControl10.Panel1.Controls.Add(this.groupControl_MedRec_Ser);
			this.splitContainerControl10.Panel1.Text = "splitContainerControl10_Panel1";
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DiagAndDoseAdd);
			this.splitContainerControl10.Panel2.Controls.Add(this.groupControl_MedRec_DoseRec);
			this.splitContainerControl10.Panel2.Controls.Add(this.panelControl9);
			this.splitContainerControl10.Panel2.Text = "splitContainerControl10_Panel2";
			this.splitContainerControl10.Size = new System.Drawing.Size(768, 515);
			this.splitContainerControl10.SplitterPosition = 281;
			this.splitContainerControl10.TabIndex = 0;
			this.splitContainerControl10.Text = "splitContainerControl10";
			// 
			// groupControl_MedRec_AbnStuList
			// 
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_AbnStuList.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.gridControl_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Controls.Add(this.notePanel_MedRec_AbnStuList);
			this.groupControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_AbnStuList.Location = new System.Drawing.Point(0, 256);
			this.groupControl_MedRec_AbnStuList.Name = "groupControl_MedRec_AbnStuList";
			this.groupControl_MedRec_AbnStuList.Size = new System.Drawing.Size(275, 253);
			this.groupControl_MedRec_AbnStuList.TabIndex = 3;
			this.groupControl_MedRec_AbnStuList.Text = "晨检异常幼儿列表";
			// 
			// gridControl_MedRec_AbnStuList
			// 
			this.gridControl_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_AbnStuList.EmbeddedNavigator
			// 
			this.gridControl_MedRec_AbnStuList.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_AbnStuList.MainView = this.gridView10;
			this.gridControl_MedRec_AbnStuList.Name = "gridControl_MedRec_AbnStuList";
			this.gridControl_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 209);
			this.gridControl_MedRec_AbnStuList.TabIndex = 59;
			this.gridControl_MedRec_AbnStuList.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																														 this.gridView10});
			this.gridControl_MedRec_AbnStuList.DoubleClick += new System.EventHandler(this.gridControl_MedRec_AbnStuList_DoubleClick);
			// 
			// gridView10
			// 
			this.gridView10.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn39,
																							  this.gridColumn40,
																							  this.gridColumn41,
																							  this.gridColumn42,
																							  this.gridColumn43});
			this.gridView10.GridControl = this.gridControl_MedRec_AbnStuList;
			this.gridView10.Name = "gridView10";
			this.gridView10.OptionsCustomization.AllowFilter = false;
			this.gridView10.OptionsView.ShowFilterPanel = false;
			this.gridView10.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn39
			// 
			this.gridColumn39.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn39.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn39.Caption = "学号";
			this.gridColumn39.FieldName = "info_stuNumber";
			this.gridColumn39.Name = "gridColumn39";
			this.gridColumn39.OptionsColumn.AllowEdit = false;
			this.gridColumn39.OptionsColumn.AllowFocus = false;
			this.gridColumn39.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn39.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn39.OptionsColumn.AllowMove = false;
			this.gridColumn39.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn39.OptionsColumn.ReadOnly = true;
			this.gridColumn39.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn39.Visible = true;
			this.gridColumn39.VisibleIndex = 0;
			this.gridColumn39.Width = 48;
			// 
			// gridColumn40
			// 
			this.gridColumn40.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn40.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn40.Caption = "姓名";
			this.gridColumn40.FieldName = "info_stuName";
			this.gridColumn40.Name = "gridColumn40";
			this.gridColumn40.OptionsColumn.AllowEdit = false;
			this.gridColumn40.OptionsColumn.AllowFocus = false;
			this.gridColumn40.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn40.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn40.OptionsColumn.AllowMove = false;
			this.gridColumn40.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn40.OptionsColumn.ReadOnly = true;
			this.gridColumn40.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn40.Visible = true;
			this.gridColumn40.VisibleIndex = 1;
			this.gridColumn40.Width = 47;
			// 
			// gridColumn41
			// 
			this.gridColumn41.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn41.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn41.Caption = "班级";
			this.gridColumn41.FieldName = "info_className";
			this.gridColumn41.Name = "gridColumn41";
			this.gridColumn41.OptionsColumn.AllowEdit = false;
			this.gridColumn41.OptionsColumn.AllowFocus = false;
			this.gridColumn41.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn41.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn41.OptionsColumn.AllowMove = false;
			this.gridColumn41.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn41.OptionsColumn.ReadOnly = true;
			this.gridColumn41.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn41.Visible = true;
			this.gridColumn41.VisibleIndex = 2;
			this.gridColumn41.Width = 49;
			// 
			// gridColumn42
			// 
			this.gridColumn42.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn42.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn42.Caption = "登记日期";
			this.gridColumn42.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn42.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn42.FieldName = "register_Time";
			this.gridColumn42.Name = "gridColumn42";
			this.gridColumn42.OptionsColumn.AllowEdit = false;
			this.gridColumn42.OptionsColumn.AllowFocus = false;
			this.gridColumn42.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn42.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn42.OptionsColumn.AllowMove = false;
			this.gridColumn42.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn42.OptionsColumn.ReadOnly = true;
			this.gridColumn42.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn42.Visible = true;
			this.gridColumn42.VisibleIndex = 3;
			this.gridColumn42.Width = 57;
			// 
			// gridColumn43
			// 
			this.gridColumn43.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn43.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn43.Caption = "登记教师";
			this.gridColumn43.FieldName = "teacher_Sign";
			this.gridColumn43.Name = "gridColumn43";
			this.gridColumn43.OptionsColumn.AllowEdit = false;
			this.gridColumn43.OptionsColumn.AllowFocus = false;
			this.gridColumn43.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn43.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn43.OptionsColumn.AllowMove = false;
			this.gridColumn43.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn43.OptionsColumn.ReadOnly = true;
			this.gridColumn43.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn43.Visible = true;
			this.gridColumn43.VisibleIndex = 4;
			this.gridColumn43.Width = 63;
			// 
			// notePanel_MedRec_AbnStuList
			// 
			this.notePanel_MedRec_AbnStuList.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_AbnStuList.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_AbnStuList.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_AbnStuList.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbnStuList.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_AbnStuList.MaxRows = 5;
			this.notePanel_MedRec_AbnStuList.Name = "notePanel_MedRec_AbnStuList";
			this.notePanel_MedRec_AbnStuList.ParentAutoHeight = true;
			this.notePanel_MedRec_AbnStuList.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_AbnStuList.TabIndex = 58;
			this.notePanel_MedRec_AbnStuList.TabStop = false;
			this.notePanel_MedRec_AbnStuList.Text = "双击显示特定幼儿";
			// 
			// groupControl_MedRec_Ser
			// 
			this.groupControl_MedRec_Ser.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_Ser.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_Name);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_EndDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.dateEdit_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_BegDate);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Ser);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_DoseRecDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.textEdit_MedRec_AbnDiaID);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Class);
			this.groupControl_MedRec_Ser.Controls.Add(this.comboBoxEdit_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Grade);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Number);
			this.groupControl_MedRec_Ser.Controls.Add(this.notePanel_MedRec_Name);
			this.groupControl_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_Ser.Location = new System.Drawing.Point(0, 0);
			this.groupControl_MedRec_Ser.Name = "groupControl_MedRec_Ser";
			this.groupControl_MedRec_Ser.Size = new System.Drawing.Size(275, 256);
			this.groupControl_MedRec_Ser.TabIndex = 2;
			this.groupControl_MedRec_Ser.Text = "晨检异常幼儿查询";
			// 
			// textEdit_MedRec_Number
			// 
			this.textEdit_MedRec_Number.EditValue = "";
			this.textEdit_MedRec_Number.Location = new System.Drawing.Point(144, 152);
			this.textEdit_MedRec_Number.Name = "textEdit_MedRec_Number";
			this.textEdit_MedRec_Number.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Number.TabIndex = 63;
			this.textEdit_MedRec_Number.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Number_EditValueChanged);
			// 
			// textEdit_MedRec_Name
			// 
			this.textEdit_MedRec_Name.EditValue = "";
			this.textEdit_MedRec_Name.Location = new System.Drawing.Point(144, 120);
			this.textEdit_MedRec_Name.Name = "textEdit_MedRec_Name";
			this.textEdit_MedRec_Name.Size = new System.Drawing.Size(88, 23);
			this.textEdit_MedRec_Name.TabIndex = 62;
			this.textEdit_MedRec_Name.EditValueChanged += new System.EventHandler(this.textEdit_MedRec_Name_EditValueChanged);
			// 
			// dateEdit_MedRec_EndDate
			// 
			this.dateEdit_MedRec_EndDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_EndDate.Location = new System.Drawing.Point(144, 216);
			this.dateEdit_MedRec_EndDate.Name = "dateEdit_MedRec_EndDate";
			// 
			// dateEdit_MedRec_EndDate.Properties
			// 
			this.dateEdit_MedRec_EndDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_EndDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_EndDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_EndDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_EndDate.TabIndex = 61;
			// 
			// notePanel_MedRec_EndDate
			// 
			this.notePanel_MedRec_EndDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EndDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EndDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EndDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EndDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EndDate.Location = new System.Drawing.Point(40, 216);
			this.notePanel_MedRec_EndDate.MaxRows = 5;
			this.notePanel_MedRec_EndDate.Name = "notePanel_MedRec_EndDate";
			this.notePanel_MedRec_EndDate.ParentAutoHeight = true;
			this.notePanel_MedRec_EndDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_EndDate.TabIndex = 60;
			this.notePanel_MedRec_EndDate.TabStop = false;
			this.notePanel_MedRec_EndDate.Text = "结束日期:";
			// 
			// dateEdit_MedRec_BegDate
			// 
			this.dateEdit_MedRec_BegDate.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.dateEdit_MedRec_BegDate.Location = new System.Drawing.Point(144, 184);
			this.dateEdit_MedRec_BegDate.Name = "dateEdit_MedRec_BegDate";
			// 
			// dateEdit_MedRec_BegDate.Properties
			// 
			this.dateEdit_MedRec_BegDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.dateEdit_MedRec_BegDate.Properties.Mask.EditMask = "d";
			this.dateEdit_MedRec_BegDate.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.dateEdit_MedRec_BegDate.Size = new System.Drawing.Size(88, 23);
			this.dateEdit_MedRec_BegDate.TabIndex = 59;
			// 
			// notePanel_MedRec_BegDate
			// 
			this.notePanel_MedRec_BegDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_BegDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_BegDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_BegDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_BegDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_BegDate.Location = new System.Drawing.Point(40, 184);
			this.notePanel_MedRec_BegDate.MaxRows = 5;
			this.notePanel_MedRec_BegDate.Name = "notePanel_MedRec_BegDate";
			this.notePanel_MedRec_BegDate.ParentAutoHeight = true;
			this.notePanel_MedRec_BegDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_BegDate.TabIndex = 58;
			this.notePanel_MedRec_BegDate.TabStop = false;
			this.notePanel_MedRec_BegDate.Text = "起始日期:";
			// 
			// notePanel_MedRec_Ser
			// 
			this.notePanel_MedRec_Ser.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_Ser.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_Ser.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_Ser.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Ser.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_Ser.MaxRows = 5;
			this.notePanel_MedRec_Ser.Name = "notePanel_MedRec_Ser";
			this.notePanel_MedRec_Ser.ParentAutoHeight = true;
			this.notePanel_MedRec_Ser.Size = new System.Drawing.Size(269, 23);
			this.notePanel_MedRec_Ser.TabIndex = 57;
			this.notePanel_MedRec_Ser.TabStop = false;
			this.notePanel_MedRec_Ser.Text = "检索您的幼儿";
			// 
			// textEdit_MedRec_DoseRecDiaID
			// 
			this.textEdit_MedRec_DoseRecDiaID.EditValue = "";
			this.textEdit_MedRec_DoseRecDiaID.Location = new System.Drawing.Point(192, 160);
			this.textEdit_MedRec_DoseRecDiaID.Name = "textEdit_MedRec_DoseRecDiaID";
			// 
			// textEdit_MedRec_DoseRecDiaID.Properties
			// 
			this.textEdit_MedRec_DoseRecDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_DoseRecDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_DoseRecDiaID.TabIndex = 56;
			// 
			// textEdit_MedRec_AbnDiaID
			// 
			this.textEdit_MedRec_AbnDiaID.EditValue = "";
			this.textEdit_MedRec_AbnDiaID.Location = new System.Drawing.Point(184, 128);
			this.textEdit_MedRec_AbnDiaID.Name = "textEdit_MedRec_AbnDiaID";
			// 
			// textEdit_MedRec_AbnDiaID.Properties
			// 
			this.textEdit_MedRec_AbnDiaID.Properties.AutoHeight = false;
			this.textEdit_MedRec_AbnDiaID.Size = new System.Drawing.Size(8, 8);
			this.textEdit_MedRec_AbnDiaID.TabIndex = 55;
			// 
			// comboBoxEdit_MedRec_Class
			// 
			this.comboBoxEdit_MedRec_Class.EditValue = "全部";
			this.comboBoxEdit_MedRec_Class.Location = new System.Drawing.Point(144, 88);
			this.comboBoxEdit_MedRec_Class.Name = "comboBoxEdit_MedRec_Class";
			// 
			// comboBoxEdit_MedRec_Class.Properties
			// 
			this.comboBoxEdit_MedRec_Class.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Class.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Class.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Class.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Class.TabIndex = 54;
			this.comboBoxEdit_MedRec_Class.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Class_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Class
			// 
			this.notePanel_MedRec_Class.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Class.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Class.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Class.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Class.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Class.Location = new System.Drawing.Point(40, 88);
			this.notePanel_MedRec_Class.MaxRows = 5;
			this.notePanel_MedRec_Class.Name = "notePanel_MedRec_Class";
			this.notePanel_MedRec_Class.ParentAutoHeight = true;
			this.notePanel_MedRec_Class.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Class.TabIndex = 53;
			this.notePanel_MedRec_Class.TabStop = false;
			this.notePanel_MedRec_Class.Text = "  班  级:";
			// 
			// comboBoxEdit_MedRec_Grade
			// 
			this.comboBoxEdit_MedRec_Grade.EditValue = "全部";
			this.comboBoxEdit_MedRec_Grade.Location = new System.Drawing.Point(144, 56);
			this.comboBoxEdit_MedRec_Grade.Name = "comboBoxEdit_MedRec_Grade";
			// 
			// comboBoxEdit_MedRec_Grade.Properties
			// 
			this.comboBoxEdit_MedRec_Grade.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															  new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_Grade.Properties.Items.AddRange(new object[] {
																					  "全部"});
			this.comboBoxEdit_MedRec_Grade.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_Grade.Size = new System.Drawing.Size(88, 23);
			this.comboBoxEdit_MedRec_Grade.TabIndex = 52;
			this.comboBoxEdit_MedRec_Grade.SelectedIndexChanged += new System.EventHandler(this.comboBoxEdit_MedRec_Grade_SelectedIndexChanged);
			// 
			// notePanel_MedRec_Grade
			// 
			this.notePanel_MedRec_Grade.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Grade.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Grade.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Grade.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Grade.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Grade.Location = new System.Drawing.Point(40, 56);
			this.notePanel_MedRec_Grade.MaxRows = 5;
			this.notePanel_MedRec_Grade.Name = "notePanel_MedRec_Grade";
			this.notePanel_MedRec_Grade.ParentAutoHeight = true;
			this.notePanel_MedRec_Grade.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Grade.TabIndex = 51;
			this.notePanel_MedRec_Grade.TabStop = false;
			this.notePanel_MedRec_Grade.Text = "  年  级:";
			// 
			// notePanel_MedRec_Number
			// 
			this.notePanel_MedRec_Number.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Number.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Number.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Number.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Number.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Number.Location = new System.Drawing.Point(40, 152);
			this.notePanel_MedRec_Number.MaxRows = 5;
			this.notePanel_MedRec_Number.Name = "notePanel_MedRec_Number";
			this.notePanel_MedRec_Number.ParentAutoHeight = true;
			this.notePanel_MedRec_Number.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Number.TabIndex = 50;
			this.notePanel_MedRec_Number.TabStop = false;
			this.notePanel_MedRec_Number.Text = "  学  号:";
			// 
			// notePanel_MedRec_Name
			// 
			this.notePanel_MedRec_Name.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Name.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Name.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Name.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Name.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Name.Location = new System.Drawing.Point(40, 120);
			this.notePanel_MedRec_Name.MaxRows = 5;
			this.notePanel_MedRec_Name.Name = "notePanel_MedRec_Name";
			this.notePanel_MedRec_Name.ParentAutoHeight = true;
			this.notePanel_MedRec_Name.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_Name.TabIndex = 49;
			this.notePanel_MedRec_Name.TabStop = false;
			this.notePanel_MedRec_Name.Text = "  姓  名:";
			// 
			// groupControl_MedRec_DiagAndDoseAdd
			// 
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagAndDoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DoseAdd);
			this.groupControl_MedRec_DiagAndDoseAdd.Controls.Add(this.groupControl_MedRec_DiagInfo);
			this.groupControl_MedRec_DiagAndDoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DiagAndDoseAdd.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DiagAndDoseAdd.Name = "groupControl_MedRec_DiagAndDoseAdd";
			this.groupControl_MedRec_DiagAndDoseAdd.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DiagAndDoseAdd.TabIndex = 2;
			this.groupControl_MedRec_DiagAndDoseAdd.Text = "晨检诊断及服药添加";
			this.groupControl_MedRec_DiagAndDoseAdd.Visible = false;
			// 
			// groupControl_MedRec_DoseAdd
			// 
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseAdd.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.listBoxControl_MedRec_MedCarrInfo);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.comboBoxEdit_MedRec_TakeRule);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.timeEdit_MedRec_TakeTime);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_TakeDate);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedTake);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.textEdit_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Controls.Add(this.notePanel_MedRec_MedName);
			this.groupControl_MedRec_DoseAdd.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseAdd.Location = new System.Drawing.Point(3, 272);
			this.groupControl_MedRec_DoseAdd.Name = "groupControl_MedRec_DoseAdd";
			this.groupControl_MedRec_DoseAdd.Size = new System.Drawing.Size(471, 186);
			this.groupControl_MedRec_DoseAdd.TabIndex = 3;
			this.groupControl_MedRec_DoseAdd.Text = "添加服药记录";
			// 
			// notePanel_MedRec_TakeRule
			// 
			this.notePanel_MedRec_TakeRule.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeRule.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeRule.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeRule.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeRule.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeRule.Location = new System.Drawing.Point(224, 128);
			this.notePanel_MedRec_TakeRule.MaxRows = 5;
			this.notePanel_MedRec_TakeRule.Name = "notePanel_MedRec_TakeRule";
			this.notePanel_MedRec_TakeRule.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeRule.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeRule.TabIndex = 65;
			this.notePanel_MedRec_TakeRule.TabStop = false;
			this.notePanel_MedRec_TakeRule.Text = "服药规定:";
			// 
			// listBoxControl_MedRec_MedCarrInfo
			// 
			this.listBoxControl_MedRec_MedCarrInfo.ItemHeight = 16;
			this.listBoxControl_MedRec_MedCarrInfo.Location = new System.Drawing.Point(56, 32);
			this.listBoxControl_MedRec_MedCarrInfo.Name = "listBoxControl_MedRec_MedCarrInfo";
			this.listBoxControl_MedRec_MedCarrInfo.Size = new System.Drawing.Size(152, 120);
			this.listBoxControl_MedRec_MedCarrInfo.TabIndex = 64;
			this.listBoxControl_MedRec_MedCarrInfo.DoubleClick += new System.EventHandler(this.listBoxControl_MedRec_MedCarrInfo_DoubleClick);
			// 
			// comboBoxEdit_MedRec_TakeRule
			// 
			this.comboBoxEdit_MedRec_TakeRule.EditValue = "";
			this.comboBoxEdit_MedRec_TakeRule.Location = new System.Drawing.Point(312, 128);
			this.comboBoxEdit_MedRec_TakeRule.Name = "comboBoxEdit_MedRec_TakeRule";
			// 
			// comboBoxEdit_MedRec_TakeRule.Properties
			// 
			this.comboBoxEdit_MedRec_TakeRule.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																																 new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
			this.comboBoxEdit_MedRec_TakeRule.Properties.Items.AddRange(new object[] {
																						 "饭前服用",
																						 "饭后服用"});
			this.comboBoxEdit_MedRec_TakeRule.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
			this.comboBoxEdit_MedRec_TakeRule.Size = new System.Drawing.Size(80, 23);
			this.comboBoxEdit_MedRec_TakeRule.TabIndex = 63;
			// 
			// timeEdit_MedRec_TakeTime
			// 
			this.timeEdit_MedRec_TakeTime.EditValue = new System.DateTime(2005, 1, 24, 0, 0, 0, 0);
			this.timeEdit_MedRec_TakeTime.Location = new System.Drawing.Point(312, 96);
			this.timeEdit_MedRec_TakeTime.Name = "timeEdit_MedRec_TakeTime";
			// 
			// timeEdit_MedRec_TakeTime.Properties
			// 
			this.timeEdit_MedRec_TakeTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
																															 new DevExpress.XtraEditors.Controls.EditorButton()});
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatString = "HH:mm:ss";
			this.timeEdit_MedRec_TakeTime.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.Mask.EditMask = "T";
			this.timeEdit_MedRec_TakeTime.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
			this.timeEdit_MedRec_TakeTime.Properties.UseCtrlIncrement = true;
			this.timeEdit_MedRec_TakeTime.Size = new System.Drawing.Size(80, 23);
			this.timeEdit_MedRec_TakeTime.TabIndex = 61;
			// 
			// notePanel_MedRec_TakeDate
			// 
			this.notePanel_MedRec_TakeDate.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_TakeDate.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_TakeDate.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_TakeDate.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_TakeDate.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_TakeDate.Location = new System.Drawing.Point(224, 96);
			this.notePanel_MedRec_TakeDate.MaxRows = 5;
			this.notePanel_MedRec_TakeDate.Name = "notePanel_MedRec_TakeDate";
			this.notePanel_MedRec_TakeDate.ParentAutoHeight = true;
			this.notePanel_MedRec_TakeDate.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_TakeDate.TabIndex = 60;
			this.notePanel_MedRec_TakeDate.TabStop = false;
			this.notePanel_MedRec_TakeDate.Text = "服药时间:";
			// 
			// textEdit_MedRec_MedTake
			// 
			this.textEdit_MedRec_MedTake.EditValue = "";
			this.textEdit_MedRec_MedTake.Location = new System.Drawing.Point(312, 64);
			this.textEdit_MedRec_MedTake.Name = "textEdit_MedRec_MedTake";
			this.textEdit_MedRec_MedTake.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedTake.TabIndex = 59;
			// 
			// notePanel_MedRec_MedTake
			// 
			this.notePanel_MedRec_MedTake.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedTake.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedTake.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedTake.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedTake.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedTake.Location = new System.Drawing.Point(224, 64);
			this.notePanel_MedRec_MedTake.MaxRows = 5;
			this.notePanel_MedRec_MedTake.Name = "notePanel_MedRec_MedTake";
			this.notePanel_MedRec_MedTake.ParentAutoHeight = true;
			this.notePanel_MedRec_MedTake.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedTake.TabIndex = 58;
			this.notePanel_MedRec_MedTake.TabStop = false;
			this.notePanel_MedRec_MedTake.Text = "服药剂量:";
			// 
			// textEdit_MedRec_MedName
			// 
			this.textEdit_MedRec_MedName.EditValue = "";
			this.textEdit_MedRec_MedName.Location = new System.Drawing.Point(312, 32);
			this.textEdit_MedRec_MedName.Name = "textEdit_MedRec_MedName";
			this.textEdit_MedRec_MedName.Size = new System.Drawing.Size(80, 23);
			this.textEdit_MedRec_MedName.TabIndex = 57;
			// 
			// notePanel_MedRec_MedName
			// 
			this.notePanel_MedRec_MedName.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_MedName.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_MedName.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_MedName.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_MedName.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_MedName.Location = new System.Drawing.Point(224, 32);
			this.notePanel_MedRec_MedName.MaxRows = 5;
			this.notePanel_MedRec_MedName.Name = "notePanel_MedRec_MedName";
			this.notePanel_MedRec_MedName.ParentAutoHeight = true;
			this.notePanel_MedRec_MedName.Size = new System.Drawing.Size(80, 22);
			this.notePanel_MedRec_MedName.TabIndex = 53;
			this.notePanel_MedRec_MedName.TabStop = false;
			this.notePanel_MedRec_MedName.Text = "服药名称:";
			// 
			// groupControl_MedRec_DiagInfo
			// 
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DiagInfo.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Else);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_FacialSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_SkinSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_AbdomenSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_EnteronSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_ThroatSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_LungSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.textEdit_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_UpperSym);
			this.groupControl_MedRec_DiagInfo.Controls.Add(this.notePanel_MedRec_Diag);
			this.groupControl_MedRec_DiagInfo.Dock = System.Windows.Forms.DockStyle.Top;
			this.groupControl_MedRec_DiagInfo.Location = new System.Drawing.Point(3, 18);
			this.groupControl_MedRec_DiagInfo.Name = "groupControl_MedRec_DiagInfo";
			this.groupControl_MedRec_DiagInfo.Size = new System.Drawing.Size(471, 254);
			this.groupControl_MedRec_DiagInfo.TabIndex = 2;
			this.groupControl_MedRec_DiagInfo.Text = "诊断信息";
			// 
			// textEdit_MedRec_Diag
			// 
			this.textEdit_MedRec_Diag.EditValue = "";
			this.textEdit_MedRec_Diag.Location = new System.Drawing.Point(176, 24);
			this.textEdit_MedRec_Diag.Name = "textEdit_MedRec_Diag";
			// 
			// textEdit_MedRec_Diag.Properties
			// 
			this.textEdit_MedRec_Diag.Properties.Enabled = false;
			this.textEdit_MedRec_Diag.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Diag.TabIndex = 71;
			// 
			// textEdit_MedRec_Else
			// 
			this.textEdit_MedRec_Else.EditValue = "";
			this.textEdit_MedRec_Else.Location = new System.Drawing.Point(176, 216);
			this.textEdit_MedRec_Else.Name = "textEdit_MedRec_Else";
			// 
			// textEdit_MedRec_Else.Properties
			// 
			this.textEdit_MedRec_Else.Properties.Enabled = false;
			this.textEdit_MedRec_Else.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_Else.TabIndex = 70;
			// 
			// textEdit_MedRec_FacialSym
			// 
			this.textEdit_MedRec_FacialSym.EditValue = "";
			this.textEdit_MedRec_FacialSym.Location = new System.Drawing.Point(176, 192);
			this.textEdit_MedRec_FacialSym.Name = "textEdit_MedRec_FacialSym";
			// 
			// textEdit_MedRec_FacialSym.Properties
			// 
			this.textEdit_MedRec_FacialSym.Properties.Enabled = false;
			this.textEdit_MedRec_FacialSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_FacialSym.TabIndex = 69;
			// 
			// notePanel_MedRec_Else
			// 
			this.notePanel_MedRec_Else.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Else.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Else.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Else.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Else.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Else.Location = new System.Drawing.Point(64, 216);
			this.notePanel_MedRec_Else.MaxRows = 5;
			this.notePanel_MedRec_Else.Name = "notePanel_MedRec_Else";
			this.notePanel_MedRec_Else.ParentAutoHeight = true;
			this.notePanel_MedRec_Else.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Else.TabIndex = 68;
			this.notePanel_MedRec_Else.TabStop = false;
			this.notePanel_MedRec_Else.Text = "  其他症状:";
			// 
			// notePanel_MedRec_FacialSym
			// 
			this.notePanel_MedRec_FacialSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_FacialSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_FacialSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_FacialSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_FacialSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_FacialSym.Location = new System.Drawing.Point(64, 192);
			this.notePanel_MedRec_FacialSym.MaxRows = 5;
			this.notePanel_MedRec_FacialSym.Name = "notePanel_MedRec_FacialSym";
			this.notePanel_MedRec_FacialSym.ParentAutoHeight = true;
			this.notePanel_MedRec_FacialSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_FacialSym.TabIndex = 67;
			this.notePanel_MedRec_FacialSym.TabStop = false;
			this.notePanel_MedRec_FacialSym.Text = "  五官症状:";
			// 
			// notePanel_MedRec_SkinSym
			// 
			this.notePanel_MedRec_SkinSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_SkinSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_SkinSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_SkinSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_SkinSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_SkinSym.Location = new System.Drawing.Point(64, 168);
			this.notePanel_MedRec_SkinSym.MaxRows = 5;
			this.notePanel_MedRec_SkinSym.Name = "notePanel_MedRec_SkinSym";
			this.notePanel_MedRec_SkinSym.ParentAutoHeight = true;
			this.notePanel_MedRec_SkinSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_SkinSym.TabIndex = 66;
			this.notePanel_MedRec_SkinSym.TabStop = false;
			this.notePanel_MedRec_SkinSym.Text = "  皮肤症状:";
			// 
			// notePanel_MedRec_AbdomenSym
			// 
			this.notePanel_MedRec_AbdomenSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_AbdomenSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_AbdomenSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_AbdomenSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_AbdomenSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_AbdomenSym.Location = new System.Drawing.Point(64, 144);
			this.notePanel_MedRec_AbdomenSym.MaxRows = 5;
			this.notePanel_MedRec_AbdomenSym.Name = "notePanel_MedRec_AbdomenSym";
			this.notePanel_MedRec_AbdomenSym.ParentAutoHeight = true;
			this.notePanel_MedRec_AbdomenSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_AbdomenSym.TabIndex = 65;
			this.notePanel_MedRec_AbdomenSym.TabStop = false;
			this.notePanel_MedRec_AbdomenSym.Text = "  腹部症状:";
			// 
			// notePanel_MedRec_EnteronSym
			// 
			this.notePanel_MedRec_EnteronSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_EnteronSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_EnteronSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_EnteronSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_EnteronSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_EnteronSym.Location = new System.Drawing.Point(64, 120);
			this.notePanel_MedRec_EnteronSym.MaxRows = 5;
			this.notePanel_MedRec_EnteronSym.Name = "notePanel_MedRec_EnteronSym";
			this.notePanel_MedRec_EnteronSym.ParentAutoHeight = true;
			this.notePanel_MedRec_EnteronSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_EnteronSym.TabIndex = 64;
			this.notePanel_MedRec_EnteronSym.TabStop = false;
			this.notePanel_MedRec_EnteronSym.Text = "消化道症状:";
			// 
			// textEdit_MedRec_SkinSym
			// 
			this.textEdit_MedRec_SkinSym.EditValue = "";
			this.textEdit_MedRec_SkinSym.Location = new System.Drawing.Point(176, 168);
			this.textEdit_MedRec_SkinSym.Name = "textEdit_MedRec_SkinSym";
			// 
			// textEdit_MedRec_SkinSym.Properties
			// 
			this.textEdit_MedRec_SkinSym.Properties.Enabled = false;
			this.textEdit_MedRec_SkinSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_SkinSym.TabIndex = 63;
			// 
			// textEdit_MedRec_AbdomenSym
			// 
			this.textEdit_MedRec_AbdomenSym.EditValue = "";
			this.textEdit_MedRec_AbdomenSym.Location = new System.Drawing.Point(176, 144);
			this.textEdit_MedRec_AbdomenSym.Name = "textEdit_MedRec_AbdomenSym";
			// 
			// textEdit_MedRec_AbdomenSym.Properties
			// 
			this.textEdit_MedRec_AbdomenSym.Properties.Enabled = false;
			this.textEdit_MedRec_AbdomenSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_AbdomenSym.TabIndex = 62;
			// 
			// textEdit_MedRec_EnteronSym
			// 
			this.textEdit_MedRec_EnteronSym.EditValue = "";
			this.textEdit_MedRec_EnteronSym.Location = new System.Drawing.Point(176, 120);
			this.textEdit_MedRec_EnteronSym.Name = "textEdit_MedRec_EnteronSym";
			// 
			// textEdit_MedRec_EnteronSym.Properties
			// 
			this.textEdit_MedRec_EnteronSym.Properties.Enabled = false;
			this.textEdit_MedRec_EnteronSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_EnteronSym.TabIndex = 61;
			// 
			// textEdit_MedRec_ThroatSym
			// 
			this.textEdit_MedRec_ThroatSym.EditValue = "";
			this.textEdit_MedRec_ThroatSym.Location = new System.Drawing.Point(176, 96);
			this.textEdit_MedRec_ThroatSym.Name = "textEdit_MedRec_ThroatSym";
			// 
			// textEdit_MedRec_ThroatSym.Properties
			// 
			this.textEdit_MedRec_ThroatSym.Properties.Enabled = false;
			this.textEdit_MedRec_ThroatSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_ThroatSym.TabIndex = 60;
			// 
			// notePanel_MedRec_ThroatSym
			// 
			this.notePanel_MedRec_ThroatSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_ThroatSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_ThroatSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_ThroatSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_ThroatSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_ThroatSym.Location = new System.Drawing.Point(64, 96);
			this.notePanel_MedRec_ThroatSym.MaxRows = 5;
			this.notePanel_MedRec_ThroatSym.Name = "notePanel_MedRec_ThroatSym";
			this.notePanel_MedRec_ThroatSym.ParentAutoHeight = true;
			this.notePanel_MedRec_ThroatSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_ThroatSym.TabIndex = 59;
			this.notePanel_MedRec_ThroatSym.TabStop = false;
			this.notePanel_MedRec_ThroatSym.Text = "咽喉部症状:";
			// 
			// textEdit_MedRec_LungSym
			// 
			this.textEdit_MedRec_LungSym.EditValue = "";
			this.textEdit_MedRec_LungSym.Location = new System.Drawing.Point(176, 72);
			this.textEdit_MedRec_LungSym.Name = "textEdit_MedRec_LungSym";
			// 
			// textEdit_MedRec_LungSym.Properties
			// 
			this.textEdit_MedRec_LungSym.Properties.Enabled = false;
			this.textEdit_MedRec_LungSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_LungSym.TabIndex = 58;
			// 
			// notePanel_MedRec_LungSym
			// 
			this.notePanel_MedRec_LungSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_LungSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_LungSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_LungSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_LungSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_LungSym.Location = new System.Drawing.Point(64, 72);
			this.notePanel_MedRec_LungSym.MaxRows = 5;
			this.notePanel_MedRec_LungSym.Name = "notePanel_MedRec_LungSym";
			this.notePanel_MedRec_LungSym.ParentAutoHeight = true;
			this.notePanel_MedRec_LungSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_LungSym.TabIndex = 57;
			this.notePanel_MedRec_LungSym.TabStop = false;
			this.notePanel_MedRec_LungSym.Text = "  肺部症状:";
			// 
			// textEdit_MedRec_UpperSym
			// 
			this.textEdit_MedRec_UpperSym.EditValue = "";
			this.textEdit_MedRec_UpperSym.Location = new System.Drawing.Point(176, 48);
			this.textEdit_MedRec_UpperSym.Name = "textEdit_MedRec_UpperSym";
			// 
			// textEdit_MedRec_UpperSym.Properties
			// 
			this.textEdit_MedRec_UpperSym.Properties.Enabled = false;
			this.textEdit_MedRec_UpperSym.Size = new System.Drawing.Size(256, 23);
			this.textEdit_MedRec_UpperSym.TabIndex = 56;
			// 
			// notePanel_MedRec_UpperSym
			// 
			this.notePanel_MedRec_UpperSym.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_UpperSym.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_UpperSym.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_UpperSym.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_UpperSym.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_UpperSym.Location = new System.Drawing.Point(64, 48);
			this.notePanel_MedRec_UpperSym.MaxRows = 5;
			this.notePanel_MedRec_UpperSym.Name = "notePanel_MedRec_UpperSym";
			this.notePanel_MedRec_UpperSym.ParentAutoHeight = true;
			this.notePanel_MedRec_UpperSym.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_UpperSym.TabIndex = 54;
			this.notePanel_MedRec_UpperSym.TabStop = false;
			this.notePanel_MedRec_UpperSym.Text = "  上感症状:";
			// 
			// notePanel_MedRec_Diag
			// 
			this.notePanel_MedRec_Diag.BackColor = System.Drawing.Color.FromArgb(((System.Byte)(224)), ((System.Byte)(224)), ((System.Byte)(224)));
			this.notePanel_MedRec_Diag.BackColor2 = System.Drawing.Color.DarkGray;
			this.notePanel_MedRec_Diag.Font = new System.Drawing.Font("Tahoma", 8F);
			this.notePanel_MedRec_Diag.ForeColor = System.Drawing.Color.Black;
			this.notePanel_MedRec_Diag.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_Diag.Location = new System.Drawing.Point(64, 24);
			this.notePanel_MedRec_Diag.MaxRows = 5;
			this.notePanel_MedRec_Diag.Name = "notePanel_MedRec_Diag";
			this.notePanel_MedRec_Diag.ParentAutoHeight = true;
			this.notePanel_MedRec_Diag.Size = new System.Drawing.Size(96, 22);
			this.notePanel_MedRec_Diag.TabIndex = 52;
			this.notePanel_MedRec_Diag.TabStop = false;
			this.notePanel_MedRec_Diag.Text = "  症状诊断:";
			// 
			// groupControl_MedRec_DoseRec
			// 
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.groupControl_MedRec_DoseRec.AppearanceCaption.Options.UseFont = true;
			this.groupControl_MedRec_DoseRec.Controls.Add(this.gridControl_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Controls.Add(this.notePanel_MedRec_DoseRec);
			this.groupControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			this.groupControl_MedRec_DoseRec.Location = new System.Drawing.Point(0, 48);
			this.groupControl_MedRec_DoseRec.Name = "groupControl_MedRec_DoseRec";
			this.groupControl_MedRec_DoseRec.Size = new System.Drawing.Size(477, 461);
			this.groupControl_MedRec_DoseRec.TabIndex = 1;
			this.groupControl_MedRec_DoseRec.Text = "幼儿服药记录追踪";
			// 
			// gridControl_MedRec_DoseRec
			// 
			this.gridControl_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Fill;
			// 
			// gridControl_MedRec_DoseRec.EmbeddedNavigator
			// 
			this.gridControl_MedRec_DoseRec.EmbeddedNavigator.Name = "";
			this.gridControl_MedRec_DoseRec.Location = new System.Drawing.Point(3, 41);
			this.gridControl_MedRec_DoseRec.MainView = this.gridView11;
			this.gridControl_MedRec_DoseRec.Name = "gridControl_MedRec_DoseRec";
			this.barManager1.SetPopupContextMenu(this.gridControl_MedRec_DoseRec, this.popupMenu3);
			this.gridControl_MedRec_DoseRec.Size = new System.Drawing.Size(471, 417);
			this.gridControl_MedRec_DoseRec.TabIndex = 59;
			this.gridControl_MedRec_DoseRec.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
																													  this.gridView11,
																													  this.gridView12});
			this.gridControl_MedRec_DoseRec.DoubleClick += new System.EventHandler(this.gridControl_MedRec_DoseRec_DoubleClick);
			// 
			// gridView11
			// 
			this.gridView11.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
																							  this.gridColumn49,
																							  this.gridColumn48,
																							  this.gridColumn44,
																							  this.gridColumn45,
																							  this.gridColumn46,
																							  this.gridColumn47});
			this.gridView11.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView11.Name = "gridView11";
			this.gridView11.OptionsCustomization.AllowFilter = false;
			this.gridView11.OptionsView.ShowFilterPanel = false;
			this.gridView11.OptionsView.ShowGroupPanel = false;
			// 
			// gridColumn49
			// 
			this.gridColumn49.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn49.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn49.Caption = "幼儿学号";
			this.gridColumn49.FieldName = "info_stuNumber";
			this.gridColumn49.Name = "gridColumn49";
			this.gridColumn49.OptionsColumn.AllowEdit = false;
			this.gridColumn49.OptionsColumn.AllowFocus = false;
			this.gridColumn49.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn49.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn49.OptionsColumn.AllowMove = false;
			this.gridColumn49.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn49.OptionsColumn.ReadOnly = true;
			this.gridColumn49.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn49.Visible = true;
			this.gridColumn49.VisibleIndex = 0;
			this.gridColumn49.Width = 66;
			// 
			// gridColumn48
			// 
			this.gridColumn48.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn48.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn48.Caption = "幼儿姓名";
			this.gridColumn48.FieldName = "info_stuName";
			this.gridColumn48.Name = "gridColumn48";
			this.gridColumn48.OptionsColumn.AllowEdit = false;
			this.gridColumn48.OptionsColumn.AllowFocus = false;
			this.gridColumn48.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn48.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn48.OptionsColumn.AllowMove = false;
			this.gridColumn48.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn48.OptionsColumn.ReadOnly = true;
			this.gridColumn48.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn48.Visible = true;
			this.gridColumn48.VisibleIndex = 1;
			this.gridColumn48.Width = 68;
			// 
			// gridColumn44
			// 
			this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn44.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn44.Caption = "药品名称";
			this.gridColumn44.FieldName = "medicine_Name";
			this.gridColumn44.Name = "gridColumn44";
			this.gridColumn44.OptionsColumn.AllowEdit = false;
			this.gridColumn44.OptionsColumn.AllowFocus = false;
			this.gridColumn44.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn44.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn44.OptionsColumn.AllowMove = false;
			this.gridColumn44.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn44.OptionsColumn.ReadOnly = true;
			this.gridColumn44.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn44.Visible = true;
			this.gridColumn44.VisibleIndex = 2;
			this.gridColumn44.Width = 69;
			// 
			// gridColumn45
			// 
			this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn45.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn45.Caption = "服用剂量";
			this.gridColumn45.FieldName = "medicine_dose";
			this.gridColumn45.Name = "gridColumn45";
			this.gridColumn45.OptionsColumn.AllowEdit = false;
			this.gridColumn45.OptionsColumn.AllowFocus = false;
			this.gridColumn45.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn45.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn45.OptionsColumn.AllowMove = false;
			this.gridColumn45.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn45.OptionsColumn.ReadOnly = true;
			this.gridColumn45.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn45.Visible = true;
			this.gridColumn45.VisibleIndex = 3;
			this.gridColumn45.Width = 57;
			// 
			// gridColumn46
			// 
			this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn46.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn46.Caption = "服用时间";
			this.gridColumn46.DisplayFormat.FormatString = "yyyy-MM-dd HH:mm:ss";
			this.gridColumn46.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
			this.gridColumn46.FieldName = "medicine_time";
			this.gridColumn46.Name = "gridColumn46";
			this.gridColumn46.OptionsColumn.AllowEdit = false;
			this.gridColumn46.OptionsColumn.AllowFocus = false;
			this.gridColumn46.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn46.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn46.OptionsColumn.AllowMove = false;
			this.gridColumn46.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn46.OptionsColumn.ReadOnly = true;
			this.gridColumn46.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn46.Visible = true;
			this.gridColumn46.VisibleIndex = 4;
			this.gridColumn46.Width = 124;
			// 
			// gridColumn47
			// 
			this.gridColumn47.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn47.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn47.Caption = "负责教师";
			this.gridColumn47.FieldName = "teacher_signature";
			this.gridColumn47.Name = "gridColumn47";
			this.gridColumn47.OptionsColumn.AllowEdit = false;
			this.gridColumn47.OptionsColumn.AllowFocus = false;
			this.gridColumn47.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn47.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn47.OptionsColumn.AllowMove = false;
			this.gridColumn47.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn47.OptionsColumn.ReadOnly = true;
			this.gridColumn47.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn47.Visible = true;
			this.gridColumn47.VisibleIndex = 5;
			this.gridColumn47.Width = 70;
			// 
			// gridView12
			// 
			this.gridView12.GridControl = this.gridControl_MedRec_DoseRec;
			this.gridView12.Name = "gridView12";
			// 
			// notePanel_MedRec_DoseRec
			// 
			this.notePanel_MedRec_DoseRec.BackColor = System.Drawing.Color.LightGoldenrodYellow;
			this.notePanel_MedRec_DoseRec.Dock = System.Windows.Forms.DockStyle.Top;
			this.notePanel_MedRec_DoseRec.ForeColor = System.Drawing.Color.OrangeRed;
			this.notePanel_MedRec_DoseRec.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
			this.notePanel_MedRec_DoseRec.Location = new System.Drawing.Point(3, 18);
			this.notePanel_MedRec_DoseRec.MaxRows = 5;
			this.notePanel_MedRec_DoseRec.Name = "notePanel_MedRec_DoseRec";
			this.notePanel_MedRec_DoseRec.ParentAutoHeight = true;
			this.notePanel_MedRec_DoseRec.Size = new System.Drawing.Size(471, 23);
			this.notePanel_MedRec_DoseRec.TabIndex = 58;
			this.notePanel_MedRec_DoseRec.TabStop = false;
			this.notePanel_MedRec_DoseRec.Text = "双击进行服药记录添加";
			// 
			// panelControl9
			// 
			this.panelControl9.Controls.Add(this.simpleButton_AbnormalSer);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Report);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Add);
			this.panelControl9.Controls.Add(this.simpleButton_MedRec_Back);
			this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
			this.panelControl9.Location = new System.Drawing.Point(0, 0);
			this.panelControl9.Name = "panelControl9";
			this.panelControl9.Size = new System.Drawing.Size(477, 48);
			this.panelControl9.TabIndex = 0;
			this.panelControl9.Text = "panelControl9";
			// 
			// simpleButton_AbnormalSer
			// 
			this.simpleButton_AbnormalSer.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_AbnormalSer.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_AbnormalSer.Appearance.Options.UseFont = true;
			this.simpleButton_AbnormalSer.Appearance.Options.UseForeColor = true;
			this.simpleButton_AbnormalSer.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_AbnormalSer.Image")));
			this.simpleButton_AbnormalSer.Location = new System.Drawing.Point(16, 8);
			this.simpleButton_AbnormalSer.Name = "simpleButton_AbnormalSer";
			this.simpleButton_AbnormalSer.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_AbnormalSer.TabIndex = 26;
			this.simpleButton_AbnormalSer.Tag = 4;
			this.simpleButton_AbnormalSer.Text = "检  索";
			this.simpleButton_AbnormalSer.Click += new System.EventHandler(this.simpleButton_AbnormalSer_Click);
			// 
			// simpleButton_MedRec_Report
			// 
			this.simpleButton_MedRec_Report.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Report.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Report.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Report.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Report.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Report.Image")));
			this.simpleButton_MedRec_Report.Location = new System.Drawing.Point(296, 8);
			this.simpleButton_MedRec_Report.Name = "simpleButton_MedRec_Report";
			this.simpleButton_MedRec_Report.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Report.TabIndex = 25;
			this.simpleButton_MedRec_Report.Tag = 4;
			this.simpleButton_MedRec_Report.Text = "报  表";
			this.simpleButton_MedRec_Report.Click += new System.EventHandler(this.simpleButton_MedRec_Report_Click);
			// 
			// simpleButton_MedRec_Add
			// 
			this.simpleButton_MedRec_Add.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Add.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Add.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Add.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Add.Enabled = false;
			this.simpleButton_MedRec_Add.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Add.Image")));
			this.simpleButton_MedRec_Add.Location = new System.Drawing.Point(192, 8);
			this.simpleButton_MedRec_Add.Name = "simpleButton_MedRec_Add";
			this.simpleButton_MedRec_Add.Size = new System.Drawing.Size(96, 26);
			this.simpleButton_MedRec_Add.TabIndex = 23;
			this.simpleButton_MedRec_Add.Tag = 4;
			this.simpleButton_MedRec_Add.Text = "服药添加";
			this.simpleButton_MedRec_Add.Click += new System.EventHandler(this.simpleButton_MedRec_Add_Click);
			// 
			// simpleButton_MedRec_Back
			// 
			this.simpleButton_MedRec_Back.Appearance.Font = new System.Drawing.Font("Tahoma", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
			this.simpleButton_MedRec_Back.Appearance.ForeColor = System.Drawing.Color.DarkMagenta;
			this.simpleButton_MedRec_Back.Appearance.Options.UseFont = true;
			this.simpleButton_MedRec_Back.Appearance.Options.UseForeColor = true;
			this.simpleButton_MedRec_Back.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_MedRec_Back.Image")));
			this.simpleButton_MedRec_Back.Location = new System.Drawing.Point(104, 8);
			this.simpleButton_MedRec_Back.Name = "simpleButton_MedRec_Back";
			this.simpleButton_MedRec_Back.Size = new System.Drawing.Size(80, 26);
			this.simpleButton_MedRec_Back.TabIndex = 22;
			this.simpleButton_MedRec_Back.Tag = 4;
			this.simpleButton_MedRec_Back.Text = "返  回";
			this.simpleButton_MedRec_Back.Click += new System.EventHandler(this.simpleButton_MedRec_Back_Click);
			// 
			// barManager1
			// 
			this.barManager1.DockControls.Add(this.barDockControlTop);
			this.barManager1.DockControls.Add(this.barDockControlBottom);
			this.barManager1.DockControls.Add(this.barDockControlLeft);
			this.barManager1.DockControls.Add(this.barDockControlRight);
			this.barManager1.Form = this;
			this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
																				  this.barButtonItem_MealRefresh,
																				  this.barButtonItem_MedReg_MedAdd,
																				  this.barButtonItem_MedReg_MedModify,
																				  this.barButtonItem_MedReg_MedDel,
																				  this.barButtonItem_MedRec_MultiSer,
																				  this.barButtonItem_MedRec_MedDel,
																				  this.barButtonItem_RecipeRefresh,
																				  this.barButtonItem_RecipeDelete});
			this.barManager1.MaxItemId = 8;
			// 
			// popupMenu4
			// 
			this.popupMenu4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeRefresh),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_RecipeDelete)});
			this.popupMenu4.Manager = this.barManager1;
			this.popupMenu4.Name = "popupMenu4";
			// 
			// barButtonItem_RecipeRefresh
			// 
			this.barButtonItem_RecipeRefresh.Caption = "刷新";
			this.barButtonItem_RecipeRefresh.Id = 6;
			this.barButtonItem_RecipeRefresh.Name = "barButtonItem_RecipeRefresh";
			this.barButtonItem_RecipeRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeRefresh_ItemClick);
			// 
			// barButtonItem_RecipeDelete
			// 
			this.barButtonItem_RecipeDelete.Caption = "删除";
			this.barButtonItem_RecipeDelete.Id = 7;
			this.barButtonItem_RecipeDelete.Name = "barButtonItem_RecipeDelete";
			this.barButtonItem_RecipeDelete.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_RecipeDelete_ItemClick);
			// 
			// popupMenu1
			// 
			this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MealRefresh)});
			this.popupMenu1.Manager = this.barManager1;
			this.popupMenu1.Name = "popupMenu1";
			// 
			// barButtonItem_MealRefresh
			// 
			this.barButtonItem_MealRefresh.Caption = "刷新";
			this.barButtonItem_MealRefresh.Id = 0;
			this.barButtonItem_MealRefresh.Name = "barButtonItem_MealRefresh";
			this.barButtonItem_MealRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MealRefresh_ItemClick);
			// 
			// popupMenu2
			// 
			this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedAdd),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedModify),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedReg_MedDel)});
			this.popupMenu2.Manager = this.barManager1;
			this.popupMenu2.Name = "popupMenu2";
			// 
			// barButtonItem_MedReg_MedAdd
			// 
			this.barButtonItem_MedReg_MedAdd.Caption = "添加药品信息";
			this.barButtonItem_MedReg_MedAdd.Id = 1;
			this.barButtonItem_MedReg_MedAdd.Name = "barButtonItem_MedReg_MedAdd";
			this.barButtonItem_MedReg_MedAdd.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedAdd_ItemClick);
			// 
			// barButtonItem_MedReg_MedModify
			// 
			this.barButtonItem_MedReg_MedModify.Caption = "修改药品信息";
			this.barButtonItem_MedReg_MedModify.Id = 2;
			this.barButtonItem_MedReg_MedModify.Name = "barButtonItem_MedReg_MedModify";
			this.barButtonItem_MedReg_MedModify.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedModify_ItemClick);
			// 
			// barButtonItem_MedReg_MedDel
			// 
			this.barButtonItem_MedReg_MedDel.Caption = "删除药品信息";
			this.barButtonItem_MedReg_MedDel.Id = 3;
			this.barButtonItem_MedReg_MedDel.Name = "barButtonItem_MedReg_MedDel";
			this.barButtonItem_MedReg_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedReg_MedDel_ItemClick);
			// 
			// popupMenu3
			// 
			this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MultiSer),
																									new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem_MedRec_MedDel)});
			this.popupMenu3.Manager = this.barManager1;
			this.popupMenu3.Name = "popupMenu3";
			// 
			// barButtonItem_MedRec_MultiSer
			// 
			this.barButtonItem_MedRec_MultiSer.Caption = "返回多人查询模式";
			this.barButtonItem_MedRec_MultiSer.Id = 4;
			this.barButtonItem_MedRec_MultiSer.Name = "barButtonItem_MedRec_MultiSer";
			this.barButtonItem_MedRec_MultiSer.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MultiSer_ItemClick);
			// 
			// barButtonItem_MedRec_MedDel
			// 
			this.barButtonItem_MedRec_MedDel.Caption = "删除幼儿服药记录";
			this.barButtonItem_MedRec_MedDel.Id = 5;
			this.barButtonItem_MedRec_MedDel.Name = "barButtonItem_MedRec_MedDel";
			this.barButtonItem_MedRec_MedDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem_MedRec_MedDel_ItemClick);
			// 
			// gridView14
			// 
			this.gridView14.GridControl = null;
			this.gridView14.Name = "gridView14";
			// 
			// gridColumn15
			// 
			this.gridColumn15.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn15.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn15.Caption = "菜谱名称";
			this.gridColumn15.FieldName = "ACCFood_Remark";
			this.gridColumn15.Name = "gridColumn15";
			this.gridColumn15.OptionsColumn.AllowEdit = false;
			this.gridColumn15.OptionsColumn.AllowFocus = false;
			this.gridColumn15.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn15.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn15.OptionsColumn.AllowMove = false;
			this.gridColumn15.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn15.OptionsColumn.FixedWidth = true;
			this.gridColumn15.OptionsColumn.ReadOnly = true;
			this.gridColumn15.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn15.Visible = true;
			this.gridColumn15.VisibleIndex = 3;
			// 
			// gridColumn14
			// 
			this.gridColumn14.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn14.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn14.Caption = "摄入量";
			this.gridColumn14.FieldName = "ACCFood_TakeAmount";
			this.gridColumn14.Name = "gridColumn14";
			this.gridColumn14.OptionsColumn.AllowEdit = false;
			this.gridColumn14.OptionsColumn.AllowFocus = false;
			this.gridColumn14.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn14.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn14.OptionsColumn.AllowMove = false;
			this.gridColumn14.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn14.OptionsColumn.FixedWidth = true;
			this.gridColumn14.OptionsColumn.ReadOnly = true;
			this.gridColumn14.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn14.Visible = true;
			this.gridColumn14.VisibleIndex = 2;
			// 
			// gridColumn13
			// 
			this.gridColumn13.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn13.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn13.Caption = "登记日期";
			this.gridColumn13.FieldName = "ACCFood_AddTime";
			this.gridColumn13.Name = "gridColumn13";
			this.gridColumn13.OptionsColumn.AllowEdit = false;
			this.gridColumn13.OptionsColumn.AllowFocus = false;
			this.gridColumn13.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn13.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn13.OptionsColumn.AllowMove = false;
			this.gridColumn13.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn13.OptionsColumn.FixedWidth = true;
			this.gridColumn13.OptionsColumn.ReadOnly = true;
			this.gridColumn13.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn13.Visible = true;
			this.gridColumn13.VisibleIndex = 1;
			// 
			// gridColumn12
			// 
			this.gridColumn12.AppearanceCell.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.AppearanceHeader.Options.UseTextOptions = true;
			this.gridColumn12.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
			this.gridColumn12.Caption = "食物名称";
			this.gridColumn12.FieldName = "FoodNut_FoodName";
			this.gridColumn12.Name = "gridColumn12";
			this.gridColumn12.OptionsColumn.AllowEdit = false;
			this.gridColumn12.OptionsColumn.AllowFocus = false;
			this.gridColumn12.OptionsColumn.AllowGroup = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowIncrementalSearch = false;
			this.gridColumn12.OptionsColumn.AllowMerge = DevExpress.Utils.DefaultBoolean.False;
			this.gridColumn12.OptionsColumn.AllowMove = false;
			this.gridColumn12.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.True;
			this.gridColumn12.OptionsColumn.FixedWidth = true;
			this.gridColumn12.OptionsColumn.ReadOnly = true;
			this.gridColumn12.OptionsColumn.ShowInCustomizationForm = false;
			this.gridColumn12.Visible = true;
			this.gridColumn12.VisibleIndex = 0;
			// 
			// gridView3
			// 
			this.gridView3.GridControl = null;
			this.gridView3.Name = "gridView3";
			this.gridView3.OptionsCustomization.AllowFilter = false;
			this.gridView3.OptionsView.ShowFilterPanel = false;
			this.gridView3.OptionsView.ShowGroupPanel = false;
			// 
			// NutritionManagement
			// 
			this.Controls.Add(this.xtraTabControl1);
			this.Controls.Add(this.barDockControlLeft);
			this.Controls.Add(this.barDockControlRight);
			this.Controls.Add(this.barDockControlBottom);
			this.Controls.Add(this.barDockControlTop);
			this.Name = "NutritionManagement";
			this.Size = new System.Drawing.Size(772, 540);
			this.Load += new System.EventHandler(this.NutritionManagement_Load);
			((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
			this.xtraTabControl1.ResumeLayout(false);
			this.xtraTabPage1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
			this.splitContainerControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodCategory)).EndInit();
			this.groupControl_FoodCategory.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.treeList_FoodStock)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutModify)).EndInit();
			this.groupControl_FoodNutModify.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_FoodRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Energy.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Carbohydrate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Fat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Protein.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_FoodNutrition)).EndInit();
			this.groupControl_FoodNutrition.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
			this.panelControl1.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_FoodSearch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_BindingID.Properties)).EndInit();
			this.xtraTabPage2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
			this.splitContainerControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
			this.panelControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_Recipe_FoodNutrition)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeLogin)).EndInit();
			this.groupControl_RecipeLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_RecipeLogin_Date.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_FoodTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeLogin_BindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeSer)).EndInit();
			this.groupControl_RecipeSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RecipeSer_FoodCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_RecipeSer_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_RecipeOpr)).EndInit();
			this.groupControl_RecipeOpr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.panelControl11)).EndInit();
			this.panelControl11.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_RecipeLogin)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView13)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
			this.panelControl2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_Recipe_FoodName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Recipe_RecipeCategory.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Recipe_BegDate.Properties)).EndInit();
			this.xtraTabPage3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl3)).EndInit();
			this.splitContainerControl3.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealLogin)).EndInit();
			this.groupControl_MealLogin.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Snack.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Dinner.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Lunch.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_Breakfast.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealAdd)).EndInit();
			this.groupControl_MealAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MealID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealArr)).EndInit();
			this.groupControl_MealArr.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl4)).EndInit();
			this.splitContainerControl4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gThree.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gTwo.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gOne.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MealArr_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFour.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_gFive.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_MealArr_IsUsed.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MealPreview)).EndInit();
			this.groupControl_MealPreview.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MealPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
			this.panelControl3.ResumeLayout(false);
			this.xtraTabPage4.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl5)).EndInit();
			this.splitContainerControl5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_Search)).EndInit();
			this.groupControl_Meal_Search.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_Meal_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_Meal_ReportPreview)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
			this.panelControl4.ResumeLayout(false);
			this.xtraTabPage5.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl6)).EndInit();
			this.splitContainerControl6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HInputStu)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputSer)).EndInit();
			this.groupControl_HInputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagInfo)).EndInit();
			this.groupControl_HInputDiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HInputStd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckBindingID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HInputDiagResult)).EndInit();
			this.groupControl_HInputDiagResult.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultX.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHOPer.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeightWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultUnderWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultStunting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWasting.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultWHO.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultNut.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagResultAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.memoEdit_DiagRemark.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagWeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagHeight.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_DiagCheckDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HInputBirthday.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_DiagCheckGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
			this.panelControl5.ResumeLayout(false);
			this.xtraTabPage6.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl7)).EndInit();
			this.splitContainerControl7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputPrintType)).EndInit();
			this.groupControl_HOutputPrintType.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType4th.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType3rd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType2nd.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_HOutputPrintType1st.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_HOutputSer)).EndInit();
			this.groupControl_HOutputSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputRegion.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_HOutputBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGender.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputResult.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputAge.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_HOutputName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_HOutputGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputNchsGrid)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridControl_HOutputGridShow)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.advBandedGridView1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
			this.panelControl6.ResumeLayout(false);
			this.xtraTabPage7.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl8)).EndInit();
			this.splitContainerControl8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchMorningRec)).EndInit();
			this.groupControl_WatchMorningRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningTreat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningOState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningMouth.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchMorningSkin.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchMorningName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchStuList)).EndInit();
			this.groupControl_WatchStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchSer)).EndInit();
			this.groupControl_WatchSer.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchEndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_WatchBegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchState.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchNumber.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchClass.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchGrade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDay)).EndInit();
			this.groupControl_WatchWholeDay.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholDayHandle)).EndInit();
			this.groupControl_WatchWholDayHandle.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayHeat.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrSeafood.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayLifeAttention.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.checkEdit_WatchWholeDayCtrAct.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchWholeDayReg)).EndInit();
			this.groupControl_WatchWholeDayReg.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_WatchWholeDayElse.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayCough.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySleep.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayStool.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayAppetite.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDaySpirit.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_WatchWholeDayMovement.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_WatchRecList)).EndInit();
			this.groupControl_WatchRecList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_WatchRecList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView8)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
			this.panelControl7.ResumeLayout(false);
			this.xtraTabPage8.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl9)).EndInit();
			this.splitContainerControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_StuList)).EndInit();
			this.groupControl_MedReg_StuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedReg_StuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView9)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_Ser)).EndInit();
			this.groupControl_MedReg_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedInfo)).EndInit();
			this.groupControl_MedReg_MedInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Taketimes.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_MedType.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_MedCarrInfo)).EndInit();
			this.groupControl_MedReg_MedCarrInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedReg_MedInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedReg_DiagInfo)).EndInit();
			this.groupControl_MedReg_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedReg_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedReg_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
			this.panelControl8.ResumeLayout(false);
			this.xtraTabPage9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.splitContainerControl10)).EndInit();
			this.splitContainerControl10.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_AbnStuList)).EndInit();
			this.groupControl_MedRec_AbnStuList.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_AbnStuList)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView10)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_Ser)).EndInit();
			this.groupControl_MedRec_Ser.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Number.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Name.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_EndDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.dateEdit_MedRec_BegDate.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_DoseRecDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbnDiaID.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Class.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_Grade.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagAndDoseAdd)).EndInit();
			this.groupControl_MedRec_DiagAndDoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseAdd)).EndInit();
			this.groupControl_MedRec_DoseAdd.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.listBoxControl_MedRec_MedCarrInfo)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_MedRec_TakeRule.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.timeEdit_MedRec_TakeTime.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedTake.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_MedName.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DiagInfo)).EndInit();
			this.groupControl_MedRec_DiagInfo.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Diag.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_Else.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_FacialSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_SkinSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_AbdomenSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_EnteronSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_ThroatSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_LungSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.textEdit_MedRec_UpperSym.Properties)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.groupControl_MedRec_DoseRec)).EndInit();
			this.groupControl_MedRec_DoseRec.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.gridControl_MedRec_DoseRec)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView11)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView12)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
			this.panelControl9.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu4)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView14)).EndInit();
			((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
			this.ResumeLayout(false);

		}
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddSPark = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddDoor = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddPark = new DevExpress.XtraEditors.SimpleButton();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.trvParkStall = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.grpFee = new DevExpress.XtraEditors.GroupControl();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rdofeed2 = new System.Windows.Forms.RadioButton();
     this.rdofeed6 = new System.Windows.Forms.RadioButton();
     this.rdofeed1 = new System.Windows.Forms.RadioButton();
     this.rdofeed5 = new System.Windows.Forms.RadioButton();
     this.rdofeed3 = new System.Windows.Forms.RadioButton();
     this.rdofeed4 = new System.Windows.Forms.RadioButton();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.tabFeeStd = new System.Windows.Forms.TabControl();
     this.tabpgFee1 = new System.Windows.Forms.TabPage();
     this.RemarkLab = new System.Windows.Forms.Label();
     this.tbDayOut = new System.Windows.Forms.TextBox();
     this.DayOutLab = new System.Windows.Forms.Label();
     this.tbBasicFee = new System.Windows.Forms.TextBox();
     this.BasicFeeLab = new System.Windows.Forms.Label();
     this.tbFreeTlen = new System.Windows.Forms.TextBox();
     this.FreeTimeLab = new System.Windows.Forms.Label();
     this.tabpgFee2 = new System.Windows.Forms.TabPage();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.ChargeRateTxt2 = new System.Windows.Forms.TextBox();
     this.ChargeTimeTxt2 = new System.Windows.Forms.TextBox();
     this.AftFreeTxt2 = new System.Windows.Forms.TextBox();
     this.BasicFeeTxt2 = new System.Windows.Forms.TextBox();
     this.BasicTimeTxt2 = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt2 = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.InfomationLab2 = new System.Windows.Forms.Label();
     this.ChargeRateLab2 = new System.Windows.Forms.Label();
     this.ChargeTimeLab2 = new System.Windows.Forms.Label();
     this.AftFreeLab2 = new System.Windows.Forms.Label();
     this.BasicFeeLab2 = new System.Windows.Forms.Label();
     this.BasicTimeLab2 = new System.Windows.Forms.Label();
     this.FreeTimeLab2 = new System.Windows.Forms.Label();
     this.tabpgFee3 = new System.Windows.Forms.TabPage();
     this.Infomation31 = new System.Windows.Forms.Label();
     this.Infomation3 = new System.Windows.Forms.Label();
     this.LoopFeeTxt5 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt5 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt4 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt4 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt2 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt2 = new System.Windows.Forms.TextBox();
     this.LoopFeeTxt1 = new System.Windows.Forms.TextBox();
     this.LoopTimeTxt1 = new System.Windows.Forms.TextBox();
     this.LoopNoTxt = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt3 = new System.Windows.Forms.TextBox();
     this.LoopFeeLab5 = new System.Windows.Forms.Label();
     this.LoopTimeLab5 = new System.Windows.Forms.Label();
     this.LoopFeeLab4 = new System.Windows.Forms.Label();
     this.LoopTimeLab4 = new System.Windows.Forms.Label();
     this.LoopFeeLab3 = new System.Windows.Forms.Label();
     this.LoopTimeLab3 = new System.Windows.Forms.Label();
     this.LoopFeeLab2 = new System.Windows.Forms.Label();
     this.LoopTimeLab2 = new System.Windows.Forms.Label();
     this.LoopFeeLab1 = new System.Windows.Forms.Label();
     this.LoopTimeLab1 = new System.Windows.Forms.Label();
     this.LoopNoLab = new System.Windows.Forms.Label();
     this.FreeTimeLab3 = new System.Windows.Forms.Label();
     this.tabpgFee4 = new System.Windows.Forms.TabPage();
     this.maskedTextBox13 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox12 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox11 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox10 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox9 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox8 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox7 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox6 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox5 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox4 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox3 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox2 = new System.Windows.Forms.MaskedTextBox();
     this.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.OutStageLab5 = new System.Windows.Forms.Label();
     this.TimePointLab5 = new System.Windows.Forms.Label();
     this.OutStageLab4 = new System.Windows.Forms.Label();
     this.TimePointLab4 = new System.Windows.Forms.Label();
     this.OutStageLab3 = new System.Windows.Forms.Label();
     this.TimePointLab3 = new System.Windows.Forms.Label();
     this.OutStageLab2 = new System.Windows.Forms.Label();
     this.TimePointLab2 = new System.Windows.Forms.Label();
     this.OutStageLab1 = new System.Windows.Forms.Label();
     this.TimePointLab1 = new System.Windows.Forms.Label();
     this.BasicFeeLab4 = new System.Windows.Forms.Label();
     this.FreeTimeLab4 = new System.Windows.Forms.Label();
     this.TimeCountLab = new System.Windows.Forms.Label();
     this.tabpgFee5 = new System.Windows.Forms.TabPage();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.ChargeRateTxt6 = new System.Windows.Forms.TextBox();
     this.ChargeRateLab6 = new System.Windows.Forms.Label();
     this.ChargeTimeTxt6 = new System.Windows.Forms.TextBox();
     this.ChargeTimeLab6 = new System.Windows.Forms.Label();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.ChargeRateTxt5 = new System.Windows.Forms.TextBox();
     this.ChargeRateLab5 = new System.Windows.Forms.Label();
     this.ChargeTimeTxt5 = new System.Windows.Forms.TextBox();
     this.ChargeTimeLab5 = new System.Windows.Forms.Label();
     this.groupBox7 = new System.Windows.Forms.GroupBox();
     this.TimePoint4 = new System.Windows.Forms.DateTimePicker();
     this.TimePoint4Lab = new System.Windows.Forms.Label();
     this.TimePoint3 = new System.Windows.Forms.DateTimePicker();
     this.TimePoint3Lab = new System.Windows.Forms.Label();
     this.AftFreeTxt5 = new System.Windows.Forms.TextBox();
     this.BasicFeeTxt5 = new System.Windows.Forms.TextBox();
     this.BasicTimeTxt5 = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt5 = new System.Windows.Forms.TextBox();
     this.AftFreeLab5 = new System.Windows.Forms.Label();
     this.BasicFeeLab5 = new System.Windows.Forms.Label();
     this.BasicTimeLab5 = new System.Windows.Forms.Label();
     this.FreeTimeLab5 = new System.Windows.Forms.Label();
     this.tabpgFee6 = new System.Windows.Forms.TabPage();
     this.HourFeeTxt24 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt23 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt22 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt21 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt20 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt19 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt18 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt17 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt16 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt15 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt14 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt13 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt12 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt11 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt10 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt9 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt8 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt7 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt6 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt5 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt4 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt3 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt2 = new System.Windows.Forms.TextBox();
     this.HourFeeTxt1 = new System.Windows.Forms.TextBox();
     this.LimitAccTxt = new System.Windows.Forms.TextBox();
     this.FreeTimeTxt6 = new System.Windows.Forms.TextBox();
     this.HourFeeLab24 = new System.Windows.Forms.Label();
     this.HourFeeLab23 = new System.Windows.Forms.Label();
     this.HourFeeLab22 = new System.Windows.Forms.Label();
     this.HourFeeLab21 = new System.Windows.Forms.Label();
     this.HourFeeLab20 = new System.Windows.Forms.Label();
     this.HourFeeLab19 = new System.Windows.Forms.Label();
     this.HourFeeLab18 = new System.Windows.Forms.Label();
     this.HourFeeLab17 = new System.Windows.Forms.Label();
     this.HourFeeLab16 = new System.Windows.Forms.Label();
     this.HourFeeLab15 = new System.Windows.Forms.Label();
     this.HourFeeLab14 = new System.Windows.Forms.Label();
     this.HourFeeLab13 = new System.Windows.Forms.Label();
     this.HourFeeLab12 = new System.Windows.Forms.Label();
     this.HourFeeLab11 = new System.Windows.Forms.Label();
     this.HourFeeLab10 = new System.Windows.Forms.Label();
     this.HourFeeLab9 = new System.Windows.Forms.Label();
     this.HourFeeLab8 = new System.Windows.Forms.Label();
     this.HourFeeLab7 = new System.Windows.Forms.Label();
     this.HourFeeLab6 = new System.Windows.Forms.Label();
     this.HourFeeLab5 = new System.Windows.Forms.Label();
     this.HourFeeLab4 = new System.Windows.Forms.Label();
     this.HourFeeLab3 = new System.Windows.Forms.Label();
     this.HourFeeLab2 = new System.Windows.Forms.Label();
     this.HourFeeLab1 = new System.Windows.Forms.Label();
     this.LimitAccLab = new System.Windows.Forms.Label();
     this.FreeTimeLab6 = new System.Windows.Forms.Label();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.btnbigCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnMiCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnTimeCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnSmallCar = new DevExpress.XtraEditors.SimpleButton();
     this.btnMoCar = new DevExpress.XtraEditors.SimpleButton();
     this.grpParam = new DevExpress.XtraEditors.GroupControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.dbDev = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.btnAddDev = new DevExpress.XtraEditors.SimpleButton();
     this.btnDelDev = new DevExpress.XtraEditors.SimpleButton();
     this.btnSaveDev = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
     this.groupBox8 = new System.Windows.Forms.GroupBox();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbChannel = new System.Windows.Forms.GroupBox();
     this.plCarType = new System.Windows.Forms.Panel();
     this.checkEdit13 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit14 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit15 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit16 = new DevExpress.XtraEditors.CheckEdit();
     this.plCardType = new System.Windows.Forms.Panel();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.checkBox5 = new System.Windows.Forms.CheckBox();
     this.radChannelCard = new System.Windows.Forms.RadioButton();
     this.radChannelCar = new System.Windows.Forms.RadioButton();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.label3 = new System.Windows.Forms.Label();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbCardType = new System.Windows.Forms.GroupBox();
     this.checkBox17 = new DevExpress.XtraEditors.CheckEdit();
     this.GbkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.CzkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.LskChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.SdkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.MfkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.LmkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.QkChk1 = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.checkBox1 = new DevExpress.XtraEditors.CheckEdit();
     this.checkBox2 = new DevExpress.XtraEditors.CheckEdit();
     this.grpbAccept = new System.Windows.Forms.GroupBox();
     this.checkBox16 = new DevExpress.XtraEditors.CheckEdit();
     this.GbkChk = new DevExpress.XtraEditors.CheckEdit();
     this.CzkChk = new DevExpress.XtraEditors.CheckEdit();
     this.LskChk = new DevExpress.XtraEditors.CheckEdit();
     this.SdkChk = new DevExpress.XtraEditors.CheckEdit();
     this.MfkChk = new DevExpress.XtraEditors.CheckEdit();
     this.LmkChk = new DevExpress.XtraEditors.CheckEdit();
     this.QkChk = new DevExpress.XtraEditors.CheckEdit();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.LsCardTpComb = new DevExpress.XtraEditors.LookUpEdit();
     this.CarTypeComb = new DevExpress.XtraEditors.LookUpEdit();
     this.LsCardTpLab = new System.Windows.Forms.Label();
     this.CarTypeLab = new System.Windows.Forms.Label();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox2 = new System.Windows.Forms.ComboBox();
     this.MulInOutChk = new DevExpress.XtraEditors.CheckEdit();
     this.IsOutComChk = new DevExpress.XtraEditors.CheckEdit();
     this.SmaPrkLogComb = new DevExpress.XtraEditors.LookUpEdit();
     this.DevAddrTxt = new DevExpress.XtraEditors.TextEdit();
     this.ValDayAlmTxt = new DevExpress.XtraEditors.TextEdit();
     this.comboBox1 = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.DevAddrLab = new System.Windows.Forms.Label();
     this.SmaPrkLogLab = new System.Windows.Forms.Label();
     this.CardBalAlmLab = new System.Windows.Forms.Label();
     this.ValDayAlmLab = new System.Windows.Forms.Label();
     this.panBaseInfo = new DevExpress.XtraEditors.GroupControl();
     this.panelControl16 = new DevExpress.XtraEditors.PanelControl();
     this.RetainStaTxt = new DevExpress.XtraEditors.TextEdit();
     this.TypeCombo = new System.Windows.Forms.ComboBox();
     this.AllNoTxt = new DevExpress.XtraEditors.TextEdit();
     this.RetainStaLab = new System.Windows.Forms.Label();
     this.AllNoLab = new System.Windows.Forms.Label();
     this.StallNoTxt = new DevExpress.XtraEditors.TextEdit();
     this.ComIpTxt = new DevExpress.XtraEditors.TextEdit();
     this.TxtStalname = new DevExpress.XtraEditors.TextEdit();
     this.ComIpLab = new System.Windows.Forms.Label();
     this.TypeLab = new System.Windows.Forms.Label();
     this.StallNameLab = new System.Windows.Forms.Label();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.radfee2 = new System.Windows.Forms.RadioButton();
     this.radfee6 = new System.Windows.Forms.RadioButton();
     this.radfee1 = new System.Windows.Forms.RadioButton();
     this.radfee5 = new System.Windows.Forms.RadioButton();
     this.radfee3 = new System.Windows.Forms.RadioButton();
     this.radfee4 = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trvParkStall)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpFee)).BeginInit();
     this.grpFee.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     this.tabFeeStd.SuspendLayout();
     this.tabpgFee1.SuspendLayout();
     this.tabpgFee2.SuspendLayout();
     this.tabpgFee3.SuspendLayout();
     this.tabpgFee4.SuspendLayout();
     this.tabpgFee5.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.groupBox7.SuspendLayout();
     this.tabpgFee6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grpParam)).BeginInit();
     this.grpParam.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
     this.panelControl5.SuspendLayout();
     this.groupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     this.grpbChannel.SuspendLayout();
     this.plCarType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit16.Properties)).BeginInit();
     this.plCardType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.grpbCardType.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox17.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk1.Properties)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2.Properties)).BeginInit();
     this.grpbAccept.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox16.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LsCardTpComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CarTypeComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MulInOutChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsOutComChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmaPrkLogComb.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DevAddrTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ValDayAlmTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panBaseInfo)).BeginInit();
     this.panBaseInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).BeginInit();
     this.panelControl16.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RetainStaTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllNoTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.StallNoTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComIpTxt.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStalname.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.simpleButton6);
     this.panelControl1.Controls.Add(this.btnSave);
     this.panelControl1.Controls.Add(this.btnAddSPark);
     this.panelControl1.Controls.Add(this.btnAddDoor);
     this.panelControl1.Controls.Add(this.btnDel);
     this.panelControl1.Controls.Add(this.btnAddPark);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(852, 45);
     this.panelControl1.TabIndex = 0;
     //
     // simpleButton6
     //
     this.simpleButton6.Location = new System.Drawing.Point(383, 9);
     this.simpleButton6.Name = "simpleButton6";
     this.simpleButton6.Size = new System.Drawing.Size(64, 30);
     this.simpleButton6.TabIndex = 5;
     this.simpleButton6.Text = "退出";
     this.simpleButton6.Click += new System.EventHandler(this.simpleButton6_Click);
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(309, 10);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(64, 30);
     this.btnSave.TabIndex = 4;
     this.btnSave.Text = "保存";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnAddSPark
     //
     this.btnAddSPark.Location = new System.Drawing.Point(95, 8);
     this.btnAddSPark.Name = "btnAddSPark";
     this.btnAddSPark.Size = new System.Drawing.Size(64, 30);
     this.btnAddSPark.TabIndex = 3;
     this.btnAddSPark.Text = "增加内场";
     this.btnAddSPark.Click += new System.EventHandler(this.btnAddSPark_Click);
     //
     // btnAddDoor
     //
     this.btnAddDoor.Location = new System.Drawing.Point(165, 8);
     this.btnAddDoor.Name = "btnAddDoor";
     this.btnAddDoor.Size = new System.Drawing.Size(64, 30);
     this.btnAddDoor.TabIndex = 2;
     this.btnAddDoor.Text = "增加门岗";
     this.btnAddDoor.Click += new System.EventHandler(this.btnAddDoor_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(238, 9);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(64, 30);
     this.btnDel.TabIndex = 1;
     this.btnDel.Text = "删除";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAddPark
     //
     this.btnAddPark.Location = new System.Drawing.Point(25, 8);
     this.btnAddPark.Name = "btnAddPark";
     this.btnAddPark.Size = new System.Drawing.Size(64, 30);
     this.btnAddPark.TabIndex = 0;
     this.btnAddPark.Text = "增加车场";
     this.btnAddPark.Click += new System.EventHandler(this.btnAddPark_Click);
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 45);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.trvParkStall);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.grpFee);
     this.splitContainerControl1.Panel2.Controls.Add(this.grpParam);
     this.splitContainerControl1.Panel2.Controls.Add(this.panBaseInfo);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(852, 682);
     this.splitContainerControl1.SplitterPosition = 199;
     this.splitContainerControl1.TabIndex = 1;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // trvParkStall
     //
     this.trvParkStall.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Blue;
     this.trvParkStall.Appearance.FocusedCell.Options.UseForeColor = true;
     this.trvParkStall.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
     this.trvParkStall.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.trvParkStall.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn1});
     this.trvParkStall.Dock = System.Windows.Forms.DockStyle.Fill;
     this.trvParkStall.FixedLineWidth = 1;
     this.trvParkStall.Location = new System.Drawing.Point(0, 0);
     this.trvParkStall.Name = "trvParkStall";
     this.trvParkStall.OptionsBehavior.Editable = false;
     this.trvParkStall.OptionsBehavior.KeepSelectedOnClick = false;
     this.trvParkStall.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.trvParkStall.OptionsView.ShowHorzLines = false;
     this.trvParkStall.OptionsView.ShowVertLines = false;
     this.trvParkStall.Size = new System.Drawing.Size(199, 682);
     this.trvParkStall.TabIndex = 57;
     this.trvParkStall.Tag = "@db=门禁管理";
     this.trvParkStall.AfterFocusNode += new DevExpress.XtraTreeList.NodeEventHandler(this.trvParkStall_AfterFocusNode);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "停车场信息";
     this.treeListColumn2.FieldName = "名称";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "id";
     this.treeListColumn1.FieldName = "id";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // grpFee
     //
     this.grpFee.Controls.Add(this.groupBox2);
     this.grpFee.Controls.Add(this.panelControl3);
     this.grpFee.Location = new System.Drawing.Point(2, 638);
     this.grpFee.Name = "grpFee";
     this.grpFee.Size = new System.Drawing.Size(578, 41);
     this.grpFee.TabIndex = 12;
     this.grpFee.Tag = "";
     this.grpFee.Text = "收费标准";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rdofeed2);
     this.groupBox2.Controls.Add(this.rdofeed6);
     this.groupBox2.Controls.Add(this.rdofeed1);
     this.groupBox2.Controls.Add(this.rdofeed5);
     this.groupBox2.Controls.Add(this.rdofeed3);
     this.groupBox2.Controls.Add(this.rdofeed4);
     this.groupBox2.Location = new System.Drawing.Point(0, 53);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(629, 33);
     this.groupBox2.TabIndex = 61;
     this.groupBox2.TabStop = false;
     //
     // rdofeed2
     //
     this.rdofeed2.AutoSize = true;
     this.rdofeed2.Location = new System.Drawing.Point(94, 12);
     this.rdofeed2.Name = "rdofeed2";
     this.rdofeed2.Size = new System.Drawing.Size(61, 18);
     this.rdofeed2.TabIndex = 4;
     this.rdofeed2.Tag = "@pm=方式代码,@val=2";
     this.rdofeed2.Text = "收费二";
     this.rdofeed2.UseVisualStyleBackColor = true;
     this.rdofeed2.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed6
     //
     this.rdofeed6.AutoSize = true;
     this.rdofeed6.Location = new System.Drawing.Point(399, 11);
     this.rdofeed6.Name = "rdofeed6";
     this.rdofeed6.Size = new System.Drawing.Size(61, 18);
     this.rdofeed6.TabIndex = 8;
     this.rdofeed6.Tag = "@pm=方式代码,@val=6";
     this.rdofeed6.Text = "收费六";
     this.rdofeed6.UseVisualStyleBackColor = true;
     this.rdofeed6.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed1
     //
     this.rdofeed1.AutoSize = true;
     this.rdofeed1.Checked = true;
     this.rdofeed1.Location = new System.Drawing.Point(21, 11);
     this.rdofeed1.Name = "rdofeed1";
     this.rdofeed1.Size = new System.Drawing.Size(61, 18);
     this.rdofeed1.TabIndex = 3;
     this.rdofeed1.TabStop = true;
     this.rdofeed1.Tag = "@pm=方式代码,@val=1";
     this.rdofeed1.Text = "收费一";
     this.rdofeed1.UseVisualStyleBackColor = true;
     this.rdofeed1.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed5
     //
     this.rdofeed5.AutoSize = true;
     this.rdofeed5.Location = new System.Drawing.Point(334, 11);
     this.rdofeed5.Name = "rdofeed5";
     this.rdofeed5.Size = new System.Drawing.Size(61, 18);
     this.rdofeed5.TabIndex = 7;
     this.rdofeed5.Tag = "@pm=方式代码,@val=5";
     this.rdofeed5.Text = "收费五";
     this.rdofeed5.UseVisualStyleBackColor = true;
     this.rdofeed5.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed3
     //
     this.rdofeed3.AutoSize = true;
     this.rdofeed3.Location = new System.Drawing.Point(179, 12);
     this.rdofeed3.Name = "rdofeed3";
     this.rdofeed3.Size = new System.Drawing.Size(61, 18);
     this.rdofeed3.TabIndex = 5;
     this.rdofeed3.Tag = "@pm=方式代码,@val=3";
     this.rdofeed3.Text = "收费三";
     this.rdofeed3.UseVisualStyleBackColor = true;
     this.rdofeed3.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // rdofeed4
     //
     this.rdofeed4.AutoSize = true;
     this.rdofeed4.Location = new System.Drawing.Point(254, 12);
     this.rdofeed4.Name = "rdofeed4";
     this.rdofeed4.Size = new System.Drawing.Size(61, 18);
     this.rdofeed4.TabIndex = 6;
     this.rdofeed4.Tag = "@pm=方式代码,@val=4";
     this.rdofeed4.Text = "收费四";
     this.rdofeed4.UseVisualStyleBackColor = true;
     this.rdofeed4.CheckedChanged += new System.EventHandler(this.radfee_CheckedChanged);
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.panelControl7);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl3.Location = new System.Drawing.Point(2, 21);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(574, 18);
     this.panelControl3.TabIndex = 1;
     this.panelControl3.Tag = "@db=用户信息";
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.panelControl8);
     this.panelControl7.Controls.Add(this.panelControl6);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl7.Location = new System.Drawing.Point(0, 0);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(574, 18);
     this.panelControl7.TabIndex = 10;
     //
     // panelControl8
     //
     this.panelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl8.Controls.Add(this.tabFeeStd);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl8.Location = new System.Drawing.Point(0, 35);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(574, 0);
     this.panelControl8.TabIndex = 62;
     //
     // tabFeeStd
     //
     this.tabFeeStd.Appearance = System.Windows.Forms.TabAppearance.FlatButtons;
     this.tabFeeStd.Controls.Add(this.tabpgFee1);
     this.tabFeeStd.Controls.Add(this.tabpgFee2);
     this.tabFeeStd.Controls.Add(this.tabpgFee3);
     this.tabFeeStd.Controls.Add(this.tabpgFee4);
     this.tabFeeStd.Controls.Add(this.tabpgFee5);
     this.tabFeeStd.Controls.Add(this.tabpgFee6);
     this.tabFeeStd.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabFeeStd.Location = new System.Drawing.Point(0, 0);
     this.tabFeeStd.Name = "tabFeeStd";
     this.tabFeeStd.SelectedIndex = 0;
     this.tabFeeStd.ShowToolTips = true;
     this.tabFeeStd.Size = new System.Drawing.Size(574, 0);
     this.tabFeeStd.TabIndex = 62;
     this.tabFeeStd.Tag = "@tb=收费标准";
     //
     // tabpgFee1
     //
     this.tabpgFee1.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee1.Controls.Add(this.RemarkLab);
     this.tabpgFee1.Controls.Add(this.tbDayOut);
     this.tabpgFee1.Controls.Add(this.DayOutLab);
     this.tabpgFee1.Controls.Add(this.tbBasicFee);
     this.tabpgFee1.Controls.Add(this.BasicFeeLab);
     this.tabpgFee1.Controls.Add(this.tbFreeTlen);
     this.tabpgFee1.Controls.Add(this.FreeTimeLab);
     this.tabpgFee1.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee1.Name = "tabpgFee1";
     this.tabpgFee1.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee1.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee1.TabIndex = 0;
     this.tabpgFee1.Tag = "";
     this.tabpgFee1.Text = "收费方式1";
     //
     // RemarkLab
     //
     this.RemarkLab.AutoSize = true;
     this.RemarkLab.Location = new System.Drawing.Point(116, 190);
     this.RemarkLab.Name = "RemarkLab";
     this.RemarkLab.Size = new System.Drawing.Size(419, 14);
     this.RemarkLab.TabIndex = 6;
     this.RemarkLab.Text = "计算方法:在T0内免费,超过T0而为跨天收费F1,以后每跨一天加一次收费F2 ";
     //
     // tbDayOut
     //
     this.tbDayOut.Location = new System.Drawing.Point(136, 106);
     this.tbDayOut.Name = "tbDayOut";
     this.tbDayOut.Size = new System.Drawing.Size(145, 22);
     this.tbDayOut.TabIndex = 5;
     this.tbDayOut.Tag = "@pm=金额";
     //
     // DayOutLab
     //
     this.DayOutLab.AutoSize = true;
     this.DayOutLab.Location = new System.Drawing.Point(37, 110);
     this.DayOutLab.Name = "DayOutLab";
     this.DayOutLab.Size = new System.Drawing.Size(96, 14);
     this.DayOutLab.TabIndex = 4;
     this.DayOutLab.Text = "跨天收费金额F2:";
     //
     // tbBasicFee
     //
     this.tbBasicFee.Location = new System.Drawing.Point(434, 40);
     this.tbBasicFee.Name = "tbBasicFee";
     this.tbBasicFee.Size = new System.Drawing.Size(131, 22);
     this.tbBasicFee.TabIndex = 3;
     this.tbBasicFee.Tag = "@pm=基本费";
     //
     // BasicFeeLab
     //
     this.BasicFeeLab.AutoSize = true;
     this.BasicFeeLab.Location = new System.Drawing.Point(327, 44);
     this.BasicFeeLab.Name = "BasicFeeLab";
     this.BasicFeeLab.Size = new System.Drawing.Size(96, 14);
     this.BasicFeeLab.TabIndex = 2;
     this.BasicFeeLab.Text = "基本收费金额F1:";
     //
     // tbFreeTlen
     //
     this.tbFreeTlen.Location = new System.Drawing.Point(136, 41);
     this.tbFreeTlen.Name = "tbFreeTlen";
     this.tbFreeTlen.Size = new System.Drawing.Size(149, 22);
     this.tbFreeTlen.TabIndex = 1;
     this.tbFreeTlen.Tag = "@pm=免费时长";
     //
     // FreeTimeLab
     //
     this.FreeTimeLab.AutoSize = true;
     this.FreeTimeLab.Location = new System.Drawing.Point(57, 43);
     this.FreeTimeLab.Name = "FreeTimeLab";
     this.FreeTimeLab.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab.TabIndex = 0;
     this.FreeTimeLab.Text = "免费时长T0:";
     //
     // tabpgFee2
     //
     this.tabpgFee2.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee2.Controls.Add(this.textBox1);
     this.tabpgFee2.Controls.Add(this.textBox2);
     this.tabpgFee2.Controls.Add(this.ChargeRateTxt2);
     this.tabpgFee2.Controls.Add(this.ChargeTimeTxt2);
     this.tabpgFee2.Controls.Add(this.AftFreeTxt2);
     this.tabpgFee2.Controls.Add(this.BasicFeeTxt2);
     this.tabpgFee2.Controls.Add(this.BasicTimeTxt2);
     this.tabpgFee2.Controls.Add(this.FreeTimeTxt2);
     this.tabpgFee2.Controls.Add(this.label13);
     this.tabpgFee2.Controls.Add(this.label5);
     this.tabpgFee2.Controls.Add(this.InfomationLab2);
     this.tabpgFee2.Controls.Add(this.ChargeRateLab2);
     this.tabpgFee2.Controls.Add(this.ChargeTimeLab2);
     this.tabpgFee2.Controls.Add(this.AftFreeLab2);
     this.tabpgFee2.Controls.Add(this.BasicFeeLab2);
     this.tabpgFee2.Controls.Add(this.BasicTimeLab2);
     this.tabpgFee2.Controls.Add(this.FreeTimeLab2);
     this.tabpgFee2.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee2.Name = "tabpgFee2";
     this.tabpgFee2.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee2.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee2.TabIndex = 1;
     this.tabpgFee2.Tag = "";
     this.tabpgFee2.Text = "收费方式2";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(434, 142);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(126, 22);
     this.textBox1.TabIndex = 19;
     this.textBox1.Tag = "@pm=日限额";
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(434, 105);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(126, 22);
     this.textBox2.TabIndex = 17;
     this.textBox2.Tag = "@pm=廿四时限额";
     //
     // ChargeRateTxt2
     //
     this.ChargeRateTxt2.Location = new System.Drawing.Point(122, 149);
     this.ChargeRateTxt2.Name = "ChargeRateTxt2";
     this.ChargeRateTxt2.Size = new System.Drawing.Size(136, 22);
     this.ChargeRateTxt2.TabIndex = 11;
     this.ChargeRateTxt2.Tag = "@pm=金额,@num=1";
     //
     // ChargeTimeTxt2
     //
     this.ChargeTimeTxt2.Location = new System.Drawing.Point(122, 112);
     this.ChargeTimeTxt2.Name = "ChargeTimeTxt2";
     this.ChargeTimeTxt2.Size = new System.Drawing.Size(136, 22);
     this.ChargeTimeTxt2.TabIndex = 9;
     this.ChargeTimeTxt2.Tag = "@pm=时长,@num=1";
     //
     // AftFreeTxt2
     //
     this.AftFreeTxt2.Location = new System.Drawing.Point(434, 72);
     this.AftFreeTxt2.Name = "AftFreeTxt2";
     this.AftFreeTxt2.Size = new System.Drawing.Size(126, 22);
     this.AftFreeTxt2.TabIndex = 7;
     this.AftFreeTxt2.Tag = "@pm=基本费延时";
     //
     // BasicFeeTxt2
     //
     this.BasicFeeTxt2.Location = new System.Drawing.Point(122, 72);
     this.BasicFeeTxt2.Name = "BasicFeeTxt2";
     this.BasicFeeTxt2.Size = new System.Drawing.Size(136, 22);
     this.BasicFeeTxt2.TabIndex = 5;
     this.BasicFeeTxt2.Tag = "@pm=基本费";
     //
     // BasicTimeTxt2
     //
     this.BasicTimeTxt2.Location = new System.Drawing.Point(435, 36);
     this.BasicTimeTxt2.Name = "BasicTimeTxt2";
     this.BasicTimeTxt2.Size = new System.Drawing.Size(125, 22);
     this.BasicTimeTxt2.TabIndex = 3;
     this.BasicTimeTxt2.Tag = "@pm=基本时长";
     //
     // FreeTimeTxt2
     //
     this.FreeTimeTxt2.Location = new System.Drawing.Point(122, 36);
     this.FreeTimeTxt2.Name = "FreeTimeTxt2";
     this.FreeTimeTxt2.Size = new System.Drawing.Size(136, 22);
     this.FreeTimeTxt2.TabIndex = 1;
     this.FreeTimeTxt2.Tag = "@pm=免费时长";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(369, 152);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(59, 14);
     this.label13.TabIndex = 18;
     this.label13.Text = "每日限额:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(347, 115);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 14);
     this.label5.TabIndex = 16;
     this.label5.Text = "24小时限额FL:";
     //
     // InfomationLab2
     //
     this.InfomationLab2.AutoSize = true;
     this.InfomationLab2.Location = new System.Drawing.Point(119, 209);
     this.InfomationLab2.Name = "InfomationLab2";
     this.InfomationLab2.Size = new System.Drawing.Size(382, 42);
     this.InfomationLab2.TabIndex = 12;
     this.InfomationLab2.Text = "在T0内免费,超过T0而未超过T1收费F1,\r\n超过基本费时长T1而未超过基本费后的免费时长T2,不加收费用;\r\n如果超过T2,则以后每T3时长收费F2,且每个限" +
         "额时间内收费不超过FL。";
     //
     // ChargeRateLab2
     //
     this.ChargeRateLab2.AutoSize = true;
     this.ChargeRateLab2.Location = new System.Drawing.Point(60, 152);
     this.ChargeRateLab2.Name = "ChargeRateLab2";
     this.ChargeRateLab2.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab2.TabIndex = 10;
     this.ChargeRateLab2.Text = "计费率F2:";
     //
     // ChargeTimeLab2
     //
     this.ChargeTimeLab2.AutoSize = true;
     this.ChargeTimeLab2.Location = new System.Drawing.Point(24, 119);
     this.ChargeTimeLab2.Name = "ChargeTimeLab2";
     this.ChargeTimeLab2.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab2.TabIndex = 8;
     this.ChargeTimeLab2.Text = "计费时长T3(分):";
     //
     // AftFreeLab2
     //
     this.AftFreeLab2.AutoSize = true;
     this.AftFreeLab2.Location = new System.Drawing.Point(276, 79);
     this.AftFreeLab2.Name = "AftFreeLab2";
     this.AftFreeLab2.Size = new System.Drawing.Size(156, 14);
     this.AftFreeLab2.TabIndex = 6;
     this.AftFreeLab2.Text = "基本费后的免费时长T2(分):";
     //
     // BasicFeeLab2
     //
     this.BasicFeeLab2.AutoSize = true;
     this.BasicFeeLab2.Location = new System.Drawing.Point(60, 76);
     this.BasicFeeLab2.Name = "BasicFeeLab2";
     this.BasicFeeLab2.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab2.TabIndex = 4;
     this.BasicFeeLab2.Text = "基本费F1:";
     //
     // BasicTimeLab2
     //
     this.BasicTimeLab2.AutoSize = true;
     this.BasicTimeLab2.Location = new System.Drawing.Point(320, 36);
     this.BasicTimeLab2.Name = "BasicTimeLab2";
     this.BasicTimeLab2.Size = new System.Drawing.Size(108, 14);
     this.BasicTimeLab2.TabIndex = 2;
     this.BasicTimeLab2.Text = "基本费时长T1(分):";
     //
     // FreeTimeLab2
     //
     this.FreeTimeLab2.AutoSize = true;
     this.FreeTimeLab2.Location = new System.Drawing.Point(24, 39);
     this.FreeTimeLab2.Name = "FreeTimeLab2";
     this.FreeTimeLab2.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab2.TabIndex = 0;
     this.FreeTimeLab2.Text = "免费时长T0(分):";
     //
     // tabpgFee3
     //
     this.tabpgFee3.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee3.Controls.Add(this.Infomation31);
     this.tabpgFee3.Controls.Add(this.Infomation3);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt5);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt5);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt4);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt4);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt2);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt2);
     this.tabpgFee3.Controls.Add(this.LoopFeeTxt1);
     this.tabpgFee3.Controls.Add(this.LoopTimeTxt1);
     this.tabpgFee3.Controls.Add(this.LoopNoTxt);
     this.tabpgFee3.Controls.Add(this.FreeTimeTxt3);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab5);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab5);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab4);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab4);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab3);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab3);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab2);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab2);
     this.tabpgFee3.Controls.Add(this.LoopFeeLab1);
     this.tabpgFee3.Controls.Add(this.LoopTimeLab1);
     this.tabpgFee3.Controls.Add(this.LoopNoLab);
     this.tabpgFee3.Controls.Add(this.FreeTimeLab3);
     this.tabpgFee3.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee3.Name = "tabpgFee3";
     this.tabpgFee3.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee3.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee3.TabIndex = 2;
     this.tabpgFee3.Tag = "";
     this.tabpgFee3.Text = "收费方式3";
     //
     // Infomation31
     //
     this.Infomation31.AutoSize = true;
     this.Infomation31.Location = new System.Drawing.Point(101, 305);
     this.Infomation31.Name = "Infomation31";
     this.Infomation31.Size = new System.Drawing.Size(386, 14);
     this.Infomation31.TabIndex = 25;
     this.Infomation31.Text = "如果超过T2,则以后每T3时长收费F2,且每个限额时间内收费不超过FL。 ";
     //
     // Infomation3
     //
     this.Infomation3.AutoSize = true;
     this.Infomation3.Location = new System.Drawing.Point(103, 273);
     this.Infomation3.Name = "Infomation3";
     this.Infomation3.Size = new System.Drawing.Size(353, 28);
     this.Infomation3.TabIndex = 24;
     this.Infomation3.Text = "在T0内免费,超过T0而未超过T1收费F1,\r\n超过基本费时长T1而未超过基本费后的免费时长T2,不加收费用。";
     //
     // LoopFeeTxt5
     //
     this.LoopFeeTxt5.Location = new System.Drawing.Point(452, 211);
     this.LoopFeeTxt5.Name = "LoopFeeTxt5";
     this.LoopFeeTxt5.Size = new System.Drawing.Size(113, 22);
     this.LoopFeeTxt5.TabIndex = 23;
     this.LoopFeeTxt5.Tag = "@num=5,@pm=金额";
     //
     // LoopTimeTxt5
     //
     this.LoopTimeTxt5.Location = new System.Drawing.Point(166, 208);
     this.LoopTimeTxt5.Name = "LoopTimeTxt5";
     this.LoopTimeTxt5.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt5.TabIndex = 21;
     this.LoopTimeTxt5.Tag = "@num=5,@pm=时长";
     //
     // LoopFeeTxt4
     //
     this.LoopFeeTxt4.Location = new System.Drawing.Point(453, 175);
     this.LoopFeeTxt4.Name = "LoopFeeTxt4";
     this.LoopFeeTxt4.Size = new System.Drawing.Size(112, 22);
     this.LoopFeeTxt4.TabIndex = 19;
     this.LoopFeeTxt4.Tag = "@num=4,@pm=金额";
     //
     // LoopTimeTxt4
     //
     this.LoopTimeTxt4.Location = new System.Drawing.Point(166, 176);
     this.LoopTimeTxt4.Name = "LoopTimeTxt4";
     this.LoopTimeTxt4.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt4.TabIndex = 17;
     this.LoopTimeTxt4.Tag = "@num=4,@pm=时长";
     //
     // LoopFeeTxt3
     //
     this.LoopFeeTxt3.Location = new System.Drawing.Point(452, 142);
     this.LoopFeeTxt3.Name = "LoopFeeTxt3";
     this.LoopFeeTxt3.Size = new System.Drawing.Size(113, 22);
     this.LoopFeeTxt3.TabIndex = 15;
     this.LoopFeeTxt3.Tag = "@num=3,@pm=金额";
     //
     // LoopTimeTxt3
     //
     this.LoopTimeTxt3.Location = new System.Drawing.Point(166, 144);
     this.LoopTimeTxt3.Name = "LoopTimeTxt3";
     this.LoopTimeTxt3.Size = new System.Drawing.Size(119, 22);
     this.LoopTimeTxt3.TabIndex = 13;
     this.LoopTimeTxt3.Tag = "@num=3,@pm=时长";
     //
     // LoopFeeTxt2
     //
     this.LoopFeeTxt2.Location = new System.Drawing.Point(451, 111);
     this.LoopFeeTxt2.Name = "LoopFeeTxt2";
     this.LoopFeeTxt2.Size = new System.Drawing.Size(114, 22);
     this.LoopFeeTxt2.TabIndex = 11;
     this.LoopFeeTxt2.Tag = "@num=2,@pm=金额";
     //
     // LoopTimeTxt2
     //
     this.LoopTimeTxt2.Location = new System.Drawing.Point(168, 111);
     this.LoopTimeTxt2.Name = "LoopTimeTxt2";
     this.LoopTimeTxt2.Size = new System.Drawing.Size(117, 22);
     this.LoopTimeTxt2.TabIndex = 9;
     this.LoopTimeTxt2.Tag = "@num=2,@pm=时长";
     //
     // LoopFeeTxt1
     //
     this.LoopFeeTxt1.Location = new System.Drawing.Point(451, 77);
     this.LoopFeeTxt1.Name = "LoopFeeTxt1";
     this.LoopFeeTxt1.Size = new System.Drawing.Size(114, 22);
     this.LoopFeeTxt1.TabIndex = 7;
     this.LoopFeeTxt1.Tag = "@num=1,@pm=金额";
     //
     // LoopTimeTxt1
     //
     this.LoopTimeTxt1.Location = new System.Drawing.Point(168, 76);
     this.LoopTimeTxt1.Name = "LoopTimeTxt1";
     this.LoopTimeTxt1.Size = new System.Drawing.Size(117, 22);
     this.LoopTimeTxt1.TabIndex = 5;
     this.LoopTimeTxt1.Tag = "@num=1,@pm=时长";
     //
     // LoopNoTxt
     //
     this.LoopNoTxt.Location = new System.Drawing.Point(451, 43);
     this.LoopNoTxt.Name = "LoopNoTxt";
     this.LoopNoTxt.Size = new System.Drawing.Size(114, 22);
     this.LoopNoTxt.TabIndex = 3;
     this.LoopNoTxt.Tag = "@pm=循环计费";
     //
     // FreeTimeTxt3
     //
     this.FreeTimeTxt3.Location = new System.Drawing.Point(168, 41);
     this.FreeTimeTxt3.Name = "FreeTimeTxt3";
     this.FreeTimeTxt3.Size = new System.Drawing.Size(117, 22);
     this.FreeTimeTxt3.TabIndex = 1;
     this.FreeTimeTxt3.Tag = "@pm=免费时长";
     //
     // LoopFeeLab5
     //
     this.LoopFeeLab5.AutoSize = true;
     this.LoopFeeLab5.Location = new System.Drawing.Point(318, 213);
     this.LoopFeeLab5.Name = "LoopFeeLab5";
     this.LoopFeeLab5.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab5.TabIndex = 22;
     this.LoopFeeLab5.Text = "第五个循环时长收费F5:";
     //
     // LoopTimeLab5
     //
     this.LoopTimeLab5.AutoSize = true;
     this.LoopTimeLab5.Location = new System.Drawing.Point(54, 211);
     this.LoopTimeLab5.Name = "LoopTimeLab5";
     this.LoopTimeLab5.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab5.TabIndex = 20;
     this.LoopTimeLab5.Text = "第五个循环时长T5:";
     //
     // LoopFeeLab4
     //
     this.LoopFeeLab4.AutoSize = true;
     this.LoopFeeLab4.Location = new System.Drawing.Point(318, 183);
     this.LoopFeeLab4.Name = "LoopFeeLab4";
     this.LoopFeeLab4.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab4.TabIndex = 18;
     this.LoopFeeLab4.Text = "第四个循环时长收费F4:";
     //
     // LoopTimeLab4
     //
     this.LoopTimeLab4.AutoSize = true;
     this.LoopTimeLab4.Location = new System.Drawing.Point(54, 179);
     this.LoopTimeLab4.Name = "LoopTimeLab4";
     this.LoopTimeLab4.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab4.TabIndex = 16;
     this.LoopTimeLab4.Text = "第四个循环时长T4:";
     //
     // LoopFeeLab3
     //
     this.LoopFeeLab3.AutoSize = true;
     this.LoopFeeLab3.Location = new System.Drawing.Point(318, 150);
     this.LoopFeeLab3.Name = "LoopFeeLab3";
     this.LoopFeeLab3.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab3.TabIndex = 14;
     this.LoopFeeLab3.Text = "第三个循环时长收费F3:";
     //
     // LoopTimeLab3
     //
     this.LoopTimeLab3.AutoSize = true;
     this.LoopTimeLab3.Location = new System.Drawing.Point(54, 146);
     this.LoopTimeLab3.Name = "LoopTimeLab3";
     this.LoopTimeLab3.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab3.TabIndex = 12;
     this.LoopTimeLab3.Text = "第三个循环时长T3:";
     //
     // LoopFeeLab2
     //
     this.LoopFeeLab2.AutoSize = true;
     this.LoopFeeLab2.Location = new System.Drawing.Point(318, 119);
     this.LoopFeeLab2.Name = "LoopFeeLab2";
     this.LoopFeeLab2.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab2.TabIndex = 10;
     this.LoopFeeLab2.Text = "第二个循环时长收费F2:";
     //
     // LoopTimeLab2
     //
     this.LoopTimeLab2.AutoSize = true;
     this.LoopTimeLab2.Location = new System.Drawing.Point(54, 115);
     this.LoopTimeLab2.Name = "LoopTimeLab2";
     this.LoopTimeLab2.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab2.TabIndex = 8;
     this.LoopTimeLab2.Text = "第二个循环时长T2:";
     //
     // LoopFeeLab1
     //
     this.LoopFeeLab1.AutoSize = true;
     this.LoopFeeLab1.Location = new System.Drawing.Point(318, 83);
     this.LoopFeeLab1.Name = "LoopFeeLab1";
     this.LoopFeeLab1.Size = new System.Drawing.Size(132, 14);
     this.LoopFeeLab1.TabIndex = 6;
     this.LoopFeeLab1.Text = "第一个循环时长收费F1:";
     //
     // LoopTimeLab1
     //
     this.LoopTimeLab1.AutoSize = true;
     this.LoopTimeLab1.Location = new System.Drawing.Point(54, 79);
     this.LoopTimeLab1.Name = "LoopTimeLab1";
     this.LoopTimeLab1.Size = new System.Drawing.Size(110, 14);
     this.LoopTimeLab1.TabIndex = 4;
     this.LoopTimeLab1.Text = "第一个循环时长T1:";
     //
     // LoopNoLab
     //
     this.LoopNoLab.AutoSize = true;
     this.LoopNoLab.Location = new System.Drawing.Point(390, 49);
     this.LoopNoLab.Name = "LoopNoLab";
     this.LoopNoLab.Size = new System.Drawing.Size(59, 14);
     this.LoopNoLab.TabIndex = 2;
     this.LoopNoLab.Text = "循环段数:";
     //
     // FreeTimeLab3
     //
     this.FreeTimeLab3.AutoSize = true;
     this.FreeTimeLab3.Location = new System.Drawing.Point(90, 43);
     this.FreeTimeLab3.Name = "FreeTimeLab3";
     this.FreeTimeLab3.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab3.TabIndex = 0;
     this.FreeTimeLab3.Text = "免费时长T0:";
     //
     // tabpgFee4
     //
     this.tabpgFee4.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee4.Controls.Add(this.maskedTextBox13);
     this.tabpgFee4.Controls.Add(this.maskedTextBox12);
     this.tabpgFee4.Controls.Add(this.maskedTextBox11);
     this.tabpgFee4.Controls.Add(this.maskedTextBox10);
     this.tabpgFee4.Controls.Add(this.maskedTextBox9);
     this.tabpgFee4.Controls.Add(this.maskedTextBox8);
     this.tabpgFee4.Controls.Add(this.maskedTextBox7);
     this.tabpgFee4.Controls.Add(this.maskedTextBox6);
     this.tabpgFee4.Controls.Add(this.maskedTextBox5);
     this.tabpgFee4.Controls.Add(this.maskedTextBox4);
     this.tabpgFee4.Controls.Add(this.maskedTextBox3);
     this.tabpgFee4.Controls.Add(this.maskedTextBox2);
     this.tabpgFee4.Controls.Add(this.maskedTextBox1);
     this.tabpgFee4.Controls.Add(this.label8);
     this.tabpgFee4.Controls.Add(this.label7);
     this.tabpgFee4.Controls.Add(this.label6);
     this.tabpgFee4.Controls.Add(this.label9);
     this.tabpgFee4.Controls.Add(this.OutStageLab5);
     this.tabpgFee4.Controls.Add(this.TimePointLab5);
     this.tabpgFee4.Controls.Add(this.OutStageLab4);
     this.tabpgFee4.Controls.Add(this.TimePointLab4);
     this.tabpgFee4.Controls.Add(this.OutStageLab3);
     this.tabpgFee4.Controls.Add(this.TimePointLab3);
     this.tabpgFee4.Controls.Add(this.OutStageLab2);
     this.tabpgFee4.Controls.Add(this.TimePointLab2);
     this.tabpgFee4.Controls.Add(this.OutStageLab1);
     this.tabpgFee4.Controls.Add(this.TimePointLab1);
     this.tabpgFee4.Controls.Add(this.BasicFeeLab4);
     this.tabpgFee4.Controls.Add(this.FreeTimeLab4);
     this.tabpgFee4.Controls.Add(this.TimeCountLab);
     this.tabpgFee4.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee4.Name = "tabpgFee4";
     this.tabpgFee4.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee4.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee4.TabIndex = 3;
     this.tabpgFee4.Tag = "";
     this.tabpgFee4.Text = "收费方式4";
     //
     // maskedTextBox13
     //
     this.maskedTextBox13.Location = new System.Drawing.Point(154, 53);
     this.maskedTextBox13.Mask = "999";
     this.maskedTextBox13.Name = "maskedTextBox13";
     this.maskedTextBox13.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox13.TabIndex = 75;
     this.maskedTextBox13.Tag = "@pm=免费时长:";
     //
     // maskedTextBox12
     //
     this.maskedTextBox12.Location = new System.Drawing.Point(154, 19);
     this.maskedTextBox12.Mask = "999";
     this.maskedTextBox12.Name = "maskedTextBox12";
     this.maskedTextBox12.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox12.TabIndex = 74;
     this.maskedTextBox12.Tag = "@pm=循环计费";
     //
     // maskedTextBox11
     //
     this.maskedTextBox11.Location = new System.Drawing.Point(400, 223);
     this.maskedTextBox11.Mask = "999";
     this.maskedTextBox11.Name = "maskedTextBox11";
     this.maskedTextBox11.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox11.TabIndex = 73;
     this.maskedTextBox11.Tag = "@num=5,@pm=金额";
     //
     // maskedTextBox10
     //
     this.maskedTextBox10.Location = new System.Drawing.Point(400, 192);
     this.maskedTextBox10.Mask = "999";
     this.maskedTextBox10.Name = "maskedTextBox10";
     this.maskedTextBox10.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox10.TabIndex = 72;
     this.maskedTextBox10.Tag = "@num=4,@pm=金额";
     //
     // maskedTextBox9
     //
     this.maskedTextBox9.Location = new System.Drawing.Point(400, 158);
     this.maskedTextBox9.Mask = "999";
     this.maskedTextBox9.Name = "maskedTextBox9";
     this.maskedTextBox9.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox9.TabIndex = 71;
     this.maskedTextBox9.Tag = "@num=3,@pm=金额";
     //
     // maskedTextBox8
     //
     this.maskedTextBox8.Location = new System.Drawing.Point(397, 54);
     this.maskedTextBox8.Mask = "999";
     this.maskedTextBox8.Name = "maskedTextBox8";
     this.maskedTextBox8.Size = new System.Drawing.Size(118, 22);
     this.maskedTextBox8.TabIndex = 70;
     this.maskedTextBox8.Tag = "@pm=基本费";
     //
     // maskedTextBox7
     //
     this.maskedTextBox7.Location = new System.Drawing.Point(399, 129);
     this.maskedTextBox7.Mask = "999";
     this.maskedTextBox7.Name = "maskedTextBox7";
     this.maskedTextBox7.Size = new System.Drawing.Size(116, 22);
     this.maskedTextBox7.TabIndex = 69;
     this.maskedTextBox7.Tag = "@num=2,@pm=金额";
     //
     // maskedTextBox6
     //
     this.maskedTextBox6.Location = new System.Drawing.Point(400, 95);
     this.maskedTextBox6.Mask = "999";
     this.maskedTextBox6.Name = "maskedTextBox6";
     this.maskedTextBox6.Size = new System.Drawing.Size(115, 22);
     this.maskedTextBox6.TabIndex = 68;
     this.maskedTextBox6.Tag = "@num=1,@pm=金额";
     //
     // maskedTextBox5
     //
     this.maskedTextBox5.Location = new System.Drawing.Point(154, 223);
     this.maskedTextBox5.Mask = "90:00";
     this.maskedTextBox5.Name = "maskedTextBox5";
     this.maskedTextBox5.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox5.TabIndex = 67;
     this.maskedTextBox5.Tag = "@num=5,@pm=截止";
     this.maskedTextBox5.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox4
     //
     this.maskedTextBox4.Location = new System.Drawing.Point(154, 189);
     this.maskedTextBox4.Mask = "90:00";
     this.maskedTextBox4.Name = "maskedTextBox4";
     this.maskedTextBox4.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox4.TabIndex = 66;
     this.maskedTextBox4.Tag = "@num=4,@pm=截止";
     this.maskedTextBox4.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox3
     //
     this.maskedTextBox3.Location = new System.Drawing.Point(154, 155);
     this.maskedTextBox3.Mask = "90:00";
     this.maskedTextBox3.Name = "maskedTextBox3";
     this.maskedTextBox3.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox3.TabIndex = 65;
     this.maskedTextBox3.Tag = "@num=3,@pm=截止";
     this.maskedTextBox3.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox2
     //
     this.maskedTextBox2.Location = new System.Drawing.Point(154, 121);
     this.maskedTextBox2.Mask = "90:00";
     this.maskedTextBox2.Name = "maskedTextBox2";
     this.maskedTextBox2.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox2.TabIndex = 64;
     this.maskedTextBox2.Tag = "@num=2,@pm=截止";
     this.maskedTextBox2.ValidatingType = typeof(System.DateTime);
     //
     // maskedTextBox1
     //
     this.maskedTextBox1.Location = new System.Drawing.Point(154, 87);
     this.maskedTextBox1.Mask = "90:00";
     this.maskedTextBox1.Name = "maskedTextBox1";
     this.maskedTextBox1.Size = new System.Drawing.Size(119, 22);
     this.maskedTextBox1.TabIndex = 63;
     this.maskedTextBox1.Tag = "@num=1,@pm=截止";
     this.maskedTextBox1.ValidatingType = typeof(System.DateTime);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(182, 342);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(171, 14);
     this.label8.TabIndex = 57;
     this.label8.Text = " 超过时间点T5以后收跨段费F6";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(60, 323);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(533, 14);
     this.label7.TabIndex = 56;
     this.label7.Text = "超过时间点T3但是未到时间点T4,收跨段费F4; 超过时间点T4但是未到时间点T5,收跨段费F5; ";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(54, 300);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(525, 14);
     this.label6.TabIndex = 55;
     this.label6.Text = "  超过时间点T1但是未到时间点T2,收跨段费F2 超过时间点T2但是未到时间点T3,收跨段费F3;";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(123, 264);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(386, 28);
     this.label9.TabIndex = 54;
     this.label9.Text = "时段数(1-5):设定有效时段;\r\n在免费时长T0内免费,超过免费时长但是未到时间点T1,收基本费F1;";
     //
     // OutStageLab5
     //
     this.OutStageLab5.AutoSize = true;
     this.OutStageLab5.Location = new System.Drawing.Point(337, 223);
     this.OutStageLab5.Name = "OutStageLab5";
     this.OutStageLab5.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab5.TabIndex = 51;
     this.OutStageLab5.Text = "跨段费F6:";
     //
     // TimePointLab5
     //
     this.TimePointLab5.AutoSize = true;
     this.TimePointLab5.Location = new System.Drawing.Point(37, 231);
     this.TimePointLab5.Name = "TimePointLab5";
     this.TimePointLab5.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab5.TabIndex = 49;
     this.TimePointLab5.Text = "时间点T5(hh:mm):";
     //
     // OutStageLab4
     //
     this.OutStageLab4.AutoSize = true;
     this.OutStageLab4.Location = new System.Drawing.Point(338, 195);
     this.OutStageLab4.Name = "OutStageLab4";
     this.OutStageLab4.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab4.TabIndex = 47;
     this.OutStageLab4.Text = "跨段费F5:";
     //
     // TimePointLab4
     //
     this.TimePointLab4.AutoSize = true;
     this.TimePointLab4.Location = new System.Drawing.Point(37, 198);
     this.TimePointLab4.Name = "TimePointLab4";
     this.TimePointLab4.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab4.TabIndex = 45;
     this.TimePointLab4.Text = "时间点T4(hh:mm):";
     //
     // OutStageLab3
     //
     this.OutStageLab3.AutoSize = true;
     this.OutStageLab3.Location = new System.Drawing.Point(338, 163);
     this.OutStageLab3.Name = "OutStageLab3";
     this.OutStageLab3.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab3.TabIndex = 43;
     this.OutStageLab3.Text = "跨段费F4:";
     //
     // TimePointLab3
     //
     this.TimePointLab3.AutoSize = true;
     this.TimePointLab3.Location = new System.Drawing.Point(37, 163);
     this.TimePointLab3.Name = "TimePointLab3";
     this.TimePointLab3.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab3.TabIndex = 41;
     this.TimePointLab3.Text = "时间点T3(hh:mm):";
     //
     // OutStageLab2
     //
     this.OutStageLab2.AutoSize = true;
     this.OutStageLab2.Location = new System.Drawing.Point(337, 135);
     this.OutStageLab2.Name = "OutStageLab2";
     this.OutStageLab2.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab2.TabIndex = 39;
     this.OutStageLab2.Text = "跨段费F3:";
     //
     // TimePointLab2
     //
     this.TimePointLab2.AutoSize = true;
     this.TimePointLab2.Location = new System.Drawing.Point(37, 130);
     this.TimePointLab2.Name = "TimePointLab2";
     this.TimePointLab2.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab2.TabIndex = 37;
     this.TimePointLab2.Text = "时间点T2(hh:mm):";
     //
     // OutStageLab1
     //
     this.OutStageLab1.AutoSize = true;
     this.OutStageLab1.Location = new System.Drawing.Point(337, 98);
     this.OutStageLab1.Name = "OutStageLab1";
     this.OutStageLab1.Size = new System.Drawing.Size(60, 14);
     this.OutStageLab1.TabIndex = 35;
     this.OutStageLab1.Text = "跨段费F2:";
     //
     // TimePointLab1
     //
     this.TimePointLab1.AutoSize = true;
     this.TimePointLab1.Location = new System.Drawing.Point(37, 95);
     this.TimePointLab1.Name = "TimePointLab1";
     this.TimePointLab1.Size = new System.Drawing.Size(110, 14);
     this.TimePointLab1.TabIndex = 33;
     this.TimePointLab1.Text = "时间点T1(hh:mm):";
     //
     // BasicFeeLab4
     //
     this.BasicFeeLab4.AutoSize = true;
     this.BasicFeeLab4.Location = new System.Drawing.Point(337, 61);
     this.BasicFeeLab4.Name = "BasicFeeLab4";
     this.BasicFeeLab4.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab4.TabIndex = 31;
     this.BasicFeeLab4.Text = "基本费F1:";
     //
     // FreeTimeLab4
     //
     this.FreeTimeLab4.AutoSize = true;
     this.FreeTimeLab4.Location = new System.Drawing.Point(54, 62);
     this.FreeTimeLab4.Name = "FreeTimeLab4";
     this.FreeTimeLab4.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab4.TabIndex = 29;
     this.FreeTimeLab4.Text = "免费时长T0(分):";
     //
     // TimeCountLab
     //
     this.TimeCountLab.AutoSize = true;
     this.TimeCountLab.Location = new System.Drawing.Point(72, 28);
     this.TimeCountLab.Name = "TimeCountLab";
     this.TimeCountLab.Size = new System.Drawing.Size(75, 14);
     this.TimeCountLab.TabIndex = 27;
     this.TimeCountLab.Text = "时段数(1-5):";
     //
     // tabpgFee5
     //
     this.tabpgFee5.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee5.Controls.Add(this.label11);
     this.tabpgFee5.Controls.Add(this.label10);
     this.tabpgFee5.Controls.Add(this.label12);
     this.tabpgFee5.Controls.Add(this.groupBox3);
     this.tabpgFee5.Controls.Add(this.groupBox6);
     this.tabpgFee5.Controls.Add(this.groupBox7);
     this.tabpgFee5.Controls.Add(this.AftFreeTxt5);
     this.tabpgFee5.Controls.Add(this.BasicFeeTxt5);
     this.tabpgFee5.Controls.Add(this.BasicTimeTxt5);
     this.tabpgFee5.Controls.Add(this.FreeTimeTxt5);
     this.tabpgFee5.Controls.Add(this.AftFreeLab5);
     this.tabpgFee5.Controls.Add(this.BasicFeeLab5);
     this.tabpgFee5.Controls.Add(this.BasicTimeLab5);
     this.tabpgFee5.Controls.Add(this.FreeTimeLab5);
     this.tabpgFee5.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee5.Name = "tabpgFee5";
     this.tabpgFee5.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee5.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee5.TabIndex = 4;
     this.tabpgFee5.Tag = "";
     this.tabpgFee5.Text = "收费方式5";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(124, 337);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(273, 14);
     this.label11.TabIndex = 13;
     this.label11.Text = "在时间段T3-T4之间,按每个计费时长T6,收费F3";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(57, 302);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(476, 14);
     this.label10.TabIndex = 12;
     this.label10.Text = " 如果查过T2,则按照循环时段收费。 在时间段T3-T4之间,每个计费时长T5,收费F2;";
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(118, 258);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(349, 28);
     this.label12.TabIndex = 11;
     this.label12.Text = "超过免费时长但是未到时间点T1收基本费F1\r\n超过基本费时长T1但是未超过基本费后的免费时长T2不加收费用";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.ChargeRateTxt6);
     this.groupBox3.Controls.Add(this.ChargeRateLab6);
     this.groupBox3.Controls.Add(this.ChargeTimeTxt6);
     this.groupBox3.Controls.Add(this.ChargeTimeLab6);
     this.groupBox3.Location = new System.Drawing.Point(317, 152);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(245, 88);
     this.groupBox3.TabIndex = 10;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "T3-T4时段外";
     //
     // ChargeRateTxt6
     //
     this.ChargeRateTxt6.Location = new System.Drawing.Point(101, 54);
     this.ChargeRateTxt6.Name = "ChargeRateTxt6";
     this.ChargeRateTxt6.Size = new System.Drawing.Size(113, 22);
     this.ChargeRateTxt6.TabIndex = 17;
     this.ChargeRateTxt6.Tag = "@num=2,@pm=金额";
     //
     // ChargeRateLab6
     //
     this.ChargeRateLab6.AutoSize = true;
     this.ChargeRateLab6.Location = new System.Drawing.Point(42, 60);
     this.ChargeRateLab6.Name = "ChargeRateLab6";
     this.ChargeRateLab6.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab6.TabIndex = 16;
     this.ChargeRateLab6.Text = "计费率F3:";
     //
     // ChargeTimeTxt6
     //
     this.ChargeTimeTxt6.Location = new System.Drawing.Point(101, 21);
     this.ChargeTimeTxt6.Name = "ChargeTimeTxt6";
     this.ChargeTimeTxt6.Size = new System.Drawing.Size(113, 22);
     this.ChargeTimeTxt6.TabIndex = 15;
     this.ChargeTimeTxt6.Tag = "@num=2,@pm=时长";
     //
     // ChargeTimeLab6
     //
     this.ChargeTimeLab6.AutoSize = true;
     this.ChargeTimeLab6.Location = new System.Drawing.Point(6, 24);
     this.ChargeTimeLab6.Name = "ChargeTimeLab6";
     this.ChargeTimeLab6.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab6.TabIndex = 14;
     this.ChargeTimeLab6.Text = "计费时长T6(分):";
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.ChargeRateTxt5);
     this.groupBox6.Controls.Add(this.ChargeRateLab5);
     this.groupBox6.Controls.Add(this.ChargeTimeTxt5);
     this.groupBox6.Controls.Add(this.ChargeTimeLab5);
     this.groupBox6.Location = new System.Drawing.Point(48, 148);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(258, 92);
     this.groupBox6.TabIndex = 9;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "T3-T4时段内";
     //
     // ChargeRateTxt5
     //
     this.ChargeRateTxt5.Location = new System.Drawing.Point(104, 54);
     this.ChargeRateTxt5.Name = "ChargeRateTxt5";
     this.ChargeRateTxt5.Size = new System.Drawing.Size(127, 22);
     this.ChargeRateTxt5.TabIndex = 13;
     this.ChargeRateTxt5.Tag = "@num=1,@pm=金额";
     //
     // ChargeRateLab5
     //
     this.ChargeRateLab5.AutoSize = true;
     this.ChargeRateLab5.Location = new System.Drawing.Point(39, 58);
     this.ChargeRateLab5.Name = "ChargeRateLab5";
     this.ChargeRateLab5.Size = new System.Drawing.Size(60, 14);
     this.ChargeRateLab5.TabIndex = 12;
     this.ChargeRateLab5.Text = "计费率F2:";
     //
     // ChargeTimeTxt5
     //
     this.ChargeTimeTxt5.Location = new System.Drawing.Point(104, 21);
     this.ChargeTimeTxt5.Name = "ChargeTimeTxt5";
     this.ChargeTimeTxt5.Size = new System.Drawing.Size(127, 22);
     this.ChargeTimeTxt5.TabIndex = 11;
     this.ChargeTimeTxt5.Tag = "@num=1,@pm=时长";
     //
     // ChargeTimeLab5
     //
     this.ChargeTimeLab5.AutoSize = true;
     this.ChargeTimeLab5.Location = new System.Drawing.Point(3, 24);
     this.ChargeTimeLab5.Name = "ChargeTimeLab5";
     this.ChargeTimeLab5.Size = new System.Drawing.Size(96, 14);
     this.ChargeTimeLab5.TabIndex = 10;
     this.ChargeTimeLab5.Text = "计费时长T5(分):";
     //
     // groupBox7
     //
     this.groupBox7.Controls.Add(this.TimePoint4);
     this.groupBox7.Controls.Add(this.TimePoint4Lab);
     this.groupBox7.Controls.Add(this.TimePoint3);
     this.groupBox7.Controls.Add(this.TimePoint3Lab);
     this.groupBox7.Location = new System.Drawing.Point(48, 82);
     this.groupBox7.Name = "groupBox7";
     this.groupBox7.Size = new System.Drawing.Size(514, 60);
     this.groupBox7.TabIndex = 8;
     this.groupBox7.TabStop = false;
     this.groupBox7.Text = "时段设置";
     //
     // TimePoint4
     //
     this.TimePoint4.CustomFormat = "HH:mm";
     this.TimePoint4.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimePoint4.Location = new System.Drawing.Point(338, 23);
     this.TimePoint4.Name = "TimePoint4";
     this.TimePoint4.ShowUpDown = true;
     this.TimePoint4.Size = new System.Drawing.Size(136, 22);
     this.TimePoint4.TabIndex = 2;
     this.TimePoint4.Tag = "@num=1,@pm=截止";
     //
     // TimePoint4Lab
     //
     this.TimePoint4Lab.AutoSize = true;
     this.TimePoint4Lab.Location = new System.Drawing.Point(275, 27);
     this.TimePoint4Lab.Name = "TimePoint4Lab";
     this.TimePoint4Lab.Size = new System.Drawing.Size(62, 14);
     this.TimePoint4Lab.TabIndex = 1;
     this.TimePoint4Lab.Text = "时间点T4:";
     //
     // TimePoint3
     //
     this.TimePoint3.CustomFormat = "HH:mm";
     this.TimePoint3.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.TimePoint3.Location = new System.Drawing.Point(104, 21);
     this.TimePoint3.Name = "TimePoint3";
     this.TimePoint3.ShowUpDown = true;
     this.TimePoint3.Size = new System.Drawing.Size(127, 22);
     this.TimePoint3.TabIndex = 0;
     this.TimePoint3.Tag = "@num=1,@pm=起始";
     //
     // TimePoint3Lab
     //
     this.TimePoint3Lab.AutoSize = true;
     this.TimePoint3Lab.Location = new System.Drawing.Point(39, 25);
     this.TimePoint3Lab.Name = "TimePoint3Lab";
     this.TimePoint3Lab.Size = new System.Drawing.Size(62, 14);
     this.TimePoint3Lab.TabIndex = 0;
     this.TimePoint3Lab.Text = "时间点T3:";
     //
     // AftFreeTxt5
     //
     this.AftFreeTxt5.Location = new System.Drawing.Point(442, 53);
     this.AftFreeTxt5.Name = "AftFreeTxt5";
     this.AftFreeTxt5.Size = new System.Drawing.Size(120, 22);
     this.AftFreeTxt5.TabIndex = 7;
     this.AftFreeTxt5.Tag = "@pm=基本费延时";
     //
     // BasicFeeTxt5
     //
     this.BasicFeeTxt5.Location = new System.Drawing.Point(151, 55);
     this.BasicFeeTxt5.Name = "BasicFeeTxt5";
     this.BasicFeeTxt5.Size = new System.Drawing.Size(130, 22);
     this.BasicFeeTxt5.TabIndex = 5;
     this.BasicFeeTxt5.Tag = "@pm=基本费";
     //
     // BasicTimeTxt5
     //
     this.BasicTimeTxt5.Location = new System.Drawing.Point(442, 20);
     this.BasicTimeTxt5.Name = "BasicTimeTxt5";
     this.BasicTimeTxt5.Size = new System.Drawing.Size(120, 22);
     this.BasicTimeTxt5.TabIndex = 3;
     this.BasicTimeTxt5.Tag = "@pm=基本时长";
     //
     // FreeTimeTxt5
     //
     this.FreeTimeTxt5.Location = new System.Drawing.Point(151, 25);
     this.FreeTimeTxt5.Name = "FreeTimeTxt5";
     this.FreeTimeTxt5.Size = new System.Drawing.Size(130, 22);
     this.FreeTimeTxt5.TabIndex = 1;
     this.FreeTimeTxt5.Tag = "@pm=免费时长";
     //
     // AftFreeLab5
     //
     this.AftFreeLab5.AutoSize = true;
     this.AftFreeLab5.Location = new System.Drawing.Point(294, 58);
     this.AftFreeLab5.Name = "AftFreeLab5";
     this.AftFreeLab5.Size = new System.Drawing.Size(144, 14);
     this.AftFreeLab5.TabIndex = 6;
     this.AftFreeLab5.Text = "基本后的免费时长T2(分):";
     //
     // BasicFeeLab5
     //
     this.BasicFeeLab5.AutoSize = true;
     this.BasicFeeLab5.Location = new System.Drawing.Point(93, 58);
     this.BasicFeeLab5.Name = "BasicFeeLab5";
     this.BasicFeeLab5.Size = new System.Drawing.Size(60, 14);
     this.BasicFeeLab5.TabIndex = 4;
     this.BasicFeeLab5.Text = "基本费F1:";
     //
     // BasicTimeLab5
     //
     this.BasicTimeLab5.AutoSize = true;
     this.BasicTimeLab5.Location = new System.Drawing.Point(330, 23);
     this.BasicTimeLab5.Name = "BasicTimeLab5";
     this.BasicTimeLab5.Size = new System.Drawing.Size(108, 14);
     this.BasicTimeLab5.TabIndex = 2;
     this.BasicTimeLab5.Text = "基本费时长T1(分):";
     //
     // FreeTimeLab5
     //
     this.FreeTimeLab5.AutoSize = true;
     this.FreeTimeLab5.Location = new System.Drawing.Point(57, 28);
     this.FreeTimeLab5.Name = "FreeTimeLab5";
     this.FreeTimeLab5.Size = new System.Drawing.Size(96, 14);
     this.FreeTimeLab5.TabIndex = 0;
     this.FreeTimeLab5.Text = "免费时长T0(分):";
     //
     // tabpgFee6
     //
     this.tabpgFee6.BackColor = System.Drawing.Color.WhiteSmoke;
     this.tabpgFee6.Controls.Add(this.HourFeeTxt24);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt23);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt22);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt21);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt20);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt19);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt18);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt17);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt16);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt15);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt14);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt13);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt12);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt11);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt10);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt9);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt8);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt7);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt6);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt5);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt4);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt3);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt2);
     this.tabpgFee6.Controls.Add(this.HourFeeTxt1);
     this.tabpgFee6.Controls.Add(this.LimitAccTxt);
     this.tabpgFee6.Controls.Add(this.FreeTimeTxt6);
     this.tabpgFee6.Controls.Add(this.HourFeeLab24);
     this.tabpgFee6.Controls.Add(this.HourFeeLab23);
     this.tabpgFee6.Controls.Add(this.HourFeeLab22);
     this.tabpgFee6.Controls.Add(this.HourFeeLab21);
     this.tabpgFee6.Controls.Add(this.HourFeeLab20);
     this.tabpgFee6.Controls.Add(this.HourFeeLab19);
     this.tabpgFee6.Controls.Add(this.HourFeeLab18);
     this.tabpgFee6.Controls.Add(this.HourFeeLab17);
     this.tabpgFee6.Controls.Add(this.HourFeeLab16);
     this.tabpgFee6.Controls.Add(this.HourFeeLab15);
     this.tabpgFee6.Controls.Add(this.HourFeeLab14);
     this.tabpgFee6.Controls.Add(this.HourFeeLab13);
     this.tabpgFee6.Controls.Add(this.HourFeeLab12);
     this.tabpgFee6.Controls.Add(this.HourFeeLab11);
     this.tabpgFee6.Controls.Add(this.HourFeeLab10);
     this.tabpgFee6.Controls.Add(this.HourFeeLab9);
     this.tabpgFee6.Controls.Add(this.HourFeeLab8);
     this.tabpgFee6.Controls.Add(this.HourFeeLab7);
     this.tabpgFee6.Controls.Add(this.HourFeeLab6);
     this.tabpgFee6.Controls.Add(this.HourFeeLab5);
     this.tabpgFee6.Controls.Add(this.HourFeeLab4);
     this.tabpgFee6.Controls.Add(this.HourFeeLab3);
     this.tabpgFee6.Controls.Add(this.HourFeeLab2);
     this.tabpgFee6.Controls.Add(this.HourFeeLab1);
     this.tabpgFee6.Controls.Add(this.LimitAccLab);
     this.tabpgFee6.Controls.Add(this.FreeTimeLab6);
     this.tabpgFee6.Location = new System.Drawing.Point(4, 26);
     this.tabpgFee6.Name = "tabpgFee6";
     this.tabpgFee6.Padding = new System.Windows.Forms.Padding(3);
     this.tabpgFee6.Size = new System.Drawing.Size(566, 0);
     this.tabpgFee6.TabIndex = 5;
     this.tabpgFee6.Tag = "";
     this.tabpgFee6.Text = "收费方式6";
     //
     // HourFeeTxt24
     //
     this.HourFeeTxt24.Location = new System.Drawing.Point(287, 276);
     this.HourFeeTxt24.Name = "HourFeeTxt24";
     this.HourFeeTxt24.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt24.TabIndex = 51;
     this.HourFeeTxt24.Tag = "@num=24,@pm=金额";
     //
     // HourFeeTxt23
     //
     this.HourFeeTxt23.Location = new System.Drawing.Point(97, 276);
     this.HourFeeTxt23.Name = "HourFeeTxt23";
     this.HourFeeTxt23.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt23.TabIndex = 49;
     this.HourFeeTxt23.Tag = "@num=23,@pm=金额";
     //
     // HourFeeTxt22
     //
     this.HourFeeTxt22.Location = new System.Drawing.Point(486, 244);
     this.HourFeeTxt22.Name = "HourFeeTxt22";
     this.HourFeeTxt22.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt22.TabIndex = 47;
     this.HourFeeTxt22.Tag = "@num=22,@pm=金额";
     //
     // HourFeeTxt21
     //
     this.HourFeeTxt21.Location = new System.Drawing.Point(287, 245);
     this.HourFeeTxt21.Name = "HourFeeTxt21";
     this.HourFeeTxt21.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt21.TabIndex = 45;
     this.HourFeeTxt21.Tag = "@num=21,@pm=金额";
     //
     // HourFeeTxt20
     //
     this.HourFeeTxt20.Location = new System.Drawing.Point(97, 242);
     this.HourFeeTxt20.Name = "HourFeeTxt20";
     this.HourFeeTxt20.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt20.TabIndex = 43;
     this.HourFeeTxt20.Tag = "@num=20,@pm=金额";
     //
     // HourFeeTxt19
     //
     this.HourFeeTxt19.Location = new System.Drawing.Point(486, 213);
     this.HourFeeTxt19.Name = "HourFeeTxt19";
     this.HourFeeTxt19.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt19.TabIndex = 41;
     this.HourFeeTxt19.Tag = "@num=19,@pm=金额";
     //
     // HourFeeTxt18
     //
     this.HourFeeTxt18.Location = new System.Drawing.Point(287, 211);
     this.HourFeeTxt18.Name = "HourFeeTxt18";
     this.HourFeeTxt18.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt18.TabIndex = 39;
     this.HourFeeTxt18.Tag = "@num=18,@pm=金额";
     //
     // HourFeeTxt17
     //
     this.HourFeeTxt17.Location = new System.Drawing.Point(97, 211);
     this.HourFeeTxt17.Name = "HourFeeTxt17";
     this.HourFeeTxt17.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt17.TabIndex = 37;
     this.HourFeeTxt17.Tag = "@num=17,@pm=金额";
     //
     // HourFeeTxt16
     //
     this.HourFeeTxt16.Location = new System.Drawing.Point(486, 181);
     this.HourFeeTxt16.Name = "HourFeeTxt16";
     this.HourFeeTxt16.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt16.TabIndex = 35;
     this.HourFeeTxt16.Tag = "@num=16,@pm=金额";
     //
     // HourFeeTxt15
     //
     this.HourFeeTxt15.Location = new System.Drawing.Point(287, 177);
     this.HourFeeTxt15.Name = "HourFeeTxt15";
     this.HourFeeTxt15.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt15.TabIndex = 33;
     this.HourFeeTxt15.Tag = "@num=15,@pm=金额";
     //
     // HourFeeTxt14
     //
     this.HourFeeTxt14.Location = new System.Drawing.Point(97, 177);
     this.HourFeeTxt14.Name = "HourFeeTxt14";
     this.HourFeeTxt14.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt14.TabIndex = 31;
     this.HourFeeTxt14.Tag = "@num=14,@pm=金额";
     //
     // HourFeeTxt13
     //
     this.HourFeeTxt13.Location = new System.Drawing.Point(486, 148);
     this.HourFeeTxt13.Name = "HourFeeTxt13";
     this.HourFeeTxt13.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt13.TabIndex = 29;
     this.HourFeeTxt13.Tag = "@num=13,@pm=金额";
     //
     // HourFeeTxt12
     //
     this.HourFeeTxt12.Location = new System.Drawing.Point(287, 146);
     this.HourFeeTxt12.Name = "HourFeeTxt12";
     this.HourFeeTxt12.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt12.TabIndex = 27;
     this.HourFeeTxt12.Tag = "@num=12,@pm=金额";
     //
     // HourFeeTxt11
     //
     this.HourFeeTxt11.Location = new System.Drawing.Point(97, 146);
     this.HourFeeTxt11.Name = "HourFeeTxt11";
     this.HourFeeTxt11.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt11.TabIndex = 25;
     this.HourFeeTxt11.Tag = "@num=11,@pm=金额";
     //
     // HourFeeTxt10
     //
     this.HourFeeTxt10.Location = new System.Drawing.Point(486, 114);
     this.HourFeeTxt10.Name = "HourFeeTxt10";
     this.HourFeeTxt10.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt10.TabIndex = 23;
     this.HourFeeTxt10.Tag = "@num=10,@pm=金额";
     //
     // HourFeeTxt9
     //
     this.HourFeeTxt9.Location = new System.Drawing.Point(287, 113);
     this.HourFeeTxt9.Name = "HourFeeTxt9";
     this.HourFeeTxt9.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt9.TabIndex = 21;
     this.HourFeeTxt9.Tag = "@num=9,@pm=金额";
     //
     // HourFeeTxt8
     //
     this.HourFeeTxt8.Location = new System.Drawing.Point(97, 113);
     this.HourFeeTxt8.Name = "HourFeeTxt8";
     this.HourFeeTxt8.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt8.TabIndex = 19;
     this.HourFeeTxt8.Tag = "@num=8,@pm=金额";
     //
     // HourFeeTxt7
     //
     this.HourFeeTxt7.Location = new System.Drawing.Point(486, 81);
     this.HourFeeTxt7.Name = "HourFeeTxt7";
     this.HourFeeTxt7.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt7.TabIndex = 17;
     this.HourFeeTxt7.Tag = "@num=7,@pm=金额";
     //
     // HourFeeTxt6
     //
     this.HourFeeTxt6.Location = new System.Drawing.Point(287, 81);
     this.HourFeeTxt6.Name = "HourFeeTxt6";
     this.HourFeeTxt6.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt6.TabIndex = 15;
     this.HourFeeTxt6.Tag = "@num=6,@pm=金额";
     //
     // HourFeeTxt5
     //
     this.HourFeeTxt5.Location = new System.Drawing.Point(97, 81);
     this.HourFeeTxt5.Name = "HourFeeTxt5";
     this.HourFeeTxt5.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt5.TabIndex = 13;
     this.HourFeeTxt5.Tag = "@num=5,@pm=金额";
     //
     // HourFeeTxt4
     //
     this.HourFeeTxt4.Location = new System.Drawing.Point(486, 49);
     this.HourFeeTxt4.Name = "HourFeeTxt4";
     this.HourFeeTxt4.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt4.TabIndex = 11;
     this.HourFeeTxt4.Tag = "@num=4,@pm=金额";
     //
     // HourFeeTxt3
     //
     this.HourFeeTxt3.Location = new System.Drawing.Point(287, 48);
     this.HourFeeTxt3.Name = "HourFeeTxt3";
     this.HourFeeTxt3.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt3.TabIndex = 9;
     this.HourFeeTxt3.Tag = "@num=3,@pm=金额";
     //
     // HourFeeTxt2
     //
     this.HourFeeTxt2.Location = new System.Drawing.Point(97, 48);
     this.HourFeeTxt2.Name = "HourFeeTxt2";
     this.HourFeeTxt2.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt2.TabIndex = 7;
     this.HourFeeTxt2.Tag = "@num=2,@pm=金额";
     //
     // HourFeeTxt1
     //
     this.HourFeeTxt1.Location = new System.Drawing.Point(486, 16);
     this.HourFeeTxt1.Name = "HourFeeTxt1";
     this.HourFeeTxt1.Size = new System.Drawing.Size(91, 22);
     this.HourFeeTxt1.TabIndex = 5;
     this.HourFeeTxt1.Tag = "@num=1,@pm=金额";
     //
     // LimitAccTxt
     //
     this.LimitAccTxt.Location = new System.Drawing.Point(287, 15);
     this.LimitAccTxt.Name = "LimitAccTxt";
     this.LimitAccTxt.Size = new System.Drawing.Size(91, 22);
     this.LimitAccTxt.TabIndex = 3;
     this.LimitAccTxt.Tag = "@pm=廿四时限额";
     //
     // FreeTimeTxt6
     //
     this.FreeTimeTxt6.Location = new System.Drawing.Point(97, 15);
     this.FreeTimeTxt6.Name = "FreeTimeTxt6";
     this.FreeTimeTxt6.Size = new System.Drawing.Size(91, 22);
     this.FreeTimeTxt6.TabIndex = 1;
     this.FreeTimeTxt6.Tag = "@pm=免费时长";
     //
     // HourFeeLab24
     //
     this.HourFeeLab24.AutoSize = true;
     this.HourFeeLab24.Location = new System.Drawing.Point(216, 282);
     this.HourFeeLab24.Name = "HourFeeLab24";
     this.HourFeeLab24.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab24.TabIndex = 50;
     this.HourFeeLab24.Text = "24小时收费:";
     //
     // HourFeeLab23
     //
     this.HourFeeLab23.AutoSize = true;
     this.HourFeeLab23.Location = new System.Drawing.Point(26, 279);
     this.HourFeeLab23.Name = "HourFeeLab23";
     this.HourFeeLab23.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab23.TabIndex = 48;
     this.HourFeeLab23.Text = "23小时收费:";
     //
     // HourFeeLab22
     //
     this.HourFeeLab22.AutoSize = true;
     this.HourFeeLab22.Location = new System.Drawing.Point(417, 250);
     this.HourFeeLab22.Name = "HourFeeLab22";
     this.HourFeeLab22.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab22.TabIndex = 46;
     this.HourFeeLab22.Text = "22小时收费:";
     //
     // HourFeeLab21
     //
     this.HourFeeLab21.AutoSize = true;
     this.HourFeeLab21.Location = new System.Drawing.Point(216, 250);
     this.HourFeeLab21.Name = "HourFeeLab21";
     this.HourFeeLab21.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab21.TabIndex = 44;
     this.HourFeeLab21.Text = "21小时收费:";
     //
     // HourFeeLab20
     //
     this.HourFeeLab20.AutoSize = true;
     this.HourFeeLab20.Location = new System.Drawing.Point(26, 247);
     this.HourFeeLab20.Name = "HourFeeLab20";
     this.HourFeeLab20.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab20.TabIndex = 42;
     this.HourFeeLab20.Text = "20小时收费:";
     //
     // HourFeeLab19
     //
     this.HourFeeLab19.AutoSize = true;
     this.HourFeeLab19.Location = new System.Drawing.Point(417, 218);
     this.HourFeeLab19.Name = "HourFeeLab19";
     this.HourFeeLab19.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab19.TabIndex = 40;
     this.HourFeeLab19.Text = "19小时收费:";
     //
     // HourFeeLab18
     //
     this.HourFeeLab18.AutoSize = true;
     this.HourFeeLab18.Location = new System.Drawing.Point(216, 216);
     this.HourFeeLab18.Name = "HourFeeLab18";
     this.HourFeeLab18.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab18.TabIndex = 38;
     this.HourFeeLab18.Text = "18小时收费:";
     //
     // HourFeeLab17
     //
     this.HourFeeLab17.AutoSize = true;
     this.HourFeeLab17.Location = new System.Drawing.Point(26, 216);
     this.HourFeeLab17.Name = "HourFeeLab17";
     this.HourFeeLab17.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab17.TabIndex = 36;
     this.HourFeeLab17.Text = "17小时收费:";
     //
     // HourFeeLab16
     //
     this.HourFeeLab16.AutoSize = true;
     this.HourFeeLab16.Location = new System.Drawing.Point(417, 186);
     this.HourFeeLab16.Name = "HourFeeLab16";
     this.HourFeeLab16.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab16.TabIndex = 34;
     this.HourFeeLab16.Text = "16小时收费:";
     //
     // HourFeeLab15
     //
     this.HourFeeLab15.AutoSize = true;
     this.HourFeeLab15.Location = new System.Drawing.Point(216, 183);
     this.HourFeeLab15.Name = "HourFeeLab15";
     this.HourFeeLab15.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab15.TabIndex = 32;
     this.HourFeeLab15.Text = "15小时收费:";
     //
     // HourFeeLab14
     //
     this.HourFeeLab14.AutoSize = true;
     this.HourFeeLab14.Location = new System.Drawing.Point(26, 181);
     this.HourFeeLab14.Name = "HourFeeLab14";
     this.HourFeeLab14.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab14.TabIndex = 30;
     this.HourFeeLab14.Text = "14小时收费:";
     //
     // HourFeeLab13
     //
     this.HourFeeLab13.AutoSize = true;
     this.HourFeeLab13.Location = new System.Drawing.Point(417, 151);
     this.HourFeeLab13.Name = "HourFeeLab13";
     this.HourFeeLab13.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab13.TabIndex = 28;
     this.HourFeeLab13.Text = "13小时收费:";
     //
     // HourFeeLab12
     //
     this.HourFeeLab12.AutoSize = true;
     this.HourFeeLab12.Location = new System.Drawing.Point(216, 149);
     this.HourFeeLab12.Name = "HourFeeLab12";
     this.HourFeeLab12.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab12.TabIndex = 26;
     this.HourFeeLab12.Text = "12小时收费:";
     //
     // HourFeeLab11
     //
     this.HourFeeLab11.AutoSize = true;
     this.HourFeeLab11.Location = new System.Drawing.Point(26, 151);
     this.HourFeeLab11.Name = "HourFeeLab11";
     this.HourFeeLab11.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab11.TabIndex = 24;
     this.HourFeeLab11.Text = "11小时收费:";
     //
     // HourFeeLab10
     //
     this.HourFeeLab10.AutoSize = true;
     this.HourFeeLab10.Location = new System.Drawing.Point(417, 120);
     this.HourFeeLab10.Name = "HourFeeLab10";
     this.HourFeeLab10.Size = new System.Drawing.Size(73, 14);
     this.HourFeeLab10.TabIndex = 22;
     this.HourFeeLab10.Text = "10小时收费:";
     //
     // HourFeeLab9
     //
     this.HourFeeLab9.AutoSize = true;
     this.HourFeeLab9.Location = new System.Drawing.Point(222, 120);
     this.HourFeeLab9.Name = "HourFeeLab9";
     this.HourFeeLab9.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab9.TabIndex = 20;
     this.HourFeeLab9.Text = "9小时收费:";
     //
     // HourFeeLab8
     //
     this.HourFeeLab8.AutoSize = true;
     this.HourFeeLab8.Location = new System.Drawing.Point(32, 118);
     this.HourFeeLab8.Name = "HourFeeLab8";
     this.HourFeeLab8.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab8.TabIndex = 18;
     this.HourFeeLab8.Text = "8小时收费:";
     //
     // HourFeeLab7
     //
     this.HourFeeLab7.AutoSize = true;
     this.HourFeeLab7.Location = new System.Drawing.Point(423, 87);
     this.HourFeeLab7.Name = "HourFeeLab7";
     this.HourFeeLab7.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab7.TabIndex = 16;
     this.HourFeeLab7.Text = "7小时收费:";
     //
     // HourFeeLab6
     //
     this.HourFeeLab6.AutoSize = true;
     this.HourFeeLab6.Location = new System.Drawing.Point(222, 87);
     this.HourFeeLab6.Name = "HourFeeLab6";
     this.HourFeeLab6.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab6.TabIndex = 14;
     this.HourFeeLab6.Text = "6小时收费:";
     //
     // HourFeeLab5
     //
     this.HourFeeLab5.AutoSize = true;
     this.HourFeeLab5.Location = new System.Drawing.Point(32, 85);
     this.HourFeeLab5.Name = "HourFeeLab5";
     this.HourFeeLab5.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab5.TabIndex = 12;
     this.HourFeeLab5.Text = "5小时收费:";
     //
     // HourFeeLab4
     //
     this.HourFeeLab4.AutoSize = true;
     this.HourFeeLab4.Location = new System.Drawing.Point(423, 57);
     this.HourFeeLab4.Name = "HourFeeLab4";
     this.HourFeeLab4.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab4.TabIndex = 10;
     this.HourFeeLab4.Text = "4小时收费:";
     //
     // HourFeeLab3
     //
     this.HourFeeLab3.AutoSize = true;
     this.HourFeeLab3.Location = new System.Drawing.Point(222, 54);
     this.HourFeeLab3.Name = "HourFeeLab3";
     this.HourFeeLab3.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab3.TabIndex = 8;
     this.HourFeeLab3.Text = "3小时收费:";
     //
     // HourFeeLab2
     //
     this.HourFeeLab2.AutoSize = true;
     this.HourFeeLab2.Location = new System.Drawing.Point(32, 55);
     this.HourFeeLab2.Name = "HourFeeLab2";
     this.HourFeeLab2.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab2.TabIndex = 6;
     this.HourFeeLab2.Text = "2小时收费:";
     //
     // HourFeeLab1
     //
     this.HourFeeLab1.AutoSize = true;
     this.HourFeeLab1.Location = new System.Drawing.Point(423, 22);
     this.HourFeeLab1.Name = "HourFeeLab1";
     this.HourFeeLab1.Size = new System.Drawing.Size(66, 14);
     this.HourFeeLab1.TabIndex = 4;
     this.HourFeeLab1.Text = "1小时收费:";
     //
     // LimitAccLab
     //
     this.LimitAccLab.AutoSize = true;
     this.LimitAccLab.Location = new System.Drawing.Point(216, 22);
     this.LimitAccLab.Name = "LimitAccLab";
     this.LimitAccLab.Size = new System.Drawing.Size(73, 14);
     this.LimitAccLab.TabIndex = 2;
     this.LimitAccLab.Text = "24小时限额:";
     //
     // FreeTimeLab6
     //
     this.FreeTimeLab6.AutoSize = true;
     this.FreeTimeLab6.Location = new System.Drawing.Point(26, 22);
     this.FreeTimeLab6.Name = "FreeTimeLab6";
     this.FreeTimeLab6.Size = new System.Drawing.Size(74, 14);
     this.FreeTimeLab6.TabIndex = 0;
     this.FreeTimeLab6.Text = "免费时长T0:";
     //
     // panelControl6
     //
     this.panelControl6.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl6.Controls.Add(this.btnbigCar);
     this.panelControl6.Controls.Add(this.btnMiCar);
     this.panelControl6.Controls.Add(this.btnTimeCar);
     this.panelControl6.Controls.Add(this.btnSmallCar);
     this.panelControl6.Controls.Add(this.btnMoCar);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl6.Location = new System.Drawing.Point(0, 0);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(574, 35);
     this.panelControl6.TabIndex = 61;
     //
     // btnbigCar
     //
     this.btnbigCar.Appearance.ForeColor = System.Drawing.Color.Black;
     this.btnbigCar.Appearance.Options.UseForeColor = true;
     this.btnbigCar.Location = new System.Drawing.Point(0, 4);
     this.btnbigCar.Name = "btnbigCar";
     this.btnbigCar.Size = new System.Drawing.Size(64, 28);
     this.btnbigCar.TabIndex = 70;
     this.btnbigCar.Tag = "@val=1";
     this.btnbigCar.Text = "A类车";
     this.btnbigCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnMiCar
     //
     this.btnMiCar.Location = new System.Drawing.Point(63, 4);
     this.btnMiCar.Name = "btnMiCar";
     this.btnMiCar.Size = new System.Drawing.Size(64, 28);
     this.btnMiCar.TabIndex = 69;
     this.btnMiCar.Tag = "@val=2";
     this.btnMiCar.Text = "B类车";
     this.btnMiCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnTimeCar
     //
     this.btnTimeCar.Location = new System.Drawing.Point(126, 4);
     this.btnTimeCar.Name = "btnTimeCar";
     this.btnTimeCar.Size = new System.Drawing.Size(64, 28);
     this.btnTimeCar.TabIndex = 68;
     this.btnTimeCar.Tag = "@val=3";
     this.btnTimeCar.Text = "C类车";
     this.btnTimeCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnSmallCar
     //
     this.btnSmallCar.Location = new System.Drawing.Point(190, 4);
     this.btnSmallCar.Name = "btnSmallCar";
     this.btnSmallCar.Size = new System.Drawing.Size(64, 28);
     this.btnSmallCar.TabIndex = 67;
     this.btnSmallCar.Tag = "@val=4";
     this.btnSmallCar.Text = "D类车";
     this.btnSmallCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // btnMoCar
     //
     this.btnMoCar.Location = new System.Drawing.Point(253, 4);
     this.btnMoCar.Name = "btnMoCar";
     this.btnMoCar.Size = new System.Drawing.Size(64, 28);
     this.btnMoCar.TabIndex = 66;
     this.btnMoCar.Tag = "@val=5";
     this.btnMoCar.Text = "E类车";
     this.btnMoCar.Click += new System.EventHandler(this.btnCar_Click);
     //
     // grpParam
     //
     this.grpParam.Controls.Add(this.panelControl2);
     this.grpParam.Dock = System.Windows.Forms.DockStyle.Top;
     this.grpParam.Location = new System.Drawing.Point(0, 65);
     this.grpParam.Name = "grpParam";
     this.grpParam.Size = new System.Drawing.Size(647, 567);
     this.grpParam.TabIndex = 10;
     this.grpParam.Tag = "";
     this.grpParam.Text = "控制参数";
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.groupControl2);
     this.panelControl2.Controls.Add(this.panelControl9);
     this.panelControl2.Controls.Add(this.panelControl5);
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl2.Location = new System.Drawing.Point(2, 21);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(643, 541);
     this.panelControl2.TabIndex = 1;
     this.panelControl2.Tag = "@db=用户信息";
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.dbDev);
     this.groupControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupControl2.Location = new System.Drawing.Point(0, 388);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(643, 153);
     this.groupControl2.TabIndex = 90;
     this.groupControl2.Text = "设备信息";
     //
     // dbDev
     //
     this.dbDev.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbDev.Location = new System.Drawing.Point(2, 21);
     this.dbDev.MainView = this.gridView1;
     this.dbDev.Name = "dbDev";
     this.dbDev.Size = new System.Drawing.Size(639, 130);
     this.dbDev.TabIndex = 92;
     this.dbDev.Tag = "@db=设备定义";
     this.dbDev.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12});
     this.gridView1.GridControl = this.dbDev;
     this.gridView1.GroupPanelText = "设备信息";
     this.gridView1.HorzScrollStep = 1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged_1);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "ID";
     this.gridColumn1.FieldName = "ID";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "名称";
     this.gridColumn2.FieldName = "名称";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 0;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "电脑";
     this.gridColumn3.FieldName = "电脑";
     this.gridColumn3.Name = "gridColumn3";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "IP地址";
     this.gridColumn4.FieldName = "IP地址";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "设备地址";
     this.gridColumn5.FieldName = "站址";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 2;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "串口";
     this.gridColumn6.FieldName = "串口";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 4;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "波特率";
     this.gridColumn7.FieldName = "波特率";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "数据位";
     this.gridColumn8.FieldName = "数据位";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 7;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "停止位";
     this.gridColumn9.FieldName = "停止位";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 8;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "通讯类别";
     this.gridColumn10.FieldName = "通讯类别";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 3;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "编号";
     this.gridColumn11.FieldName = "编号";
     this.gridColumn11.Name = "gridColumn11";
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "端口";
     this.gridColumn12.FieldName = "端口";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 5;
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.btnAddDev);
     this.panelControl9.Controls.Add(this.btnDelDev);
     this.panelControl9.Controls.Add(this.btnSaveDev);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 351);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(643, 37);
     this.panelControl9.TabIndex = 89;
     //
     // btnAddDev
     //
     this.btnAddDev.Location = new System.Drawing.Point(12, 6);
     this.btnAddDev.Name = "btnAddDev";
     this.btnAddDev.Size = new System.Drawing.Size(64, 28);
     this.btnAddDev.TabIndex = 3;
     this.btnAddDev.Text = "增加设备";
     this.btnAddDev.Click += new System.EventHandler(this.btnAddDev_Click);
     //
     // btnDelDev
     //
     this.btnDelDev.Location = new System.Drawing.Point(91, 6);
     this.btnDelDev.Name = "btnDelDev";
     this.btnDelDev.Size = new System.Drawing.Size(64, 28);
     this.btnDelDev.TabIndex = 2;
     this.btnDelDev.Text = "删除设备";
     this.btnDelDev.Click += new System.EventHandler(this.btnDelDev_Click);
     //
     // btnSaveDev
     //
     this.btnSaveDev.Location = new System.Drawing.Point(172, 6);
     this.btnSaveDev.Name = "btnSaveDev";
     this.btnSaveDev.Size = new System.Drawing.Size(64, 28);
     this.btnSaveDev.TabIndex = 1;
     this.btnSaveDev.Text = "保存";
     this.btnSaveDev.Click += new System.EventHandler(this.btnSaveDev_Click);
     //
     // panelControl5
     //
     this.panelControl5.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl5.Controls.Add(this.groupBox8);
     this.panelControl5.Controls.Add(this.grpbChannel);
     this.panelControl5.Controls.Add(this.groupBox5);
     this.panelControl5.Controls.Add(this.grpbCardType);
     this.panelControl5.Controls.Add(this.groupBox4);
     this.panelControl5.Controls.Add(this.grpbAccept);
     this.panelControl5.Controls.Add(this.groupBox1);
     this.panelControl5.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl5.Location = new System.Drawing.Point(0, 78);
     this.panelControl5.Name = "panelControl5";
     this.panelControl5.Size = new System.Drawing.Size(643, 273);
     this.panelControl5.TabIndex = 88;
     this.panelControl5.Tag = "@db=停车场管理";
     //
     // groupBox8
     //
     this.groupBox8.Controls.Add(this.checkEdit10);
     this.groupBox8.Controls.Add(this.checkEdit2);
     this.groupBox8.Location = new System.Drawing.Point(466, 173);
     this.groupBox8.Name = "groupBox8";
     this.groupBox8.Size = new System.Drawing.Size(174, 94);
     this.groupBox8.TabIndex = 95;
     this.groupBox8.TabStop = false;
     this.groupBox8.Tag = "@db=停车场管理";
     this.groupBox8.Text = "出入场地感";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(5, 56);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "出场地感";
     this.checkEdit10.Size = new System.Drawing.Size(100, 19);
     this.checkEdit10.TabIndex = 112;
     this.checkEdit10.Tag = "@fld=出场地感";
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(5, 31);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "入场地感";
     this.checkEdit2.Size = new System.Drawing.Size(70, 19);
     this.checkEdit2.TabIndex = 111;
     this.checkEdit2.Tag = "@fld=入场地感";
     //
     // grpbChannel
     //
     this.grpbChannel.Controls.Add(this.plCarType);
     this.grpbChannel.Controls.Add(this.plCardType);
     this.grpbChannel.Controls.Add(this.checkBox5);
     this.grpbChannel.Controls.Add(this.radChannelCard);
     this.grpbChannel.Controls.Add(this.radChannelCar);
     this.grpbChannel.Location = new System.Drawing.Point(299, 1);
     this.grpbChannel.Name = "grpbChannel";
     this.grpbChannel.Size = new System.Drawing.Size(341, 84);
     this.grpbChannel.TabIndex = 94;
     this.grpbChannel.TabStop = false;
     this.grpbChannel.Tag = "";
     this.grpbChannel.Text = "通道选择";
     //
     // plCarType
     //
     this.plCarType.Controls.Add(this.checkEdit13);
     this.plCarType.Controls.Add(this.checkEdit14);
     this.plCarType.Controls.Add(this.checkEdit15);
     this.plCarType.Controls.Add(this.checkEdit16);
     this.plCarType.Location = new System.Drawing.Point(144, 19);
     this.plCarType.Name = "plCarType";
     this.plCarType.Size = new System.Drawing.Size(175, 52);
     this.plCarType.TabIndex = 140;
     this.plCarType.Tag = "@db=停车场管理";
     //
     // checkEdit13
     //
     this.checkEdit13.Location = new System.Drawing.Point(223, 26);
     this.checkEdit13.Name = "checkEdit13";
     this.checkEdit13.Properties.Caption = "D类车";
     this.checkEdit13.Size = new System.Drawing.Size(65, 19);
     this.checkEdit13.TabIndex = 132;
     this.checkEdit13.Tag = "@val=4,@grp=通道内容";
     //
     // checkEdit14
     //
     this.checkEdit14.Location = new System.Drawing.Point(159, 26);
     this.checkEdit14.Name = "checkEdit14";
     this.checkEdit14.Properties.Caption = "C类车";
     this.checkEdit14.Size = new System.Drawing.Size(58, 19);
     this.checkEdit14.TabIndex = 131;
     this.checkEdit14.Tag = "@val=3,@grp=通道内容";
     //
     // checkEdit15
     //
     this.checkEdit15.Location = new System.Drawing.Point(91, 26);
     this.checkEdit15.Name = "checkEdit15";
     this.checkEdit15.Properties.Caption = "B类车";
     this.checkEdit15.Size = new System.Drawing.Size(62, 19);
     this.checkEdit15.TabIndex = 130;
     this.checkEdit15.Tag = "@val=2,@grp=通道内容";
     //
     // checkEdit16
     //
     this.checkEdit16.Location = new System.Drawing.Point(20, 29);
     this.checkEdit16.Name = "checkEdit16";
     this.checkEdit16.Properties.Caption = "A类车";
     this.checkEdit16.Size = new System.Drawing.Size(59, 19);
     this.checkEdit16.TabIndex = 129;
     this.checkEdit16.Tag = "@val=1,@grp=通道内容";
     //
     // plCardType
     //
     this.plCardType.Controls.Add(this.checkEdit3);
     this.plCardType.Controls.Add(this.checkEdit4);
     this.plCardType.Controls.Add(this.checkEdit5);
     this.plCardType.Controls.Add(this.checkEdit6);
     this.plCardType.Controls.Add(this.checkEdit7);
     this.plCardType.Controls.Add(this.checkEdit8);
     this.plCardType.Controls.Add(this.checkEdit9);
     this.plCardType.Location = new System.Drawing.Point(6, 15);
     this.plCardType.Name = "plCardType";
     this.plCardType.Size = new System.Drawing.Size(132, 64);
     this.plCardType.TabIndex = 12;
     this.plCardType.Tag = "@db=停车场管理";
     this.plCardType.Visible = false;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(73, 36);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "贵宾卡";
     this.checkEdit3.Size = new System.Drawing.Size(65, 19);
     this.checkEdit3.TabIndex = 139;
     this.checkEdit3.Tag = "@val=8,@grp=通道内容";
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(153, 36);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "储值卡";
     this.checkEdit4.Size = new System.Drawing.Size(58, 19);
     this.checkEdit4.TabIndex = 138;
     this.checkEdit4.Tag = "@val=9,@grp=通道内容";
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(153, 10);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "临时卡";
     this.checkEdit5.Size = new System.Drawing.Size(58, 19);
     this.checkEdit5.TabIndex = 137;
     this.checkEdit5.Tag = "@val=5,@grp=通道内容";
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(73, 10);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "时段卡";
     this.checkEdit6.Size = new System.Drawing.Size(62, 19);
     this.checkEdit6.TabIndex = 136;
     this.checkEdit6.Tag = "@val=4,@grp=通道内容";
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(15, 36);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "免费卡";
     this.checkEdit7.Size = new System.Drawing.Size(61, 19);
     this.checkEdit7.TabIndex = 135;
     this.checkEdit7.Tag = "@val=6,@grp=通道内容";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(236, 10);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "临免卡";
     this.checkEdit8.Size = new System.Drawing.Size(64, 19);
     this.checkEdit8.TabIndex = 134;
     this.checkEdit8.Tag = "@val=7,@grp=通道内容";
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(15, 11);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "期卡";
     this.checkEdit9.Size = new System.Drawing.Size(48, 19);
     this.checkEdit9.TabIndex = 133;
     this.checkEdit9.Tag = "@val=3,@grp=通道内容";
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.Location = new System.Drawing.Point(101, 155);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(50, 18);
     this.checkBox5.TabIndex = 2;
     this.checkBox5.Text = "大车";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // radChannelCard
     //
     this.radChannelCard.AutoSize = true;
     this.radChannelCard.Location = new System.Drawing.Point(119, 0);
     this.radChannelCard.Name = "radChannelCard";
     this.radChannelCard.Size = new System.Drawing.Size(61, 18);
     this.radChannelCard.TabIndex = 1;
     this.radChannelCard.Text = "按卡类";
     this.radChannelCard.UseVisualStyleBackColor = true;
     this.radChannelCard.CheckedChanged += new System.EventHandler(this.radChannel_CheckedChanged);
     //
     // radChannelCar
     //
     this.radChannelCar.AutoSize = true;
     this.radChannelCar.Checked = true;
     this.radChannelCar.Location = new System.Drawing.Point(60, 0);
     this.radChannelCar.Name = "radChannelCar";
     this.radChannelCar.Size = new System.Drawing.Size(61, 18);
     this.radChannelCar.TabIndex = 0;
     this.radChannelCar.TabStop = true;
     this.radChannelCar.Text = "按车型";
     this.radChannelCar.UseVisualStyleBackColor = true;
     this.radChannelCar.CheckedChanged += new System.EventHandler(this.radChannel_CheckedChanged);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.textEdit1);
     this.groupBox5.Controls.Add(this.label3);
     this.groupBox5.Controls.Add(this.checkEdit1);
     this.groupBox5.Location = new System.Drawing.Point(3, 172);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(293, 95);
     this.groupBox5.TabIndex = 93;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "中央收费";
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(187, 41);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(101, 21);
     this.textEdit1.TabIndex = 27;
     this.textEdit1.Tag = "@fld=有效期报警";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(103, 44);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(81, 14);
     this.label3.TabIndex = 120;
     this.label3.Text = "有效时间(分):";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(7, 43);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "是否中央收费";
     this.checkEdit1.Size = new System.Drawing.Size(97, 19);
     this.checkEdit1.TabIndex = 26;
     this.checkEdit1.Tag = "@fld=允许车辆入场";
     //
     // grpbCardType
     //
     this.grpbCardType.Controls.Add(this.checkBox17);
     this.grpbCardType.Controls.Add(this.GbkChk1);
     this.grpbCardType.Controls.Add(this.CzkChk1);
     this.grpbCardType.Controls.Add(this.LskChk1);
     this.grpbCardType.Controls.Add(this.SdkChk1);
     this.grpbCardType.Controls.Add(this.MfkChk1);
     this.grpbCardType.Controls.Add(this.LmkChk1);
     this.grpbCardType.Controls.Add(this.QkChk1);
     this.grpbCardType.Location = new System.Drawing.Point(299, 86);
     this.grpbCardType.Name = "grpbCardType";
     this.grpbCardType.Size = new System.Drawing.Size(341, 84);
     this.grpbCardType.TabIndex = 92;
     this.grpbCardType.TabStop = false;
     this.grpbCardType.Tag = "@db=停车场管理";
     this.grpbCardType.Text = "卡类允许(允许该卡类入场)";
     //
     // checkBox17
     //
     this.checkBox17.Location = new System.Drawing.Point(240, 58);
     this.checkBox17.Name = "checkBox17";
     this.checkBox17.Properties.Caption = "一卡通";
     this.checkBox17.Size = new System.Drawing.Size(70, 19);
     this.checkBox17.TabIndex = 125;
     this.checkBox17.Tag = "@val=10,@grp=卡类允许";
     //
     // GbkChk1
     //
     this.GbkChk1.Location = new System.Drawing.Point(90, 58);
     this.GbkChk1.Name = "GbkChk1";
     this.GbkChk1.Properties.Caption = "贵宾卡";
     this.GbkChk1.Size = new System.Drawing.Size(65, 19);
     this.GbkChk1.TabIndex = 124;
     this.GbkChk1.Tag = "@val=8,@grp=卡类允许";
     //
     // CzkChk1
     //
     this.CzkChk1.Location = new System.Drawing.Point(167, 58);
     this.CzkChk1.Name = "CzkChk1";
     this.CzkChk1.Properties.Caption = "储值卡";
     this.CzkChk1.Size = new System.Drawing.Size(58, 19);
     this.CzkChk1.TabIndex = 123;
     this.CzkChk1.Tag = "@val=9,@grp=卡类允许";
     //
     // LskChk1
     //
     this.LskChk1.Location = new System.Drawing.Point(167, 21);
     this.LskChk1.Name = "LskChk1";
     this.LskChk1.Properties.Caption = "临时卡";
     this.LskChk1.Size = new System.Drawing.Size(58, 19);
     this.LskChk1.TabIndex = 122;
     this.LskChk1.Tag = "@val=5,@grp=卡类允许";
     //
     // SdkChk1
     //
     this.SdkChk1.Location = new System.Drawing.Point(90, 21);
     this.SdkChk1.Name = "SdkChk1";
     this.SdkChk1.Properties.Caption = "时段卡";
     this.SdkChk1.Size = new System.Drawing.Size(62, 19);
     this.SdkChk1.TabIndex = 121;
     this.SdkChk1.Tag = "@val=4,@grp=卡类允许";
     //
     // MfkChk1
     //
     this.MfkChk1.Location = new System.Drawing.Point(19, 58);
     this.MfkChk1.Name = "MfkChk1";
     this.MfkChk1.Properties.Caption = "免费卡";
     this.MfkChk1.Size = new System.Drawing.Size(61, 19);
     this.MfkChk1.TabIndex = 120;
     this.MfkChk1.Tag = "@val=6,@grp=卡类允许";
     //
     // LmkChk1
     //
     this.LmkChk1.Location = new System.Drawing.Point(240, 21);
     this.LmkChk1.Name = "LmkChk1";
     this.LmkChk1.Properties.Caption = "临免卡";
     this.LmkChk1.Size = new System.Drawing.Size(64, 19);
     this.LmkChk1.TabIndex = 119;
     this.LmkChk1.Tag = "@val=7,@grp=卡类允许";
     //
     // QkChk1
     //
     this.QkChk1.Location = new System.Drawing.Point(19, 21);
     this.QkChk1.Name = "QkChk1";
     this.QkChk1.Properties.Caption = "期卡";
     this.QkChk1.Size = new System.Drawing.Size(48, 19);
     this.QkChk1.TabIndex = 118;
     this.QkChk1.Tag = "@val=3,@grp=卡类允许";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.checkBox1);
     this.groupBox4.Controls.Add(this.checkBox2);
     this.groupBox4.Location = new System.Drawing.Point(299, 173);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(161, 94);
     this.groupBox4.TabIndex = 91;
     this.groupBox4.TabStop = false;
     this.groupBox4.Tag = "@db=停车场管理";
     this.groupBox4.Text = "入口满位处理";
     //
     // checkBox1
     //
     this.checkBox1.Location = new System.Drawing.Point(6, 31);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Properties.Caption = "允许车辆入场";
     this.checkBox1.Size = new System.Drawing.Size(100, 19);
     this.checkBox1.TabIndex = 111;
     this.checkBox1.Tag = "@fld=允许车辆入场";
     //
     // checkBox2
     //
     this.checkBox2.Location = new System.Drawing.Point(6, 56);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Properties.Caption = "允许出临时卡";
     this.checkBox2.Size = new System.Drawing.Size(100, 19);
     this.checkBox2.TabIndex = 110;
     this.checkBox2.Tag = "@fld=允许出临时卡";
     //
     // grpbAccept
     //
     this.grpbAccept.Controls.Add(this.checkBox16);
     this.grpbAccept.Controls.Add(this.GbkChk);
     this.grpbAccept.Controls.Add(this.CzkChk);
     this.grpbAccept.Controls.Add(this.LskChk);
     this.grpbAccept.Controls.Add(this.SdkChk);
     this.grpbAccept.Controls.Add(this.MfkChk);
     this.grpbAccept.Controls.Add(this.LmkChk);
     this.grpbAccept.Controls.Add(this.QkChk);
     this.grpbAccept.Location = new System.Drawing.Point(3, 86);
     this.grpbAccept.Name = "grpbAccept";
     this.grpbAccept.Size = new System.Drawing.Size(293, 84);
     this.grpbAccept.TabIndex = 90;
     this.grpbAccept.TabStop = false;
     this.grpbAccept.Tag = "@db=停车场管理";
     this.grpbAccept.Text = "放行控制(需要上位机确认)";
     //
     // checkBox16
     //
     this.checkBox16.Location = new System.Drawing.Point(223, 58);
     this.checkBox16.Name = "checkBox16";
     this.checkBox16.Properties.Caption = "一卡通";
     this.checkBox16.Size = new System.Drawing.Size(70, 19);
     this.checkBox16.TabIndex = 25;
     this.checkBox16.Tag = "@val=10,@grp=放行控制";
     //
     // GbkChk
     //
     this.GbkChk.Location = new System.Drawing.Point(75, 58);
     this.GbkChk.Name = "GbkChk";
     this.GbkChk.Properties.Caption = "贵宾卡";
     this.GbkChk.Size = new System.Drawing.Size(65, 19);
     this.GbkChk.TabIndex = 21;
     this.GbkChk.Tag = "@val=8,@grp=放行控制";
     //
     // CzkChk
     //
     this.CzkChk.Location = new System.Drawing.Point(146, 59);
     this.CzkChk.Name = "CzkChk";
     this.CzkChk.Properties.Caption = "储值卡";
     this.CzkChk.Size = new System.Drawing.Size(58, 19);
     this.CzkChk.TabIndex = 24;
     this.CzkChk.Tag = "@val=9,@grp=放行控制";
     //
     // LskChk
     //
     this.LskChk.Location = new System.Drawing.Point(146, 22);
     this.LskChk.Name = "LskChk";
     this.LskChk.Properties.Caption = "临时卡";
     this.LskChk.Size = new System.Drawing.Size(58, 19);
     this.LskChk.TabIndex = 18;
     this.LskChk.Tag = "@val=5,@grp=放行控制";
     //
     // SdkChk
     //
     this.SdkChk.Location = new System.Drawing.Point(75, 22);
     this.SdkChk.Name = "SdkChk";
     this.SdkChk.Properties.Caption = "时段卡";
     this.SdkChk.Size = new System.Drawing.Size(62, 19);
     this.SdkChk.TabIndex = 17;
     this.SdkChk.Tag = "@val=4,@grp=放行控制";
     //
     // MfkChk
     //
     this.MfkChk.Location = new System.Drawing.Point(17, 59);
     this.MfkChk.Name = "MfkChk";
     this.MfkChk.Properties.Caption = "免费卡";
     this.MfkChk.Size = new System.Drawing.Size(61, 19);
     this.MfkChk.TabIndex = 20;
     this.MfkChk.Tag = "@val=6,@grp=放行控制";
     //
     // LmkChk
     //
     this.LmkChk.Location = new System.Drawing.Point(223, 21);
     this.LmkChk.Name = "LmkChk";
     this.LmkChk.Properties.Caption = "临免卡";
     this.LmkChk.Size = new System.Drawing.Size(64, 19);
     this.LmkChk.TabIndex = 19;
     this.LmkChk.Tag = "@val=7,@grp=放行控制";
     //
     // QkChk
     //
     this.QkChk.Location = new System.Drawing.Point(17, 23);
     this.QkChk.Name = "QkChk";
     this.QkChk.Properties.Caption = "期卡";
     this.QkChk.Size = new System.Drawing.Size(48, 19);
     this.QkChk.TabIndex = 16;
     this.QkChk.Tag = "@val=3,@grp=放行控制";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.LsCardTpComb);
     this.groupBox1.Controls.Add(this.CarTypeComb);
     this.groupBox1.Controls.Add(this.LsCardTpLab);
     this.groupBox1.Controls.Add(this.CarTypeLab);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(296, 85);
     this.groupBox1.TabIndex = 89;
     this.groupBox1.TabStop = false;
     this.groupBox1.Tag = "@db=停车场管理";
     this.groupBox1.Text = "入口满位处理";
     //
     // LsCardTpComb
     //
     this.LsCardTpComb.Location = new System.Drawing.Point(102, 48);
     this.LsCardTpComb.Name = "LsCardTpComb";
     this.LsCardTpComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LsCardTpComb.Properties.NullText = "";
     this.LsCardTpComb.Size = new System.Drawing.Size(145, 21);
     this.LsCardTpComb.TabIndex = 15;
     this.LsCardTpComb.Tag = "@fld=临时卡方式";
     //
     // CarTypeComb
     //
     this.CarTypeComb.Location = new System.Drawing.Point(102, 21);
     this.CarTypeComb.Name = "CarTypeComb";
     this.CarTypeComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.CarTypeComb.Properties.NullText = "";
     this.CarTypeComb.Size = new System.Drawing.Size(145, 21);
     this.CarTypeComb.TabIndex = 14;
     this.CarTypeComb.Tag = "@fld=按键默认车型";
     //
     // LsCardTpLab
     //
     this.LsCardTpLab.AutoSize = true;
     this.LsCardTpLab.Location = new System.Drawing.Point(22, 51);
     this.LsCardTpLab.Name = "LsCardTpLab";
     this.LsCardTpLab.Size = new System.Drawing.Size(71, 14);
     this.LsCardTpLab.TabIndex = 119;
     this.LsCardTpLab.Text = "临时卡方式:";
     //
     // CarTypeLab
     //
     this.CarTypeLab.AutoSize = true;
     this.CarTypeLab.Location = new System.Drawing.Point(12, 24);
     this.CarTypeLab.Name = "CarTypeLab";
     this.CarTypeLab.Size = new System.Drawing.Size(83, 14);
     this.CarTypeLab.TabIndex = 118;
     this.CarTypeLab.Text = "按键默认车型:";
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.comboBox2);
     this.panelControl4.Controls.Add(this.MulInOutChk);
     this.panelControl4.Controls.Add(this.IsOutComChk);
     this.panelControl4.Controls.Add(this.SmaPrkLogComb);
     this.panelControl4.Controls.Add(this.DevAddrTxt);
     this.panelControl4.Controls.Add(this.ValDayAlmTxt);
     this.panelControl4.Controls.Add(this.comboBox1);
     this.panelControl4.Controls.Add(this.label4);
     this.panelControl4.Controls.Add(this.DevAddrLab);
     this.panelControl4.Controls.Add(this.SmaPrkLogLab);
     this.panelControl4.Controls.Add(this.CardBalAlmLab);
     this.panelControl4.Controls.Add(this.ValDayAlmLab);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl4.Location = new System.Drawing.Point(0, 0);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(643, 78);
     this.panelControl4.TabIndex = 87;
     this.panelControl4.Tag = "@db=停车场管理";
     //
     // comboBox2
     //
     this.comboBox2.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
     "天敏卡",
     "MINI卡"});
     this.comboBox2.Location = new System.Drawing.Point(239, 51);
     this.comboBox2.Name = "comboBox2";
     this.comboBox2.Size = new System.Drawing.Size(83, 22);
     this.comboBox2.TabIndex = 103;
     this.comboBox2.Tag = "@fld=视频卡";
     //
     // MulInOutChk
     //
     this.MulInOutChk.Location = new System.Drawing.Point(328, 53);
     this.MulInOutChk.Name = "MulInOutChk";
     this.MulInOutChk.Properties.Caption = "进出场逻辑控制(多进多出)";
     this.MulInOutChk.Size = new System.Drawing.Size(177, 19);
     this.MulInOutChk.TabIndex = 12;
     this.MulInOutChk.Tag = "@fld=进出场逻辑控制";
     //
     // IsOutComChk
     //
     this.IsOutComChk.Location = new System.Drawing.Point(505, 52);
     this.IsOutComChk.Name = "IsOutComChk";
     this.IsOutComChk.Properties.Caption = "是否允许脱机";
     this.IsOutComChk.Size = new System.Drawing.Size(100, 19);
     this.IsOutComChk.TabIndex = 13;
     this.IsOutComChk.Tag = "@fld=允许脱机";
     //
     // SmaPrkLogComb
     //
     this.SmaPrkLogComb.Location = new System.Drawing.Point(74, 51);
     this.SmaPrkLogComb.Name = "SmaPrkLogComb";
     this.SmaPrkLogComb.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SmaPrkLogComb.Properties.NullText = "";
     this.SmaPrkLogComb.Size = new System.Drawing.Size(109, 21);
     this.SmaPrkLogComb.TabIndex = 11;
     this.SmaPrkLogComb.Tag = "@fld=场内场逻辑";
     //
     // DevAddrTxt
     //
     this.DevAddrTxt.Location = new System.Drawing.Point(74, 18);
     this.DevAddrTxt.Name = "DevAddrTxt";
     this.DevAddrTxt.Size = new System.Drawing.Size(109, 21);
     this.DevAddrTxt.TabIndex = 7;
     this.DevAddrTxt.Tag = "@fld=名称";
     //
     // ValDayAlmTxt
     //
     this.ValDayAlmTxt.Location = new System.Drawing.Point(500, 18);
     this.ValDayAlmTxt.Name = "ValDayAlmTxt";
     this.ValDayAlmTxt.Size = new System.Drawing.Size(101, 21);
     this.ValDayAlmTxt.TabIndex = 9;
     this.ValDayAlmTxt.Tag = "@fld=有效期报警";
     //
     // comboBox1
     //
     this.comboBox1.Location = new System.Drawing.Point(288, 18);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(108, 21);
     this.comboBox1.TabIndex = 8;
     this.comboBox1.Tag = "@fld=卡余额报警";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(189, 54);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 14);
     this.label4.TabIndex = 102;
     this.label4.Text = "视频卡:";
     //
     // DevAddrLab
     //
     this.DevAddrLab.AutoSize = true;
     this.DevAddrLab.Location = new System.Drawing.Point(9, 21);
     this.DevAddrLab.Name = "DevAddrLab";
     this.DevAddrLab.Size = new System.Drawing.Size(59, 14);
     this.DevAddrLab.TabIndex = 98;
     this.DevAddrLab.Text = "设备名称:";
     //
     // SmaPrkLogLab
     //
     this.SmaPrkLogLab.AutoSize = true;
     this.SmaPrkLogLab.Location = new System.Drawing.Point(8, 58);
     this.SmaPrkLogLab.Name = "SmaPrkLogLab";
     this.SmaPrkLogLab.Size = new System.Drawing.Size(71, 14);
     this.SmaPrkLogLab.TabIndex = 101;
     this.SmaPrkLogLab.Text = "场内场逻辑:";
     //
     // CardBalAlmLab
     //
     this.CardBalAlmLab.AutoSize = true;
     this.CardBalAlmLab.Location = new System.Drawing.Point(189, 21);
     this.CardBalAlmLab.Name = "CardBalAlmLab";
     this.CardBalAlmLab.Size = new System.Drawing.Size(93, 14);
     this.CardBalAlmLab.TabIndex = 100;
     this.CardBalAlmLab.Text = "卡余额报警(元):";
     //
     // ValDayAlmLab
     //
     this.ValDayAlmLab.AutoSize = true;
     this.ValDayAlmLab.Location = new System.Drawing.Point(401, 21);
     this.ValDayAlmLab.Name = "ValDayAlmLab";
     this.ValDayAlmLab.Size = new System.Drawing.Size(93, 14);
     this.ValDayAlmLab.TabIndex = 99;
     this.ValDayAlmLab.Text = "有效期报警(天):";
     //
     // panBaseInfo
     //
     this.panBaseInfo.Controls.Add(this.panelControl16);
     this.panBaseInfo.Dock = System.Windows.Forms.DockStyle.Top;
     this.panBaseInfo.Location = new System.Drawing.Point(0, 0);
     this.panBaseInfo.Name = "panBaseInfo";
     this.panBaseInfo.Size = new System.Drawing.Size(647, 65);
     this.panBaseInfo.TabIndex = 9;
     this.panBaseInfo.Tag = "@db=停车场管理";
     this.panBaseInfo.Text = "基本信息";
     //
     // panelControl16
     //
     this.panelControl16.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl16.Controls.Add(this.RetainStaTxt);
     this.panelControl16.Controls.Add(this.TypeCombo);
     this.panelControl16.Controls.Add(this.AllNoTxt);
     this.panelControl16.Controls.Add(this.RetainStaLab);
     this.panelControl16.Controls.Add(this.AllNoLab);
     this.panelControl16.Controls.Add(this.StallNoTxt);
     this.panelControl16.Controls.Add(this.ComIpTxt);
     this.panelControl16.Controls.Add(this.TxtStalname);
     this.panelControl16.Controls.Add(this.ComIpLab);
     this.panelControl16.Controls.Add(this.TypeLab);
     this.panelControl16.Controls.Add(this.StallNameLab);
     this.panelControl16.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl16.Location = new System.Drawing.Point(2, 21);
     this.panelControl16.Name = "panelControl16";
     this.panelControl16.Size = new System.Drawing.Size(643, 42);
     this.panelControl16.TabIndex = 1;
     this.panelControl16.Tag = "@db=停车场管理";
     //
     // RetainStaTxt
     //
     this.RetainStaTxt.Location = new System.Drawing.Point(336, 15);
     this.RetainStaTxt.Name = "RetainStaTxt";
     this.RetainStaTxt.Size = new System.Drawing.Size(98, 21);
     this.RetainStaTxt.TabIndex = 5;
     this.RetainStaTxt.Tag = "@fld=保留车位";
     //
     // TypeCombo
     //
     this.TypeCombo.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224)))));
     this.TypeCombo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.TypeCombo.Enabled = false;
     this.TypeCombo.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.TypeCombo.FormattingEnabled = true;
     this.TypeCombo.Items.AddRange(new object[] {
     "大场",
     "场内场",
     "门岗"});
     this.TypeCombo.Location = new System.Drawing.Point(179, 14);
     this.TypeCombo.Name = "TypeCombo";
     this.TypeCombo.Size = new System.Drawing.Size(88, 22);
     this.TypeCombo.TabIndex = 104;
     this.TypeCombo.Tag = "@fld=类型";
     //
     // AllNoTxt
     //
     this.AllNoTxt.Location = new System.Drawing.Point(488, 14);
     this.AllNoTxt.Name = "AllNoTxt";
     this.AllNoTxt.Size = new System.Drawing.Size(103, 21);
     this.AllNoTxt.TabIndex = 4;
     this.AllNoTxt.Tag = "@fld=总车位数";
     //
     // RetainStaLab
     //
     this.RetainStaLab.AutoSize = true;
     this.RetainStaLab.Location = new System.Drawing.Point(273, 18);
     this.RetainStaLab.Name = "RetainStaLab";
     this.RetainStaLab.Size = new System.Drawing.Size(59, 14);
     this.RetainStaLab.TabIndex = 86;
     this.RetainStaLab.Text = "保留车位:";
     //
     // AllNoLab
     //
     this.AllNoLab.AutoSize = true;
     this.AllNoLab.Location = new System.Drawing.Point(440, 17);
     this.AllNoLab.Name = "AllNoLab";
     this.AllNoLab.Size = new System.Drawing.Size(47, 14);
     this.AllNoLab.TabIndex = 85;
     this.AllNoLab.Text = "总车位:";
     //
     // StallNoTxt
     //
     this.StallNoTxt.Enabled = false;
     this.StallNoTxt.Location = new System.Drawing.Point(630, 50);
     this.StallNoTxt.Name = "StallNoTxt";
     this.StallNoTxt.Size = new System.Drawing.Size(10, 21);
     this.StallNoTxt.TabIndex = 3;
     this.StallNoTxt.Tag = "@fld=编号";
     //
     // ComIpTxt
     //
     this.ComIpTxt.Location = new System.Drawing.Point(336, 15);
     this.ComIpTxt.Name = "ComIpTxt";
     this.ComIpTxt.Size = new System.Drawing.Size(93, 21);
     this.ComIpTxt.TabIndex = 6;
     this.ComIpTxt.Tag = "@fld=电脑IP";
     this.ComIpTxt.TextChanged += new System.EventHandler(this.ComIpTxt_TextChanged);
     //
     // TxtStalname
     //
     this.TxtStalname.Location = new System.Drawing.Point(45, 15);
     this.TxtStalname.Name = "TxtStalname";
     this.TxtStalname.Size = new System.Drawing.Size(94, 21);
     this.TxtStalname.TabIndex = 1;
     this.TxtStalname.Tag = "@fld=名称";
     //
     // ComIpLab
     //
     this.ComIpLab.AutoSize = true;
     this.ComIpLab.Location = new System.Drawing.Point(274, 18);
     this.ComIpLab.Name = "ComIpLab";
     this.ComIpLab.Size = new System.Drawing.Size(46, 14);
     this.ComIpLab.TabIndex = 72;
     this.ComIpLab.Text = "电脑IP:";
     //
     // TypeLab
     //
     this.TypeLab.AutoSize = true;
     this.TypeLab.Location = new System.Drawing.Point(145, 18);
     this.TypeLab.Name = "TypeLab";
     this.TypeLab.Size = new System.Drawing.Size(35, 14);
     this.TypeLab.TabIndex = 71;
     this.TypeLab.Text = "类别:";
     //
     // StallNameLab
     //
     this.StallNameLab.AutoSize = true;
     this.StallNameLab.Location = new System.Drawing.Point(9, 18);
     this.StallNameLab.Name = "StallNameLab";
     this.StallNameLab.Size = new System.Drawing.Size(35, 14);
     this.StallNameLab.TabIndex = 70;
     this.StallNameLab.Text = "名称:";
     //
     // groupControl1
     //
     this.groupControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.groupControl1.Controls.Add(this.radfee2);
     this.groupControl1.Controls.Add(this.radfee6);
     this.groupControl1.Controls.Add(this.radfee1);
     this.groupControl1.Controls.Add(this.radfee5);
     this.groupControl1.Controls.Add(this.radfee3);
     this.groupControl1.Controls.Add(this.radfee4);
     this.groupControl1.Location = new System.Drawing.Point(1, 1);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(557, 37);
     this.groupControl1.TabIndex = 6;
     this.groupControl1.Text = "groupControl1";
     //
     // radfee2
     //
     this.radfee2.AutoSize = true;
     this.radfee2.Location = new System.Drawing.Point(76, 6);
     this.radfee2.Name = "radfee2";
     this.radfee2.Size = new System.Drawing.Size(59, 16);
     this.radfee2.TabIndex = 10;
     this.radfee2.Tag = "@pm=方式代码,@val=2";
     this.radfee2.Text = "收费二";
     this.radfee2.UseVisualStyleBackColor = true;
     //
     // radfee6
     //
     this.radfee6.AutoSize = true;
     this.radfee6.Location = new System.Drawing.Point(381, 5);
     this.radfee6.Name = "radfee6";
     this.radfee6.Size = new System.Drawing.Size(59, 16);
     this.radfee6.TabIndex = 14;
     this.radfee6.Tag = "@pm=方式代码,@val=6";
     this.radfee6.Text = "收费六";
     this.radfee6.UseVisualStyleBackColor = true;
     //
     // radfee1
     //
     this.radfee1.AutoSize = true;
     this.radfee1.Checked = true;
     this.radfee1.Location = new System.Drawing.Point(3, 5);
     this.radfee1.Name = "radfee1";
     this.radfee1.Size = new System.Drawing.Size(59, 16);
     this.radfee1.TabIndex = 9;
     this.radfee1.TabStop = true;
     this.radfee1.Tag = "@pm=方式代码,@val=1";
     this.radfee1.Text = "收费一";
     this.radfee1.UseVisualStyleBackColor = true;
     //
     // radfee5
     //
     this.radfee5.AutoSize = true;
     this.radfee5.Location = new System.Drawing.Point(316, 5);
     this.radfee5.Name = "radfee5";
     this.radfee5.Size = new System.Drawing.Size(59, 16);
     this.radfee5.TabIndex = 13;
     this.radfee5.Tag = "@pm=方式代码,@val=5";
     this.radfee5.Text = "收费五";
     this.radfee5.UseVisualStyleBackColor = true;
     //
     // radfee3
     //
     this.radfee3.AutoSize = true;
     this.radfee3.Location = new System.Drawing.Point(161, 6);
     this.radfee3.Name = "radfee3";
     this.radfee3.Size = new System.Drawing.Size(59, 16);
     this.radfee3.TabIndex = 11;
     this.radfee3.Tag = "@pm=方式代码,@val=3";
     this.radfee3.Text = "收费三";
     this.radfee3.UseVisualStyleBackColor = true;
     //
     // radfee4
     //
     this.radfee4.AutoSize = true;
     this.radfee4.Location = new System.Drawing.Point(236, 6);
     this.radfee4.Name = "radfee4";
     this.radfee4.Size = new System.Drawing.Size(59, 16);
     this.radfee4.TabIndex = 12;
     this.radfee4.Tag = "@pm=方式代码,@val=4";
     this.radfee4.Text = "收费四";
     this.radfee4.UseVisualStyleBackColor = true;
     //
     // FrmParkStallSet
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(852, 727);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.panelControl1);
     this.Name = "FrmParkStallSet";
     this.Text = "停车场设置";
     this.Load += new System.EventHandler(this.ParkStallSetFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trvParkStall)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grpFee)).EndInit();
     this.grpFee.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     this.tabFeeStd.ResumeLayout(false);
     this.tabpgFee1.ResumeLayout(false);
     this.tabpgFee1.PerformLayout();
     this.tabpgFee2.ResumeLayout(false);
     this.tabpgFee2.PerformLayout();
     this.tabpgFee3.ResumeLayout(false);
     this.tabpgFee3.PerformLayout();
     this.tabpgFee4.ResumeLayout(false);
     this.tabpgFee4.PerformLayout();
     this.tabpgFee5.ResumeLayout(false);
     this.tabpgFee5.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.groupBox7.ResumeLayout(false);
     this.groupBox7.PerformLayout();
     this.tabpgFee6.ResumeLayout(false);
     this.tabpgFee6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grpParam)).EndInit();
     this.grpParam.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
     this.panelControl5.ResumeLayout(false);
     this.groupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     this.grpbChannel.ResumeLayout(false);
     this.grpbChannel.PerformLayout();
     this.plCarType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit15.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit16.Properties)).EndInit();
     this.plCardType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.grpbCardType.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox17.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk1.Properties)).EndInit();
     this.groupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkBox2.Properties)).EndInit();
     this.grpbAccept.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkBox16.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GbkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CzkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LskChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SdkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MfkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LmkChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QkChk.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.LsCardTpComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CarTypeComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     this.panelControl4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MulInOutChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.IsOutComChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SmaPrkLogComb.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DevAddrTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ValDayAlmTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comboBox1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panBaseInfo)).EndInit();
     this.panBaseInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl16)).EndInit();
     this.panelControl16.ResumeLayout(false);
     this.panelControl16.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.RetainStaTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.AllNoTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.StallNoTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ComIpTxt.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TxtStalname.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MenuManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.MenuControlComboBoxEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.MenuNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.MenuNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.GlyphMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.OnClickMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.KeyTipTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.PNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForMenuNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForMenuName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForGlyph = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOnClick = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForKeyTip = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.ItemForMenuControl = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForPNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolMenuName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(351, 319, 551, 543);
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(997, 496);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.MenuControlComboBoxEdit);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.MenuNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.MenuNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.GlyphMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.OnClickMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.KeyTipTextEdit);
     this.dataLayoutControl1.Controls.Add(this.PNoTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(366, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(446, 375, 456, 528);
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(625, 484);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(201, 446);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 14;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(97, 446);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 13;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(305, 446);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 14;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // MenuControlComboBoxEdit
     //
     this.MenuControlComboBoxEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuControl", true));
     this.MenuControlComboBoxEdit.Location = new System.Drawing.Point(87, 84);
     this.MenuControlComboBoxEdit.Name = "MenuControlComboBoxEdit";
     this.MenuControlComboBoxEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.MenuControlComboBoxEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPage", "RibbonPage", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("RibbonPageGroup", "RibbonPageGroup", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarSubItem", "BarSubItem", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("BarItem", "BarItem", -1)});
     this.MenuControlComboBoxEdit.Properties.NullValuePrompt = null;
     this.MenuControlComboBoxEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuControlComboBoxEdit.StyleController = this.dataLayoutControl1;
     this.MenuControlComboBoxEdit.TabIndex = 9;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.MenuEntity);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(513, 446);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 13;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(409, 446);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 12;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // MenuNoTextEdit
     //
     this.MenuNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuNo", true));
     this.MenuNoTextEdit.Location = new System.Drawing.Point(87, 12);
     this.MenuNoTextEdit.Name = "MenuNoTextEdit";
     this.MenuNoTextEdit.Properties.NullValuePrompt = null;
     this.MenuNoTextEdit.Properties.ReadOnly = true;
     this.MenuNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNoTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNoTextEdit.TabIndex = 4;
     //
     // MenuNameTextEdit
     //
     this.MenuNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "MenuName", true));
     this.MenuNameTextEdit.Location = new System.Drawing.Point(87, 60);
     this.MenuNameTextEdit.Name = "MenuNameTextEdit";
     this.MenuNameTextEdit.Properties.NullValuePrompt = null;
     this.MenuNameTextEdit.Size = new System.Drawing.Size(526, 20);
     this.MenuNameTextEdit.StyleController = this.dataLayoutControl1;
     this.MenuNameTextEdit.TabIndex = 5;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(87, 108);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(526, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 8;
     //
     // GlyphMemoEdit
     //
     this.GlyphMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Glyph", true));
     this.GlyphMemoEdit.Location = new System.Drawing.Point(87, 132);
     this.GlyphMemoEdit.Name = "GlyphMemoEdit";
     this.GlyphMemoEdit.Properties.NullValuePrompt = null;
     this.GlyphMemoEdit.Size = new System.Drawing.Size(526, 111);
     this.GlyphMemoEdit.StyleController = this.dataLayoutControl1;
     this.GlyphMemoEdit.TabIndex = 9;
     //
     // OnClickMemoEdit
     //
     this.OnClickMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "OnClick", true));
     this.OnClickMemoEdit.Location = new System.Drawing.Point(87, 247);
     this.OnClickMemoEdit.Name = "OnClickMemoEdit";
     this.OnClickMemoEdit.Properties.NullValuePrompt = null;
     this.OnClickMemoEdit.Size = new System.Drawing.Size(526, 171);
     this.OnClickMemoEdit.StyleController = this.dataLayoutControl1;
     this.OnClickMemoEdit.TabIndex = 10;
     //
     // KeyTipTextEdit
     //
     this.KeyTipTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "KeyTip", true));
     this.KeyTipTextEdit.Location = new System.Drawing.Point(87, 422);
     this.KeyTipTextEdit.Name = "KeyTipTextEdit";
     this.KeyTipTextEdit.Properties.NullValuePrompt = null;
     this.KeyTipTextEdit.Size = new System.Drawing.Size(526, 20);
     this.KeyTipTextEdit.StyleController = this.dataLayoutControl1;
     this.KeyTipTextEdit.TabIndex = 11;
     //
     // PNoTextEdit
     //
     this.PNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "PNo", true));
     this.PNoTextEdit.Location = new System.Drawing.Point(87, 36);
     this.PNoTextEdit.Name = "PNoTextEdit";
     this.PNoTextEdit.Properties.NullValuePrompt = null;
     this.PNoTextEdit.Properties.ReadOnly = true;
     this.PNoTextEdit.Size = new System.Drawing.Size(526, 20);
     this.PNoTextEdit.StyleController = this.dataLayoutControl1;
     this.PNoTextEdit.TabIndex = 14;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(625, 484);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForMenuNo,
     this.ItemForMenuName,
     this.ItemForOrder,
     this.ItemForGlyph,
     this.ItemForOnClick,
     this.ItemForKeyTip,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.ItemForMenuControl,
     this.ItemForPNo,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(617, 476);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForMenuNo
     //
     this.ItemForMenuNo.Control = this.MenuNoTextEdit;
     this.ItemForMenuNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForMenuNo.Name = "ItemForMenuNo";
     this.ItemForMenuNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuNo.Text = "菜单编号";
     this.ItemForMenuNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForMenuName
     //
     this.ItemForMenuName.Control = this.MenuNameTextEdit;
     this.ItemForMenuName.Location = new System.Drawing.Point(0, 48);
     this.ItemForMenuName.Name = "ItemForMenuName";
     this.ItemForMenuName.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuName.Text = "菜单名称";
     this.ItemForMenuName.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.Location = new System.Drawing.Point(0, 96);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(605, 24);
     this.ItemForOrder.Text = "菜单序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForGlyph
     //
     this.ItemForGlyph.Control = this.GlyphMemoEdit;
     this.ItemForGlyph.Location = new System.Drawing.Point(0, 120);
     this.ItemForGlyph.Name = "ItemForGlyph";
     this.ItemForGlyph.Size = new System.Drawing.Size(605, 115);
     this.ItemForGlyph.StartNewLine = true;
     this.ItemForGlyph.Text = "显示图像";
     this.ItemForGlyph.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForOnClick
     //
     this.ItemForOnClick.Control = this.OnClickMemoEdit;
     this.ItemForOnClick.Location = new System.Drawing.Point(0, 235);
     this.ItemForOnClick.Name = "ItemForOnClick";
     this.ItemForOnClick.Size = new System.Drawing.Size(605, 175);
     this.ItemForOnClick.StartNewLine = true;
     this.ItemForOnClick.Text = "点击事件";
     this.ItemForOnClick.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForKeyTip
     //
     this.ItemForKeyTip.Control = this.KeyTipTextEdit;
     this.ItemForKeyTip.Location = new System.Drawing.Point(0, 410);
     this.ItemForKeyTip.Name = "ItemForKeyTip";
     this.ItemForKeyTip.Size = new System.Drawing.Size(605, 24);
     this.ItemForKeyTip.Text = "提示";
     this.ItemForKeyTip.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(397, 434);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(501, 434);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 434);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(85, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // ItemForMenuControl
     //
     this.ItemForMenuControl.Control = this.MenuControlComboBoxEdit;
     this.ItemForMenuControl.Location = new System.Drawing.Point(0, 72);
     this.ItemForMenuControl.Name = "ItemForMenuControl";
     this.ItemForMenuControl.Size = new System.Drawing.Size(605, 24);
     this.ItemForMenuControl.Text = "菜单编程控件";
     this.ItemForMenuControl.TextSize = new System.Drawing.Size(72, 13);
     //
     // ItemForPNo
     //
     this.ItemForPNo.Control = this.PNoTextEdit;
     this.ItemForPNo.Location = new System.Drawing.Point(0, 24);
     this.ItemForPNo.Name = "ItemForPNo";
     this.ItemForPNo.Size = new System.Drawing.Size(605, 24);
     this.ItemForPNo.Text = "上级编号";
     this.ItemForPNo.TextSize = new System.Drawing.Size(72, 13);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnDel;
     this.layoutControlItem5.Location = new System.Drawing.Point(293, 434);
     this.layoutControlItem5.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnAdd;
     this.layoutControlItem6.Location = new System.Drawing.Point(85, 434);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(189, 434);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolMenuName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "MenuNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsBehavior.ReadOnly = true;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "PNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(356, 484);
     this.treeList1.TabIndex = 4;
     //
     // tcolMenuName
     //
     this.tcolMenuName.Caption = "菜单名称";
     this.tcolMenuName.FieldName = "MenuName";
     this.tcolMenuName.Name = "tcolMenuName";
     this.tcolMenuName.Visible = true;
     this.tcolMenuName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(997, 496);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(360, 488);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(360, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(629, 488);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // MenuManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(997, 496);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "MenuManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "菜单权限设置";
     this.Load += new System.EventHandler(this.MenuManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.MenuControlComboBoxEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MenuNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.GlyphMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OnClickMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.KeyTipTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForGlyph)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOnClick)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForKeyTip)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForMenuControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForPNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormNewQaQc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.StyleFormatCondition styleFormatCondition1 = new DevExpress.XtraGrid.StyleFormatCondition();
     DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition styleFormatCondition2 = new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition();
     this.bgvBatchCalc1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gcBachCalc = new DevExpress.XtraGrid.GridControl();
     this.bgvBatchCalc3 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.bgvBatchCalc4 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.bgvBatchCalc2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridView();
     this.gridBand13 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_par_prev_batch = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_Previous_par = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.imageStatus = new System.Windows.Forms.ImageList(this.components);
     this.gbSample = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Cod_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Cod_des_sample = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repDes_Sample = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.gv2col_Fum = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idunit_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idtemplate_method = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_mri = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idrecep_sample_detail_elem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Weight1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Weight2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand10 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Volumen1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Volumen2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Reading1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Reading2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gbDilution = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Flag_dila1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repCheckDilution = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Dilua1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Flag_dilb1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Dilub1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Rank1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Rank2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Factor1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Factor2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Law1 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Law2 = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand12 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Str_result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Result_analysis = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBand9 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_text_obs = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_observation = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowPopup = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.gv2col_Qaqc_mr = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_blk = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_par = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_parity = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_approve = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_approve = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_review = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_review = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.gv2col_Qaqc_status_result = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_StatusResult = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_error = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_ShowObs = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gridBand14 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gv2col_Qaqc_has_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.repQaqc_HasRetest = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.gv2col_Qaqc_tmp_retest_idmethod = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_tmp_retest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Idretest = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_approve_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gv2col_Qaqc_review_text = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.imgChecks = new System.Windows.Forms.ImageList(this.components);
     this.repProcedence2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.treeCol_Urgent_sample = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeTrayWaiting = new DevExpress.XtraTreeList.TreeList();
     this.treeCol_Idtemplate_method = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Idrecep_sample_detail_elem = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Abbreviation = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Cod_repetition = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repRepetition = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeCol_Id = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Parentid = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Num_tray = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeCol_Date_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
     this.treeCol_Hour_result = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repHour = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.imgPriority = new System.Windows.Forms.ImageList(this.components);
     this.expandablePanel1 = new DevComponents.DotNetBar.ExpandablePanel();
     this.tabTreeQaqc = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationWait = new DevExpress.XtraEditors.LookUpEdit();
     this.label23 = new System.Windows.Forms.Label();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.treeTrayFinished = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn8 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn9 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.paListAuthorization = new DevExpress.XtraEditors.GroupControl();
     this.cbAuthorizationApproved = new DevExpress.XtraEditors.LookUpEdit();
     this.label25 = new System.Windows.Forms.Label();
     this.paHistoryFilter = new DevExpress.XtraEditors.GroupControl();
     this.txYear = new DevExpress.XtraEditors.TextEdit();
     this.txSample = new DevExpress.XtraEditors.SpinEdit();
     this.cbTypeSample = new DevExpress.XtraEditors.LookUpEdit();
     this.cbCompany = new LimsProject.MyLookUpEdit();
     this.btSearchTray = new DevExpress.XtraEditors.SimpleButton();
     this.label22 = new System.Windows.Forms.Label();
     this.ckSample = new DevExpress.XtraEditors.CheckEdit();
     this.ckCompany = new DevExpress.XtraEditors.CheckEdit();
     this.panel9 = new System.Windows.Forms.Panel();
     this.deFrom = new DevExpress.XtraEditors.DateEdit();
     this.deUntil = new DevExpress.XtraEditors.DateEdit();
     this.label21 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.paButtons = new DevExpress.XtraEditors.PanelControl();
     this.paNewTray = new System.Windows.Forms.Panel();
     this.btRefresh = new DevExpress.XtraEditors.SimpleButton();
     this.splitter1 = new System.Windows.Forms.Splitter();
     this.panel5 = new System.Windows.Forms.Panel();
     this.gbApprove = new System.Windows.Forms.GroupBox();
     this.laDate_approved = new System.Windows.Forms.Label();
     this.laUser_approved = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.paAuthorization = new System.Windows.Forms.Panel();
     this.ucSign1 = new LimsProject.UcSign();
     this.gbReview = new System.Windows.Forms.GroupBox();
     this.laDate_revised = new System.Windows.Forms.Label();
     this.laUser_revised = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tbStd = new DevExpress.XtraEditors.SpinEdit();
     this.tbAbs = new DevExpress.XtraEditors.SpinEdit();
     this.btRegAbsStd = new DevExpress.XtraEditors.SimpleButton();
     this.label4 = new System.Windows.Forms.Label();
     this.panel6 = new System.Windows.Forms.Panel();
     this.tbTitle = new DevExpress.XtraEditors.MemoEdit();
     this.label16 = new System.Windows.Forms.Label();
     this.tbCodMethod = new DevExpress.XtraEditors.ButtonEdit();
     this.tbAbbreviation = new DevExpress.XtraEditors.TextEdit();
     this.label12 = new System.Windows.Forms.Label();
     this.panel4 = new System.Windows.Forms.Panel();
     this.ucSignCloseTray = new LimsProject.UcSign();
     this.laTitleModule = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tbUnitMeasure = new DevExpress.XtraEditors.TextEdit();
     this.tbLawMri = new DevExpress.XtraEditors.TextEdit();
     this.tbSdMr = new DevExpress.XtraEditors.TextEdit();
     this.tbSdBlk = new DevExpress.XtraEditors.TextEdit();
     this.tbMri = new DevExpress.XtraEditors.TextEdit();
     this.label18 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.tbErrorAllowed = new DevExpress.XtraEditors.TextEdit();
     this.label20 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.deDate_allowed_error = new DevExpress.XtraEditors.DateEdit();
     this.label14 = new System.Windows.Forms.Label();
     this.toolTipController1 = new DevExpress.Utils.ToolTipController(this.components);
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc2 = new DevExpress.XtraEditors.PanelControl();
     this.paQaqc1 = new DevExpress.XtraEditors.PanelControl();
     this.panel7 = new System.Windows.Forms.Panel();
     this.img32x32 = new System.Windows.Forms.ImageList(this.components);
     this.paTitleSearch.SuspendLayout();
     this.paTopBasicButtons.SuspendLayout();
     this.paTopSearch.SuspendLayout();
     this.paBottomSearch.SuspendLayout();
     this.panel1.SuspendLayout();
     this.paSearchGen.SuspendLayout();
     this.panel2.SuspendLayout();
     this.paInferior.SuspendLayout();
     this.paTitulo.SuspendLayout();
     this.paCentral.SuspendLayout();
     this.thePanelTab1.SuspendLayout();
     this.tpDatos.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).BeginInit();
     this.expandablePanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).BeginInit();
     this.tabTreeQaqc.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).BeginInit();
     this.xtraTabPage5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).BeginInit();
     this.paListAuthorization.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).BeginInit();
     this.paHistoryFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).BeginInit();
     this.panel9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).BeginInit();
     this.paButtons.SuspendLayout();
     this.panel5.SuspendLayout();
     this.gbApprove.SuspendLayout();
     this.paAuthorization.SuspendLayout();
     this.gbReview.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).BeginInit();
     this.panel6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).BeginInit();
     this.paQaqc2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).BeginInit();
     this.paQaqc1.SuspendLayout();
     this.panel7.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.Images.SetKeyName(0, "save.png");
     this.imageList1.Images.SetKeyName(1, "nuevo.png");
     this.imageList1.Images.SetKeyName(2, "eliminar.png");
     this.imageList1.Images.SetKeyName(3, "buscar.png");
     this.imageList1.Images.SetKeyName(4, "salir.png");
     this.imageList1.Images.SetKeyName(5, "cancelar.png");
     this.imageList1.Images.SetKeyName(6, "ok.png");
     this.imageList1.Images.SetKeyName(7, "deshacer.png");
     this.imageList1.Images.SetKeyName(8, "editar.png");
     //
     // paTitleSearch
     //
     this.paTitleSearch.Size = new System.Drawing.Size(526, 37);
     //
     // label1
     //
     this.label1.Size = new System.Drawing.Size(443, 37);
     this.label1.Text = "Módulo de QaQc - Búsqueda";
     //
     // paTopBasicButtons
     //
     this.paTopBasicButtons.Size = new System.Drawing.Size(282, 35);
     //
     // btSalir2
     //
     this.btSalir2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btSalir2.FlatAppearance.BorderSize = 0;
     this.btSalir2.Location = new System.Drawing.Point(10, 5);
     //
     // btGuardar
     //
     this.btGuardar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btGuardar.FlatAppearance.BorderSize = 0;
     this.btGuardar.Location = new System.Drawing.Point(5, 5);
     //
     // btNuevo2
     //
     this.btNuevo2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btNuevo2.FlatAppearance.BorderSize = 0;
     this.btNuevo2.Location = new System.Drawing.Point(84, 5);
     //
     // btEliminar2
     //
     this.btEliminar2.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEliminar2.FlatAppearance.BorderSize = 0;
     this.btEliminar2.Location = new System.Drawing.Point(163, 5);
     //
     // paTopSearch
     //
     this.paTopSearch.Size = new System.Drawing.Size(526, 57);
     //
     // paBottomSearch
     //
     this.paBottomSearch.Location = new System.Drawing.Point(3, 194);
     this.paBottomSearch.Size = new System.Drawing.Size(526, 43);
     //
     // btBuscar
     //
     this.btBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btBuscar.FlatAppearance.BorderSize = 0;
     //
     // btEditar
     //
     this.btEditar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btEditar.FlatAppearance.BorderSize = 0;
     //
     // btCancel
     //
     this.btCancel.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btCancel.FlatAppearance.BorderSize = 0;
     //
     // btOk
     //
     this.btOk.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btOk.FlatAppearance.BorderSize = 0;
     //
     // panel1
     //
     this.panel1.Location = new System.Drawing.Point(1144, 0);
     this.panel1.Size = new System.Drawing.Size(72, 35);
     //
     // btFiltroBuscar
     //
     this.btFiltroBuscar.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.btFiltroBuscar.FlatAppearance.BorderSize = 0;
     //
     // paMiddleFind
     //
     this.paMiddleFind.Size = new System.Drawing.Size(526, 97);
     //
     // panel2
     //
     this.panel2.Location = new System.Drawing.Point(1132, 0);
     //
     // paInferior
     //
     this.paInferior.Location = new System.Drawing.Point(3, 544);
     this.paInferior.Size = new System.Drawing.Size(1216, 35);
     this.paInferior.Visible = false;
     //
     // paTitulo
     //
     this.paTitulo.Size = new System.Drawing.Size(1216, 36);
     //
     // paCentral
     //
     this.paCentral.Controls.Add(this.gcBachCalc);
     this.paCentral.Controls.Add(this.panelControl1);
     this.paCentral.Controls.Add(this.panel5);
     this.paCentral.Controls.Add(this.splitter1);
     this.paCentral.Controls.Add(this.expandablePanel1);
     this.paCentral.Location = new System.Drawing.Point(3, 51);
     this.paCentral.Size = new System.Drawing.Size(1216, 493);
     //
     // paSuperior
     //
     this.paSuperior.Size = new System.Drawing.Size(1216, 12);
     this.paSuperior.Visible = false;
     //
     // laTitulo
     //
     this.laTitulo.Size = new System.Drawing.Size(1132, 36);
     this.laTitulo.Text = "QaQc";
     //
     // thePanelTab1
     //
     this.thePanelTab1.Size = new System.Drawing.Size(1230, 611);
     //
     // tpDatos
     //
     this.tpDatos.Size = new System.Drawing.Size(1222, 582);
     //
     // paSupBotones
     //
     this.paSupBotones.Size = new System.Drawing.Size(1230, 32);
     //
     // bgvBatchCalc1
     //
     this.bgvBatchCalc1.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand1});
     this.bgvBatchCalc1.GridControl = this.gcBachCalc;
     this.bgvBatchCalc1.Name = "bgvBatchCalc1";
     //
     // gridBand1
     //
     this.gridBand1.Caption = "gridBand1";
     this.gridBand1.Name = "gridBand1";
     //
     // gcBachCalc
     //
     this.gcBachCalc.AllowDrop = true;
     this.gcBachCalc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gcBachCalc.EmbeddedNavigator.Name = "";
     gridLevelNode1.LevelTemplate = this.bgvBatchCalc1;
     gridLevelNode1.RelationName = "Level1";
     gridLevelNode2.LevelTemplate = this.bgvBatchCalc3;
     gridLevelNode2.RelationName = "Level2";
     gridLevelNode3.LevelTemplate = this.bgvBatchCalc4;
     gridLevelNode3.RelationName = "Level3";
     this.gcBachCalc.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode2,
     gridLevelNode3});
     this.gcBachCalc.Location = new System.Drawing.Point(231, 103);
     this.gcBachCalc.MainView = this.bgvBatchCalc2;
     this.gcBachCalc.Name = "gcBachCalc";
     this.gcBachCalc.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repQaqc_parity,
     this.repQaqc_ShowObs,
     this.repQaqc_review,
     this.repQaqc_StatusResult,
     this.repQaqc_ShowPopup,
     this.repQaqc_Previous_par,
     this.repQaqc_approve,
     this.repQaqc_HasRetest,
     this.repCheckDilution,
     this.repProcedence2,
     this.repDes_Sample});
     this.gcBachCalc.Size = new System.Drawing.Size(985, 341);
     this.gcBachCalc.TabIndex = 7;
     this.gcBachCalc.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.bgvBatchCalc3,
     this.bgvBatchCalc4,
     this.bgvBatchCalc2,
     this.bgvBatchCalc1});
     this.gcBachCalc.DragDrop += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragDrop);
     this.gcBachCalc.DragOver += new System.Windows.Forms.DragEventHandler(this.gcBachCalc_DragOver);
     this.gcBachCalc.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseDown);
     this.gcBachCalc.MouseMove += new System.Windows.Forms.MouseEventHandler(this.gcBachCalc_MouseMove);
     //
     // bgvBatchCalc3
     //
     this.bgvBatchCalc3.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand2});
     this.bgvBatchCalc3.GridControl = this.gcBachCalc;
     this.bgvBatchCalc3.Name = "bgvBatchCalc3";
     //
     // gridBand2
     //
     this.gridBand2.Caption = "gridBand2";
     this.gridBand2.Name = "gridBand2";
     //
     // bgvBatchCalc4
     //
     this.bgvBatchCalc4.GridControl = this.gcBachCalc;
     this.bgvBatchCalc4.Name = "bgvBatchCalc4";
     //
     // bgvBatchCalc2
     //
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.BandPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.BandPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.BandPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.BandPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.BandPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.BandPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(190)))), ((int)(((byte)(243)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(247)))), ((int)(((byte)(251)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Empty.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte)(242)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.EvenRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FilterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(59)))), ((int)(((byte)(97)))), ((int)(((byte)(156)))));
     this.bgvBatchCalc2.Appearance.FixedLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FocusedCell.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FocusedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.FooterPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupButton.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupFooter.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(62)))), ((int)(((byte)(109)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(193)))), ((int)(((byte)(216)))), ((int)(((byte)(247)))));
     this.bgvBatchCalc2.Appearance.GroupRow.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.bgvBatchCalc2.Appearance.GroupRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseFont = true;
     this.bgvBatchCalc2.Appearance.GroupRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(132)))), ((int)(((byte)(171)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(236)))), ((int)(((byte)(254)))));
     this.bgvBatchCalc2.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.HeaderPanelBackground.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(106)))), ((int)(((byte)(153)))), ((int)(((byte)(228)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(208)))), ((int)(((byte)(224)))), ((int)(((byte)(251)))));
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.HorzLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.OddRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(252)))), ((int)(((byte)(255)))));
     this.bgvBatchCalc2.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(88)))), ((int)(((byte)(129)))), ((int)(((byte)(185)))));
     this.bgvBatchCalc2.Appearance.Preview.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Preview.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.bgvBatchCalc2.Appearance.Row.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.Row.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.RowSeparator.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(240)))));
     this.bgvBatchCalc2.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseBackColor = true;
     this.bgvBatchCalc2.Appearance.SelectedRow.Options.UseForeColor = true;
     this.bgvBatchCalc2.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(99)))), ((int)(((byte)(127)))), ((int)(((byte)(196)))));
     this.bgvBatchCalc2.Appearance.VertLine.Options.UseBackColor = true;
     this.bgvBatchCalc2.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBand13,
     this.gbSample,
     this.gridBand3,
     this.gridBand10,
     this.gridBand4,
     this.gbDilution,
     this.gridBand6,
     this.gridBand5,
     this.gridBand7,
     this.gridBand12,
     this.gridBand9,
     this.gridBand14});
     this.bgvBatchCalc2.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.gv2col_Idrecep_sample_detail,
     this.gv2col_Idrecep_sample_detail_elem,
     this.gv2col_Qaqc_par_prev_batch,
     this.gv2col_Cod_sample,
     this.gv2col_Result_analysis,
     this.gv2col_Fum,
     this.gv2col_Idtemplate_method,
     this.gv2col_Flag_mri,
     this.gv2col_Qaqc_blk,
     this.gv2col_Qaqc_par,
     this.gv2col_Qaqc_mr,
     this.gv2col_Qaqc_observation,
     this.gv2col_Qaqc_text_obs,
     this.gv2col_Qaqc_error,
     this.gv2col_Str_result_analysis,
     this.gv2col_Qaqc_approve,
     this.gv2col_Qaqc_review,
     this.gv2col_Qaqc_status_result,
     this.gv2col_Qaqc_has_retest,
     this.gv2col_Qaqc_tmp_retest_idmethod,
     this.gv2col_Qaqc_tmp_retest,
     this.gv2col_Idunit_result,
     this.gv2col_Idretest,
     this.gv2col_Weight1,
     this.gv2col_Weight2,
     this.gv2col_Reading1,
     this.gv2col_Reading2,
     this.gv2col_Factor1,
     this.gv2col_Factor2,
     this.gv2col_Rank1,
     this.gv2col_Rank2,
     this.gv2col_Law1,
     this.gv2col_Law2,
     this.gv2col_Volumen1,
     this.gv2col_Volumen2,
     this.gv2col_Flag_dila1,
     this.gv2col_Dilua1,
     this.gv2col_Flag_dilb1,
     this.gv2col_Dilub1,
     this.gv2col_Qaqc_approve_text,
     this.gv2col_Qaqc_review_text,
     this.gv2col_Cod_des_sample});
     styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Orange;
     styleFormatCondition1.Appearance.Options.UseBackColor = true;
     styleFormatCondition1.ApplyToRow = true;
     styleFormatCondition1.Column = this.gv2col_Flag_mri;
     styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition1.Value1 = "1";
     this.bgvBatchCalc2.FormatConditions.AddRange(new DevExpress.XtraGrid.StyleFormatCondition[] {
     styleFormatCondition1});
     this.bgvBatchCalc2.GridControl = this.gcBachCalc;
     this.bgvBatchCalc2.Images = this.imgChecks;
     this.bgvBatchCalc2.Name = "bgvBatchCalc2";
     this.bgvBatchCalc2.OptionsBehavior.Editable = false;
     this.bgvBatchCalc2.OptionsCustomization.AllowSort = false;
     this.bgvBatchCalc2.OptionsView.ColumnAutoWidth = false;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceEvenRow = true;
     this.bgvBatchCalc2.OptionsView.EnableAppearanceOddRow = true;
     this.bgvBatchCalc2.OptionsView.ShowGroupPanel = false;
     this.bgvBatchCalc2.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(this.bgvBatchCalc2_RowCellStyle);
     this.bgvBatchCalc2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanged);
     this.bgvBatchCalc2.CellValueChanging += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.bgvBatchCalc_CellValueChanging);
     this.bgvBatchCalc2.InvalidRowException += new DevExpress.XtraGrid.Views.Base.InvalidRowExceptionEventHandler(this.bgvBatchCalc2_InvalidRowException);
     this.bgvBatchCalc2.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.bgvBatchCalc2_ValidateRow);
     this.bgvBatchCalc2.Click += new System.EventHandler(this.bgvBatchCalc2_Click);
     //
     // gridBand13
     //
     this.gridBand13.Caption = "A. P";
     this.gridBand13.Columns.Add(this.gv2col_Qaqc_par_prev_batch);
     this.gridBand13.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gridBand13.Name = "gridBand13";
     this.gridBand13.Width = 37;
     //
     // gv2col_Qaqc_par_prev_batch
     //
     this.gv2col_Qaqc_par_prev_batch.Caption = "Par";
     this.gv2col_Qaqc_par_prev_batch.ColumnEdit = this.repQaqc_Previous_par;
     this.gv2col_Qaqc_par_prev_batch.FieldName = "Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.Name = "gv2col_Qaqc_par_prev_batch";
     this.gv2col_Qaqc_par_prev_batch.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par_prev_batch.Visible = true;
     this.gv2col_Qaqc_par_prev_batch.Width = 37;
     //
     // repQaqc_Previous_par
     //
     this.repQaqc_Previous_par.AutoHeight = false;
     this.repQaqc_Previous_par.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_Previous_par.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_Previous_par.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_Previous_par.Name = "repQaqc_Previous_par";
     this.repQaqc_Previous_par.SmallImages = this.imageStatus;
     //
     // imageStatus
     //
     this.imageStatus.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageStatus.ImageStream")));
     this.imageStatus.TransparentColor = System.Drawing.Color.Transparent;
     this.imageStatus.Images.SetKeyName(0, "gray.png");
     this.imageStatus.Images.SetKeyName(1, "green.png");
     this.imageStatus.Images.SetKeyName(2, "ambar.png");
     this.imageStatus.Images.SetKeyName(3, "blue.png");
     this.imageStatus.Images.SetKeyName(4, "purple.png");
     this.imageStatus.Images.SetKeyName(5, "red.png");
     this.imageStatus.Images.SetKeyName(6, "yellow.png");
     this.imageStatus.Images.SetKeyName(7, "obs.png");
     this.imageStatus.Images.SetKeyName(8, "exclamation.png");
     this.imageStatus.Images.SetKeyName(9, "tick.png");
     this.imageStatus.Images.SetKeyName(10, "tick_lup.png");
     this.imageStatus.Images.SetKeyName(11, "espera.png");
     this.imageStatus.Images.SetKeyName(12, "incorrecto.png");
     this.imageStatus.Images.SetKeyName(13, "plausible.png");
     this.imageStatus.Images.SetKeyName(14, "aceptado.png");
     this.imageStatus.Images.SetKeyName(15, "reensayo.png");
     //
     // gbSample
     //
     this.gbSample.Caption = "Muestra";
     this.gbSample.Columns.Add(this.gv2col_Cod_sample);
     this.gbSample.Columns.Add(this.gv2col_Cod_des_sample);
     this.gbSample.Columns.Add(this.gv2col_Fum);
     this.gbSample.Columns.Add(this.gv2col_Idunit_result);
     this.gbSample.Columns.Add(this.gv2col_Idtemplate_method);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail);
     this.gbSample.Columns.Add(this.gv2col_Flag_mri);
     this.gbSample.Columns.Add(this.gv2col_Idrecep_sample_detail_elem);
     this.gbSample.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Left;
     this.gbSample.Name = "gbSample";
     this.gbSample.Width = 150;
     //
     // gv2col_Cod_sample
     //
     this.gv2col_Cod_sample.Caption = "Cod.Muestra";
     this.gv2col_Cod_sample.FieldName = "Cod_sample";
     this.gv2col_Cod_sample.MinWidth = 75;
     this.gv2col_Cod_sample.Name = "gv2col_Cod_sample";
     this.gv2col_Cod_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_sample.Visible = true;
     //
     // gv2col_Cod_des_sample
     //
     this.gv2col_Cod_des_sample.Caption = "Descripción";
     this.gv2col_Cod_des_sample.ColumnEdit = this.repDes_Sample;
     this.gv2col_Cod_des_sample.FieldName = "Cod_des_sample";
     this.gv2col_Cod_des_sample.Name = "gv2col_Cod_des_sample";
     this.gv2col_Cod_des_sample.OptionsColumn.ReadOnly = true;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowAutoFilter = false;
     this.gv2col_Cod_des_sample.OptionsFilter.AllowFilter = false;
     this.gv2col_Cod_des_sample.Visible = true;
     //
     // repDes_Sample
     //
     this.repDes_Sample.AutoHeight = false;
     this.repDes_Sample.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDes_Sample.Name = "repDes_Sample";
     this.repDes_Sample.NullText = "";
     //
     // gv2col_Fum
     //
     this.gv2col_Fum.Caption = "Fum";
     this.gv2col_Fum.FieldName = "Fum";
     this.gv2col_Fum.Name = "gv2col_Fum";
     //
     // gv2col_Idunit_result
     //
     this.gv2col_Idunit_result.Caption = "Idunit_result";
     this.gv2col_Idunit_result.FieldName = "Idunit_result";
     this.gv2col_Idunit_result.Name = "gv2col_Idunit_result";
     //
     // gv2col_Idtemplate_method
     //
     this.gv2col_Idtemplate_method.Caption = "Idtemplate_method";
     this.gv2col_Idtemplate_method.FieldName = "Idtemplate_method";
     this.gv2col_Idtemplate_method.Name = "gv2col_Idtemplate_method";
     //
     // gv2col_Idrecep_sample_detail
     //
     this.gv2col_Idrecep_sample_detail.Caption = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.FieldName = "Idrecep_sample_detail";
     this.gv2col_Idrecep_sample_detail.Name = "gv2col_Idrecep_sample_detail";
     //
     // gv2col_Flag_mri
     //
     this.gv2col_Flag_mri.Caption = "Flag_mri";
     this.gv2col_Flag_mri.FieldName = "Flag_mri";
     this.gv2col_Flag_mri.Name = "gv2col_Flag_mri";
     //
     // gv2col_Idrecep_sample_detail_elem
     //
     this.gv2col_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.gv2col_Idrecep_sample_detail_elem.Name = "gv2col_Idrecep_sample_detail_elem";
     //
     // gridBand3
     //
     this.gridBand3.Caption = "Pesos";
     this.gridBand3.Columns.Add(this.gv2col_Weight1);
     this.gridBand3.Columns.Add(this.gv2col_Weight2);
     this.gridBand3.Name = "gridBand3";
     this.gridBand3.Width = 112;
     //
     // gv2col_Weight1
     //
     this.gv2col_Weight1.Caption = "Peso-1";
     this.gv2col_Weight1.FieldName = "Weight1";
     this.gv2col_Weight1.Name = "gv2col_Weight1";
     this.gv2col_Weight1.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight1.Visible = true;
     this.gv2col_Weight1.Width = 56;
     //
     // gv2col_Weight2
     //
     this.gv2col_Weight2.Caption = "Peso-2";
     this.gv2col_Weight2.FieldName = "Weight2";
     this.gv2col_Weight2.Name = "gv2col_Weight2";
     this.gv2col_Weight2.OptionsColumn.ReadOnly = true;
     this.gv2col_Weight2.Visible = true;
     this.gv2col_Weight2.Width = 56;
     //
     // gridBand10
     //
     this.gridBand10.Caption = "Volumen";
     this.gridBand10.Columns.Add(this.gv2col_Volumen1);
     this.gridBand10.Columns.Add(this.gv2col_Volumen2);
     this.gridBand10.Name = "gridBand10";
     this.gridBand10.Width = 116;
     //
     // gv2col_Volumen1
     //
     this.gv2col_Volumen1.Caption = "Vol-1";
     this.gv2col_Volumen1.FieldName = "Volumen1";
     this.gv2col_Volumen1.Name = "gv2col_Volumen1";
     this.gv2col_Volumen1.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen1.Visible = true;
     this.gv2col_Volumen1.Width = 58;
     //
     // gv2col_Volumen2
     //
     this.gv2col_Volumen2.Caption = "Vol-2";
     this.gv2col_Volumen2.FieldName = "Volumen2";
     this.gv2col_Volumen2.Name = "gv2col_Volumen2";
     this.gv2col_Volumen2.OptionsColumn.ReadOnly = true;
     this.gv2col_Volumen2.Visible = true;
     this.gv2col_Volumen2.Width = 58;
     //
     // gridBand4
     //
     this.gridBand4.Caption = "Lecturas";
     this.gridBand4.Columns.Add(this.gv2col_Reading1);
     this.gridBand4.Columns.Add(this.gv2col_Reading2);
     this.gridBand4.Name = "gridBand4";
     this.gridBand4.Width = 120;
     //
     // gv2col_Reading1
     //
     this.gv2col_Reading1.Caption = "Lec-1";
     this.gv2col_Reading1.FieldName = "Reading1";
     this.gv2col_Reading1.Name = "gv2col_Reading1";
     this.gv2col_Reading1.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading1.Visible = true;
     this.gv2col_Reading1.Width = 60;
     //
     // gv2col_Reading2
     //
     this.gv2col_Reading2.Caption = "Lec-2";
     this.gv2col_Reading2.FieldName = "Reading2";
     this.gv2col_Reading2.Name = "gv2col_Reading2";
     this.gv2col_Reading2.OptionsColumn.AllowEdit = false;
     this.gv2col_Reading2.Visible = true;
     this.gv2col_Reading2.Width = 60;
     //
     // gbDilution
     //
     this.gbDilution.Caption = "Dilución";
     this.gbDilution.Columns.Add(this.gv2col_Flag_dila1);
     this.gbDilution.Columns.Add(this.gv2col_Dilua1);
     this.gbDilution.Columns.Add(this.gv2col_Flag_dilb1);
     this.gbDilution.Columns.Add(this.gv2col_Dilub1);
     this.gbDilution.Name = "gbDilution";
     this.gbDilution.Width = 212;
     //
     // gv2col_Flag_dila1
     //
     this.gv2col_Flag_dila1.Caption = "# Dil 2";
     this.gv2col_Flag_dila1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dila1.FieldName = "Flag_dilu2";
     this.gv2col_Flag_dila1.Name = "gv2col_Flag_dila1";
     this.gv2col_Flag_dila1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dila1.Visible = true;
     this.gv2col_Flag_dila1.Width = 53;
     //
     // repCheckDilution
     //
     this.repCheckDilution.AutoHeight = false;
     this.repCheckDilution.Name = "repCheckDilution";
     //
     // gv2col_Dilua1
     //
     this.gv2col_Dilua1.Caption = "Dil 2";
     this.gv2col_Dilua1.FieldName = "Dilu2";
     this.gv2col_Dilua1.Name = "gv2col_Dilua1";
     this.gv2col_Dilua1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilua1.Visible = true;
     this.gv2col_Dilua1.Width = 53;
     //
     // gv2col_Flag_dilb1
     //
     this.gv2col_Flag_dilb1.Caption = "# Dil 3";
     this.gv2col_Flag_dilb1.ColumnEdit = this.repCheckDilution;
     this.gv2col_Flag_dilb1.FieldName = "Flag_dilu3";
     this.gv2col_Flag_dilb1.Name = "gv2col_Flag_dilb1";
     this.gv2col_Flag_dilb1.UnboundType = DevExpress.Data.UnboundColumnType.Boolean;
     this.gv2col_Flag_dilb1.Visible = true;
     this.gv2col_Flag_dilb1.Width = 53;
     //
     // gv2col_Dilub1
     //
     this.gv2col_Dilub1.Caption = "Dil 3";
     this.gv2col_Dilub1.FieldName = "Dilu3";
     this.gv2col_Dilub1.Name = "gv2col_Dilub1";
     this.gv2col_Dilub1.OptionsColumn.ReadOnly = true;
     this.gv2col_Dilub1.Visible = true;
     this.gv2col_Dilub1.Width = 53;
     //
     // gridBand6
     //
     this.gridBand6.Caption = "Rangos";
     this.gridBand6.Columns.Add(this.gv2col_Rank1);
     this.gridBand6.Columns.Add(this.gv2col_Rank2);
     this.gridBand6.Name = "gridBand6";
     this.gridBand6.Visible = false;
     this.gridBand6.Width = 150;
     //
     // gv2col_Rank1
     //
     this.gv2col_Rank1.Caption = "Rango1";
     this.gv2col_Rank1.FieldName = "Rank1";
     this.gv2col_Rank1.Name = "gv2col_Rank1";
     this.gv2col_Rank1.Visible = true;
     //
     // gv2col_Rank2
     //
     this.gv2col_Rank2.Caption = "Rango2";
     this.gv2col_Rank2.FieldName = "Rank2";
     this.gv2col_Rank2.Name = "gv2col_Rank2";
     this.gv2col_Rank2.Visible = true;
     //
     // gridBand5
     //
     this.gridBand5.Caption = "Factores";
     this.gridBand5.Columns.Add(this.gv2col_Factor1);
     this.gridBand5.Columns.Add(this.gv2col_Factor2);
     this.gridBand5.Name = "gridBand5";
     this.gridBand5.Width = 114;
     //
     // gv2col_Factor1
     //
     this.gv2col_Factor1.Caption = "Factor1";
     this.gv2col_Factor1.FieldName = "Factor1";
     this.gv2col_Factor1.Name = "gv2col_Factor1";
     this.gv2col_Factor1.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor1.Visible = true;
     this.gv2col_Factor1.Width = 57;
     //
     // gv2col_Factor2
     //
     this.gv2col_Factor2.Caption = "Factor2";
     this.gv2col_Factor2.FieldName = "Factor2";
     this.gv2col_Factor2.Name = "gv2col_Factor2";
     this.gv2col_Factor2.OptionsColumn.ReadOnly = true;
     this.gv2col_Factor2.Visible = true;
     this.gv2col_Factor2.Width = 57;
     //
     // gridBand7
     //
     this.gridBand7.Caption = "Ley Parcial";
     this.gridBand7.Columns.Add(this.gv2col_Law1);
     this.gridBand7.Columns.Add(this.gv2col_Law2);
     this.gridBand7.Name = "gridBand7";
     this.gridBand7.Width = 119;
     //
     // gv2col_Law1
     //
     this.gv2col_Law1.Caption = "Ley-1";
     this.gv2col_Law1.FieldName = "Law1";
     this.gv2col_Law1.Name = "gv2col_Law1";
     this.gv2col_Law1.OptionsColumn.ReadOnly = true;
     this.gv2col_Law1.Visible = true;
     this.gv2col_Law1.Width = 59;
     //
     // gv2col_Law2
     //
     this.gv2col_Law2.Caption = "Ley-2";
     this.gv2col_Law2.FieldName = "Law2";
     this.gv2col_Law2.Name = "gv2col_Law2";
     this.gv2col_Law2.OptionsColumn.ReadOnly = true;
     this.gv2col_Law2.Visible = true;
     this.gv2col_Law2.Width = 60;
     //
     // gridBand12
     //
     this.gridBand12.Caption = "Ley";
     this.gridBand12.Columns.Add(this.gv2col_Str_result_analysis);
     this.gridBand12.Columns.Add(this.gv2col_Result_analysis);
     this.gridBand12.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand12.Name = "gridBand12";
     this.gridBand12.Width = 60;
     //
     // gv2col_Str_result_analysis
     //
     this.gv2col_Str_result_analysis.Caption = "Ley";
     this.gv2col_Str_result_analysis.FieldName = "Str_result_analysis";
     this.gv2col_Str_result_analysis.Name = "gv2col_Str_result_analysis";
     this.gv2col_Str_result_analysis.OptionsColumn.ReadOnly = true;
     this.gv2col_Str_result_analysis.Visible = true;
     this.gv2col_Str_result_analysis.Width = 60;
     //
     // gv2col_Result_analysis
     //
     this.gv2col_Result_analysis.Caption = "Result_analysis";
     this.gv2col_Result_analysis.FieldName = "Result_analysis";
     this.gv2col_Result_analysis.Name = "gv2col_Result_analysis";
     //
     // gridBand9
     //
     this.gridBand9.Caption = "Qaqc";
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_text_obs);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_observation);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_mr);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_blk);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_par);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_approve);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_review);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_status_result);
     this.gridBand9.Columns.Add(this.gv2col_Qaqc_error);
     this.gridBand9.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand9.Name = "gridBand9";
     this.gridBand9.Width = 145;
     //
     // gv2col_Qaqc_text_obs
     //
     this.gv2col_Qaqc_text_obs.Caption = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.FieldName = "Qaqc_text_obs";
     this.gv2col_Qaqc_text_obs.Name = "gv2col_Qaqc_text_obs";
     //
     // gv2col_Qaqc_observation
     //
     this.gv2col_Qaqc_observation.Caption = "#";
     this.gv2col_Qaqc_observation.ColumnEdit = this.repQaqc_ShowPopup;
     this.gv2col_Qaqc_observation.FieldName = "Qaqc_observation";
     this.gv2col_Qaqc_observation.MinWidth = 25;
     this.gv2col_Qaqc_observation.Name = "gv2col_Qaqc_observation";
     this.gv2col_Qaqc_observation.Visible = true;
     this.gv2col_Qaqc_observation.Width = 25;
     //
     // repQaqc_ShowPopup
     //
     this.repQaqc_ShowPopup.AutoHeight = false;
     this.repQaqc_ShowPopup.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repQaqc_ShowPopup.Name = "repQaqc_ShowPopup";
     this.repQaqc_ShowPopup.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     this.repQaqc_ShowPopup.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.repQaqc_ShowPopup_ButtonClick);
     //
     // gv2col_Qaqc_mr
     //
     this.gv2col_Qaqc_mr.Caption = "Mr";
     this.gv2col_Qaqc_mr.FieldName = "Qaqc_mr";
     this.gv2col_Qaqc_mr.Name = "gv2col_Qaqc_mr";
     //
     // gv2col_Qaqc_blk
     //
     this.gv2col_Qaqc_blk.Caption = "Blk";
     this.gv2col_Qaqc_blk.FieldName = "Qaqc_blk";
     this.gv2col_Qaqc_blk.Name = "gv2col_Qaqc_blk";
     //
     // gv2col_Qaqc_par
     //
     this.gv2col_Qaqc_par.Caption = "Par";
     this.gv2col_Qaqc_par.ColumnEdit = this.repQaqc_parity;
     this.gv2col_Qaqc_par.FieldName = "Qaqc_par";
     this.gv2col_Qaqc_par.MinWidth = 40;
     this.gv2col_Qaqc_par.Name = "gv2col_Qaqc_par";
     this.gv2col_Qaqc_par.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_par.Visible = true;
     this.gv2col_Qaqc_par.Width = 40;
     //
     // repQaqc_parity
     //
     this.repQaqc_parity.AutoHeight = false;
     this.repQaqc_parity.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_parity.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_parity.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 5),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 4),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, 0)});
     this.repQaqc_parity.LargeImages = this.imageStatus;
     this.repQaqc_parity.Name = "repQaqc_parity";
     //
     // gv2col_Qaqc_approve
     //
     this.gv2col_Qaqc_approve.Caption = "Aprobar";
     this.gv2col_Qaqc_approve.ColumnEdit = this.repQaqc_approve;
     this.gv2col_Qaqc_approve.FieldName = "Qaqc_approve";
     this.gv2col_Qaqc_approve.ImageIndex = 0;
     this.gv2col_Qaqc_approve.MinWidth = 80;
     this.gv2col_Qaqc_approve.Name = "gv2col_Qaqc_approve";
     this.gv2col_Qaqc_approve.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_approve.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_approve.Visible = true;
     this.gv2col_Qaqc_approve.Width = 80;
     //
     // repQaqc_approve
     //
     this.repQaqc_approve.AutoHeight = false;
     this.repQaqc_approve.Name = "repQaqc_approve";
     //
     // gv2col_Qaqc_review
     //
     this.gv2col_Qaqc_review.Caption = "Revisar";
     this.gv2col_Qaqc_review.ColumnEdit = this.repQaqc_review;
     this.gv2col_Qaqc_review.FieldName = "Qaqc_review";
     this.gv2col_Qaqc_review.ImageIndex = 0;
     this.gv2col_Qaqc_review.MinWidth = 80;
     this.gv2col_Qaqc_review.Name = "gv2col_Qaqc_review";
     this.gv2col_Qaqc_review.OptionsColumn.AllowSort = DevExpress.Utils.DefaultBoolean.False;
     this.gv2col_Qaqc_review.Width = 80;
     //
     // repQaqc_review
     //
     this.repQaqc_review.AutoHeight = false;
     this.repQaqc_review.Name = "repQaqc_review";
     //
     // gv2col_Qaqc_status_result
     //
     this.gv2col_Qaqc_status_result.Caption = ".";
     this.gv2col_Qaqc_status_result.ColumnEdit = this.repQaqc_StatusResult;
     this.gv2col_Qaqc_status_result.FieldName = "Qaqc_status_result";
     this.gv2col_Qaqc_status_result.MinWidth = 40;
     this.gv2col_Qaqc_status_result.Name = "gv2col_Qaqc_status_result";
     this.gv2col_Qaqc_status_result.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_status_result.Width = 40;
     //
     // repQaqc_StatusResult
     //
     this.repQaqc_StatusResult.AutoHeight = false;
     this.repQaqc_StatusResult.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_StatusResult.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_StatusResult.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 11),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 12),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 13),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 14),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 12)});
     this.repQaqc_StatusResult.Name = "repQaqc_StatusResult";
     this.repQaqc_StatusResult.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_error
     //
     this.gv2col_Qaqc_error.Caption = ".";
     this.gv2col_Qaqc_error.ColumnEdit = this.repQaqc_ShowObs;
     this.gv2col_Qaqc_error.FieldName = "Qaqc_error";
     this.gv2col_Qaqc_error.MinWidth = 25;
     this.gv2col_Qaqc_error.Name = "gv2col_Qaqc_error";
     this.gv2col_Qaqc_error.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_error.Width = 25;
     //
     // repQaqc_ShowObs
     //
     this.repQaqc_ShowObs.AutoHeight = false;
     this.repQaqc_ShowObs.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_ShowObs.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, 9),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 2, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 3, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 4, 8),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 5, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 6, 10)});
     this.repQaqc_ShowObs.Name = "repQaqc_ShowObs";
     this.repQaqc_ShowObs.SmallImages = this.imageStatus;
     //
     // gridBand14
     //
     this.gridBand14.Caption = "Ryo";
     this.gridBand14.Columns.Add(this.gv2col_Qaqc_has_retest);
     this.gridBand14.Fixed = DevExpress.XtraGrid.Columns.FixedStyle.Right;
     this.gridBand14.Name = "gridBand14";
     this.gridBand14.Width = 40;
     //
     // gv2col_Qaqc_has_retest
     //
     this.gv2col_Qaqc_has_retest.Caption = "Ryo";
     this.gv2col_Qaqc_has_retest.ColumnEdit = this.repQaqc_HasRetest;
     this.gv2col_Qaqc_has_retest.FieldName = "Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.ImageAlignment = System.Drawing.StringAlignment.Center;
     this.gv2col_Qaqc_has_retest.Name = "gv2col_Qaqc_has_retest";
     this.gv2col_Qaqc_has_retest.OptionsColumn.AllowEdit = false;
     this.gv2col_Qaqc_has_retest.Visible = true;
     this.gv2col_Qaqc_has_retest.Width = 40;
     //
     // repQaqc_HasRetest
     //
     this.repQaqc_HasRetest.AutoHeight = false;
     this.repQaqc_HasRetest.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repQaqc_HasRetest.GlyphAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.repQaqc_HasRetest.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 0, -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("", 1, 15)});
     this.repQaqc_HasRetest.Name = "repQaqc_HasRetest";
     this.repQaqc_HasRetest.SmallImages = this.imageStatus;
     //
     // gv2col_Qaqc_tmp_retest_idmethod
     //
     this.gv2col_Qaqc_tmp_retest_idmethod.Caption = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.FieldName = "Qaqc_tmp_retest_idmethod";
     this.gv2col_Qaqc_tmp_retest_idmethod.Name = "gv2col_Qaqc_tmp_retest_idmethod";
     //
     // gv2col_Qaqc_tmp_retest
     //
     this.gv2col_Qaqc_tmp_retest.Caption = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.FieldName = "Qaqc_tmp_retest";
     this.gv2col_Qaqc_tmp_retest.Name = "gv2col_Qaqc_tmp_retest";
     //
     // gv2col_Idretest
     //
     this.gv2col_Idretest.Caption = "gv2col_Qaqc_idretest";
     this.gv2col_Idretest.FieldName = "Qaqc_Qaqc_idretest";
     this.gv2col_Idretest.Name = "gv2col_Idretest";
     //
     // gv2col_Qaqc_approve_text
     //
     this.gv2col_Qaqc_approve_text.Caption = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.FieldName = "Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Name = "gv2col_Qaqc_approve_text";
     this.gv2col_Qaqc_approve_text.Visible = true;
     //
     // gv2col_Qaqc_review_text
     //
     this.gv2col_Qaqc_review_text.Caption = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.FieldName = "Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Name = "gv2col_Qaqc_review_text";
     this.gv2col_Qaqc_review_text.Visible = true;
     //
     // imgChecks
     //
     this.imgChecks.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgChecks.ImageStream")));
     this.imgChecks.TransparentColor = System.Drawing.Color.Transparent;
     this.imgChecks.Images.SetKeyName(0, "uncheck16x16.png");
     this.imgChecks.Images.SetKeyName(1, "check16x16.png");
     //
     // repProcedence2
     //
     this.repProcedence2.AutoHeight = false;
     this.repProcedence2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repProcedence2.Name = "repProcedence2";
     //
     // treeCol_Urgent_sample
     //
     this.treeCol_Urgent_sample.Caption = "treeListColumn10";
     this.treeCol_Urgent_sample.FieldName = "Urgent_sample";
     this.treeCol_Urgent_sample.Name = "treeCol_Urgent_sample";
     //
     // treeTrayWaiting
     //
     this.treeTrayWaiting.Appearance.Empty.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Empty.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.EvenRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.EvenRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(178)))), ((int)(((byte)(180)))), ((int)(((byte)(191)))));
     this.treeTrayWaiting.Appearance.FocusedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FocusedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.FooterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupButton.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(215)))), ((int)(((byte)(229)))));
     this.treeTrayWaiting.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.GroupFooter.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(154)))), ((int)(((byte)(153)))), ((int)(((byte)(182)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(244)))), ((int)(((byte)(250)))));
     this.treeTrayWaiting.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.HeaderPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.treeTrayWaiting.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(218)))), ((int)(((byte)(219)))), ((int)(((byte)(226)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(133)))), ((int)(((byte)(131)))), ((int)(((byte)(161)))));
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.HorzLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.OddRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.OddRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(250)))), ((int)(((byte)(250)))), ((int)(((byte)(253)))));
     this.treeTrayWaiting.Appearance.Preview.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(163)))), ((int)(((byte)(165)))), ((int)(((byte)(177)))));
     this.treeTrayWaiting.Appearance.Preview.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Preview.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.Row.BackColor = System.Drawing.Color.White;
     this.treeTrayWaiting.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.Row.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.Row.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(195)))), ((int)(((byte)(197)))), ((int)(((byte)(205)))));
     this.treeTrayWaiting.Appearance.SelectedRow.Font = new System.Drawing.Font("Tahoma", 8F);
     this.treeTrayWaiting.Appearance.SelectedRow.ForeColor = System.Drawing.Color.Black;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseFont = true;
     this.treeTrayWaiting.Appearance.SelectedRow.Options.UseForeColor = true;
     this.treeTrayWaiting.Appearance.TreeLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(124)))), ((int)(((byte)(124)))), ((int)(((byte)(148)))));
     this.treeTrayWaiting.Appearance.TreeLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(164)))), ((int)(((byte)(164)))), ((int)(((byte)(188)))));
     this.treeTrayWaiting.Appearance.VertLine.Options.UseBackColor = true;
     this.treeTrayWaiting.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeCol_Idtemplate_method,
     this.treeCol_Idrecep_sample_detail_elem,
     this.treeCol_Abbreviation,
     this.treeCol_Cod_repetition,
     this.treeCol_Id,
     this.treeCol_Parentid,
     this.treeCol_Num_tray,
     this.treeCol_Date_result,
     this.treeCol_Hour_result,
     this.treeCol_Urgent_sample});
     this.treeTrayWaiting.Dock = System.Windows.Forms.DockStyle.Fill;
     styleFormatCondition2.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(234)))), ((int)(((byte)(87)))), ((int)(((byte)(96)))));
     styleFormatCondition2.Appearance.Options.UseBackColor = true;
     styleFormatCondition2.ApplyToRow = true;
     styleFormatCondition2.Column = this.treeCol_Urgent_sample;
     styleFormatCondition2.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal;
     styleFormatCondition2.Value1 = 1D;
     this.treeTrayWaiting.FormatConditions.AddRange(new DevExpress.XtraTreeList.StyleFormatConditions.StyleFormatCondition[] {
     styleFormatCondition2});
     this.treeTrayWaiting.ImageIndexFieldName = "Image_index";
     this.treeTrayWaiting.KeyFieldName = "Id";
     this.treeTrayWaiting.Location = new System.Drawing.Point(0, 0);
     this.treeTrayWaiting.Name = "treeTrayWaiting";
     this.treeTrayWaiting.OptionsBehavior.DragNodes = true;
     this.treeTrayWaiting.OptionsBehavior.SmartMouseHover = false;
     this.treeTrayWaiting.OptionsView.AutoWidth = false;
     this.treeTrayWaiting.OptionsView.EnableAppearanceEvenRow = true;
     this.treeTrayWaiting.OptionsView.EnableAppearanceOddRow = true;
     this.treeTrayWaiting.ParentFieldName = "Parentid";
     this.treeTrayWaiting.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repRepetition,
     this.repDate,
     this.repHour});
     this.treeTrayWaiting.SelectImageList = this.imgPriority;
     this.treeTrayWaiting.Size = new System.Drawing.Size(217, 343);
     this.treeTrayWaiting.TabIndex = 1;
     this.treeTrayWaiting.AfterDragNode += new DevExpress.XtraTreeList.NodeEventHandler(this.treeTrayWaiting_AfterDragNode);
     this.treeTrayWaiting.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeTrayWaiting.DragOver += new System.Windows.Forms.DragEventHandler(this.treeTrayWaiting_DragOver);
     this.treeTrayWaiting.MouseMove += new System.Windows.Forms.MouseEventHandler(this.treeTrayWaiting_MouseMove);
     //
     // treeCol_Idtemplate_method
     //
     this.treeCol_Idtemplate_method.Caption = "Idtemplate_method";
     this.treeCol_Idtemplate_method.FieldName = "Idtemplate_method";
     this.treeCol_Idtemplate_method.Name = "treeCol_Idtemplate_method";
     //
     // treeCol_Idrecep_sample_detail_elem
     //
     this.treeCol_Idrecep_sample_detail_elem.Caption = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.FieldName = "Idrecep_sample_detail_elem";
     this.treeCol_Idrecep_sample_detail_elem.Name = "treeCol_Idrecep_sample_detail_elem";
     //
     // treeCol_Abbreviation
     //
     this.treeCol_Abbreviation.Caption = "Bandeja";
     this.treeCol_Abbreviation.FieldName = "Abbreviation";
     this.treeCol_Abbreviation.MinWidth = 27;
     this.treeCol_Abbreviation.Name = "treeCol_Abbreviation";
     this.treeCol_Abbreviation.OptionsColumn.AllowEdit = false;
     this.treeCol_Abbreviation.VisibleIndex = 0;
     this.treeCol_Abbreviation.Width = 60;
     //
     // treeCol_Cod_repetition
     //
     this.treeCol_Cod_repetition.Caption = "N°Repeticiones";
     this.treeCol_Cod_repetition.ColumnEdit = this.repRepetition;
     this.treeCol_Cod_repetition.FieldName = "Cod_repetition";
     this.treeCol_Cod_repetition.Name = "treeCol_Cod_repetition";
     this.treeCol_Cod_repetition.OptionsColumn.ReadOnly = true;
     this.treeCol_Cod_repetition.Width = 63;
     //
     // repRepetition
     //
     this.repRepetition.AutoHeight = false;
     this.repRepetition.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repRepetition.Name = "repRepetition";
     this.repRepetition.NullText = "";
     //
     // treeCol_Id
     //
     this.treeCol_Id.Caption = "Id";
     this.treeCol_Id.FieldName = "Id";
     this.treeCol_Id.Name = "treeCol_Id";
     //
     // treeCol_Parentid
     //
     this.treeCol_Parentid.Caption = "Parentid";
     this.treeCol_Parentid.FieldName = "Parentid";
     this.treeCol_Parentid.Name = "treeCol_Parentid";
     //
     // treeCol_Num_tray
     //
     this.treeCol_Num_tray.Caption = "N°Bandeja";
     this.treeCol_Num_tray.FieldName = "Num_tray";
     this.treeCol_Num_tray.Name = "treeCol_Num_tray";
     this.treeCol_Num_tray.OptionsColumn.AllowEdit = false;
     this.treeCol_Num_tray.VisibleIndex = 1;
     this.treeCol_Num_tray.Width = 65;
     //
     // treeCol_Date_result
     //
     this.treeCol_Date_result.Caption = "Fecha";
     this.treeCol_Date_result.ColumnEdit = this.repDate;
     this.treeCol_Date_result.FieldName = "Date_result";
     this.treeCol_Date_result.Name = "treeCol_Date_result";
     this.treeCol_Date_result.VisibleIndex = 2;
     this.treeCol_Date_result.Width = 54;
     //
     // repDate
     //
     this.repDate.AutoHeight = false;
     this.repDate.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDate.Name = "repDate";
     //
     // treeCol_Hour_result
     //
     this.treeCol_Hour_result.Caption = "Hora";
     this.treeCol_Hour_result.ColumnEdit = this.repHour;
     this.treeCol_Hour_result.FieldName = "Hour_result";
     this.treeCol_Hour_result.Name = "treeCol_Hour_result";
     this.treeCol_Hour_result.VisibleIndex = 3;
     this.treeCol_Hour_result.Width = 53;
     //
     // repHour
     //
     this.repHour.AutoHeight = false;
     this.repHour.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repHour.Name = "repHour";
     //
     // imgPriority
     //
     this.imgPriority.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imgPriority.ImageStream")));
     this.imgPriority.TransparentColor = System.Drawing.Color.Transparent;
     this.imgPriority.Images.SetKeyName(0, "high.png");
     this.imgPriority.Images.SetKeyName(1, "medium.png");
     this.imgPriority.Images.SetKeyName(2, "low.png");
     //
     // expandablePanel1
     //
     this.expandablePanel1.CollapseDirection = DevComponents.DotNetBar.eCollapseDirection.LeftToRight;
     this.expandablePanel1.Controls.Add(this.tabTreeQaqc);
     this.expandablePanel1.Controls.Add(this.paButtons);
     this.expandablePanel1.Dock = System.Windows.Forms.DockStyle.Left;
     this.expandablePanel1.Location = new System.Drawing.Point(0, 0);
     this.expandablePanel1.Name = "expandablePanel1";
     this.expandablePanel1.Size = new System.Drawing.Size(226, 493);
     this.expandablePanel1.TabIndex = 9;
     this.expandablePanel1.Text = "expandablePanel1";
     this.expandablePanel1.TitleText = "Bandejas";
     //
     // tabTreeQaqc
     //
     this.tabTreeQaqc.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabTreeQaqc.Location = new System.Drawing.Point(0, 66);
     this.tabTreeQaqc.Name = "tabTreeQaqc";
     this.tabTreeQaqc.SelectedTabPage = this.xtraTabPage4;
     this.tabTreeQaqc.Size = new System.Drawing.Size(226, 427);
     this.tabTreeQaqc.TabIndex = 2;
     this.tabTreeQaqc.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage4,
     this.xtraTabPage5});
     this.tabTreeQaqc.Text = "xtraTabControl2";
     this.tabTreeQaqc.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.tabTreeQaqc_SelectedPageChanged);
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.treeTrayWaiting);
     this.xtraTabPage4.Controls.Add(this.groupControl1);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(217, 397);
     this.xtraTabPage4.Text = "En Espera";
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.cbAuthorizationWait);
     this.groupControl1.Controls.Add(this.label23);
     this.groupControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.groupControl1.Location = new System.Drawing.Point(0, 343);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(217, 54);
     this.groupControl1.TabIndex = 5;
     this.groupControl1.Text = "Listar";
     //
     // cbAuthorizationWait
     //
     this.cbAuthorizationWait.Location = new System.Drawing.Point(81, 23);
     this.cbAuthorizationWait.Name = "cbAuthorizationWait";
     this.cbAuthorizationWait.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationWait.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationWait.Properties.NullText = "Seleccionar";
     this.cbAuthorizationWait.Properties.PopupWidth = 100;
     this.cbAuthorizationWait.Properties.ShowFooter = false;
     this.cbAuthorizationWait.Properties.ShowHeader = false;
     this.cbAuthorizationWait.Size = new System.Drawing.Size(112, 20);
     this.cbAuthorizationWait.TabIndex = 0;
     this.cbAuthorizationWait.EditValueChanged += new System.EventHandler(this.cbAuthorizationWait_EditValueChanged);
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(27, 26);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(53, 13);
     this.label23.TabIndex = 1;
     this.label23.Text = "Listar por:";
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.treeTrayFinished);
     this.xtraTabPage5.Controls.Add(this.paListAuthorization);
     this.xtraTabPage5.Controls.Add(this.paHistoryFilter);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(217, 55);
     this.xtraTabPage5.Text = "Gerencia";
     //
     // treeTrayFinished
     //
     this.treeTrayFinished.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn6,
     this.treeListColumn7,
     this.treeListColumn8,
     this.treeListColumn9});
     this.treeTrayFinished.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeTrayFinished.ImageIndexFieldName = "Image_index";
     this.treeTrayFinished.KeyFieldName = "Id";
     this.treeTrayFinished.Location = new System.Drawing.Point(0, 0);
     this.treeTrayFinished.Name = "treeTrayFinished";
     this.treeTrayFinished.OptionsView.AutoWidth = false;
     this.treeTrayFinished.ParentFieldName = "Parentid";
     this.treeTrayFinished.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemLookUpEdit1});
     this.treeTrayFinished.SelectImageList = this.imgPriority;
     this.treeTrayFinished.Size = new System.Drawing.Size(217, 0);
     this.treeTrayFinished.TabIndex = 2;
     this.treeTrayFinished.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeTrayFinished_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "Idtemplate_method";
     this.treeListColumn1.FieldName = "Idtemplate_method";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Idrecep_sample_detail_elem";
     this.treeListColumn2.FieldName = "Idrecep_sample_detail_elem";
     this.treeListColumn2.Name = "treeListColumn2";
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "Bandeja";
     this.treeListColumn3.FieldName = "Abbreviation";
     this.treeListColumn3.MinWidth = 27;
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.OptionsColumn.AllowEdit = false;
     this.treeListColumn3.VisibleIndex = 0;
     this.treeListColumn3.Width = 110;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "N°Repeticiones";
     this.treeListColumn4.ColumnEdit = this.repositoryItemLookUpEdit1;
     this.treeListColumn4.FieldName = "Cod_repetition";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.OptionsColumn.ReadOnly = true;
     this.treeListColumn4.Width = 63;
     //
     // repositoryItemLookUpEdit1
     //
     this.repositoryItemLookUpEdit1.AutoHeight = false;
     this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
     this.repositoryItemLookUpEdit1.NullText = "";
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "Id";
     this.treeListColumn5.FieldName = "Id";
     this.treeListColumn5.Name = "treeListColumn5";
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "Parentid";
     this.treeListColumn6.FieldName = "Parentid";
     this.treeListColumn6.Name = "treeListColumn6";
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "N°Bandeja";
     this.treeListColumn7.FieldName = "Num_tray";
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.OptionsColumn.AllowEdit = false;
     this.treeListColumn7.VisibleIndex = 1;
     //
     // treeListColumn8
     //
     this.treeListColumn8.Caption = "Fecha";
     this.treeListColumn8.FieldName = "Date_result";
     this.treeListColumn8.Name = "treeListColumn8";
     this.treeListColumn8.VisibleIndex = 2;
     //
     // treeListColumn9
     //
     this.treeListColumn9.Caption = "Hora";
     this.treeListColumn9.FieldName = "Hour_result";
     this.treeListColumn9.Name = "treeListColumn9";
     this.treeListColumn9.VisibleIndex = 3;
     //
     // paListAuthorization
     //
     this.paListAuthorization.Controls.Add(this.cbAuthorizationApproved);
     this.paListAuthorization.Controls.Add(this.label25);
     this.paListAuthorization.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paListAuthorization.Location = new System.Drawing.Point(0, -149);
     this.paListAuthorization.Name = "paListAuthorization";
     this.paListAuthorization.Size = new System.Drawing.Size(217, 54);
     this.paListAuthorization.TabIndex = 4;
     this.paListAuthorization.Text = "Listar";
     //
     // cbAuthorizationApproved
     //
     this.cbAuthorizationApproved.Location = new System.Drawing.Point(98, 23);
     this.cbAuthorizationApproved.Name = "cbAuthorizationApproved";
     this.cbAuthorizationApproved.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbAuthorizationApproved.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_area", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Nom_area")});
     this.cbAuthorizationApproved.Properties.NullText = "Seleccionar";
     this.cbAuthorizationApproved.Properties.PopupWidth = 100;
     this.cbAuthorizationApproved.Properties.ShowFooter = false;
     this.cbAuthorizationApproved.Properties.ShowHeader = false;
     this.cbAuthorizationApproved.Size = new System.Drawing.Size(103, 20);
     this.cbAuthorizationApproved.TabIndex = 0;
     this.cbAuthorizationApproved.EditValueChanged += new System.EventHandler(this.cbAuthorization_EditValueChanged);
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(25, 26);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(53, 13);
     this.label25.TabIndex = 1;
     this.label25.Text = "Listar por:";
     //
     // paHistoryFilter
     //
     this.paHistoryFilter.Controls.Add(this.txYear);
     this.paHistoryFilter.Controls.Add(this.txSample);
     this.paHistoryFilter.Controls.Add(this.cbTypeSample);
     this.paHistoryFilter.Controls.Add(this.cbCompany);
     this.paHistoryFilter.Controls.Add(this.btSearchTray);
     this.paHistoryFilter.Controls.Add(this.label22);
     this.paHistoryFilter.Controls.Add(this.ckSample);
     this.paHistoryFilter.Controls.Add(this.ckCompany);
     this.paHistoryFilter.Controls.Add(this.panel9);
     this.paHistoryFilter.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.paHistoryFilter.Location = new System.Drawing.Point(0, -95);
     this.paHistoryFilter.Name = "paHistoryFilter";
     this.paHistoryFilter.Size = new System.Drawing.Size(217, 150);
     this.paHistoryFilter.TabIndex = 3;
     this.paHistoryFilter.Text = "Filtrar por";
     this.paHistoryFilter.Visible = false;
     //
     // txYear
     //
     this.txYear.EditValue = "12";
     this.txYear.Location = new System.Drawing.Point(117, 96);
     this.txYear.Name = "txYear";
     this.txYear.Size = new System.Drawing.Size(22, 20);
     this.txYear.TabIndex = 12;
     this.txYear.Visible = false;
     //
     // txSample
     //
     this.txSample.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.txSample.Location = new System.Drawing.Point(141, 96);
     this.txSample.Name = "txSample";
     this.txSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txSample.Size = new System.Drawing.Size(61, 20);
     this.txSample.TabIndex = 11;
     this.txSample.Visible = false;
     //
     // cbTypeSample
     //
     this.cbTypeSample.Location = new System.Drawing.Point(67, 96);
     this.cbTypeSample.Name = "cbTypeSample";
     this.cbTypeSample.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbTypeSample.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Cod_type_sample", "", 10, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Name_type_sample")});
     this.cbTypeSample.Properties.PopupWidth = 100;
     this.cbTypeSample.Properties.ShowFooter = false;
     this.cbTypeSample.Properties.ShowHeader = false;
     this.cbTypeSample.Size = new System.Drawing.Size(48, 20);
     this.cbTypeSample.TabIndex = 10;
     this.cbTypeSample.Visible = false;
     //
     // cbCompany
     //
     this.cbCompany.Location = new System.Drawing.Point(67, 73);
     this.cbCompany.Name = "cbCompany";
     this.cbCompany.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbCompany.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Idcompany", "", 20, DevExpress.Utils.FormatType.None, "", false, DevExpress.Utils.HorzAlignment.Default, DevExpress.Data.ColumnSortOrder.None),
     new DevExpress.XtraEditors.Controls.LookUpColumnInfo("Business_name")});
     this.cbCompany.Properties.NullText = "Seleccionar";
     this.cbCompany.Properties.ShowFooter = false;
     this.cbCompany.Properties.ShowHeader = false;
     this.cbCompany.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     this.cbCompany.Size = new System.Drawing.Size(135, 20);
     this.cbCompany.TabIndex = 8;
     this.cbCompany.Visible = false;
     //
     // btSearchTray
     //
     this.btSearchTray.ImageAlignment = DevExpress.Utils.HorzAlignment.Default;
     this.btSearchTray.ImageIndex = 3;
     this.btSearchTray.ImageList = this.imageList1;
     this.btSearchTray.Location = new System.Drawing.Point(141, 120);
     this.btSearchTray.Name = "btSearchTray";
     this.btSearchTray.Size = new System.Drawing.Size(62, 25);
     this.btSearchTray.TabIndex = 7;
     this.btSearchTray.Text = "Buscar";
     this.btSearchTray.Click += new System.EventHandler(this.btSearchTray_Click);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Location = new System.Drawing.Point(22, 24);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(37, 13);
     this.label22.TabIndex = 1;
     this.label22.Text = "Fecha";
     //
     // ckSample
     //
     this.ckSample.Location = new System.Drawing.Point(4, 96);
     this.ckSample.Name = "ckSample";
     this.ckSample.Properties.Caption = "Muestra";
     this.ckSample.Size = new System.Drawing.Size(71, 19);
     this.ckSample.TabIndex = 4;
     this.ckSample.CheckedChanged += new System.EventHandler(this.ckSample_CheckedChanged);
     //
     // ckCompany
     //
     this.ckCompany.Location = new System.Drawing.Point(4, 73);
     this.ckCompany.Name = "ckCompany";
     this.ckCompany.Properties.Caption = "Cliente";
     this.ckCompany.Size = new System.Drawing.Size(75, 19);
     this.ckCompany.TabIndex = 4;
     this.ckCompany.CheckedChanged += new System.EventHandler(this.ckCompany_CheckedChanged);
     //
     // panel9
     //
     this.panel9.Controls.Add(this.deFrom);
     this.panel9.Controls.Add(this.deUntil);
     this.panel9.Controls.Add(this.label21);
     this.panel9.Controls.Add(this.label26);
     this.panel9.Location = new System.Drawing.Point(65, 19);
     this.panel9.Name = "panel9";
     this.panel9.Size = new System.Drawing.Size(140, 47);
     this.panel9.TabIndex = 3;
     //
     // deFrom
     //
     this.deFrom.EditValue = null;
     this.deFrom.Location = new System.Drawing.Point(50, 3);
     this.deFrom.Name = "deFrom";
     this.deFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deFrom.Size = new System.Drawing.Size(86, 20);
     this.deFrom.TabIndex = 2;
     //
     // deUntil
     //
     this.deUntil.EditValue = null;
     this.deUntil.Location = new System.Drawing.Point(50, 25);
     this.deUntil.Name = "deUntil";
     this.deUntil.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deUntil.Size = new System.Drawing.Size(86, 20);
     this.deUntil.TabIndex = 2;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Location = new System.Drawing.Point(5, 6);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(41, 13);
     this.label21.TabIndex = 1;
     this.label21.Text = "Desde:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(5, 28);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(38, 13);
     this.label26.TabIndex = 1;
     this.label26.Text = "Hasta:";
     //
     // paButtons
     //
     this.paButtons.Controls.Add(this.paNewTray);
     this.paButtons.Controls.Add(this.btRefresh);
     this.paButtons.Dock = System.Windows.Forms.DockStyle.Top;
     this.paButtons.Location = new System.Drawing.Point(0, 26);
     this.paButtons.Name = "paButtons";
     this.paButtons.Size = new System.Drawing.Size(226, 40);
     this.paButtons.TabIndex = 3;
     this.paButtons.Text = "paSettingsTree";
     //
     // paNewTray
     //
     this.paNewTray.AllowDrop = true;
     this.paNewTray.BackgroundImage = global::LimsProject.Properties.Resources.add_tray2;
     this.paNewTray.Location = new System.Drawing.Point(200, 11);
     this.paNewTray.Name = "paNewTray";
     this.paNewTray.Size = new System.Drawing.Size(20, 20);
     this.paNewTray.TabIndex = 1;
     this.paNewTray.DragDrop += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragDrop);
     this.paNewTray.DragEnter += new System.Windows.Forms.DragEventHandler(this.paNewTray_DragEnter);
     //
     // btRefresh
     //
     this.btRefresh.Location = new System.Drawing.Point(8, 11);
     this.btRefresh.Name = "btRefresh";
     this.btRefresh.Size = new System.Drawing.Size(75, 23);
     this.btRefresh.TabIndex = 0;
     this.btRefresh.Text = "Refrescar";
     this.btRefresh.Click += new System.EventHandler(this.btRefresh_Click);
     //
     // splitter1
     //
     this.splitter1.Location = new System.Drawing.Point(226, 0);
     this.splitter1.Name = "splitter1";
     this.splitter1.Size = new System.Drawing.Size(5, 493);
     this.splitter1.TabIndex = 10;
     this.splitter1.TabStop = false;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.gbApprove);
     this.panel5.Controls.Add(this.paAuthorization);
     this.panel5.Controls.Add(this.gbReview);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel5.Location = new System.Drawing.Point(231, 444);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(985, 49);
     this.panel5.TabIndex = 10;
     //
     // gbApprove
     //
     this.gbApprove.Controls.Add(this.laDate_approved);
     this.gbApprove.Controls.Add(this.laUser_approved);
     this.gbApprove.Controls.Add(this.label13);
     this.gbApprove.Controls.Add(this.label7);
     this.gbApprove.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbApprove.Location = new System.Drawing.Point(11, 6);
     this.gbApprove.Name = "gbApprove";
     this.gbApprove.Size = new System.Drawing.Size(267, 38);
     this.gbApprove.TabIndex = 4;
     this.gbApprove.TabStop = false;
     this.gbApprove.Text = "Aprobación";
     this.gbApprove.Visible = false;
     //
     // laDate_approved
     //
     this.laDate_approved.AutoSize = true;
     this.laDate_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_approved.Location = new System.Drawing.Point(153, 16);
     this.laDate_approved.Name = "laDate_approved";
     this.laDate_approved.Size = new System.Drawing.Size(47, 13);
     this.laDate_approved.TabIndex = 3;
     this.laDate_approved.Text = "[fecha]";
     //
     // laUser_approved
     //
     this.laUser_approved.AutoSize = true;
     this.laUser_approved.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_approved.Location = new System.Drawing.Point(58, 16);
     this.laUser_approved.Name = "laUser_approved";
     this.laUser_approved.Size = new System.Drawing.Size(39, 13);
     this.laUser_approved.TabIndex = 3;
     this.laUser_approved.Text = "[user]";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(103, 16);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(46, 13);
     this.label13.TabIndex = 2;
     this.label13.Text = "Fecha:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(6, 16);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(54, 13);
     this.label7.TabIndex = 2;
     this.label7.Text = "Usuario:";
     //
     // paAuthorization
     //
     this.paAuthorization.Controls.Add(this.ucSign1);
     this.paAuthorization.Dock = System.Windows.Forms.DockStyle.Right;
     this.paAuthorization.Location = new System.Drawing.Point(811, 0);
     this.paAuthorization.Name = "paAuthorization";
     this.paAuthorization.Padding = new System.Windows.Forms.Padding(0, 19, 5, 14);
     this.paAuthorization.Size = new System.Drawing.Size(174, 49);
     this.paAuthorization.TabIndex = 5;
     this.paAuthorization.Visible = false;
     //
     // ucSign1
     //
     this.ucSign1.Location = new System.Drawing.Point(8, 5);
     this.ucSign1.Margin = new System.Windows.Forms.Padding(0);
     this.ucSign1.Name = "ucSign1";
     this.ucSign1.Pwd = null;
     this.ucSign1.Size = new System.Drawing.Size(160, 39);
     this.ucSign1.TabIndex = 13;
     this.ucSign1.Title = "Firmar";
     this.ucSign1.OnSign += new LimsProject.sign(this.ucSign1_OnSign);
     //
     // gbReview
     //
     this.gbReview.Controls.Add(this.laDate_revised);
     this.gbReview.Controls.Add(this.laUser_revised);
     this.gbReview.Controls.Add(this.label28);
     this.gbReview.Controls.Add(this.label29);
     this.gbReview.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gbReview.Location = new System.Drawing.Point(284, 6);
     this.gbReview.Name = "gbReview";
     this.gbReview.Size = new System.Drawing.Size(269, 38);
     this.gbReview.TabIndex = 4;
     this.gbReview.TabStop = false;
     this.gbReview.Text = "Revisión";
     this.gbReview.Visible = false;
     //
     // laDate_revised
     //
     this.laDate_revised.AutoSize = true;
     this.laDate_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laDate_revised.Location = new System.Drawing.Point(158, 16);
     this.laDate_revised.Name = "laDate_revised";
     this.laDate_revised.Size = new System.Drawing.Size(47, 13);
     this.laDate_revised.TabIndex = 3;
     this.laDate_revised.Text = "[fecha]";
     //
     // laUser_revised
     //
     this.laUser_revised.AutoSize = true;
     this.laUser_revised.ForeColor = System.Drawing.Color.DarkGoldenrod;
     this.laUser_revised.Location = new System.Drawing.Point(57, 16);
     this.laUser_revised.Name = "laUser_revised";
     this.laUser_revised.Size = new System.Drawing.Size(39, 13);
     this.laUser_revised.TabIndex = 3;
     this.laUser_revised.Text = "[user]";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(112, 16);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(46, 13);
     this.label28.TabIndex = 2;
     this.label28.Text = "Fecha:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 16);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(54, 13);
     this.label29.TabIndex = 2;
     this.label29.Text = "Usuario:";
     //
     // tbStd
     //
     this.tbStd.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbStd.Location = new System.Drawing.Point(62, 28);
     this.tbStd.Name = "tbStd";
     this.tbStd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbStd.Size = new System.Drawing.Size(57, 20);
     this.tbStd.TabIndex = 1;
     this.tbStd.Leave += new System.EventHandler(this.tbStd_Leave);
     //
     // tbAbs
     //
     this.tbAbs.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.tbAbs.Location = new System.Drawing.Point(62, 5);
     this.tbAbs.Name = "tbAbs";
     this.tbAbs.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, false, false, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbAbs.Size = new System.Drawing.Size(57, 20);
     this.tbAbs.TabIndex = 0;
     this.tbAbs.Leave += new System.EventHandler(this.tbAbs_Leave);
     //
     // btRegAbsStd
     //
     this.btRegAbsStd.Location = new System.Drawing.Point(125, 26);
     this.btRegAbsStd.Name = "btRegAbsStd";
     this.btRegAbsStd.Size = new System.Drawing.Size(61, 23);
     this.btRegAbsStd.TabIndex = 2;
     this.btRegAbsStd.Text = "Registrar";
     this.btRegAbsStd.Click += new System.EventHandler(this.btRegAbsStd_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(10, 31);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(45, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Std Ver:";
     //
     // panel6
     //
     this.panel6.Controls.Add(this.tbTitle);
     this.panel6.Controls.Add(this.label16);
     this.panel6.Controls.Add(this.tbCodMethod);
     this.panel6.Controls.Add(this.tbAbbreviation);
     this.panel6.Controls.Add(this.label12);
     this.panel6.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel6.Location = new System.Drawing.Point(375, 2);
     this.panel6.Name = "panel6";
     this.panel6.Size = new System.Drawing.Size(434, 43);
     this.panel6.TabIndex = 14;
     //
     // tbTitle
     //
     this.tbTitle.Location = new System.Drawing.Point(137, 6);
     this.tbTitle.Name = "tbTitle";
     this.tbTitle.Properties.ReadOnly = true;
     this.tbTitle.Size = new System.Drawing.Size(288, 33);
     this.tbTitle.TabIndex = 6;
     this.tbTitle.TabStop = false;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Location = new System.Drawing.Point(71, 4);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(61, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "Abreviatura";
     //
     // tbCodMethod
     //
     this.tbCodMethod.Location = new System.Drawing.Point(4, 19);
     this.tbCodMethod.Name = "tbCodMethod";
     this.tbCodMethod.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Ellipsis, "", -1, true, true, true, DevExpress.Utils.HorzAlignment.Center, null)});
     this.tbCodMethod.Properties.ReadOnly = true;
     this.tbCodMethod.Size = new System.Drawing.Size(61, 20);
     this.tbCodMethod.TabIndex = 13;
     this.tbCodMethod.TabStop = false;
     this.tbCodMethod.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.tbCodMethod_ButtonClick);
     //
     // tbAbbreviation
     //
     this.tbAbbreviation.Location = new System.Drawing.Point(66, 19);
     this.tbAbbreviation.Name = "tbAbbreviation";
     this.tbAbbreviation.Properties.ReadOnly = true;
     this.tbAbbreviation.Size = new System.Drawing.Size(70, 20);
     this.tbAbbreviation.TabIndex = 7;
     this.tbAbbreviation.TabStop = false;
     //
     // 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(15, 4);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(40, 13);
     this.label12.TabIndex = 1;
     this.label12.Text = "Código";
     //
     // panel4
     //
     this.panel4.Controls.Add(this.ucSignCloseTray);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(809, 2);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(170, 43);
     this.panel4.TabIndex = 12;
     //
     // ucSignCloseTray
     //
     this.ucSignCloseTray.Location = new System.Drawing.Point(6, 1);
     this.ucSignCloseTray.Margin = new System.Windows.Forms.Padding(0);
     this.ucSignCloseTray.Name = "ucSignCloseTray";
     this.ucSignCloseTray.Pwd = null;
     this.ucSignCloseTray.Size = new System.Drawing.Size(158, 40);
     this.ucSignCloseTray.TabIndex = 12;
     this.ucSignCloseTray.Title = "Cerrar bandeja";
     this.ucSignCloseTray.OnSign += new LimsProject.sign(this.ucSignCloseTray_OnSign);
     //
     // laTitleModule
     //
     this.laTitleModule.AutoSize = true;
     this.laTitleModule.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.laTitleModule.Location = new System.Drawing.Point(0, 1);
     this.laTitleModule.Margin = new System.Windows.Forms.Padding(0);
     this.laTitleModule.Name = "laTitleModule";
     this.laTitleModule.Size = new System.Drawing.Size(57, 20);
     this.laTitleModule.TabIndex = 10;
     this.laTitleModule.Text = "label7";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(10, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 2;
     this.label5.Text = "Abs1 Std:";
     //
     // tbUnitMeasure
     //
     this.tbUnitMeasure.Location = new System.Drawing.Point(284, 28);
     this.tbUnitMeasure.Name = "tbUnitMeasure";
     this.tbUnitMeasure.Properties.ReadOnly = true;
     this.tbUnitMeasure.Size = new System.Drawing.Size(31, 20);
     this.tbUnitMeasure.TabIndex = 9;
     this.tbUnitMeasure.TabStop = false;
     //
     // tbLawMri
     //
     this.tbLawMri.Location = new System.Drawing.Point(225, 28);
     this.tbLawMri.Name = "tbLawMri";
     this.tbLawMri.Properties.ReadOnly = true;
     this.tbLawMri.Size = new System.Drawing.Size(56, 20);
     this.tbLawMri.TabIndex = 9;
     this.tbLawMri.TabStop = false;
     //
     // tbSdMr
     //
     this.tbSdMr.Location = new System.Drawing.Point(353, 28);
     this.tbSdMr.Name = "tbSdMr";
     this.tbSdMr.Properties.ReadOnly = true;
     this.tbSdMr.Size = new System.Drawing.Size(75, 20);
     this.tbSdMr.TabIndex = 9;
     this.tbSdMr.TabStop = false;
     //
     // tbSdBlk
     //
     this.tbSdBlk.Location = new System.Drawing.Point(353, 5);
     this.tbSdBlk.Name = "tbSdBlk";
     this.tbSdBlk.Properties.ReadOnly = true;
     this.tbSdBlk.Size = new System.Drawing.Size(75, 20);
     this.tbSdBlk.TabIndex = 9;
     this.tbSdBlk.TabStop = false;
     //
     // tbMri
     //
     this.tbMri.Location = new System.Drawing.Point(225, 5);
     this.tbMri.Name = "tbMri";
     this.tbMri.Properties.ReadOnly = true;
     this.tbMri.Size = new System.Drawing.Size(56, 20);
     this.tbMri.TabIndex = 9;
     this.tbMri.TabStop = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Location = new System.Drawing.Point(194, 31);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(27, 13);
     this.label18.TabIndex = 4;
     this.label18.Text = "Ley:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(434, 31);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(77, 13);
     this.label15.TabIndex = 4;
     this.label15.Text = "Error permitido:";
     //
     // tbErrorAllowed
     //
     this.tbErrorAllowed.Location = new System.Drawing.Point(514, 28);
     this.tbErrorAllowed.Name = "tbErrorAllowed";
     this.tbErrorAllowed.Properties.ReadOnly = true;
     this.tbErrorAllowed.Size = new System.Drawing.Size(52, 20);
     this.tbErrorAllowed.TabIndex = 5;
     this.tbErrorAllowed.TabStop = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Location = new System.Drawing.Point(320, 8);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(31, 13);
     this.label20.TabIndex = 2;
     this.label20.Text = "LRB:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Location = new System.Drawing.Point(320, 31);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(30, 13);
     this.label19.TabIndex = 2;
     this.label19.Text = "MRI:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Location = new System.Drawing.Point(194, 9);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(24, 13);
     this.label17.TabIndex = 2;
     this.label17.Text = "Mri:";
     //
     // deDate_allowed_error
     //
     this.deDate_allowed_error.EditValue = null;
     this.deDate_allowed_error.Location = new System.Drawing.Point(477, 5);
     this.deDate_allowed_error.Name = "deDate_allowed_error";
     this.deDate_allowed_error.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.deDate_allowed_error.Properties.ReadOnly = true;
     this.deDate_allowed_error.Size = new System.Drawing.Size(89, 20);
     this.deDate_allowed_error.TabIndex = 3;
     this.deDate_allowed_error.TabStop = false;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Location = new System.Drawing.Point(434, 6);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(40, 13);
     this.label14.TabIndex = 2;
     this.label14.Text = "Fecha:";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.paQaqc2);
     this.panelControl1.Controls.Add(this.paQaqc1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(231, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(985, 103);
     this.panelControl1.TabIndex = 11;
     this.panelControl1.Text = "panelControl1";
     //
     // paQaqc2
     //
     this.paQaqc2.Controls.Add(this.deDate_allowed_error);
     this.paQaqc2.Controls.Add(this.tbSdBlk);
     this.paQaqc2.Controls.Add(this.tbStd);
     this.paQaqc2.Controls.Add(this.tbMri);
     this.paQaqc2.Controls.Add(this.tbSdMr);
     this.paQaqc2.Controls.Add(this.tbAbs);
     this.paQaqc2.Controls.Add(this.label18);
     this.paQaqc2.Controls.Add(this.label14);
     this.paQaqc2.Controls.Add(this.tbLawMri);
     this.paQaqc2.Controls.Add(this.btRegAbsStd);
     this.paQaqc2.Controls.Add(this.label15);
     this.paQaqc2.Controls.Add(this.label17);
     this.paQaqc2.Controls.Add(this.tbUnitMeasure);
     this.paQaqc2.Controls.Add(this.label4);
     this.paQaqc2.Controls.Add(this.tbErrorAllowed);
     this.paQaqc2.Controls.Add(this.label19);
     this.paQaqc2.Controls.Add(this.label5);
     this.paQaqc2.Controls.Add(this.label20);
     this.paQaqc2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.paQaqc2.Enabled = false;
     this.paQaqc2.Location = new System.Drawing.Point(2, 49);
     this.paQaqc2.Name = "paQaqc2";
     this.paQaqc2.Size = new System.Drawing.Size(981, 52);
     this.paQaqc2.TabIndex = 17;
     this.paQaqc2.Text = "paQaqc2";
     //
     // paQaqc1
     //
     this.paQaqc1.Appearance.BackColor = System.Drawing.Color.LightSteelBlue;
     this.paQaqc1.Appearance.Options.UseBackColor = true;
     this.paQaqc1.Controls.Add(this.panel6);
     this.paQaqc1.Controls.Add(this.panel4);
     this.paQaqc1.Controls.Add(this.panel7);
     this.paQaqc1.Dock = System.Windows.Forms.DockStyle.Top;
     this.paQaqc1.Location = new System.Drawing.Point(2, 2);
     this.paQaqc1.Name = "paQaqc1";
     this.paQaqc1.Size = new System.Drawing.Size(981, 47);
     this.paQaqc1.TabIndex = 16;
     this.paQaqc1.Text = "paTitle2";
     //
     // panel7
     //
     this.panel7.Controls.Add(this.laTitleModule);
     this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel7.Location = new System.Drawing.Point(2, 2);
     this.panel7.Name = "panel7";
     this.panel7.Size = new System.Drawing.Size(977, 43);
     this.panel7.TabIndex = 15;
     //
     // img32x32
     //
     this.img32x32.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("img32x32.ImageStream")));
     this.img32x32.TransparentColor = System.Drawing.Color.Transparent;
     this.img32x32.Images.SetKeyName(0, "add_file.png");
     //
     // FormNewQaQc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1230, 643);
     this.Name = "FormNewQaQc";
     this.Text = "Módulo de QaQc";
     this.Load += new System.EventHandler(this.FormQaQc_Load);
     this.paTitleSearch.ResumeLayout(false);
     this.paTopBasicButtons.ResumeLayout(false);
     this.paTopSearch.ResumeLayout(false);
     this.paBottomSearch.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.paSearchGen.ResumeLayout(false);
     this.paSearchGen.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.paInferior.ResumeLayout(false);
     this.paTitulo.ResumeLayout(false);
     this.paCentral.ResumeLayout(false);
     this.thePanelTab1.ResumeLayout(false);
     this.tpDatos.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gcBachCalc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bgvBatchCalc2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_Previous_par)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDes_Sample)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repCheckDilution)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowPopup)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_parity)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_approve)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_review)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_StatusResult)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_ShowObs)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repQaqc_HasRetest)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repProcedence2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayWaiting)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repRepetition)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repHour)).EndInit();
     this.expandablePanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tabTreeQaqc)).EndInit();
     this.tabTreeQaqc.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     this.groupControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationWait.Properties)).EndInit();
     this.xtraTabPage5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeTrayFinished)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paListAuthorization)).EndInit();
     this.paListAuthorization.ResumeLayout(false);
     this.paListAuthorization.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbAuthorizationApproved.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paHistoryFilter)).EndInit();
     this.paHistoryFilter.ResumeLayout(false);
     this.paHistoryFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txYear.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbTypeSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbCompany.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckSample.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckCompany.Properties)).EndInit();
     this.panel9.ResumeLayout(false);
     this.panel9.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.deFrom.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deUntil.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.paButtons)).EndInit();
     this.paButtons.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.gbApprove.ResumeLayout(false);
     this.gbApprove.PerformLayout();
     this.paAuthorization.ResumeLayout(false);
     this.gbReview.ResumeLayout(false);
     this.gbReview.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbStd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbs.Properties)).EndInit();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbTitle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbCodMethod.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbAbbreviation.Properties)).EndInit();
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.tbUnitMeasure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbLawMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdMr.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbSdBlk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbMri.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.tbErrorAllowed.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deDate_allowed_error.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc2)).EndInit();
     this.paQaqc2.ResumeLayout(false);
     this.paQaqc2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.paQaqc1)).EndInit();
     this.paQaqc1.ResumeLayout(false);
     this.panel7.ResumeLayout(false);
     this.panel7.PerformLayout();
     this.ResumeLayout(false);
 }
Beispiel #37
0
        /// <summary>
        /// 创建TreeList控件
        /// </summary>
        /// <param name="treeList"></param>
        private void CreateTreeListColumnControl(TreeList treeList)
        {
            treeList.Dock = DockStyle.Fill;
            treeList.OptionsBehavior.Editable = false;
            treeList.LookAndFeel.UseDefaultLookAndFeel = false;
            treeList.LookAndFeel.UseWindowsXPTheme = true;
            treeList.OptionsView.ShowColumns = false;
            treeList.OptionsView.ShowIndicator = false;
            var column1 = new DevExpress.XtraTreeList.Columns.TreeListColumn
            {
                FieldName = "Material_Id",
                MinWidth = 38,
                Name = "column1",
                VisibleIndex = 2
            };
            column1.Visible = false;
            var column2 = new DevExpress.XtraTreeList.Columns.TreeListColumn
            {
                FieldName = "Id",
                MinWidth = 38,
                Name = "column2",
                VisibleIndex = 3
            };
            column2.Visible = false;
            var column3 = new DevExpress.XtraTreeList.Columns.TreeListColumn
            {
                FieldName = "Parent_Id",
                MinWidth = 38,
                Name = "column3",
                VisibleIndex = 4
            };
            column3.Visible = false;
            var column4 = new DevExpress.XtraTreeList.Columns.TreeListColumn
            {
                FieldName = "BOM_Id",
                MinWidth = 38,
                Name = "column4",
                VisibleIndex = 5
            };
            column4.Visible = false;
            var column5 = new DevExpress.XtraTreeList.Columns.TreeListColumn
            {
                FieldName = "Material_Name",
                MinWidth = 38,
                Name = "MaterialName",
                VisibleIndex = 1
            };
            column5.AppearanceCell.Options.UseTextOptions = true;
            column5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;

            treeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[]
            {
                column1,column2,column4,column3,column5
            });
            treeList.ExpandAll();
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.grbUserInfo = new System.Windows.Forms.GroupBox();
     this.txtDepartment = new DevExpress.XtraEditors.TextEdit();
     this.txtFullName = new DevExpress.XtraEditors.TextEdit();
     this.txtPassword = new DevExpress.XtraEditors.TextEdit();
     this.txtLoginName = new DevExpress.XtraEditors.TextEdit();
     this.lblPassword = new System.Windows.Forms.Label();
     this.txtEmployeeID = new DevExpress.XtraEditors.TextEdit();
     this.lblLoginAccount = new System.Windows.Forms.Label();
     this.lblDepartment = new System.Windows.Forms.Label();
     this.lblEmployeeID = new System.Windows.Forms.Label();
     this.grbDepartment = new System.Windows.Forms.GroupBox();
     this.ckbAllDepartment = new System.Windows.Forms.CheckBox();
     this.grdDepartment = new DevExpress.XtraGrid.GridControl();
     this.grvDepartment = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colDepartmentCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepartmentName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDepViewInfo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ckbDepartmentManage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grbSection = new System.Windows.Forms.GroupBox();
     this.ckbSectionAll = new System.Windows.Forms.CheckBox();
     this.grdSection = new DevExpress.XtraGrid.GridControl();
     this.grvSection = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.colSectionCode = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSectionName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colSectViewInfo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.rpckbSectionManage = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.grbModule = new System.Windows.Forms.GroupBox();
     this.trlObjectList = new DevExpress.XtraTreeList.TreeList();
     this.tlcDescription = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.tlcRight = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.rpeRight = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.ckbAllModule = new System.Windows.Forms.CheckBox();
     this.txtDepartmentID = new DevExpress.XtraEditors.TextEdit();
     this.pnlFWCommand.SuspendLayout();
     this.pnlFWClose.SuspendLayout();
     this.grbUserInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDepartment.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFullName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoginName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeID.Properties)).BeginInit();
     this.grbDepartment.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdDepartment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvDepartment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckbDepartmentManage)).BeginInit();
     this.grbSection.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvSection)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpckbSectionManage)).BeginInit();
     this.grbModule.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.trlObjectList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDepartmentID.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // btnDesignForm
     //
     this.btnDesignForm.Appearance.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnDesignForm.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnDesignForm.Appearance.Options.UseFont = true;
     this.btnDesignForm.Appearance.Options.UseForeColor = true;
     //
     // pnlFWCommand
     //
     this.pnlFWCommand.Location = new System.Drawing.Point(0, 517);
     //
     // btnFWDelete
     //
     this.btnFWDelete.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWDelete.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWDelete.Appearance.Options.UseFont = true;
     this.btnFWDelete.Appearance.Options.UseForeColor = true;
     this.btnFWDelete.LookAndFeel.SkinName = "Blue";
     this.btnFWDelete.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // btnFWSave
     //
     this.btnFWSave.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWSave.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWSave.Appearance.Options.UseFont = true;
     this.btnFWSave.Appearance.Options.UseForeColor = true;
     this.btnFWSave.LookAndFeel.SkinName = "Blue";
     this.btnFWSave.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // btnFWAdd
     //
     this.btnFWAdd.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWAdd.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWAdd.Appearance.Options.UseFont = true;
     this.btnFWAdd.Appearance.Options.UseForeColor = true;
     this.btnFWAdd.LookAndFeel.SkinName = "Blue";
     this.btnFWAdd.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // btnFWClose
     //
     this.btnFWClose.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWClose.Appearance.ForeColor = System.Drawing.SystemColors.MenuText;
     this.btnFWClose.Appearance.Options.UseFont = true;
     this.btnFWClose.Appearance.Options.UseForeColor = true;
     this.btnFWClose.LookAndFeel.SkinName = "Blue";
     this.btnFWClose.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // lblFWDecorateingLine
     //
     this.lblFWDecorateingLine.Location = new System.Drawing.Point(0, 558);
     //
     // btnFWReset
     //
     this.btnFWReset.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnFWReset.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnFWReset.Appearance.Options.UseFont = true;
     this.btnFWReset.Appearance.Options.UseForeColor = true;
     this.btnFWReset.LookAndFeel.SkinName = "Blue";
     this.btnFWReset.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // btnExport
     //
     this.btnExport.Appearance.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold);
     this.btnExport.Appearance.ForeColor = System.Drawing.Color.MidnightBlue;
     this.btnExport.Appearance.Options.UseFont = true;
     this.btnExport.Appearance.Options.UseForeColor = true;
     this.btnExport.LookAndFeel.SkinName = "Blue";
     this.btnExport.LookAndFeel.UseDefaultLookAndFeel = false;
     //
     // grbUserInfo
     //
     this.grbUserInfo.Controls.Add(this.txtDepartment);
     this.grbUserInfo.Controls.Add(this.txtFullName);
     this.grbUserInfo.Controls.Add(this.txtPassword);
     this.grbUserInfo.Controls.Add(this.txtLoginName);
     this.grbUserInfo.Controls.Add(this.lblPassword);
     this.grbUserInfo.Controls.Add(this.txtEmployeeID);
     this.grbUserInfo.Controls.Add(this.lblLoginAccount);
     this.grbUserInfo.Controls.Add(this.lblDepartment);
     this.grbUserInfo.Controls.Add(this.lblEmployeeID);
     this.grbUserInfo.Location = new System.Drawing.Point(3, 3);
     this.grbUserInfo.Name = "grbUserInfo";
     this.grbUserInfo.Size = new System.Drawing.Size(523, 92);
     this.grbUserInfo.TabIndex = 1;
     this.grbUserInfo.TabStop = false;
     this.grbUserInfo.Text = "User information";
     //
     // txtDepartment
     //
     this.txtDepartment.Enabled = false;
     this.txtDepartment.Location = new System.Drawing.Point(128, 62);
     this.txtDepartment.Name = "txtDepartment";
     this.txtDepartment.Properties.MaxLength = 100;
     this.txtDepartment.Size = new System.Drawing.Size(389, 20);
     this.txtDepartment.TabIndex = 9;
     //
     // txtFullName
     //
     this.txtFullName.Enabled = false;
     this.txtFullName.Location = new System.Drawing.Point(265, 11);
     this.txtFullName.Name = "txtFullName";
     this.txtFullName.Properties.MaxLength = 100;
     this.txtFullName.Size = new System.Drawing.Size(252, 20);
     this.txtFullName.TabIndex = 3;
     //
     // txtPassword
     //
     this.txtPassword.EditValue = "xyz";
     this.txtPassword.Location = new System.Drawing.Point(371, 35);
     this.txtPassword.Name = "txtPassword";
     this.txtPassword.Properties.MaxLength = 50;
     this.txtPassword.Properties.PasswordChar = '*';
     this.txtPassword.Properties.UseSystemPasswordChar = true;
     this.txtPassword.Size = new System.Drawing.Size(146, 20);
     this.txtPassword.TabIndex = 7;
     //
     // txtLoginName
     //
     this.txtLoginName.Location = new System.Drawing.Point(128, 35);
     this.txtLoginName.Name = "txtLoginName";
     this.txtLoginName.Properties.MaxLength = 20;
     this.txtLoginName.Size = new System.Drawing.Size(131, 20);
     this.txtLoginName.TabIndex = 5;
     //
     // lblPassword
     //
     this.lblPassword.AutoSize = true;
     this.lblPassword.Location = new System.Drawing.Point(275, 42);
     this.lblPassword.Name = "lblPassword";
     this.lblPassword.Size = new System.Drawing.Size(57, 13);
     this.lblPassword.TabIndex = 6;
     this.lblPassword.Text = "Password:"******"txtEmployeeID";
     this.txtEmployeeID.Properties.Appearance.BackColor = System.Drawing.SystemColors.Info;
     this.txtEmployeeID.Properties.Appearance.Options.UseBackColor = true;
     this.txtEmployeeID.Properties.MaxLength = 20;
     this.txtEmployeeID.Size = new System.Drawing.Size(131, 20);
     this.txtEmployeeID.TabIndex = 2;
     this.txtEmployeeID.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txtEmployeeID_KeyUp);
     this.txtEmployeeID.Leave += new System.EventHandler(this.txtEmployeeID_Leave);
     //
     // lblLoginAccount
     //
     this.lblLoginAccount.AutoSize = true;
     this.lblLoginAccount.Location = new System.Drawing.Point(9, 42);
     this.lblLoginAccount.Name = "lblLoginAccount";
     this.lblLoginAccount.Size = new System.Drawing.Size(77, 13);
     this.lblLoginAccount.TabIndex = 4;
     this.lblLoginAccount.Text = "Login account:";
     //
     // lblDepartment
     //
     this.lblDepartment.AutoSize = true;
     this.lblDepartment.Location = new System.Drawing.Point(9, 69);
     this.lblDepartment.Name = "lblDepartment";
     this.lblDepartment.Size = new System.Drawing.Size(68, 13);
     this.lblDepartment.TabIndex = 8;
     this.lblDepartment.Text = "Department:";
     //
     // lblEmployeeID
     //
     this.lblEmployeeID.AutoSize = true;
     this.lblEmployeeID.Location = new System.Drawing.Point(9, 18);
     this.lblEmployeeID.Name = "lblEmployeeID";
     this.lblEmployeeID.Size = new System.Drawing.Size(61, 13);
     this.lblEmployeeID.TabIndex = 1;
     this.lblEmployeeID.Text = "First name:";
     //
     // grbDepartment
     //
     this.grbDepartment.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     | System.Windows.Forms.AnchorStyles.Left)));
     this.grbDepartment.Controls.Add(this.ckbAllDepartment);
     this.grbDepartment.Controls.Add(this.grdDepartment);
     this.grbDepartment.Location = new System.Drawing.Point(3, 94);
     this.grbDepartment.Name = "grbDepartment";
     this.grbDepartment.Size = new System.Drawing.Size(390, 212);
     this.grbDepartment.TabIndex = 2;
     this.grbDepartment.TabStop = false;
     this.grbDepartment.Text = "Department right";
     //
     // ckbAllDepartment
     //
     this.ckbAllDepartment.Location = new System.Drawing.Point(298, 13);
     this.ckbAllDepartment.Name = "ckbAllDepartment";
     this.ckbAllDepartment.Size = new System.Drawing.Size(86, 17);
     this.ckbAllDepartment.TabIndex = 59;
     this.ckbAllDepartment.Text = "All";
     this.ckbAllDepartment.UseVisualStyleBackColor = true;
     this.ckbAllDepartment.CheckedChanged += new System.EventHandler(this.ckbAllDepartment_CheckedChanged);
     //
     // grdDepartment
     //
     this.grdDepartment.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.grdDepartment.Location = new System.Drawing.Point(4, 36);
     this.grdDepartment.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grdDepartment.MainView = this.grvDepartment;
     this.grdDepartment.Name = "grdDepartment";
     this.grdDepartment.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.ckbDepartmentManage});
     this.grdDepartment.Size = new System.Drawing.Size(381, 171);
     this.grdDepartment.TabIndex = 58;
     this.grdDepartment.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grvDepartment});
     //
     // grvDepartment
     //
     this.grvDepartment.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colDepartmentCode,
     this.colDepartmentName,
     this.colDepViewInfo});
     this.grvDepartment.GridControl = this.grdDepartment;
     this.grvDepartment.Name = "grvDepartment";
     this.grvDepartment.OptionsSelection.MultiSelect = true;
     this.grvDepartment.OptionsView.ColumnAutoWidth = false;
     this.grvDepartment.OptionsView.ShowGroupPanel = false;
     this.grvDepartment.SelectionChanged += new DevExpress.Data.SelectionChangedEventHandler(this.grvDepartment_SelectionChanged);
     //
     // colDepartmentCode
     //
     this.colDepartmentCode.Caption = "Code";
     this.colDepartmentCode.FieldName = "DepartmentCode";
     this.colDepartmentCode.Name = "colDepartmentCode";
     this.colDepartmentCode.Visible = true;
     this.colDepartmentCode.VisibleIndex = 0;
     this.colDepartmentCode.Width = 92;
     //
     // colDepartmentName
     //
     this.colDepartmentName.Caption = "Department";
     this.colDepartmentName.FieldName = "DepartmentName";
     this.colDepartmentName.Name = "colDepartmentName";
     this.colDepartmentName.Visible = true;
     this.colDepartmentName.VisibleIndex = 1;
     this.colDepartmentName.Width = 193;
     //
     // colDepViewInfo
     //
     this.colDepViewInfo.Caption = "Manage right";
     this.colDepViewInfo.ColumnEdit = this.ckbDepartmentManage;
     this.colDepViewInfo.FieldName = "ViewInfo";
     this.colDepViewInfo.Name = "colDepViewInfo";
     this.colDepViewInfo.Visible = true;
     this.colDepViewInfo.VisibleIndex = 2;
     //
     // ckbDepartmentManage
     //
     this.ckbDepartmentManage.AutoHeight = false;
     this.ckbDepartmentManage.Name = "ckbDepartmentManage";
     this.ckbDepartmentManage.ValueGrayed = false;
     //
     // grbSection
     //
     this.grbSection.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.grbSection.Controls.Add(this.ckbSectionAll);
     this.grbSection.Controls.Add(this.grdSection);
     this.grbSection.Location = new System.Drawing.Point(3, 306);
     this.grbSection.Name = "grbSection";
     this.grbSection.Size = new System.Drawing.Size(390, 212);
     this.grbSection.TabIndex = 55;
     this.grbSection.TabStop = false;
     this.grbSection.Text = "Section right";
     //
     // ckbSectionAll
     //
     this.ckbSectionAll.Location = new System.Drawing.Point(298, 10);
     this.ckbSectionAll.Name = "ckbSectionAll";
     this.ckbSectionAll.Size = new System.Drawing.Size(86, 17);
     this.ckbSectionAll.TabIndex = 59;
     this.ckbSectionAll.Text = "All";
     this.ckbSectionAll.UseVisualStyleBackColor = true;
     this.ckbSectionAll.Click += new System.EventHandler(this.ckbSectionAll_Click);
     //
     // grdSection
     //
     this.grdSection.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)));
     gridLevelNode1.RelationName = "Level1";
     this.grdSection.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.grdSection.Location = new System.Drawing.Point(4, 33);
     this.grdSection.LookAndFeel.UseDefaultLookAndFeel = false;
     this.grdSection.MainView = this.grvSection;
     this.grdSection.Name = "grdSection";
     this.grdSection.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rpckbSectionManage});
     this.grdSection.Size = new System.Drawing.Size(381, 174);
     this.grdSection.TabIndex = 58;
     this.grdSection.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.grvSection});
     //
     // grvSection
     //
     this.grvSection.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colSectionCode,
     this.colSectionName,
     this.colSectViewInfo});
     this.grvSection.GridControl = this.grdSection;
     this.grvSection.Name = "grvSection";
     this.grvSection.OptionsSelection.MultiSelect = true;
     this.grvSection.OptionsView.ColumnAutoWidth = false;
     this.grvSection.OptionsView.ShowGroupPanel = false;
     //
     // colSectionCode
     //
     this.colSectionCode.Caption = "Code";
     this.colSectionCode.FieldName = "SectionCode";
     this.colSectionCode.Name = "colSectionCode";
     this.colSectionCode.Visible = true;
     this.colSectionCode.VisibleIndex = 0;
     this.colSectionCode.Width = 89;
     //
     // colSectionName
     //
     this.colSectionName.Caption = "Section";
     this.colSectionName.FieldName = "SectionName";
     this.colSectionName.Name = "colSectionName";
     this.colSectionName.Visible = true;
     this.colSectionName.VisibleIndex = 1;
     this.colSectionName.Width = 196;
     //
     // colSectViewInfo
     //
     this.colSectViewInfo.Caption = "Manage right";
     this.colSectViewInfo.ColumnEdit = this.rpckbSectionManage;
     this.colSectViewInfo.FieldName = "ViewInfo";
     this.colSectViewInfo.Name = "colSectViewInfo";
     this.colSectViewInfo.Visible = true;
     this.colSectViewInfo.VisibleIndex = 2;
     this.colSectViewInfo.Width = 65;
     //
     // rpckbSectionManage
     //
     this.rpckbSectionManage.AutoHeight = false;
     this.rpckbSectionManage.Name = "rpckbSectionManage";
     this.rpckbSectionManage.ValueGrayed = false;
     this.rpckbSectionManage.CheckedChanged += new System.EventHandler(this.rpckbSectionManage_CheckedChanged);
     //
     // grbModule
     //
     this.grbModule.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.grbModule.Controls.Add(this.trlObjectList);
     this.grbModule.Controls.Add(this.ckbAllModule);
     this.grbModule.Location = new System.Drawing.Point(399, 94);
     this.grbModule.Name = "grbModule";
     this.grbModule.Size = new System.Drawing.Size(392, 419);
     this.grbModule.TabIndex = 3;
     this.grbModule.TabStop = false;
     this.grbModule.Text = "Modules right";
     //
     // trlObjectList
     //
     this.trlObjectList.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.trlObjectList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tlcDescription,
     this.tlcRight});
     this.trlObjectList.KeyFieldName = "ObjectID";
     this.trlObjectList.Location = new System.Drawing.Point(6, 36);
     this.trlObjectList.Name = "trlObjectList";
     this.trlObjectList.ParentFieldName = "ParentObjectID";
     this.trlObjectList.PreviewFieldName = "Description";
     this.trlObjectList.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.rpeRight});
     this.trlObjectList.Size = new System.Drawing.Size(380, 377);
     this.trlObjectList.TabIndex = 60;
     //
     // tlcDescription
     //
     this.tlcDescription.Caption = "Description";
     this.tlcDescription.FieldName = "Description";
     this.tlcDescription.MinWidth = 56;
     this.tlcDescription.Name = "tlcDescription";
     this.tlcDescription.Visible = true;
     this.tlcDescription.VisibleIndex = 0;
     this.tlcDescription.Width = 249;
     //
     // tlcRight
     //
     this.tlcRight.Caption = "Right";
     this.tlcRight.ColumnEdit = this.rpeRight;
     this.tlcRight.FieldName = "Right";
     this.tlcRight.Name = "tlcRight";
     this.tlcRight.Visible = true;
     this.tlcRight.VisibleIndex = 1;
     this.tlcRight.Width = 110;
     //
     // rpeRight
     //
     this.rpeRight.AutoHeight = false;
     this.rpeRight.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.rpeRight.DisplayMember = "RightName";
     this.rpeRight.Name = "rpeRight";
     this.rpeRight.ValueMember = "ID";
     //
     // ckbAllModule
     //
     this.ckbAllModule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.ckbAllModule.Location = new System.Drawing.Point(300, 13);
     this.ckbAllModule.Name = "ckbAllModule";
     this.ckbAllModule.Size = new System.Drawing.Size(83, 17);
     this.ckbAllModule.TabIndex = 59;
     this.ckbAllModule.Text = "All";
     this.ckbAllModule.UseVisualStyleBackColor = true;
     this.ckbAllModule.CheckedChanged += new System.EventHandler(this.ckbAllModule_CheckedChanged);
     //
     // txtDepartmentID
     //
     this.txtDepartmentID.Location = new System.Drawing.Point(372, 39);
     this.txtDepartmentID.Name = "txtDepartmentID";
     this.txtDepartmentID.Properties.MaxLength = 20;
     this.txtDepartmentID.Properties.PasswordChar = '*';
     this.txtDepartmentID.Size = new System.Drawing.Size(146, 20);
     this.txtDepartmentID.TabIndex = 3;
     //
     // UserRight
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(794, 560);
     this.Controls.Add(this.grbUserInfo);
     this.Controls.Add(this.grbDepartment);
     this.Controls.Add(this.grbSection);
     this.Controls.Add(this.grbModule);
     this.Controls.Add(this.txtDepartmentID);
     this.LookAndFeel.SkinName = "Seven";
     this.LookAndFeel.UseDefaultLookAndFeel = false;
     this.Name = "UserRight";
     this.Text = "UserRight";
     this.Controls.SetChildIndex(this.txtDepartmentID, 0);
     this.Controls.SetChildIndex(this.grbModule, 0);
     this.Controls.SetChildIndex(this.grbSection, 0);
     this.Controls.SetChildIndex(this.grbDepartment, 0);
     this.Controls.SetChildIndex(this.grbUserInfo, 0);
     this.Controls.SetChildIndex(this.lblFWDecorateingLine, 0);
     this.Controls.SetChildIndex(this.pnlFWCommand, 0);
     this.pnlFWCommand.ResumeLayout(false);
     this.pnlFWClose.ResumeLayout(false);
     this.grbUserInfo.ResumeLayout(false);
     this.grbUserInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDepartment.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtFullName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtPassword.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtLoginName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEmployeeID.Properties)).EndInit();
     this.grbDepartment.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdDepartment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvDepartment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckbDepartmentManage)).EndInit();
     this.grbSection.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grvSection)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpckbSectionManage)).EndInit();
     this.grbModule.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.trlObjectList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rpeRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDepartmentID.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.TreeDin = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
     this.dbEatery = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.dbEateyTime = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemTimeEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repositoryItemGridLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
     this.gridView7 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.dbMenu = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.dbMoney = new DevExpress.XtraGrid.GridControl();
     this.gridView3 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.dbDev = new DevExpress.XtraGrid.GridControl();
     this.gridView4 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.checkEdit14 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit13 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit12 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit11 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit10 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit9 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit8 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit7 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit6 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit5 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.cboOk = new DevExpress.XtraEditors.CheckEdit();
     this.cboEateryType = new System.Windows.Forms.ComboBox();
     this.txtRemark = new DevExpress.XtraEditors.TextEdit();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.txtSZMoney = new DevExpress.XtraEditors.TextEdit();
     this.txtTimeMoney = new DevExpress.XtraEditors.TextEdit();
     this.txtDateCount = new DevExpress.XtraEditors.TextEdit();
     this.txtDateMax = new DevExpress.XtraEditors.TextEdit();
     this.txtCountMoney = new DevExpress.XtraEditors.TextEdit();
     this.txtTimeMax = new DevExpress.XtraEditors.TextEdit();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.txtCardMax = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.txtDinName = new DevExpress.XtraEditors.TextEdit();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.BtCancel = new DevExpress.XtraEditors.SimpleButton();
     this.btnDinSave = new DevExpress.XtraEditors.SimpleButton();
     this.btnDinAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnDinDel = new DevExpress.XtraEditors.SimpleButton();
     this.gridView5 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridView6 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TreeDin)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
     this.panelControl6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
     this.panelControl7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
     this.panelControl8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbEatery)).BeginInit();
     this.dbEatery.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbEateyTime)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbMenu)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbMoney)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).BeginInit();
     this.xtraTabPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
     this.panelControl9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
     this.panelControl10.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit11.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboOk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSZMoney.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimeMoney.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDateCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDateMax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCountMoney.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimeMax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCardMax.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDinName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(803, 653);
     this.panelControl1.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.panelControl4);
     this.panelControl2.Controls.Add(this.panelControl3);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(803, 653);
     this.panelControl2.TabIndex = 0;
     //
     // panelControl4
     //
     this.panelControl4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl4.Controls.Add(this.splitContainerControl1);
     this.panelControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl4.Location = new System.Drawing.Point(2, 50);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(799, 601);
     this.panelControl4.TabIndex = 59;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.TreeDin);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.panelControl6);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(799, 601);
     this.splitContainerControl1.SplitterPosition = 181;
     this.splitContainerControl1.TabIndex = 0;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // TreeDin
     //
     this.TreeDin.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.TreeDin.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn1});
     this.TreeDin.Dock = System.Windows.Forms.DockStyle.Fill;
     this.TreeDin.Location = new System.Drawing.Point(0, 0);
     this.TreeDin.Name = "TreeDin";
     this.TreeDin.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.TreeDin.OptionsView.ShowHorzLines = false;
     this.TreeDin.OptionsView.ShowVertLines = false;
     this.TreeDin.Size = new System.Drawing.Size(181, 601);
     this.TreeDin.TabIndex = 57;
     this.TreeDin.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.TreeDin_FocusedNodeChanged);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "����";
     this.treeListColumn2.FieldName = "����";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "id";
     this.treeListColumn1.FieldName = "id";
     this.treeListColumn1.Name = "treeListColumn1";
     //
     // panelControl6
     //
     this.panelControl6.Controls.Add(this.panelControl7);
     this.panelControl6.Controls.Add(this.panelControl10);
     this.panelControl6.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl6.Location = new System.Drawing.Point(0, 0);
     this.panelControl6.Name = "panelControl6";
     this.panelControl6.Size = new System.Drawing.Size(612, 601);
     this.panelControl6.TabIndex = 3;
     //
     // panelControl7
     //
     this.panelControl7.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl7.Controls.Add(this.panelControl8);
     this.panelControl7.Controls.Add(this.panelControl9);
     this.panelControl7.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl7.Location = new System.Drawing.Point(2, 244);
     this.panelControl7.Name = "panelControl7";
     this.panelControl7.Size = new System.Drawing.Size(608, 355);
     this.panelControl7.TabIndex = 2;
     //
     // panelControl8
     //
     this.panelControl8.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl8.Controls.Add(this.dbEatery);
     this.panelControl8.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl8.Location = new System.Drawing.Point(0, 45);
     this.panelControl8.Name = "panelControl8";
     this.panelControl8.Size = new System.Drawing.Size(608, 310);
     this.panelControl8.TabIndex = 1;
     //
     // dbEatery
     //
     this.dbEatery.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.dbEatery.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbEatery.Location = new System.Drawing.Point(0, 0);
     this.dbEatery.Name = "dbEatery";
     this.dbEatery.SelectedTabPage = this.xtraTabPage1;
     this.dbEatery.Size = new System.Drawing.Size(608, 310);
     this.dbEatery.TabIndex = 1;
     this.dbEatery.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3,
     this.xtraTabPage4});
     this.dbEatery.Tag = "";
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.dbEateyTime);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(599, 279);
     this.xtraTabPage1.Text = "����ʱ��";
     //
     // dbEateyTime
     //
     this.dbEateyTime.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbEateyTime.Location = new System.Drawing.Point(0, 0);
     this.dbEateyTime.MainView = this.gridView1;
     this.dbEateyTime.Name = "dbEateyTime";
     this.dbEateyTime.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemTimeEdit1,
     this.repositoryItemGridLookUpEdit1,
     this.repositoryItemTimeEdit2,
     this.repositoryItemTimeEdit3,
     this.repositoryItemTimeEdit4,
     this.repositoryItemTimeEdit5,
     this.repositoryItemTimeEdit6,
     this.repositoryItemTimeEdit7,
     this.repositoryItemTimeEdit8});
     this.dbEateyTime.Size = new System.Drawing.Size(599, 279);
     this.dbEateyTime.TabIndex = 2;
     this.dbEateyTime.Tag = "@db=����ʱ��";
     this.dbEateyTime.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn35,
     this.gridColumn2,
     this.gridColumn5,
     this.gridColumn36,
     this.gridColumn37,
     this.gridColumn38,
     this.gridColumn39,
     this.gridColumn40,
     this.gridColumn31});
     this.gridView1.GridControl = this.dbEateyTime;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     this.gridView1.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView1_CellValueChanged);
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "����";
     this.gridColumn1.FieldName = "����";
     this.gridColumn1.Name = "gridColumn1";
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "��Ϳ�ʼ";
     this.gridColumn3.ColumnEdit = this.repositoryItemTimeEdit2;
     this.gridColumn3.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn3.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn3.FieldName = "��Ϳ�ʼ";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 1;
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.DisplayFormat.FormatString = "hh:mm:ss";
     this.repositoryItemTimeEdit2.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit2.EditFormat.FormatString = "hh:mm:ss";
     this.repositoryItemTimeEdit2.EditFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.repositoryItemTimeEdit2.LookAndFeel.UseWindowsXPTheme = true;
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "��ͽ���";
     this.gridColumn4.ColumnEdit = this.repositoryItemTimeEdit2;
     this.gridColumn4.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn4.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn4.FieldName = "��ͽ���";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 2;
     //
     // gridColumn35
     //
     this.gridColumn35.Caption = "����";
     this.gridColumn35.FieldName = "����";
     this.gridColumn35.Name = "gridColumn35";
     this.gridColumn35.Visible = true;
     this.gridColumn35.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "����ID";
     this.gridColumn2.FieldName = "����ID";
     this.gridColumn2.Name = "gridColumn2";
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "��Ϳ�ʼ";
     this.gridColumn5.ColumnEdit = this.repositoryItemTimeEdit3;
     this.gridColumn5.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn5.FieldName = "��Ϳ�ʼ";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 5;
     //
     // repositoryItemTimeEdit3
     //
     this.repositoryItemTimeEdit3.AutoHeight = false;
     this.repositoryItemTimeEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit3.Name = "repositoryItemTimeEdit3";
     //
     // gridColumn36
     //
     this.gridColumn36.Caption = "��ͽ���";
     this.gridColumn36.ColumnEdit = this.repositoryItemTimeEdit4;
     this.gridColumn36.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn36.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn36.FieldName = "��ͽ���";
     this.gridColumn36.Name = "gridColumn36";
     this.gridColumn36.Visible = true;
     this.gridColumn36.VisibleIndex = 6;
     //
     // repositoryItemTimeEdit4
     //
     this.repositoryItemTimeEdit4.AutoHeight = false;
     this.repositoryItemTimeEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit4.Name = "repositoryItemTimeEdit4";
     //
     // gridColumn37
     //
     this.gridColumn37.Caption = "ҹ����ʼ";
     this.gridColumn37.ColumnEdit = this.repositoryItemTimeEdit5;
     this.gridColumn37.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn37.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn37.FieldName = "ҹ����ʼ";
     this.gridColumn37.Name = "gridColumn37";
     this.gridColumn37.Visible = true;
     this.gridColumn37.VisibleIndex = 7;
     //
     // repositoryItemTimeEdit5
     //
     this.repositoryItemTimeEdit5.AutoHeight = false;
     this.repositoryItemTimeEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit5.Name = "repositoryItemTimeEdit5";
     //
     // gridColumn38
     //
     this.gridColumn38.Caption = "ҹ������";
     this.gridColumn38.ColumnEdit = this.repositoryItemTimeEdit6;
     this.gridColumn38.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn38.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn38.FieldName = "ҹ������";
     this.gridColumn38.Name = "gridColumn38";
     this.gridColumn38.Visible = true;
     this.gridColumn38.VisibleIndex = 8;
     //
     // repositoryItemTimeEdit6
     //
     this.repositoryItemTimeEdit6.AutoHeight = false;
     this.repositoryItemTimeEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit6.Name = "repositoryItemTimeEdit6";
     //
     // gridColumn39
     //
     this.gridColumn39.Caption = "��Ϳ�ʼ";
     this.gridColumn39.ColumnEdit = this.repositoryItemTimeEdit7;
     this.gridColumn39.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn39.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn39.FieldName = "��Ϳ�ʼ";
     this.gridColumn39.Name = "gridColumn39";
     this.gridColumn39.Visible = true;
     this.gridColumn39.VisibleIndex = 3;
     //
     // repositoryItemTimeEdit7
     //
     this.repositoryItemTimeEdit7.AutoHeight = false;
     this.repositoryItemTimeEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit7.Name = "repositoryItemTimeEdit7";
     //
     // gridColumn40
     //
     this.gridColumn40.Caption = "��ͽ���";
     this.gridColumn40.ColumnEdit = this.repositoryItemTimeEdit8;
     this.gridColumn40.DisplayFormat.FormatString = "HH:mm:ss";
     this.gridColumn40.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime;
     this.gridColumn40.FieldName = "��ͽ���";
     this.gridColumn40.Name = "gridColumn40";
     this.gridColumn40.Visible = true;
     this.gridColumn40.VisibleIndex = 4;
     //
     // repositoryItemTimeEdit8
     //
     this.repositoryItemTimeEdit8.AutoHeight = false;
     this.repositoryItemTimeEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit8.Name = "repositoryItemTimeEdit8";
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // repositoryItemGridLookUpEdit1
     //
     this.repositoryItemGridLookUpEdit1.AutoHeight = false;
     this.repositoryItemGridLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemGridLookUpEdit1.Name = "repositoryItemGridLookUpEdit1";
     this.repositoryItemGridLookUpEdit1.View = this.gridView7;
     //
     // gridView7
     //
     this.gridView7.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridView7.Name = "gridView7";
     this.gridView7.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView7.OptionsView.ShowGroupPanel = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.dbMenu);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(599, 279);
     this.xtraTabPage2.Text = "�˵���ϸ";
     //
     // dbMenu
     //
     this.dbMenu.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbMenu.Location = new System.Drawing.Point(0, 0);
     this.dbMenu.MainView = this.gridView2;
     this.dbMenu.Name = "dbMenu";
     this.dbMenu.Size = new System.Drawing.Size(599, 279);
     this.dbMenu.TabIndex = 0;
     this.dbMenu.Tag = "@db=�˵�";
     this.dbMenu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn32});
     this.gridView2.GridControl = this.dbMenu;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsNavigation.AutoFocusNewRow = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     this.gridView2.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView2_CellValueChanged);
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "����";
     this.gridColumn8.FieldName = "����ID";
     this.gridColumn8.Name = "gridColumn8";
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "�˵�����";
     this.gridColumn9.FieldName = "�˵�����";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 0;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "���";
     this.gridColumn10.FieldName = "���";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 1;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "�۸�";
     this.gridColumn11.FieldName = "�۸�";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 2;
     //
     // gridColumn32
     //
     this.gridColumn32.Caption = "ID";
     this.gridColumn32.FieldName = "ID";
     this.gridColumn32.Name = "gridColumn32";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.dbMoney);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(599, 279);
     this.xtraTabPage3.Text = "������ϸ";
     //
     // dbMoney
     //
     this.dbMoney.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbMoney.Location = new System.Drawing.Point(0, 0);
     this.dbMoney.MainView = this.gridView3;
     this.dbMoney.Name = "dbMoney";
     this.dbMoney.Size = new System.Drawing.Size(599, 279);
     this.dbMoney.TabIndex = 0;
     this.dbMoney.Tag = "@db=��������";
     this.dbMoney.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView3});
     //
     // gridView3
     //
     this.gridView3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView3.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn12,
     this.gridColumn34});
     this.gridView3.GridControl = this.dbMoney;
     this.gridView3.Name = "gridView3";
     this.gridView3.OptionsView.ShowGroupPanel = false;
     this.gridView3.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView3_CellValueChanged);
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "����";
     this.gridColumn6.FieldName = "�������";
     this.gridColumn6.Name = "gridColumn6";
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "���";
     this.gridColumn7.FieldName = "���";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 0;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "���";
     this.gridColumn12.FieldName = "���";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 1;
     //
     // gridColumn34
     //
     this.gridColumn34.Caption = "ID";
     this.gridColumn34.FieldName = "ID";
     this.gridColumn34.Name = "gridColumn34";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.dbDev);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(599, 279);
     this.xtraTabPage4.Text = "���ѻ�";
     //
     // dbDev
     //
     this.dbDev.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dbDev.Location = new System.Drawing.Point(0, 0);
     this.dbDev.MainView = this.gridView4;
     this.dbDev.Name = "dbDev";
     this.dbDev.Size = new System.Drawing.Size(599, 279);
     this.dbDev.TabIndex = 0;
     this.dbDev.Tag = "@db=���ѻ�";
     this.dbDev.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView4});
     //
     // gridView4
     //
     this.gridView4.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.gridView4.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn13,
     this.gridColumn14,
     this.gridColumn30,
     this.gridColumn23,
     this.gridColumn15,
     this.gridColumn29,
     this.gridColumn16,
     this.gridColumn17,
     this.gridColumn18,
     this.gridColumn19,
     this.gridColumn20,
     this.gridColumn21,
     this.gridColumn24,
     this.gridColumn25,
     this.gridColumn26,
     this.gridColumn27,
     this.gridColumn28,
     this.gridColumn33,
     this.gridColumn22,
     this.gridColumn41,
     this.gridColumn42});
     this.gridView4.GridControl = this.dbDev;
     this.gridView4.Name = "gridView4";
     this.gridView4.OptionsPrint.AutoWidth = false;
     this.gridView4.OptionsView.ColumnAutoWidth = false;
     this.gridView4.OptionsView.ShowGroupPanel = false;
     this.gridView4.CellValueChanged += new DevExpress.XtraGrid.Views.Base.CellValueChangedEventHandler(this.gridView4_CellValueChanged);
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "�豸����";
     this.gridColumn13.FieldName = "�豸";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 0;
     //
     // gridColumn14
     //
     this.gridColumn14.Caption = "���";
     this.gridColumn14.FieldName = "���";
     this.gridColumn14.Name = "gridColumn14";
     //
     // gridColumn30
     //
     this.gridColumn30.Caption = "����";
     this.gridColumn30.FieldName = "��������";
     this.gridColumn30.Name = "gridColumn30";
     //
     // gridColumn23
     //
     this.gridColumn23.Caption = "����";
     this.gridColumn23.FieldName = "����";
     this.gridColumn23.Name = "gridColumn23";
     this.gridColumn23.Visible = true;
     this.gridColumn23.VisibleIndex = 1;
     //
     // gridColumn15
     //
     this.gridColumn15.Caption = "IP��ַ";
     this.gridColumn15.FieldName = "IP��ַ";
     this.gridColumn15.Name = "gridColumn15";
     this.gridColumn15.Visible = true;
     this.gridColumn15.VisibleIndex = 2;
     //
     // gridColumn29
     //
     this.gridColumn29.Caption = "ͨѶ���";
     this.gridColumn29.FieldName = "ͨѶ���";
     this.gridColumn29.Name = "gridColumn29";
     this.gridColumn29.Visible = true;
     this.gridColumn29.VisibleIndex = 3;
     //
     // gridColumn16
     //
     this.gridColumn16.Caption = "�˿�";
     this.gridColumn16.FieldName = "�˿�";
     this.gridColumn16.Name = "gridColumn16";
     this.gridColumn16.Visible = true;
     this.gridColumn16.VisibleIndex = 4;
     //
     // gridColumn17
     //
     this.gridColumn17.Caption = "����";
     this.gridColumn17.FieldName = "����";
     this.gridColumn17.Name = "gridColumn17";
     this.gridColumn17.Visible = true;
     this.gridColumn17.VisibleIndex = 5;
     //
     // gridColumn18
     //
     this.gridColumn18.Caption = "վַ";
     this.gridColumn18.FieldName = "վַ";
     this.gridColumn18.Name = "gridColumn18";
     this.gridColumn18.Visible = true;
     this.gridColumn18.VisibleIndex = 6;
     //
     // gridColumn19
     //
     this.gridColumn19.Caption = "������";
     this.gridColumn19.FieldName = "������";
     this.gridColumn19.Name = "gridColumn19";
     this.gridColumn19.Visible = true;
     this.gridColumn19.VisibleIndex = 7;
     //
     // gridColumn20
     //
     this.gridColumn20.Caption = "����λ";
     this.gridColumn20.FieldName = "����λ";
     this.gridColumn20.Name = "gridColumn20";
     this.gridColumn20.Visible = true;
     this.gridColumn20.VisibleIndex = 8;
     //
     // gridColumn21
     //
     this.gridColumn21.Caption = "ֹͣλ";
     this.gridColumn21.FieldName = "ֹͣλ";
     this.gridColumn21.Name = "gridColumn21";
     this.gridColumn21.Visible = true;
     this.gridColumn21.VisibleIndex = 9;
     //
     // gridColumn24
     //
     this.gridColumn24.Caption = "ϵͳ����";
     this.gridColumn24.FieldName = "ϵͳ����";
     this.gridColumn24.Name = "gridColumn24";
     this.gridColumn24.Visible = true;
     this.gridColumn24.VisibleIndex = 10;
     //
     // gridColumn25
     //
     this.gridColumn25.Caption = "�û�����";
     this.gridColumn25.FieldName = "�û�����";
     this.gridColumn25.Name = "gridColumn25";
     this.gridColumn25.Visible = true;
     this.gridColumn25.VisibleIndex = 11;
     //
     // gridColumn26
     //
     this.gridColumn26.Caption = "��Ƭ���� ";
     this.gridColumn26.FieldName = "��Ƭ����";
     this.gridColumn26.Name = "gridColumn26";
     this.gridColumn26.Visible = true;
     this.gridColumn26.VisibleIndex = 12;
     //
     // gridColumn27
     //
     this.gridColumn27.Caption = "��ʾ��ʱ";
     this.gridColumn27.FieldName = "��ʾ��ʱ";
     this.gridColumn27.Name = "gridColumn27";
     this.gridColumn27.Visible = true;
     this.gridColumn27.VisibleIndex = 13;
     //
     // gridColumn28
     //
     this.gridColumn28.Caption = "�ռ�澯";
     this.gridColumn28.FieldName = "�ռ�澯";
     this.gridColumn28.Name = "gridColumn28";
     this.gridColumn28.Visible = true;
     this.gridColumn28.VisibleIndex = 14;
     //
     // gridColumn33
     //
     this.gridColumn33.Caption = "ID";
     this.gridColumn33.FieldName = "ID";
     this.gridColumn33.Name = "gridColumn33";
     //
     // gridColumn22
     //
     this.gridColumn22.Caption = "ͨѶ����";
     this.gridColumn22.FieldName = "ͨѶ����";
     this.gridColumn22.Name = "gridColumn22";
     this.gridColumn22.Visible = true;
     this.gridColumn22.VisibleIndex = 15;
     //
     // gridColumn41
     //
     this.gridColumn41.Caption = "����������";
     this.gridColumn41.FieldName = "����������";
     this.gridColumn41.Name = "gridColumn41";
     this.gridColumn41.Visible = true;
     this.gridColumn41.VisibleIndex = 16;
     //
     // gridColumn42
     //
     this.gridColumn42.Caption = "ȡ����������";
     this.gridColumn42.FieldName = "ȡ����������";
     this.gridColumn42.Name = "gridColumn42";
     this.gridColumn42.Visible = true;
     this.gridColumn42.VisibleIndex = 17;
     //
     // panelControl9
     //
     this.panelControl9.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl9.Controls.Add(this.btnSave);
     this.panelControl9.Controls.Add(this.btnDel);
     this.panelControl9.Controls.Add(this.btnAdd);
     this.panelControl9.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl9.Location = new System.Drawing.Point(0, 0);
     this.panelControl9.Name = "panelControl9";
     this.panelControl9.Size = new System.Drawing.Size(608, 45);
     this.panelControl9.TabIndex = 0;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(178, 9);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(69, 28);
     this.btnSave.TabIndex = 3;
     this.btnSave.Text = "����";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // btnDel
     //
     this.btnDel.Location = new System.Drawing.Point(90, 9);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(69, 28);
     this.btnDel.TabIndex = 4;
     this.btnDel.Text = "ɾ��";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(5, 9);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(69, 28);
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "���";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click_1);
     //
     // panelControl10
     //
     this.panelControl10.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl10.Controls.Add(this.comboBox1);
     this.panelControl10.Controls.Add(this.labelControl3);
     this.panelControl10.Controls.Add(this.checkEdit14);
     this.panelControl10.Controls.Add(this.checkEdit13);
     this.panelControl10.Controls.Add(this.checkEdit12);
     this.panelControl10.Controls.Add(this.checkEdit11);
     this.panelControl10.Controls.Add(this.checkEdit10);
     this.panelControl10.Controls.Add(this.checkEdit9);
     this.panelControl10.Controls.Add(this.checkEdit8);
     this.panelControl10.Controls.Add(this.checkEdit7);
     this.panelControl10.Controls.Add(this.checkEdit6);
     this.panelControl10.Controls.Add(this.checkEdit5);
     this.panelControl10.Controls.Add(this.checkEdit4);
     this.panelControl10.Controls.Add(this.checkEdit3);
     this.panelControl10.Controls.Add(this.checkEdit2);
     this.panelControl10.Controls.Add(this.checkEdit1);
     this.panelControl10.Controls.Add(this.cboOk);
     this.panelControl10.Controls.Add(this.cboEateryType);
     this.panelControl10.Controls.Add(this.txtRemark);
     this.panelControl10.Controls.Add(this.labelControl11);
     this.panelControl10.Controls.Add(this.txtSZMoney);
     this.panelControl10.Controls.Add(this.txtTimeMoney);
     this.panelControl10.Controls.Add(this.txtDateCount);
     this.panelControl10.Controls.Add(this.txtDateMax);
     this.panelControl10.Controls.Add(this.txtCountMoney);
     this.panelControl10.Controls.Add(this.txtTimeMax);
     this.panelControl10.Controls.Add(this.labelControl10);
     this.panelControl10.Controls.Add(this.labelControl9);
     this.panelControl10.Controls.Add(this.labelControl8);
     this.panelControl10.Controls.Add(this.labelControl7);
     this.panelControl10.Controls.Add(this.labelControl6);
     this.panelControl10.Controls.Add(this.labelControl5);
     this.panelControl10.Controls.Add(this.txtCardMax);
     this.panelControl10.Controls.Add(this.labelControl4);
     this.panelControl10.Controls.Add(this.txtDinName);
     this.panelControl10.Controls.Add(this.labelControl2);
     this.panelControl10.Controls.Add(this.labelControl1);
     this.panelControl10.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl10.Location = new System.Drawing.Point(2, 2);
     this.panelControl10.Name = "panelControl10";
     this.panelControl10.Size = new System.Drawing.Size(608, 242);
     this.panelControl10.TabIndex = 90;
     this.panelControl10.Tag = "@db=������";
     //
     // comboBox1
     //
     this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "ֱ�ӿ���",
     "ƾ�ܿ���",
     "ˢ��ƾ�ܿ���"});
     this.comboBox1.Location = new System.Drawing.Point(78, 123);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(113, 22);
     this.comboBox1.TabIndex = 10;
     this.comboBox1.Tag = "@fld=������ʽ";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(22, 125);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 51;
     this.labelControl3.Text = "������ʽ:";
     //
     // checkEdit14
     //
     this.checkEdit14.Location = new System.Drawing.Point(342, 214);
     this.checkEdit14.Name = "checkEdit14";
     this.checkEdit14.Properties.Caption = "�ɳ���";
     this.checkEdit14.Size = new System.Drawing.Size(103, 19);
     this.checkEdit14.TabIndex = 49;
     this.checkEdit14.Tag = "@fld=�ɳ���";
     //
     // checkEdit13
     //
     this.checkEdit13.Location = new System.Drawing.Point(463, 214);
     this.checkEdit13.Name = "checkEdit13";
     this.checkEdit13.Properties.Caption = "ƾ������";
     this.checkEdit13.Size = new System.Drawing.Size(103, 19);
     this.checkEdit13.TabIndex = 50;
     this.checkEdit13.Tag = "@fld=ƾ������";
     //
     // checkEdit12
     //
     this.checkEdit12.Location = new System.Drawing.Point(463, 189);
     this.checkEdit12.Name = "checkEdit12";
     this.checkEdit12.Properties.Caption = "��������";
     this.checkEdit12.Size = new System.Drawing.Size(74, 19);
     this.checkEdit12.TabIndex = 45;
     this.checkEdit12.Tag = "@fld=��������";
     //
     // checkEdit11
     //
     this.checkEdit11.Location = new System.Drawing.Point(22, 214);
     this.checkEdit11.Name = "checkEdit11";
     this.checkEdit11.Properties.Caption = "��ӡ��¼";
     this.checkEdit11.Size = new System.Drawing.Size(74, 19);
     this.checkEdit11.TabIndex = 46;
     this.checkEdit11.Tag = "@fld=��ӡ��¼";
     //
     // checkEdit10
     //
     this.checkEdit10.Location = new System.Drawing.Point(137, 214);
     this.checkEdit10.Name = "checkEdit10";
     this.checkEdit10.Properties.Caption = "���ֽ�����";
     this.checkEdit10.Size = new System.Drawing.Size(93, 19);
     this.checkEdit10.TabIndex = 47;
     this.checkEdit10.Tag = "@fld=���ֽ�����";
     //
     // checkEdit9
     //
     this.checkEdit9.Location = new System.Drawing.Point(249, 214);
     this.checkEdit9.Name = "checkEdit9";
     this.checkEdit9.Properties.Caption = "����������";
     this.checkEdit9.Size = new System.Drawing.Size(87, 19);
     this.checkEdit9.TabIndex = 48;
     this.checkEdit9.Tag = "@fld=����������";
     //
     // checkEdit8
     //
     this.checkEdit8.Location = new System.Drawing.Point(342, 189);
     this.checkEdit8.Name = "checkEdit8";
     this.checkEdit8.Properties.Caption = "����ֱ�ӿ۷�";
     this.checkEdit8.Size = new System.Drawing.Size(115, 19);
     this.checkEdit8.TabIndex = 44;
     this.checkEdit8.Tag = "@fld=����ֱ�ӿ۷�";
     //
     // checkEdit7
     //
     this.checkEdit7.Location = new System.Drawing.Point(22, 189);
     this.checkEdit7.Name = "checkEdit7";
     this.checkEdit7.Properties.Caption = "ֱ��ȡ������";
     this.checkEdit7.Size = new System.Drawing.Size(109, 19);
     this.checkEdit7.TabIndex = 41;
     this.checkEdit7.Tag = "@fld=ֱ��ȡ������";
     //
     // checkEdit6
     //
     this.checkEdit6.Location = new System.Drawing.Point(137, 189);
     this.checkEdit6.Name = "checkEdit6";
     this.checkEdit6.Properties.Caption = "������";
     this.checkEdit6.Size = new System.Drawing.Size(93, 19);
     this.checkEdit6.TabIndex = 42;
     this.checkEdit6.Tag = "@fld=������";
     //
     // checkEdit5
     //
     this.checkEdit5.Location = new System.Drawing.Point(461, 164);
     this.checkEdit5.Name = "checkEdit5";
     this.checkEdit5.Properties.Caption = "ƾ��ȡ������";
     this.checkEdit5.Size = new System.Drawing.Size(114, 19);
     this.checkEdit5.TabIndex = 40;
     this.checkEdit5.Tag = "@fld=ƾ��ȡ������";
     //
     // checkEdit4
     //
     this.checkEdit4.Location = new System.Drawing.Point(249, 189);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "�ɳ�ʼ��";
     this.checkEdit4.Size = new System.Drawing.Size(74, 19);
     this.checkEdit4.TabIndex = 43;
     this.checkEdit4.Tag = "@fld=�ɳ�ʼ��";
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(342, 164);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "ʱ������";
     this.checkEdit3.Size = new System.Drawing.Size(74, 19);
     this.checkEdit3.TabIndex = 39;
     this.checkEdit3.Tag = "@fld=ʱ������";
     //
     // checkEdit2
     //
     this.checkEdit2.Location = new System.Drawing.Point(249, 164);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "�������";
     this.checkEdit2.Size = new System.Drawing.Size(74, 19);
     this.checkEdit2.TabIndex = 38;
     this.checkEdit2.Tag = "@fld=�������";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(137, 164);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "������ʱ";
     this.checkEdit1.Size = new System.Drawing.Size(74, 19);
     this.checkEdit1.TabIndex = 37;
     this.checkEdit1.Tag = "@fld=������ʱ";
     //
     // cboOk
     //
     this.cboOk.Location = new System.Drawing.Point(22, 164);
     this.cboOk.Name = "cboOk";
     this.cboOk.Properties.Caption = "�������";
     this.cboOk.Size = new System.Drawing.Size(74, 19);
     this.cboOk.TabIndex = 36;
     this.cboOk.Tag = "@fld=�������";
     //
     // cboEateryType
     //
     this.cboEateryType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboEateryType.FormattingEnabled = true;
     this.cboEateryType.Items.AddRange(new object[] {
     "�����Ʒ�",
     "ʱ�ζ���",
     "�ƴζ���"});
     this.cboEateryType.Location = new System.Drawing.Point(263, 12);
     this.cboEateryType.Name = "cboEateryType";
     this.cboEateryType.Size = new System.Drawing.Size(121, 22);
     this.cboEateryType.TabIndex = 2;
     this.cboEateryType.Tag = "@fld=�������";
     //
     // txtRemark
     //
     this.txtRemark.Location = new System.Drawing.Point(263, 120);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(309, 21);
     this.txtRemark.TabIndex = 11;
     this.txtRemark.Tag = "@fld=��ע";
     //
     // labelControl11
     //
     this.labelControl11.Location = new System.Drawing.Point(203, 125);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(28, 14);
     this.labelControl11.TabIndex = 21;
     this.labelControl11.Text = "��ע:";
     //
     // txtSZMoney
     //
     this.txtSZMoney.Location = new System.Drawing.Point(463, 89);
     this.txtSZMoney.Name = "txtSZMoney";
     this.txtSZMoney.Size = new System.Drawing.Size(112, 21);
     this.txtSZMoney.TabIndex = 9;
     this.txtSZMoney.Tag = "@fld=�����޶�";
     //
     // txtTimeMoney
     //
     this.txtTimeMoney.Location = new System.Drawing.Point(263, 85);
     this.txtTimeMoney.Name = "txtTimeMoney";
     this.txtTimeMoney.Size = new System.Drawing.Size(121, 21);
     this.txtTimeMoney.TabIndex = 8;
     this.txtTimeMoney.Tag = "@fld=ʱ���޶�";
     //
     // txtDateCount
     //
     this.txtDateCount.Location = new System.Drawing.Point(463, 50);
     this.txtDateCount.Name = "txtDateCount";
     this.txtDateCount.Size = new System.Drawing.Size(112, 21);
     this.txtDateCount.TabIndex = 6;
     this.txtDateCount.Tag = "@fld=ÿ���޴�";
     //
     // txtDateMax
     //
     this.txtDateMax.Location = new System.Drawing.Point(81, 85);
     this.txtDateMax.Name = "txtDateMax";
     this.txtDateMax.Size = new System.Drawing.Size(110, 21);
     this.txtDateMax.TabIndex = 7;
     this.txtDateMax.Tag = "@fld=ÿ���޶�";
     //
     // txtCountMoney
     //
     this.txtCountMoney.Location = new System.Drawing.Point(263, 50);
     this.txtCountMoney.Name = "txtCountMoney";
     this.txtCountMoney.Size = new System.Drawing.Size(121, 21);
     this.txtCountMoney.TabIndex = 5;
     this.txtCountMoney.Tag = "@fld=�����޶�";
     //
     // txtTimeMax
     //
     this.txtTimeMax.Location = new System.Drawing.Point(463, 13);
     this.txtTimeMax.Name = "txtTimeMax";
     this.txtTimeMax.Size = new System.Drawing.Size(112, 21);
     this.txtTimeMax.TabIndex = 3;
     this.txtTimeMax.Tag = "@fld=ʱ���޴�";
     //
     // labelControl10
     //
     this.labelControl10.Location = new System.Drawing.Point(403, 90);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(52, 14);
     this.labelControl10.TabIndex = 13;
     this.labelControl10.Text = "�����޶�:";
     //
     // labelControl9
     //
     this.labelControl9.Location = new System.Drawing.Point(203, 86);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(52, 14);
     this.labelControl9.TabIndex = 12;
     this.labelControl9.Text = "ʱ���޶�:";
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(22, 86);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(52, 14);
     this.labelControl8.TabIndex = 11;
     this.labelControl8.Text = "ÿ���޶�:";
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(203, 51);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(52, 14);
     this.labelControl7.TabIndex = 10;
     this.labelControl7.Text = "�����޶�:";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(403, 51);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 14);
     this.labelControl6.TabIndex = 9;
     this.labelControl6.Text = "ÿ���޴�:";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(403, 18);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(52, 14);
     this.labelControl5.TabIndex = 8;
     this.labelControl5.Text = "ʱ���޴�:";
     //
     // txtCardMax
     //
     this.txtCardMax.Location = new System.Drawing.Point(81, 50);
     this.txtCardMax.Name = "txtCardMax";
     this.txtCardMax.Size = new System.Drawing.Size(110, 21);
     this.txtCardMax.TabIndex = 4;
     this.txtCardMax.Tag = "@fld=���޶�";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(34, 51);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(40, 14);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "���޶�:";
     //
     // txtDinName
     //
     this.txtDinName.Location = new System.Drawing.Point(81, 13);
     this.txtDinName.Name = "txtDinName";
     this.txtDinName.Size = new System.Drawing.Size(110, 21);
     this.txtDinName.TabIndex = 1;
     this.txtDinName.Tag = "@fld=����";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(203, 14);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 1;
     this.labelControl2.Text = "�������:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(22, 14);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text = "��������:";
     //
     // panelControl3
     //
     this.panelControl3.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl3.Controls.Add(this.simpleButton1);
     this.panelControl3.Controls.Add(this.BtCancel);
     this.panelControl3.Controls.Add(this.btnDinSave);
     this.panelControl3.Controls.Add(this.btnDinAdd);
     this.panelControl3.Controls.Add(this.btnDinDel);
     this.panelControl3.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl3.Location = new System.Drawing.Point(2, 2);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(799, 48);
     this.panelControl3.TabIndex = 58;
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(112, 8);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(69, 30);
     this.simpleButton1.TabIndex = 2;
     this.simpleButton1.Text = "�������";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // BtCancel
     //
     this.BtCancel.Location = new System.Drawing.Point(367, 8);
     this.BtCancel.Name = "BtCancel";
     this.BtCancel.Size = new System.Drawing.Size(69, 30);
     this.BtCancel.TabIndex = 1;
     this.BtCancel.Text = "�˳�";
     this.BtCancel.Click += new System.EventHandler(this.BtCancel_Click);
     //
     // btnDinSave
     //
     this.btnDinSave.Location = new System.Drawing.Point(279, 8);
     this.btnDinSave.Name = "btnDinSave";
     this.btnDinSave.Size = new System.Drawing.Size(69, 30);
     this.btnDinSave.TabIndex = 1;
     this.btnDinSave.Text = "����";
     this.btnDinSave.Click += new System.EventHandler(this.btnDinSave_Click);
     //
     // btnDinAdd
     //
     this.btnDinAdd.Location = new System.Drawing.Point(27, 8);
     this.btnDinAdd.Name = "btnDinAdd";
     this.btnDinAdd.Size = new System.Drawing.Size(69, 30);
     this.btnDinAdd.TabIndex = 0;
     this.btnDinAdd.Text = "����ܲ���";
     this.btnDinAdd.Click += new System.EventHandler(this.btnDinAdd_Click_1);
     //
     // btnDinDel
     //
     this.btnDinDel.Location = new System.Drawing.Point(194, 8);
     this.btnDinDel.Name = "btnDinDel";
     this.btnDinDel.Size = new System.Drawing.Size(69, 30);
     this.btnDinDel.TabIndex = 1;
     this.btnDinDel.Text = "ɾ��";
     this.btnDinDel.Click += new System.EventHandler(this.btnDinDel_Click_1);
     //
     // gridView5
     //
     this.gridView5.Name = "gridView5";
     //
     // gridView6
     //
     this.gridView6.Name = "gridView6";
     //
     // gridColumn31
     //
     this.gridColumn31.Caption = "ID";
     this.gridColumn31.FieldName = "ID";
     this.gridColumn31.Name = "gridColumn31";
     //
     // FrmRestaurant
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(803, 653);
     this.Controls.Add(this.panelControl1);
     this.Name = "FrmRestaurant";
     this.Text = "������������";
     this.Load += new System.EventHandler(this.FrmRestaurant_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.TreeDin)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
     this.panelControl6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
     this.panelControl7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
     this.panelControl8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbEatery)).EndInit();
     this.dbEatery.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbEateyTime)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemGridLookUpEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView7)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbMenu)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbMoney)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView3)).EndInit();
     this.xtraTabPage4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dbDev)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
     this.panelControl9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
     this.panelControl10.ResumeLayout(false);
     this.panelControl10.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit14.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit13.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit12.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit11.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit10.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit9.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit8.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit7.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit6.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit5.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cboOk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtSZMoney.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimeMoney.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDateCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDateMax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCountMoney.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTimeMax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCardMax.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDinName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView6)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LogAdjustment));
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.detailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.detailToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.dtTo = new CalendarLib.DateTimePickerEx();
     this.dtFrom = new CalendarLib.DateTimePickerEx();
     this.cboReasons = new DevExpress.XtraEditors.LookUpEdit();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.lstTree = new DevExpress.XtraTreeList.TreeList();
     this.colRefNo = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.gridAdjustments = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.button1 = new DevExpress.XtraEditors.SimpleButton();
     this.btnPrint = new DevExpress.XtraEditors.SimpleButton();
     this.lblAdjDate = new System.Windows.Forms.Label();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.simpleLabelItem1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.emptySpaceItem4 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem6 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.lkActivity = new DevExpress.XtraEditors.GridLookUpEdit();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.gridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).BeginInit();
     this.SuspendLayout();
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.detailToolStripMenuItem,
     this.detailToolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(107, 48);
     this.contextMenuStrip1.Text = "conTran";
     //
     // detailToolStripMenuItem
     //
     this.detailToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem.Image")));
     this.detailToolStripMenuItem.Name = "detailToolStripMenuItem";
     this.detailToolStripMenuItem.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem.Text = "detail";
     //
     // detailToolStripMenuItem1
     //
     this.detailToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("detailToolStripMenuItem1.Image")));
     this.detailToolStripMenuItem1.Name = "detailToolStripMenuItem1";
     this.detailToolStripMenuItem1.Size = new System.Drawing.Size(106, 22);
     this.detailToolStripMenuItem1.Text = "delete";
     //
     // dtTo
     //
     this.dtTo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtTo.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtTo.CalendarForeColor = System.Drawing.Color.Black;
     this.dtTo.DayOfWeekCharacters = 2;
     this.dtTo.ForeColor = System.Drawing.Color.Black;
     this.dtTo.Location = new System.Drawing.Point(1011, 59);
     this.dtTo.Name = "dtTo";
     this.dtTo.PopUpFontSize = 6.75F;
     this.dtTo.Size = new System.Drawing.Size(146, 20);
     this.dtTo.TabIndex = 12;
     this.dtTo.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // dtFrom
     //
     this.dtFrom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.dtFrom.CalendarFont = new System.Drawing.Font("Nyala", 17.75F);
     this.dtFrom.CalendarForeColor = System.Drawing.Color.Black;
     this.dtFrom.DayOfWeekCharacters = 2;
     this.dtFrom.ForeColor = System.Drawing.Color.Black;
     this.dtFrom.Location = new System.Drawing.Point(1011, 34);
     this.dtFrom.Name = "dtFrom";
     this.dtFrom.PopUpFontSize = 6.75F;
     this.dtFrom.Size = new System.Drawing.Size(146, 21);
     this.dtFrom.TabIndex = 12;
     this.dtFrom.Value = new System.DateTime(2011, 7, 3, 0, 0, 0, 0);
     this.dtFrom.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // cboReasons
     //
     this.cboReasons.Location = new System.Drawing.Point(428, 58);
     this.cboReasons.Name = "cboReasons";
     this.cboReasons.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cboReasons.Properties.DisplayMember = "Reason";
     this.cboReasons.Properties.DropDownRows = 4;
     this.cboReasons.Properties.NullText = "Select Adjustment Reason";
     this.cboReasons.Properties.ValueMember = "ID";
     this.cboReasons.Size = new System.Drawing.Size(222, 20);
     this.cboReasons.StyleController = this.layoutControl1;
     this.cboReasons.TabIndex = 0;
     this.cboReasons.EditValueChanged += new System.EventHandler(this.cboReasons_EditValueChanged);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.lkActivity);
     this.layoutControl1.Controls.Add(this.lstTree);
     this.layoutControl1.Controls.Add(this.gridAdjustments);
     this.layoutControl1.Controls.Add(this.dtTo);
     this.layoutControl1.Controls.Add(this.cboReasons);
     this.layoutControl1.Controls.Add(this.dtFrom);
     this.layoutControl1.Controls.Add(this.button1);
     this.layoutControl1.Controls.Add(this.btnPrint);
     this.layoutControl1.Controls.Add(this.lblAdjDate);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(1172, 625);
     this.layoutControl1.TabIndex = 33;
     this.layoutControl1.Text = "layoutControl1";
     //
     // lstTree
     //
     this.lstTree.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.colRefNo,
     this.treeListColumn2});
     this.lstTree.Location = new System.Drawing.Point(10, 29);
     this.lstTree.Name = "lstTree";
     this.lstTree.OptionsBehavior.Editable = false;
     this.lstTree.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.lstTree.OptionsView.ShowIndicator = false;
     this.lstTree.PreviewFieldName = "RefNo";
     this.lstTree.RootValue = null;
     this.lstTree.Size = new System.Drawing.Size(290, 586);
     this.lstTree.TabIndex = 34;
     this.lstTree.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.LstTreeFocusedNodeChanged);
     //
     // colRefNo
     //
     this.colRefNo.Caption = "Ref No";
     this.colRefNo.FieldName = "RefNo";
     this.colRefNo.Name = "colRefNo";
     this.colRefNo.Visible = true;
     this.colRefNo.VisibleIndex = 0;
     this.colRefNo.Width = 149;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "Date";
     this.treeListColumn2.FieldName = "Date";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     this.treeListColumn2.Width = 90;
     //
     // gridAdjustments
     //
     this.gridAdjustments.Location = new System.Drawing.Point(315, 83);
     this.gridAdjustments.MainView = this.gridView1;
     this.gridAdjustments.Name = "gridAdjustments";
     this.gridAdjustments.Size = new System.Drawing.Size(842, 501);
     this.gridAdjustments.TabIndex = 33;
     this.gridAdjustments.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8});
     this.gridView1.GridControl = this.gridAdjustments;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsBehavior.Editable = false;
     this.gridView1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridView1.OptionsView.ColumnAutoWidth = false;
     this.gridView1.OptionsView.ShowFooter = true;
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "No";
     this.gridColumn1.FieldName = "RowNo";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     this.gridColumn1.Width = 35;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "Date";
     this.gridColumn2.FieldName = "Date";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     this.gridColumn2.Width = 73;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "Item Name";
     this.gridColumn3.FieldName = "FullItemName";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     this.gridColumn3.Width = 311;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "Batch No";
     this.gridColumn4.FieldName = "BatchNo";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     this.gridColumn4.Width = 98;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "Qty";
     this.gridColumn5.DisplayFormat.FormatString = "#,##0";
     this.gridColumn5.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn5.FieldName = "Quantity";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "QuantityDetail", "{0:#,##0}")});
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     this.gridColumn5.Width = 84;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "Total Price";
     this.gridColumn6.DisplayFormat.FormatString = "#,##0.#0";
     this.gridColumn6.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
     this.gridColumn6.FieldName = "Cost";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Summary.AddRange(new DevExpress.XtraGrid.GridSummaryItem[] {
     new DevExpress.XtraGrid.GridColumnSummaryItem(DevExpress.Data.SummaryItemType.Sum, "gridColumn6", "{0:#,##0.#0}")});
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 97;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "Reason";
     this.gridColumn7.FieldName = "Reason";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 6;
     this.gridColumn7.Width = 105;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "Approved By";
     this.gridColumn8.FieldName = "ApprovedBy";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Width = 87;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(929, 588);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(111, 22);
     this.button1.StyleController = this.layoutControl1;
     this.button1.TabIndex = 23;
     this.button1.Text = "Export";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // btnPrint
     //
     this.btnPrint.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.btnPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnPrint.Image")));
     this.btnPrint.Location = new System.Drawing.Point(1044, 588);
     this.btnPrint.Name = "btnPrint";
     this.btnPrint.Size = new System.Drawing.Size(113, 22);
     this.btnPrint.StyleController = this.layoutControl1;
     this.btnPrint.TabIndex = 32;
     this.btnPrint.Text = "Print";
     this.btnPrint.Click += new System.EventHandler(this.btnPrint_Click);
     //
     // lblAdjDate
     //
     this.lblAdjDate.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAdjDate.Location = new System.Drawing.Point(665, 59);
     this.lblAdjDate.Name = "lblAdjDate";
     this.lblAdjDate.Size = new System.Drawing.Size(218, 20);
     this.lblAdjDate.TabIndex = 30;
     this.lblAdjDate.Text = "Upto Date";
     this.lblAdjDate.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText = "Root";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "Root";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup1.Text = "Root";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup3,
     this.layoutControlGroup4});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "layoutControlGroup2";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutControlGroup2.Size = new System.Drawing.Size(1172, 625);
     this.layoutControlGroup2.Text = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "Reference Numbers";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem10});
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup3.Name = "layoutControlGroup3";
     this.layoutControlGroup3.Padding = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size = new System.Drawing.Size(300, 615);
     this.layoutControlGroup3.Text = "Reference Numbers";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.lstTree;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem10.Name = "layoutControlItem10";
     this.layoutControlItem10.Size = new System.Drawing.Size(294, 590);
     this.layoutControlItem10.Text = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "Items";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem6,
     this.emptySpaceItem1,
     this.simpleLabelItem1,
     this.emptySpaceItem4,
     this.layoutControlItem3,
     this.layoutControlItem2,
     this.layoutControlItem4,
     this.layoutControlItem9,
     this.emptySpaceItem6,
     this.layoutControlItem7,
     this.layoutControlItem5,
     this.layoutControlItem1});
     this.layoutControlGroup4.Location = new System.Drawing.Point(300, 0);
     this.layoutControlGroup4.Name = "layoutControlGroup4";
     this.layoutControlGroup4.Padding = new DevExpress.XtraLayout.Utils.Padding(5, 5, 5, 5);
     this.layoutControlGroup4.Size = new System.Drawing.Size(862, 615);
     this.layoutControlGroup4.Text = "Items";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnPrint;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(729, 554);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(117, 26);
     this.layoutControlItem6.Text = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(339, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem1.Text = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // simpleLabelItem1
     //
     this.simpleLabelItem1.AllowHotTrack = false;
     this.simpleLabelItem1.CustomizationFormText = "Adjustments Made On:";
     this.simpleLabelItem1.Location = new System.Drawing.Point(350, 0);
     this.simpleLabelItem1.MaxSize = new System.Drawing.Size(222, 32);
     this.simpleLabelItem1.MinSize = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.Name = "simpleLabelItem1";
     this.simpleLabelItem1.Size = new System.Drawing.Size(222, 25);
     this.simpleLabelItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.simpleLabelItem1.Text = "Adjustments Made On:";
     this.simpleLabelItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // emptySpaceItem4
     //
     this.emptySpaceItem4.AllowHotTrack = false;
     this.emptySpaceItem4.CustomizationFormText = "emptySpaceItem4";
     this.emptySpaceItem4.Location = new System.Drawing.Point(572, 0);
     this.emptySpaceItem4.Name = "emptySpaceItem4";
     this.emptySpaceItem4.Size = new System.Drawing.Size(11, 49);
     this.emptySpaceItem4.Text = "emptySpaceItem4";
     this.emptySpaceItem4.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.dtFrom;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(583, 0);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(263, 25);
     this.layoutControlItem3.Text = "From";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.cboReasons;
     this.layoutControlItem2.CustomizationFormText = "Adjustment Reason";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 24);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(339, 25);
     this.layoutControlItem2.Text = "Adjustment Reason";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.dtTo;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(583, 25);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(263, 24);
     this.layoutControlItem4.Text = "To";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(110, 13);
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.gridAdjustments;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 49);
     this.layoutControlItem9.Name = "layoutControlItem9";
     this.layoutControlItem9.Size = new System.Drawing.Size(846, 505);
     this.layoutControlItem9.Text = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible = false;
     //
     // emptySpaceItem6
     //
     this.emptySpaceItem6.AllowHotTrack = false;
     this.emptySpaceItem6.CustomizationFormText = "emptySpaceItem6";
     this.emptySpaceItem6.Location = new System.Drawing.Point(0, 554);
     this.emptySpaceItem6.Name = "emptySpaceItem6";
     this.emptySpaceItem6.Size = new System.Drawing.Size(614, 26);
     this.emptySpaceItem6.Text = "emptySpaceItem6";
     this.emptySpaceItem6.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.button1;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(614, 554);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(115, 26);
     this.layoutControlItem7.Text = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.lblAdjDate;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(350, 25);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(222, 24);
     this.layoutControlItem5.Text = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible = false;
     //
     // lkActivity
     //
     this.lkActivity.Location = new System.Drawing.Point(428, 34);
     this.lkActivity.Name = "lkActivity";
     this.lkActivity.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.lkActivity.Properties.View = this.gridLookUpEdit1View;
     this.lkActivity.Size = new System.Drawing.Size(222, 20);
     this.lkActivity.StyleController = this.layoutControl1;
     this.lkActivity.TabIndex = 35;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.lkActivity;
     this.layoutControlItem1.CustomizationFormText = "Activity";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(339, 24);
     this.layoutControlItem1.Text = "Activity";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(110, 13);
     //
     // gridLookUpEdit1View
     //
     this.gridLookUpEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.gridLookUpEdit1View.Name = "gridLookUpEdit1View";
     this.gridLookUpEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridLookUpEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // LogAdjustment
     //
     this.Appearance.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1172, 625);
     this.Controls.Add(this.layoutControl1);
     this.Name = "LogAdjustment";
     this.Text = "Stock Report";
     this.Load += new System.EventHandler(this.ManageItems_Load);
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.cboReasons.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.lstTree)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridAdjustments)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.simpleLabelItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lkActivity.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridLookUpEdit1View)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// �����֧������ķ��� - ��Ҫ
 /// ʹ�ô���༭���޸Ĵ˷��������ݡ�
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl = new DevExpress.XtraEditors.PanelControl();
     this.label10 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.month = new DevExpress.XtraEditors.ComboBoxEdit();
     this.year = new DevExpress.XtraEditors.ComboBoxEdit();
     this.treeList3 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn7 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn8 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn9 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.treeList2 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn5 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn6 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.textkgbh = new DevExpress.XtraEditors.TextEdit();
     this.textdl = new DevExpress.XtraEditors.TextEdit();
     this.textfh = new DevExpress.XtraEditors.TextEdit();
     this.textkgmc = new DevExpress.XtraEditors.TextEdit();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.btnOK = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).BeginInit();
     this.panelControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.month.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.year.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textkgbh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textdl.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textfh.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textkgmc.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl
     //
     this.panelControl.Controls.Add(this.label10);
     this.panelControl.Controls.Add(this.label7);
     this.panelControl.Controls.Add(this.label8);
     this.panelControl.Controls.Add(this.month);
     this.panelControl.Controls.Add(this.year);
     this.panelControl.Controls.Add(this.treeList3);
     this.panelControl.Controls.Add(this.treeList2);
     this.panelControl.Controls.Add(this.treeList1);
     this.panelControl.Controls.Add(this.textkgbh);
     this.panelControl.Controls.Add(this.textdl);
     this.panelControl.Controls.Add(this.textfh);
     this.panelControl.Controls.Add(this.textkgmc);
     this.panelControl.Controls.Add(this.label6);
     this.panelControl.Controls.Add(this.label5);
     this.panelControl.Controls.Add(this.label4);
     this.panelControl.Controls.Add(this.label9);
     this.panelControl.Controls.Add(this.label3);
     this.panelControl.Controls.Add(this.label2);
     this.panelControl.Controls.Add(this.label1);
     this.panelControl.Controls.Add(this.btnOK);
     this.panelControl.Controls.Add(this.btnCancel);
     this.panelControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl.Location = new System.Drawing.Point(0, 0);
     this.panelControl.Name = "panelControl";
     this.panelControl.Size = new System.Drawing.Size(542, 312);
     this.panelControl.TabIndex = 0;
     this.panelControl.Text = "panelControl1";
     this.panelControl.Paint += new System.Windows.Forms.PaintEventHandler(this.panelControl_Paint);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(693, 50);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(41, 12);
     this.label10.TabIndex = 13;
     this.label10.Text = "�·ݣ�";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(423, 46);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(41, 12);
     this.label7.TabIndex = 13;
     this.label7.Text = "�·ݣ�";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(302, 46);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(41, 12);
     this.label8.TabIndex = 14;
     this.label8.Text = "��ݣ�";
     //
     // month
     //
     this.month.EditValue = "01";
     this.month.Location = new System.Drawing.Point(467, 41);
     this.month.Name = "month";
     this.month.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.month.Properties.Items.AddRange(new object[] {
     "01",
     "02",
     "03",
     "04",
     "05",
     "06",
     "07",
     "08",
     "09",
     "10",
     "11",
     "12"});
     this.month.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.month.Size = new System.Drawing.Size(63, 21);
     this.month.TabIndex = 11;
     //
     // year
     //
     this.year.EditValue = "2009";
     this.year.Location = new System.Drawing.Point(349, 41);
     this.year.Name = "year";
     this.year.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.year.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.year.Size = new System.Drawing.Size(69, 21);
     this.year.TabIndex = 12;
     //
     // treeList3
     //
     this.treeList3.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn7,
     this.treeListColumn8,
     this.treeListColumn9});
     this.treeList3.Location = new System.Drawing.Point(86, 179);
     this.treeList3.Name = "treeList3";
     this.treeList3.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit3});
     this.treeList3.Size = new System.Drawing.Size(181, 89);
     this.treeList3.TabIndex = 10;
     //
     // treeListColumn7
     //
     this.treeListColumn7.Caption = "id";
     this.treeListColumn7.FieldName = "id";
     this.treeListColumn7.MinWidth = 46;
     this.treeListColumn7.Name = "treeListColumn7";
     this.treeListColumn7.OptionsColumn.AllowEdit = false;
     this.treeListColumn7.OptionsColumn.AllowFocus = false;
     this.treeListColumn7.OptionsColumn.ReadOnly = true;
     //
     // treeListColumn8
     //
     this.treeListColumn8.Caption = "����";
     this.treeListColumn8.FieldName = "Name";
     this.treeListColumn8.MinWidth = 28;
     this.treeListColumn8.Name = "treeListColumn8";
     this.treeListColumn8.OptionsColumn.AllowEdit = false;
     this.treeListColumn8.OptionsColumn.AllowFocus = false;
     this.treeListColumn8.OptionsColumn.ReadOnly = true;
     this.treeListColumn8.VisibleIndex = 0;
     this.treeListColumn8.Width = 131;
     //
     // treeListColumn9
     //
     this.treeListColumn9.Caption = "ѡ��";
     this.treeListColumn9.ColumnEdit = this.repositoryItemCheckEdit3;
     this.treeListColumn9.FieldName = "col2";
     this.treeListColumn9.Name = "treeListColumn9";
     this.treeListColumn9.VisibleIndex = 1;
     this.treeListColumn9.Width = 39;
     //
     // repositoryItemCheckEdit3
     //
     this.repositoryItemCheckEdit3.AutoHeight = false;
     this.repositoryItemCheckEdit3.Name = "repositoryItemCheckEdit3";
     //
     // treeList2
     //
     this.treeList2.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn4,
     this.treeListColumn5,
     this.treeListColumn6});
     this.treeList2.Location = new System.Drawing.Point(349, 77);
     this.treeList2.Name = "treeList2";
     this.treeList2.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit2});
     this.treeList2.Size = new System.Drawing.Size(181, 89);
     this.treeList2.TabIndex = 10;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "id";
     this.treeListColumn4.FieldName = "id";
     this.treeListColumn4.MinWidth = 46;
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.OptionsColumn.AllowEdit = false;
     this.treeListColumn4.OptionsColumn.AllowFocus = false;
     this.treeListColumn4.OptionsColumn.ReadOnly = true;
     //
     // treeListColumn5
     //
     this.treeListColumn5.Caption = "����";
     this.treeListColumn5.FieldName = "Name";
     this.treeListColumn5.MinWidth = 28;
     this.treeListColumn5.Name = "treeListColumn5";
     this.treeListColumn5.OptionsColumn.AllowEdit = false;
     this.treeListColumn5.OptionsColumn.AllowFocus = false;
     this.treeListColumn5.OptionsColumn.ReadOnly = true;
     this.treeListColumn5.VisibleIndex = 0;
     this.treeListColumn5.Width = 129;
     //
     // treeListColumn6
     //
     this.treeListColumn6.Caption = "ѡ��";
     this.treeListColumn6.ColumnEdit = this.repositoryItemCheckEdit2;
     this.treeListColumn6.FieldName = "col2";
     this.treeListColumn6.Name = "treeListColumn6";
     this.treeListColumn6.VisibleIndex = 1;
     this.treeListColumn6.Width = 41;
     //
     // repositoryItemCheckEdit2
     //
     this.repositoryItemCheckEdit2.AutoHeight = false;
     this.repositoryItemCheckEdit2.Name = "repositoryItemCheckEdit2";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList1.Location = new System.Drawing.Point(86, 77);
     this.treeList1.Name = "treeList1";
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.treeList1.Size = new System.Drawing.Size(181, 89);
     this.treeList1.TabIndex = 10;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "id";
     this.treeListColumn1.FieldName = "id";
     this.treeListColumn1.MinWidth = 46;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.OptionsColumn.AllowEdit = false;
     this.treeListColumn1.OptionsColumn.AllowFocus = false;
     this.treeListColumn1.OptionsColumn.ReadOnly = true;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "����";
     this.treeListColumn2.FieldName = "Name";
     this.treeListColumn2.MinWidth = 28;
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.OptionsColumn.AllowFocus = false;
     this.treeListColumn2.OptionsColumn.ReadOnly = true;
     this.treeListColumn2.VisibleIndex = 0;
     this.treeListColumn2.Width = 130;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "ѡ��";
     this.treeListColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.treeListColumn3.FieldName = "ѡ��";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.VisibleIndex = 1;
     this.treeListColumn3.Width = 40;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // textkgbh
     //
     this.textkgbh.Location = new System.Drawing.Point(86, 9);
     this.textkgbh.Name = "textkgbh";
     this.textkgbh.Properties.MaxLength = 10;
     this.textkgbh.Size = new System.Drawing.Size(181, 21);
     this.textkgbh.TabIndex = 8;
     //
     // textdl
     //
     this.textdl.Location = new System.Drawing.Point(349, 211);
     this.textdl.Name = "textdl";
     this.textdl.Properties.Mask.EditMask = "f";
     this.textdl.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textdl.Properties.MaxLength = 10;
     this.textdl.Size = new System.Drawing.Size(181, 21);
     this.textdl.TabIndex = 8;
     //
     // textfh
     //
     this.textfh.Location = new System.Drawing.Point(349, 179);
     this.textfh.Name = "textfh";
     this.textfh.Properties.Mask.EditMask = "f";
     this.textfh.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.textfh.Properties.MaxLength = 10;
     this.textfh.Size = new System.Drawing.Size(181, 21);
     this.textfh.TabIndex = 8;
     //
     // textkgmc
     //
     this.textkgmc.Location = new System.Drawing.Point(86, 41);
     this.textkgmc.Name = "textkgmc";
     this.textkgmc.Properties.MaxLength = 10;
     this.textkgmc.Size = new System.Drawing.Size(181, 21);
     this.textkgmc.TabIndex = 8;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 181);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(53, 12);
     this.label6.TabIndex = 4;
     this.label6.Text = "��ϵͳ��";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(18, 84);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 12);
     this.label5.TabIndex = 4;
     this.label5.Text = "���վ��";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(302, 84);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(41, 12);
     this.label4.TabIndex = 4;
     this.label4.Text = "������";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(290, 216);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(53, 12);
     this.label9.TabIndex = 4;
     this.label9.Text = "����ֵ��";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(290, 181);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(53, 12);
     this.label3.TabIndex = 4;
     this.label3.Text = "����ֵ��";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(18, 13);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(65, 12);
     this.label2.TabIndex = 4;
     this.label2.Text = "���ر�ţ�";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(18, 46);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(65, 12);
     this.label1.TabIndex = 4;
     this.label1.Text = "�������ƣ�";
     //
     // btnOK
     //
     this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOK.Location = new System.Drawing.Point(357, 273);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 1;
     this.btnOK.Text = "ȷ��";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(444, 273);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 2;
     this.btnCancel.Text = "ȡ��";
     //
     // FrmInterFaceDialog
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(542, 312);
     this.Controls.Add(this.panelControl);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmInterFaceDialog";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "ͳ������";
     this.Load += new System.EventHandler(this.FrmglebeTypeDialog_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl)).EndInit();
     this.panelControl.ResumeLayout(false);
     this.panelControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.month.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.year.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textkgbh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textdl.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textfh.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textkgmc.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.btnCannel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.btnGenNumber = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.gridControl1 = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.checkEdit2 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManagement_DocModify_Label_SecurityLevel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_InValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_BtnEdit_DocCategory = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_DocCategory = new DevExpress.XtraEditors.LabelControl();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManagement_DocModify_ButtonEdit_DocFlow = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_DocFlow = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_BtnEdit_DocNumber = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_TextEidt_DocVersion = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocVersion = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocNumber = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_ButtonEdit_ValidTime = new DevExpress.XtraEditors.DateEdit();
     this.DocManagement_DocModify_ButtonEdit_InValidTime = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.ComboBoxEdit();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_BtnEdit_DocCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_DocFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_BtnEdit_DocNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TextEidt_DocVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.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.xtraTabControl1.Location = new System.Drawing.Point(-3, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(666, 529);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3,
     this.xtraTabPage4});
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.btnCannel);
     this.xtraTabPage1.Controls.Add(this.btnSave);
     this.xtraTabPage1.Controls.Add(this.checkEdit3);
     this.xtraTabPage1.Controls.Add(this.groupControl1);
     this.xtraTabPage1.Controls.Add(this.checkEdit2);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_SecurityLevel);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_InValidTime);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_ValidTime);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_BtnEdit_DocCategory);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_DocCategory);
     this.xtraTabPage1.Controls.Add(this.checkEdit1);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_ButtonEdit_DocFlow);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_DocFlow);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_BtnEdit_DocNumber);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_TextEidt_DocVersion);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_DocVersion);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_Label_DocNumber);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_ButtonEdit_ValidTime);
     this.xtraTabPage1.Controls.Add(this.DocManagement_DocModify_ButtonEdit_InValidTime);
     this.xtraTabPage1.Controls.Add(this.dateEdit1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(660, 500);
     this.xtraTabPage1.Text = "文档基本信息";
     //
     // btnCannel
     //
     this.btnCannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCannel.Location = new System.Drawing.Point(535, 471);
     this.btnCannel.Name = "btnCannel";
     this.btnCannel.Size = new System.Drawing.Size(75, 23);
     this.btnCannel.TabIndex = 54;
     this.btnCannel.Text = "取消";
     this.btnCannel.Click += new System.EventHandler(this.btnCannel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSave.Location = new System.Drawing.Point(432, 471);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 53;
     this.btnSave.Text = "确定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // checkEdit3
     //
     this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit3.Location = new System.Drawing.Point(20, 478);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "以文档名称作为编码";
     this.checkEdit3.Size = new System.Drawing.Size(142, 19);
     this.checkEdit3.TabIndex = 52;
     //
     // groupControl1
     //
     this.groupControl1.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.groupControl1.Controls.Add(this.btnGenNumber);
     this.groupControl1.Controls.Add(this.btnDel);
     this.groupControl1.Controls.Add(this.btnAdd);
     this.groupControl1.Controls.Add(this.gridControl1);
     this.groupControl1.Location = new System.Drawing.Point(3, 161);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(657, 304);
     this.groupControl1.TabIndex = 51;
     this.groupControl1.Text = "待上传文档";
     //
     // btnGenNumber
     //
     this.btnGenNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnGenNumber.Location = new System.Drawing.Point(575, 155);
     this.btnGenNumber.Name = "btnGenNumber";
     this.btnGenNumber.Size = new System.Drawing.Size(75, 23);
     this.btnGenNumber.TabIndex = 3;
     this.btnGenNumber.Text = "生成编码";
     this.btnGenNumber.Click += new System.EventHandler(this.btnGenNumber_Click);
     //
     // btnDel
     //
     this.btnDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnDel.Location = new System.Drawing.Point(575, 101);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(75, 23);
     this.btnDel.TabIndex = 2;
     this.btnDel.Text = "删除";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnAdd
     //
     this.btnAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnAdd.Location = new System.Drawing.Point(575, 40);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 1;
     this.btnAdd.Text = "添加";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // gridControl1
     //
     this.gridControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.gridControl1.Location = new System.Drawing.Point(-4, 25);
     this.gridControl1.MainView = this.gridView1;
     this.gridControl1.Name = "gridControl1";
     this.gridControl1.Size = new System.Drawing.Size(562, 200);
     this.gridControl1.TabIndex = 0;
     this.gridControl1.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4,
     this.gridColumn5});
     this.gridView1.GridControl = this.gridControl1;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "文档编码";
     this.gridColumn1.FieldName = "number";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "文档版本";
     this.gridColumn2.FieldName = "version";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "文档名称";
     this.gridColumn3.FieldName = "cn_name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "文档格式";
     this.gridColumn4.FieldName = "format_name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "文档路径";
     this.gridColumn5.FieldName = "physical_file_location";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 4;
     //
     // checkEdit2
     //
     this.checkEdit2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit2.Location = new System.Drawing.Point(331, 121);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "自动归档";
     this.checkEdit2.Size = new System.Drawing.Size(96, 19);
     this.checkEdit2.TabIndex = 50;
     //
     // DocManagement_DocModify_Label_SecurityLevel
     //
     this.DocManagement_DocModify_Label_SecurityLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_SecurityLevel.Location = new System.Drawing.Point(22, 124);
     this.DocManagement_DocModify_Label_SecurityLevel.Name = "DocManagement_DocModify_Label_SecurityLevel";
     this.DocManagement_DocModify_Label_SecurityLevel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_SecurityLevel.TabIndex = 48;
     this.DocManagement_DocModify_Label_SecurityLevel.Text = "文档密级:";
     //
     // DocManagement_DocModify_Label_InValidTime
     //
     this.DocManagement_DocModify_Label_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_InValidTime.Location = new System.Drawing.Point(387, 80);
     this.DocManagement_DocModify_Label_InValidTime.Name = "DocManagement_DocModify_Label_InValidTime";
     this.DocManagement_DocModify_Label_InValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_InValidTime.TabIndex = 45;
     this.DocManagement_DocModify_Label_InValidTime.Text = "失效时间:";
     //
     // DocManagement_DocModify_Label_ValidTime
     //
     this.DocManagement_DocModify_Label_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ValidTime.Location = new System.Drawing.Point(22, 86);
     this.DocManagement_DocModify_Label_ValidTime.Name = "DocManagement_DocModify_Label_ValidTime";
     this.DocManagement_DocModify_Label_ValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ValidTime.TabIndex = 44;
     this.DocManagement_DocModify_Label_ValidTime.Text = "生效时间:";
     //
     // DocManagement_DocModify_BtnEdit_DocCategory
     //
     this.DocManagement_DocModify_BtnEdit_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_BtnEdit_DocCategory.Location = new System.Drawing.Point(459, 48);
     this.DocManagement_DocModify_BtnEdit_DocCategory.Name = "DocManagement_DocModify_BtnEdit_DocCategory";
     this.DocManagement_DocModify_BtnEdit_DocCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManagement_DocModify_BtnEdit_DocCategory.Size = new System.Drawing.Size(176, 20);
     this.DocManagement_DocModify_BtnEdit_DocCategory.TabIndex = 43;
     //
     // DocManagement_DocModify_Label_DocCategory
     //
     this.DocManagement_DocModify_Label_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocCategory.Location = new System.Drawing.Point(372, 51);
     this.DocManagement_DocModify_Label_DocCategory.Name = "DocManagement_DocModify_Label_DocCategory";
     this.DocManagement_DocModify_Label_DocCategory.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocCategory.TabIndex = 42;
     this.DocManagement_DocModify_Label_DocCategory.Text = "*文档分类:";
     //
     // checkEdit1
     //
     this.checkEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit1.Location = new System.Drawing.Point(220, 48);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "不许需要审签";
     this.checkEdit1.Size = new System.Drawing.Size(96, 19);
     this.checkEdit1.TabIndex = 41;
     //
     // DocManagement_DocModify_ButtonEdit_DocFlow
     //
     this.DocManagement_DocModify_ButtonEdit_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_ButtonEdit_DocFlow.Location = new System.Drawing.Point(98, 48);
     this.DocManagement_DocModify_ButtonEdit_DocFlow.Name = "DocManagement_DocModify_ButtonEdit_DocFlow";
     this.DocManagement_DocModify_ButtonEdit_DocFlow.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManagement_DocModify_ButtonEdit_DocFlow.Size = new System.Drawing.Size(104, 20);
     this.DocManagement_DocModify_ButtonEdit_DocFlow.TabIndex = 40;
     //
     // DocManagement_DocModify_Label_DocFlow
     //
     this.DocManagement_DocModify_Label_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFlow.Location = new System.Drawing.Point(22, 51);
     this.DocManagement_DocModify_Label_DocFlow.Name = "DocManagement_DocModify_Label_DocFlow";
     this.DocManagement_DocModify_Label_DocFlow.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFlow.TabIndex = 39;
     this.DocManagement_DocModify_Label_DocFlow.Text = "文档流程:";
     //
     // DocManagement_DocModify_BtnEdit_DocNumber
     //
     this.DocManagement_DocModify_BtnEdit_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_BtnEdit_DocNumber.Location = new System.Drawing.Point(98, 17);
     this.DocManagement_DocModify_BtnEdit_DocNumber.Name = "DocManagement_DocModify_BtnEdit_DocNumber";
     this.DocManagement_DocModify_BtnEdit_DocNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManagement_DocModify_BtnEdit_DocNumber.Size = new System.Drawing.Size(218, 20);
     this.DocManagement_DocModify_BtnEdit_DocNumber.TabIndex = 38;
     //
     // DocManagement_DocModify_TextEidt_DocVersion
     //
     this.DocManagement_DocModify_TextEidt_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_TextEidt_DocVersion.Location = new System.Drawing.Point(460, 19);
     this.DocManagement_DocModify_TextEidt_DocVersion.Name = "DocManagement_DocModify_TextEidt_DocVersion";
     this.DocManagement_DocModify_TextEidt_DocVersion.Size = new System.Drawing.Size(175, 20);
     this.DocManagement_DocModify_TextEidt_DocVersion.TabIndex = 33;
     //
     // DocManagement_DocModify_Label_DocVersion
     //
     this.DocManagement_DocModify_Label_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocVersion.Location = new System.Drawing.Point(372, 21);
     this.DocManagement_DocModify_Label_DocVersion.Name = "DocManagement_DocModify_Label_DocVersion";
     this.DocManagement_DocModify_Label_DocVersion.Size = new System.Drawing.Size(67, 14);
     this.DocManagement_DocModify_Label_DocVersion.TabIndex = 32;
     this.DocManagement_DocModify_Label_DocVersion.Text = "*文档版本:";
     //
     // DocManagement_DocModify_Label_DocNumber
     //
     this.DocManagement_DocModify_Label_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocNumber.Location = new System.Drawing.Point(15, 21);
     this.DocManagement_DocModify_Label_DocNumber.Name = "DocManagement_DocModify_Label_DocNumber";
     this.DocManagement_DocModify_Label_DocNumber.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocNumber.TabIndex = 31;
     this.DocManagement_DocModify_Label_DocNumber.Text = "*文档编码:";
     this.DocManagement_DocModify_Label_DocNumber.Click += new System.EventHandler(this.DocManagement_DocModify_Label_DocNumber_Click);
     //
     // DocManagement_DocModify_ButtonEdit_ValidTime
     //
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_ButtonEdit_ValidTime.EditValue = null;
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Location = new System.Drawing.Point(98, 83);
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Name = "DocManagement_DocModify_ButtonEdit_ValidTime";
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.Mask.EditMask = "F";
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManagement_DocModify_ButtonEdit_ValidTime.Size = new System.Drawing.Size(218, 20);
     this.DocManagement_DocModify_ButtonEdit_ValidTime.TabIndex = 46;
     //
     // DocManagement_DocModify_ButtonEdit_InValidTime
     //
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_ButtonEdit_InValidTime.EditValue = null;
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Location = new System.Drawing.Point(459, 74);
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Name = "DocManagement_DocModify_ButtonEdit_InValidTime";
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.Mask.EditMask = "F";
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManagement_DocModify_ButtonEdit_InValidTime.Size = new System.Drawing.Size(176, 20);
     this.DocManagement_DocModify_ButtonEdit_InValidTime.TabIndex = 47;
     //
     // dateEdit1
     //
     this.dateEdit1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.dateEdit1.Location = new System.Drawing.Point(98, 121);
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.Items.AddRange(new object[] {
     "绝密",
     "保密",
     "秘密"});
     this.dateEdit1.Size = new System.Drawing.Size(218, 20);
     this.dateEdit1.TabIndex = 55;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(660, 500);
     this.xtraTabPage2.Text = "文档附加信息";
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.panelControl1);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(660, 500);
     this.xtraTabPage3.Text = "关联的文档";
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(660, 500);
     this.xtraTabPage4.Text = "文档审签信息";
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton);
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(660, 500);
     this.panelControl1.TabIndex = 8;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Location = new System.Drawing.Point(156, 199);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.TabIndex = 25;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Text = "查询(Q)";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton_Click);
     //
     // panelControl2
     //
     this.panelControl2.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.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl);
     this.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl);
     this.panelControl2.Location = new System.Drawing.Point(218, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(442, 498);
     this.panelControl2.TabIndex = 23;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Location = new System.Drawing.Point(5, 202);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Size = new System.Drawing.Size(437, 296);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Text = "关联文档列表区";
     //
     // DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(294, 268);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.TabIndex = 29;
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Text = "删除";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(221, 268);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Text = "添加";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.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.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4});
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Location = new System.Drawing.Point(0, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Size = new System.Drawing.Size(432, 242);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "文档名称";
     this.treeListColumn1.FieldName = "cn_name";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档编号";
     this.treeListColumn2.FieldName = "number";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "文档版本";
     this.treeListColumn3.FieldName = "version";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 2;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "文档类型";
     this.treeListColumn4.FieldName = "document_type_name";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Location = new System.Drawing.Point(3, 1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Size = new System.Drawing.Size(439, 164);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Text = "关联文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Location = new System.Drawing.Point(0, 21);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.MainView = this.gridView2;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Size = new System.Drawing.Size(434, 143);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9});
     this.gridView2.GridControl = this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "文档名称";
     this.gridColumn6.FieldName = "cn_name";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 0;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "文档编号";
     this.gridColumn7.FieldName = "number";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 1;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "文档版本";
     this.gridColumn8.FieldName = "version";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 2;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "文档类型";
     this.gridColumn9.FieldName = "document_type_name";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_Creater_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Location = new System.Drawing.Point(68, 141);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Creater_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Modifier_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Location = new System.Drawing.Point(68, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.TabIndex = 19;
     //
     // DocManage_DocManageTool_DocModify_Creater_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Location = new System.Drawing.Point(1, 141);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Creater_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties.Caption = "创建人:";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_Modifier_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Location = new System.Drawing.Point(1, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties.Caption = "修改人:";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.TabIndex = 9;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl2);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Location = new System.Drawing.Point(3, 3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Size = new System.Drawing.Size(212, 91);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Text = "关联文档信息";
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl3.Location = new System.Drawing.Point(7, 28);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "文档名称:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 64);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 7;
     this.labelControl2.Text = "文档编号:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 99);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "文档版本:";
     //
     // DocBulkImport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(663, 528);
     this.Controls.Add(this.xtraTabControl1);
     this.Name = "DocBulkImport";
     this.Text = "文档批量导入";
     this.Load += new System.EventHandler(this.DocBulkImport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_BtnEdit_DocCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_DocFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_BtnEdit_DocNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TextEidt_DocVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_ValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_ButtonEdit_InValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RoleManageForm));
     FengSharp.OneCardAccess.Infrastructure.TreeLevel treeLevel4 = new FengSharp.OneCardAccess.Infrastructure.TreeLevel();
     FengSharp.OneCardAccess.Infrastructure.TreeLevel treeLevel5 = new FengSharp.OneCardAccess.Infrastructure.TreeLevel();
     FengSharp.OneCardAccess.Infrastructure.TreeLevel treeLevel3 = new FengSharp.OneCardAccess.Infrastructure.TreeLevel();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolRoleNo = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.tcolRoleName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.roleUserControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleUserControl();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.roleMenuControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleMenuControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.roleActionControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleActionControl();
     this.xtraTabPage4 = new DevExpress.XtraTab.XtraTabPage();
     this.roleStockControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleStockControl();
     this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
     this.roleProductControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleProductControl();
     this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
     this.roleCompanyControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleCompanyControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.btnSetLockEnable = new DevExpress.XtraEditors.SimpleButton();
     this.lblCurrentRole = new DevExpress.XtraEditors.LabelControl();
     this.btnDelete = new DevExpress.XtraEditors.SimpleButton();
     this.btnCopyAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnEditView = new DevExpress.XtraEditors.SimpleButton();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem5 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeListQuickFindStyle1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.TreeListQuickFindStyle(this.components);
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine(this.components);
     this.treeList_HotTrack1 = new FengSharp.WinForm.Dev.Components.TreeList_HotTrack(this.components);
     this.mainFormMdiProvider1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.MainFormMdiProvider(this.components);
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit(this.components);
     this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
     this.roleRawMateControl1 = new FengSharp.OneCardAccess.Presentation.IntegeatedManage.SystemSet.RoleRawMateControl();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     this.xtraTabPage2.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     this.xtraTabPage4.SuspendLayout();
     this.xtraTabPage5.SuspendLayout();
     this.xtraTabPage6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     this.xtraTabPage7.SuspendLayout();
     this.SuspendLayout();
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolRoleNo,
     this.tcolRoleName});
     this.treeList1.ColumnsImageList = this.imageCollection1;
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeListQuickFindStyle1.SetEnableFocusedColumnQuickQuery(this.treeList1, true);
     this.treeList_HotTrack1.SetEnableHotTrack(this.treeList1, true);
     this.treeList_HotTrack1.SetHotTrackColor(this.treeList1, System.Drawing.Color.FromArgb(((int)(((byte)(213)))), ((int)(((byte)(232)))), ((int)(((byte)(255))))));
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "RoleId";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "ParentRoleId";
     this.treeList1.SelectImageList = this.imageCollection1;
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(322, 556);
     this.treeList1.StateImageList = this.imageCollection1;
     this.treeList1.TabIndex = 0;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged);
     this.treeList1.CustomDrawNodeImages += new DevExpress.XtraTreeList.CustomDrawNodeImagesEventHandler(this.treeList1_CustomDrawNodeImages);
     this.treeList1.DoubleClick += new System.EventHandler(this.treeList1_DoubleClick);
     //
     // tcolRoleNo
     //
     this.tcolRoleNo.Caption = "角色编号";
     this.tcolRoleNo.FieldName = "RoleNo";
     this.tcolRoleNo.MinWidth = 49;
     this.tcolRoleNo.Name = "tcolRoleNo";
     this.tcolRoleNo.Visible = true;
     this.tcolRoleNo.VisibleIndex = 0;
     this.tcolRoleNo.Width = 150;
     //
     // tcolRoleName
     //
     this.tcolRoleName.Caption = "角色列表";
     this.tcolRoleName.FieldName = "RoleName";
     this.tcolRoleName.MinWidth = 65;
     this.tcolRoleName.Name = "tcolRoleName";
     this.tcolRoleName.Visible = true;
     this.tcolRoleName.VisibleIndex = 1;
     this.tcolRoleName.Width = 130;
     //
     // imageCollection1
     //
     this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
     this.imageCollection1.InsertGalleryImage("rootnode", "images/people/team_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/team_16x16.png"), 0);
     this.imageCollection1.Images.SetKeyName(0, "rootnode");
     this.imageCollection1.InsertGalleryImage("childnode", "images/people/employee_16x16.png", DevExpress.Images.ImageResourceCache.Default.GetImage("images/people/employee_16x16.png"), 1);
     this.imageCollection1.Images.SetKeyName(1, "childnode");
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Location = new System.Drawing.Point(6, 32);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl1.Panel1.Text = "Panel1";
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControl1);
     this.splitContainerControl1.Panel2.Text = "Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(1147, 556);
     this.splitContainerControl1.SplitterPosition = 322;
     this.splitContainerControl1.TabIndex = 1;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
     this.xtraTabControl1.Size = new System.Drawing.Size(820, 556);
     this.xtraTabControl1.TabIndex = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3,
     this.xtraTabPage4,
     this.xtraTabPage5,
     this.xtraTabPage6,
     this.xtraTabPage7});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging);
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.roleUserControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage1.Text = "角色用户";
     //
     // roleUserControl1
     //
     this.roleUserControl1.CurrentBindEntity = null;
     this.roleUserControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleUserControl1.Location = new System.Drawing.Point(0, 0);
     this.roleUserControl1.Name = "roleUserControl1";
     this.roleUserControl1.Size = new System.Drawing.Size(814, 528);
     this.roleUserControl1.TabIndex = 0;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.roleMenuControl1);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage2.Text = "角色菜单";
     //
     // roleMenuControl1
     //
     this.roleMenuControl1.CurrentBindEntity = null;
     this.roleMenuControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleMenuControl1.Facade = null;
     this.roleMenuControl1.Location = new System.Drawing.Point(0, 0);
     this.roleMenuControl1.Name = "roleMenuControl1";
     this.roleMenuControl1.Size = new System.Drawing.Size(814, 528);
     this.roleMenuControl1.TabIndex = 0;
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.roleActionControl1);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage3.Text = "角色权限";
     //
     // roleActionControl1
     //
     this.roleActionControl1.CurrentBindEntity = null;
     this.roleActionControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleActionControl1.Facade = null;
     this.roleActionControl1.Location = new System.Drawing.Point(0, 0);
     this.roleActionControl1.Name = "roleActionControl1";
     this.roleActionControl1.Size = new System.Drawing.Size(814, 528);
     this.roleActionControl1.TabIndex = 0;
     //
     // xtraTabPage4
     //
     this.xtraTabPage4.Controls.Add(this.roleStockControl1);
     this.xtraTabPage4.Name = "xtraTabPage4";
     this.xtraTabPage4.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage4.Text = "仓库授权";
     //
     // roleStockControl1
     //
     this.roleStockControl1.CurrentBindEntity = null;
     this.roleStockControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleStockControl1.Facade = null;
     this.roleStockControl1.Location = new System.Drawing.Point(0, 0);
     this.roleStockControl1.Name = "roleStockControl1";
     this.roleStockControl1.Size = new System.Drawing.Size(814, 528);
     this.roleStockControl1.TabIndex = 4;
     //
     // xtraTabPage5
     //
     this.xtraTabPage5.Controls.Add(this.roleProductControl1);
     this.xtraTabPage5.Name = "xtraTabPage5";
     this.xtraTabPage5.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage5.Text = "产品授权";
     //
     // roleProductControl1
     //
     this.roleProductControl1.CurrentBindEntity = null;
     this.roleProductControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleProductControl1.Facade = null;
     this.roleProductControl1.Location = new System.Drawing.Point(0, 0);
     this.roleProductControl1.Name = "roleProductControl1";
     this.roleProductControl1.Size = new System.Drawing.Size(814, 528);
     this.roleProductControl1.TabIndex = 0;
     treeLevel4.Level_Deep = 0;
     treeLevel4.PId = 0;
     this.roleProductControl1.TreeLevel = treeLevel4;
     //
     // xtraTabPage6
     //
     this.xtraTabPage6.Controls.Add(this.roleCompanyControl1);
     this.xtraTabPage6.Name = "xtraTabPage6";
     this.xtraTabPage6.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage6.Text = "往来单位授权";
     //
     // roleCompanyControl1
     //
     this.roleCompanyControl1.CurrentBindEntity = null;
     this.roleCompanyControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleCompanyControl1.Facade = null;
     this.roleCompanyControl1.Location = new System.Drawing.Point(0, 0);
     this.roleCompanyControl1.Name = "roleCompanyControl1";
     this.roleCompanyControl1.Size = new System.Drawing.Size(814, 528);
     this.roleCompanyControl1.TabIndex = 0;
     treeLevel5.Level_Deep = 0;
     treeLevel5.PId = 0;
     this.roleCompanyControl1.TreeLevel = treeLevel5;
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(6, 6);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(80, 22);
     this.btnAdd.StyleController = this.layoutControl1;
     this.btnAdd.TabIndex = 2;
     this.btnAdd.Text = "新增(&A)";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.btnSetLockEnable);
     this.layoutControl1.Controls.Add(this.lblCurrentRole);
     this.layoutControl1.Controls.Add(this.splitContainerControl1);
     this.layoutControl1.Controls.Add(this.btnDelete);
     this.layoutControl1.Controls.Add(this.btnCopyAdd);
     this.layoutControl1.Controls.Add(this.btnEditView);
     this.layoutControl1.Controls.Add(this.btnAdd);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsCustomizationForm.DesignTimeCustomizationFormPositionAndSize = new System.Drawing.Rectangle(103, 284, 1053, 778);
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.Root;
     this.layoutControl1.Size = new System.Drawing.Size(1159, 594);
     this.layoutControl1.TabIndex = 6;
     this.layoutControl1.Text = "layoutControl1";
     //
     // btnSetLockEnable
     //
     this.btnSetLockEnable.Location = new System.Drawing.Point(342, 6);
     this.btnSetLockEnable.Name = "btnSetLockEnable";
     this.btnSetLockEnable.Size = new System.Drawing.Size(80, 22);
     this.btnSetLockEnable.StyleController = this.layoutControl1;
     this.btnSetLockEnable.TabIndex = 1;
     this.btnSetLockEnable.Text = "禁用角色";
     this.btnSetLockEnable.Click += new System.EventHandler(this.btnSetLockEnable_Click);
     //
     // lblCurrentRole
     //
     this.lblCurrentRole.Location = new System.Drawing.Point(489, 10);
     this.lblCurrentRole.Name = "lblCurrentRole";
     this.lblCurrentRole.Size = new System.Drawing.Size(63, 13);
     this.lblCurrentRole.StyleController = this.layoutControl1;
     this.lblCurrentRole.TabIndex = 6;
     this.lblCurrentRole.Text = "labelControl1";
     //
     // btnDelete
     //
     this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
     this.btnDelete.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDelete.Location = new System.Drawing.Point(258, 6);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(80, 22);
     this.btnDelete.StyleController = this.layoutControl1;
     this.btnDelete.TabIndex = 5;
     this.btnDelete.Text = "删除(&D)";
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnCopyAdd
     //
     this.btnCopyAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnCopyAdd.Image")));
     this.btnCopyAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnCopyAdd.Location = new System.Drawing.Point(90, 6);
     this.btnCopyAdd.Name = "btnCopyAdd";
     this.btnCopyAdd.Size = new System.Drawing.Size(80, 22);
     this.btnCopyAdd.StyleController = this.layoutControl1;
     this.btnCopyAdd.TabIndex = 3;
     this.btnCopyAdd.Text = "复制新增";
     this.btnCopyAdd.Click += new System.EventHandler(this.btnCopyAdd_Click);
     //
     // btnEditView
     //
     this.btnEditView.Image = ((System.Drawing.Image)(resources.GetObject("btnEditView.Image")));
     this.btnEditView.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnEditView.Location = new System.Drawing.Point(174, 6);
     this.btnEditView.Name = "btnEditView";
     this.btnEditView.Size = new System.Drawing.Size(80, 22);
     this.btnEditView.StyleController = this.layoutControl1;
     this.btnEditView.TabIndex = 4;
     this.btnEditView.Text = "编辑(&E)";
     this.btnEditView.Click += new System.EventHandler(this.btnEditView_Click);
     //
     // Root
     //
     this.Root.CustomizationFormText = "Root";
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem5,
     this.layoutControlItem6,
     this.layoutControlItem7});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(1159, 594);
     this.Root.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnAdd;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.MaxSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem1.MinSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(84, 26);
     this.layoutControlItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnCopyAdd;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(84, 0);
     this.layoutControlItem2.MaxSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem2.MinSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(84, 26);
     this.layoutControlItem2.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnEditView;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(168, 0);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(84, 26);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnDelete;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.FillControlToClientArea = false;
     this.layoutControlItem4.Location = new System.Drawing.Point(252, 0);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(84, 26);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(550, 0);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(601, 26);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.splitContainerControl1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem5.Name = "layoutControlItem5";
     this.layoutControlItem5.Size = new System.Drawing.Size(1151, 560);
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextVisible = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.lblCurrentRole;
     this.layoutControlItem6.ControlAlignment = System.Drawing.ContentAlignment.MiddleLeft;
     this.layoutControlItem6.CustomizationFormText = "当前角色:";
     this.layoutControlItem6.Location = new System.Drawing.Point(420, 0);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(130, 26);
     this.layoutControlItem6.Text = "当前角色:";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(60, 13);
     this.layoutControlItem6.TrimClientAreaToControl = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnSetLockEnable;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(336, 0);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(84, 26);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(84, 26);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // xtraTabPage7
     //
     this.xtraTabPage7.Controls.Add(this.roleRawMateControl1);
     this.xtraTabPage7.Name = "xtraTabPage7";
     this.xtraTabPage7.Size = new System.Drawing.Size(814, 528);
     this.xtraTabPage7.Text = "原材料授权";
     //
     // roleRawMateControl1
     //
     this.roleRawMateControl1.CurrentBindEntity = null;
     this.roleRawMateControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.roleRawMateControl1.Facade = null;
     this.roleRawMateControl1.Location = new System.Drawing.Point(0, 0);
     this.roleRawMateControl1.Name = "roleRawMateControl1";
     this.roleRawMateControl1.Size = new System.Drawing.Size(814, 528);
     this.roleRawMateControl1.TabIndex = 0;
     treeLevel3.Level_Deep = 0;
     treeLevel3.PId = 0;
     this.roleRawMateControl1.TreeLevel = treeLevel3;
     //
     // RoleManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1159, 594);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.mainFormMdiProvider1.SetEnableMainFormMdi(this, true);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "RoleManageForm";
     this.Text = "角色管理";
     this.Load += new System.EventHandler(this.RoleManage_Load);
     this.Shown += new System.EventHandler(this.RoleManageForm_Shown);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage4.ResumeLayout(false);
     this.xtraTabPage5.ResumeLayout(false);
     this.xtraTabPage6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     this.xtraTabPage7.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLuongQL));
     this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
     this.MainBar = new DevExpress.XtraBars.Bar();
     this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemChot = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemInTongHop = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItemInChiTiet = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageNhanVien = new DevExpress.XtraTab.XtraTabPage();
     this.treeListNhanVien = new DevExpress.XtraTreeList.TreeList();
     this.NAME = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.ID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.xtraTabPageThoiGian = new DevExpress.XtraTab.XtraTabPage();
     this.treeListBangLuong = new DevExpress.XtraTreeList.TreeList();
     this.CotTreeThangNam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.CotTreeChot = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDoiLuong = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemXemTruocIn = new DevExpress.XtraBars.BarButtonItem();
     this.btnChot = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem6 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem7 = new DevExpress.XtraBars.BarButtonItem();
     this.repositoryItemPopupContainerEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPopupContainerEdit();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotHoTen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotSoNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLuongCB = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotPhanTramTV = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLuongTL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTongThuNhap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTamUng = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cotDaThanhToan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotConLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Thang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotKetChuyenSoTienTU = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotKetChuyenTU = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.repositoryItemTimeEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.repositoryItemTimeEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTimeEdit();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetailTamUng = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetailTamUng = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.colTU_ID = new DevExpress.XtraGrid.Columns.GridColumn();
     this.col_NgayDeNghi = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTU_SoTien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTU_LyDo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTU_NguoiDuyet = new DevExpress.XtraGrid.Columns.GridColumn();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.labelControl6 = new System.Windows.Forms.PLLabel();
     this.labelControl2 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPageNhanVien.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeListNhanVien)).BeginInit();
     this.xtraTabPageThoiGian.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeListBangLuong)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetailTamUng)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetailTamUng)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
     this.MainBar});
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.DockManager = this.dockManager1;
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItemAdd,
     this.barButtonItemDelete,
     this.barButtonItemUpdate,
     this.barButtonItemPrint,
     this.barStaticItem1,
     this.barButtonItem1,
     this.barButtonItem2,
     this.barButtonItemCommit,
     this.barButtonItemNoCommit,
     this.barSubItem1,
     this.barButtonItemXem,
     this.barButtonItemSearch,
     this.barButtonItemClose,
     this.barCheckItemFilter,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItemDoiLuong,
     this.barButtonItemXemTruocIn,
     this.barButtonItemChot,
     this.barButtonItemInChiTiet,
     this.btnChot,
     this.barButtonItem6,
     this.barButtonItem5,
     this.barButtonItem7,
     this.barButtonItemInTongHop});
     this.barManager1.MaxItemId = 65;
     this.barManager1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemPopupContainerEdit1});
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemChot, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInTongHop)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "&Tạo bảng lương";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemChot
     //
     this.barButtonItemChot.Caption = "Chốt";
     this.barButtonItemChot.Id = 54;
     this.barButtonItemChot.Name = "barButtonItemChot";
     this.barButtonItemChot.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemChot_ItemClick);
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "Tạ&m ứng";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 57;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemPrint.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem trước";
     this.barButtonItem4.Id = 43;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItemSearch
     //
     this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemSearch.Caption = "Tìm &kiếm";
     this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
     this.barButtonItemSearch.Id = 27;
     this.barButtonItemSearch.Name = "barButtonItemSearch";
     this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenuFilter
     //
     this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
     this.popupMenuFilter.Manager = this.barManager1;
     this.popupMenuFilter.Name = "popupMenuFilter";
     //
     // barCheckItemFilter
     //
     this.barCheckItemFilter.Caption = "Điều kiện chọn lọc";
     this.barCheckItemFilter.Id = 42;
     this.barCheckItemFilter.Name = "barCheckItemFilter";
     //
     // barButtonItemInTongHop
     //
     this.barButtonItemInTongHop.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemInTongHop.Caption = "In chi tiết lương";
     this.barButtonItemInTongHop.DropDownControl = this.popupMenu2;
     this.barButtonItemInTongHop.Id = 64;
     this.barButtonItemInTongHop.Name = "barButtonItemInTongHop";
     this.barButtonItemInTongHop.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInTongHop_ItemClick);
     //
     // popupMenu2
     //
     this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInChiTiet)});
     this.popupMenu2.Manager = this.barManager1;
     this.popupMenu2.Name = "popupMenu2";
     //
     // barButtonItemInChiTiet
     //
     this.barButtonItemInChiTiet.Caption = "In bảng lương tổng hợp";
     this.barButtonItemInChiTiet.Enabled = true;
     this.barButtonItemInChiTiet.Id = 55;
     this.barButtonItemInChiTiet.Name = "barButtonItemInChiTiet";
     this.barButtonItemInChiTiet.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInChiTiet_ItemClick);
     //
     // barDockControlTop
     //
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(995, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 531);
     this.barDockControlBottom.Size = new System.Drawing.Size(995, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 507);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(995, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 507);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("841e0224-8336-4fda-8bcf-47af293f9163");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockFill = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.Options.AllowDockTop = false;
     this.dockPanel1.Options.AllowFloating = false;
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.Size = new System.Drawing.Size(200, 507);
     this.dockPanel1.Text = "Xem theo";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.xtraTabControl1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 479);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.xtraTabControl1.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Vertical;
     this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPageNhanVien;
     this.xtraTabControl1.Size = new System.Drawing.Size(194, 479);
     this.xtraTabControl1.TabIndex = 1;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageThoiGian,
     this.xtraTabPageNhanVien});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     //
     // xtraTabPageNhanVien
     //
     this.xtraTabPageNhanVien.Controls.Add(this.treeListNhanVien);
     this.xtraTabPageNhanVien.Name = "xtraTabPageNhanVien";
     this.xtraTabPageNhanVien.Size = new System.Drawing.Size(165, 472);
     this.xtraTabPageNhanVien.Text = "Nhân viên";
     //
     // treeListNhanVien
     //
     this.treeListNhanVien.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.NAME,
     this.ID});
     this.treeListNhanVien.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeListNhanVien.Location = new System.Drawing.Point(0, 0);
     this.treeListNhanVien.Name = "treeListNhanVien";
     this.treeListNhanVien.OptionsView.ShowHorzLines = false;
     this.treeListNhanVien.OptionsView.ShowIndicator = false;
     this.treeListNhanVien.OptionsView.ShowVertLines = false;
     this.treeListNhanVien.Size = new System.Drawing.Size(165, 472);
     this.treeListNhanVien.TabIndex = 0;
     //
     // NAME
     //
     this.NAME.AppearanceHeader.Options.UseTextOptions = true;
     this.NAME.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.NAME.Caption = "Danh sách nhân viên";
     this.NAME.FieldName = "NAME";
     this.NAME.Name = "NAME";
     this.NAME.OptionsColumn.AllowEdit = false;
     this.NAME.OptionsColumn.AllowFocus = false;
     this.NAME.OptionsColumn.ReadOnly = true;
     this.NAME.Visible = true;
     this.NAME.VisibleIndex = 0;
     //
     // ID
     //
     this.ID.Caption = "treeListColumn2";
     this.ID.FieldName = "ID";
     this.ID.Name = "ID";
     //
     // xtraTabPageThoiGian
     //
     this.xtraTabPageThoiGian.Controls.Add(this.treeListBangLuong);
     this.xtraTabPageThoiGian.Name = "xtraTabPageThoiGian";
     this.xtraTabPageThoiGian.Size = new System.Drawing.Size(165, 472);
     this.xtraTabPageThoiGian.Text = "Thời gian";
     //
     // treeListBangLuong
     //
     this.treeListBangLuong.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.CotTreeThangNam,
     this.CotTreeChot});
     this.treeListBangLuong.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeListBangLuong.Location = new System.Drawing.Point(0, 0);
     this.treeListBangLuong.Name = "treeListBangLuong";
     this.treeListBangLuong.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeListBangLuong.OptionsView.ShowHorzLines = false;
     this.treeListBangLuong.OptionsView.ShowIndicator = false;
     this.treeListBangLuong.OptionsView.ShowVertLines = false;
     this.treeListBangLuong.Size = new System.Drawing.Size(165, 472);
     this.treeListBangLuong.TabIndex = 0;
     //
     // CotTreeThangNam
     //
     this.CotTreeThangNam.AppearanceHeader.Options.UseTextOptions = true;
     this.CotTreeThangNam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.CotTreeThangNam.Caption = "Thời gian";
     this.CotTreeThangNam.FieldName = "THANG_NAM";
     this.CotTreeThangNam.Name = "CotTreeThangNam";
     this.CotTreeThangNam.OptionsColumn.AllowEdit = false;
     this.CotTreeThangNam.OptionsColumn.AllowFocus = false;
     this.CotTreeThangNam.OptionsColumn.ReadOnly = true;
     this.CotTreeThangNam.Visible = true;
     this.CotTreeThangNam.VisibleIndex = 0;
     //
     // CotTreeChot
     //
     this.CotTreeChot.AppearanceHeader.Options.UseTextOptions = true;
     this.CotTreeChot.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.CotTreeChot.Caption = "Chốt";
     this.CotTreeChot.FieldName = "IS_CHOT";
     this.CotTreeChot.Name = "CotTreeChot";
     this.CotTreeChot.OptionsColumn.AllowEdit = false;
     this.CotTreeChot.OptionsColumn.AllowFocus = false;
     this.CotTreeChot.OptionsColumn.ReadOnly = true;
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Id = 47;
     this.barButtonItemClose.Name = "barButtonItemClose";
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItemDoiLuong
     //
     this.barButtonItemDoiLuong.Id = 49;
     this.barButtonItemDoiLuong.Name = "barButtonItemDoiLuong";
     //
     // barButtonItemXemTruocIn
     //
     this.barButtonItemXemTruocIn.Id = 52;
     this.barButtonItemXemTruocIn.Name = "barButtonItemXemTruocIn";
     //
     // btnChot
     //
     this.btnChot.Caption = "Chốt bảng lương";
     this.btnChot.Id = 59;
     this.btnChot.Name = "btnChot";
     //
     // barButtonItem6
     //
     this.barButtonItem6.Caption = "Mở chốt bảng lương";
     this.barButtonItem6.Id = 60;
     this.barButtonItem6.Name = "barButtonItem6";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id = 62;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // barButtonItem7
     //
     this.barButtonItem7.Caption = "Chốt";
     this.barButtonItem7.Id = 63;
     this.barButtonItem7.Name = "barButtonItem7";
     //
     // repositoryItemPopupContainerEdit1
     //
     this.repositoryItemPopupContainerEdit1.AutoHeight = false;
     this.repositoryItemPopupContainerEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemPopupContainerEdit1.Name = "repositoryItemPopupContainerEdit1";
     this.repositoryItemPopupContainerEdit1.PopupSizeable = false;
     this.repositoryItemPopupContainerEdit1.ShowPopupCloseButton = false;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 65);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(795, 466);
     this.splitContainerControl1.SplitterPosition = 164;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1,
     this.repositoryItemTimeEdit1,
     this.repositoryItemTimeEdit2});
     this.gridControlMaster.Size = new System.Drawing.Size(795, 164);
     this.gridControlMaster.TabIndex = 8;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotHoTen,
     this.CotSoNgay,
     this.CotLuongCB,
     this.CotPhanTramTV,
     this.CotLuongTL,
     this.CotTongThuNhap,
     this.CotTamUng,
     this.cotDaThanhToan,
     this.CotConLai,
     this.Thang,
     this.CotKetChuyenSoTienTU,
     this.CotKetChuyenTU});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     this.gridViewMaster.GroupPanelText = "TIỀN LƯƠNG";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowFooter = true;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotHoTen, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // CotHoTen
     //
     this.CotHoTen.Caption = "Nhân viên";
     this.CotHoTen.FieldName = "NAME";
     this.CotHoTen.Name = "CotHoTen";
     this.CotHoTen.Visible = true;
     this.CotHoTen.VisibleIndex = 0;
     this.CotHoTen.Width = 73;
     //
     // CotSoNgay
     //
     this.CotSoNgay.Caption = "Số ngày làm việc";
     this.CotSoNgay.Name = "CotSoNgay";
     this.CotSoNgay.Visible = true;
     this.CotSoNgay.VisibleIndex = 1;
     this.CotSoNgay.Width = 92;
     //
     // CotLuongCB
     //
     this.CotLuongCB.Caption = "Mức lương";
     this.CotLuongCB.Name = "CotLuongCB";
     this.CotLuongCB.Width = 62;
     //
     // CotPhanTramTV
     //
     this.CotPhanTramTV.Caption = "Phần trăm (thử việc)";
     this.CotPhanTramTV.Name = "CotPhanTramTV";
     this.CotPhanTramTV.Width = 111;
     //
     // CotLuongTL
     //
     this.CotLuongTL.Caption = "Thực lãnh";
     this.CotLuongTL.Name = "CotLuongTL";
     this.CotLuongTL.Width = 59;
     //
     // CotTongThuNhap
     //
     this.CotTongThuNhap.Caption = "Tổng thu nhập (VNĐ)";
     this.CotTongThuNhap.FieldName = "TONG_THU_NHAP";
     this.CotTongThuNhap.MinWidth = 126;
     this.CotTongThuNhap.Name = "CotTongThuNhap";
     this.CotTongThuNhap.SummaryItem.DisplayFormat = "{0}";
     this.CotTongThuNhap.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotTongThuNhap.Visible = true;
     this.CotTongThuNhap.VisibleIndex = 2;
     this.CotTongThuNhap.Width = 126;
     //
     // CotTamUng
     //
     this.CotTamUng.Caption = "Đã tạm ứng (VNĐ)";
     this.CotTamUng.FieldName = "TAM_UNG";
     this.CotTamUng.Name = "CotTamUng";
     this.CotTamUng.SummaryItem.DisplayFormat = "{0}";
     this.CotTamUng.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotTamUng.Visible = true;
     this.CotTamUng.VisibleIndex = 3;
     this.CotTamUng.Width = 101;
     //
     // cotDaThanhToan
     //
     this.cotDaThanhToan.Caption = "Đã thanh toán (VNĐ)";
     this.cotDaThanhToan.Name = "cotDaThanhToan";
     this.cotDaThanhToan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.cotDaThanhToan.Visible = true;
     this.cotDaThanhToan.VisibleIndex = 4;
     this.cotDaThanhToan.Width = 114;
     //
     // CotConLai
     //
     this.CotConLai.Caption = "Còn lại (VNĐ)";
     this.CotConLai.Name = "CotConLai";
     this.CotConLai.SummaryItem.DisplayFormat = "{0}";
     this.CotConLai.SummaryItem.FieldName = "TT_CON_LAI";
     this.CotConLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotConLai.Visible = true;
     this.CotConLai.VisibleIndex = 5;
     this.CotConLai.Width = 76;
     //
     // Thang
     //
     this.Thang.Caption = "Thời gian";
     this.Thang.FieldName = "THANG_NAM";
     this.Thang.Name = "Thang";
     this.Thang.Width = 55;
     //
     // CotKetChuyenSoTienTU
     //
     this.CotKetChuyenSoTienTU.Caption = "Kết chuyển tạm ứng (VNĐ)";
     this.CotKetChuyenSoTienTU.FieldName = "KET_CHUYEN_TAM_UNG";
     this.CotKetChuyenSoTienTU.Name = "CotKetChuyenSoTienTU";
     this.CotKetChuyenSoTienTU.SummaryItem.DisplayFormat = "{0}";
     this.CotKetChuyenSoTienTU.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.CotKetChuyenSoTienTU.Visible = true;
     this.CotKetChuyenSoTienTU.VisibleIndex = 6;
     this.CotKetChuyenSoTienTU.Width = 141;
     //
     // CotKetChuyenTU
     //
     this.CotKetChuyenTU.Caption = "Kết chuyển tạm ứng";
     this.CotKetChuyenTU.Name = "CotKetChuyenTU";
     this.CotKetChuyenTU.Width = 109;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // repositoryItemTimeEdit1
     //
     this.repositoryItemTimeEdit1.AutoHeight = false;
     this.repositoryItemTimeEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit1.Name = "repositoryItemTimeEdit1";
     //
     // repositoryItemTimeEdit2
     //
     this.repositoryItemTimeEdit2.AutoHeight = false;
     this.repositoryItemTimeEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemTimeEdit2.Name = "repositoryItemTimeEdit2";
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(795, 296);
     this.xtraTabControlDetail.TabIndex = 10;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail,
     this.xtraTabPage3});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(788, 267);
     this.xtraTabPageDetail.Text = "Chi tiết lương";
     //
     // gridControlDetail
     //
     this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
     this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetail.MainView = this.gridViewDetail;
     this.gridControlDetail.Name = "gridControlDetail";
     this.gridControlDetail.Size = new System.Drawing.Size(788, 267);
     this.gridControlDetail.TabIndex = 9;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetail.OptionsView.ShowGroupPanel = false;
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.gridControlDetailTamUng);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(788, 267);
     this.xtraTabPage3.Text = "Chi tiết tạm ứng";
     //
     // gridControlDetailTamUng
     //
     this.gridControlDetailTamUng.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetailTamUng.BackgroundImage")));
     this.gridControlDetailTamUng.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlDetailTamUng.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlDetailTamUng.Location = new System.Drawing.Point(0, 0);
     this.gridControlDetailTamUng.MainView = this.gridViewDetailTamUng;
     this.gridControlDetailTamUng.Name = "gridControlDetailTamUng";
     this.gridControlDetailTamUng.Size = new System.Drawing.Size(788, 267);
     this.gridControlDetailTamUng.TabIndex = 10;
     this.gridControlDetailTamUng.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetailTamUng});
     //
     // gridViewDetailTamUng
     //
     this.gridViewDetailTamUng.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetailTamUng.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetailTamUng.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.colTU_ID,
     this.col_NgayDeNghi,
     this.colTU_SoTien,
     this.colTU_LyDo,
     this.colTU_NguoiDuyet});
     this.gridViewDetailTamUng.GridControl = this.gridControlDetailTamUng;
     this.gridViewDetailTamUng.IndicatorWidth = 40;
     this.gridViewDetailTamUng.Name = "gridViewDetailTamUng";
     this.gridViewDetailTamUng.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetailTamUng.OptionsBehavior.Editable = false;
     this.gridViewDetailTamUng.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetailTamUng.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetailTamUng.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetailTamUng.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetailTamUng.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetailTamUng.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.gridViewDetailTamUng.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetailTamUng.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetailTamUng.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetailTamUng.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetailTamUng.OptionsView.ShowFooter = true;
     this.gridViewDetailTamUng.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetailTamUng.OptionsView.ShowGroupPanel = false;
     this.gridViewDetailTamUng.OptionsView.ShowIndicator = false;
     //
     // colTU_ID
     //
     this.colTU_ID.Caption = "ID";
     this.colTU_ID.Name = "colTU_ID";
     this.colTU_ID.Width = 23;
     //
     // col_NgayDeNghi
     //
     this.col_NgayDeNghi.Caption = "Ngày đề nghị";
     this.col_NgayDeNghi.MinWidth = 376;
     this.col_NgayDeNghi.Name = "col_NgayDeNghi";
     this.col_NgayDeNghi.Visible = true;
     this.col_NgayDeNghi.VisibleIndex = 0;
     this.col_NgayDeNghi.Width = 376;
     //
     // colTU_SoTien
     //
     this.colTU_SoTien.Caption = "Số tiền (VNĐ)";
     this.colTU_SoTien.MinWidth = 408;
     this.colTU_SoTien.Name = "colTU_SoTien";
     this.colTU_SoTien.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum;
     this.colTU_SoTien.Visible = true;
     this.colTU_SoTien.VisibleIndex = 1;
     this.colTU_SoTien.Width = 408;
     //
     // colTU_LyDo
     //
     this.colTU_LyDo.Caption = "Lý do";
     this.colTU_LyDo.Name = "colTU_LyDo";
     this.colTU_LyDo.Width = 38;
     //
     // colTU_NguoiDuyet
     //
     this.colTU_NguoiDuyet.Caption = "Người duyệt";
     this.colTU_NguoiDuyet.Name = "colTU_NguoiDuyet";
     this.colTU_NguoiDuyet.Width = 71;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.labelControl6);
     this.popupControlContainerFilter.Controls.Add(this.labelControl2);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(200, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(795, 41);
     this.popupControlContainerFilter.TabIndex = 5;
     this.popupControlContainerFilter.Visible = false;
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(0, 0);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(0, 13);
     this.labelControl6.TabIndex = 27;
     this.labelControl6.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl6.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(0, 0);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(0, 13);
     this.labelControl2.TabIndex = 28;
     this.labelControl2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // frmLuongQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(995, 531);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmLuongQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Tiền lương";
     this.Load += new System.EventHandler(this.frmLuongQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPageNhanVien.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeListNhanVien)).EndInit();
     this.xtraTabPageThoiGian.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeListBangLuong)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPopupContainerEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTimeEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     this.xtraTabPage3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetailTamUng)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetailTamUng)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ActionManageForm));
     this.layoutControl1 = new DevExpress.XtraLayout.LayoutControl();
     this.dataLayoutControl1 = new DevExpress.XtraDataLayout.DataLayoutControl();
     this.btnAdd = new DevExpress.XtraEditors.SimpleButton();
     this.btnAddChild = new DevExpress.XtraEditors.SimpleButton();
     this.btnDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnClose = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.bindingSource1 = new System.Windows.Forms.BindingSource();
     this.ActionNameTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.ParentActionNoTextEdit = new DevExpress.XtraEditors.TextEdit();
     this.OrderSpinEdit = new DevExpress.XtraEditors.SpinEdit();
     this.RemarkMemoEdit = new DevExpress.XtraEditors.MemoEdit();
     this.ActionTypeTextEdit = new DevExpress.XtraEditors.ImageComboBoxEdit();
     this.Root = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.ItemForActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionName = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForParentActionNo = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForOrder = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForActionType = new DevExpress.XtraLayout.LayoutControlItem();
     this.ItemForRemark = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4 = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1 = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem6 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8 = new DevExpress.XtraLayout.LayoutControlItem();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.tcolActionName = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2 = new DevExpress.XtraLayout.LayoutControlItem();
     this.formLoadErrorExit1 = new FengSharp.OneCardAccess.Infrastructure.WinForm.Components.FormLoadErrorExit();
     this.treeList_ShowLine1 = new FengSharp.WinForm.Dev.Components.TreeList_ShowLine();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).BeginInit();
     this.dataLayoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.dataLayoutControl1);
     this.layoutControl1.Controls.Add(this.treeList1);
     this.layoutControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.layoutControl1.Location = new System.Drawing.Point(0, 0);
     this.layoutControl1.Name = "layoutControl1";
     this.layoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.layoutControl1.Root = this.layoutControlGroup1;
     this.layoutControl1.Size = new System.Drawing.Size(940, 559);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text = "layoutControl1";
     //
     // dataLayoutControl1
     //
     this.dataLayoutControl1.Controls.Add(this.btnAdd);
     this.dataLayoutControl1.Controls.Add(this.btnAddChild);
     this.dataLayoutControl1.Controls.Add(this.btnDel);
     this.dataLayoutControl1.Controls.Add(this.btnClose);
     this.dataLayoutControl1.Controls.Add(this.btnSave);
     this.dataLayoutControl1.Controls.Add(this.ActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionNameTextEdit);
     this.dataLayoutControl1.Controls.Add(this.ParentActionNoTextEdit);
     this.dataLayoutControl1.Controls.Add(this.OrderSpinEdit);
     this.dataLayoutControl1.Controls.Add(this.RemarkMemoEdit);
     this.dataLayoutControl1.Controls.Add(this.ActionTypeTextEdit);
     this.dataLayoutControl1.DataSource = this.bindingSource1;
     this.dataLayoutControl1.Location = new System.Drawing.Point(237, 6);
     this.dataLayoutControl1.Name = "dataLayoutControl1";
     this.dataLayoutControl1.OptionsItemText.TextAlignMode = DevExpress.XtraLayout.TextAlignMode.AlignInGroups;
     this.dataLayoutControl1.Root = this.Root;
     this.dataLayoutControl1.Size = new System.Drawing.Size(697, 547);
     this.dataLayoutControl1.TabIndex = 5;
     this.dataLayoutControl1.Text = "dataLayoutControl1";
     //
     // btnAdd
     //
     this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
     this.btnAdd.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAdd.Location = new System.Drawing.Point(169, 509);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(100, 26);
     this.btnAdd.StyleController = this.dataLayoutControl1;
     this.btnAdd.TabIndex = 14;
     this.btnAdd.Text = "新增同级";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnAddChild
     //
     this.btnAddChild.Image = ((System.Drawing.Image)(resources.GetObject("btnAddChild.Image")));
     this.btnAddChild.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnAddChild.Location = new System.Drawing.Point(273, 509);
     this.btnAddChild.Name = "btnAddChild";
     this.btnAddChild.Size = new System.Drawing.Size(100, 26);
     this.btnAddChild.StyleController = this.dataLayoutControl1;
     this.btnAddChild.TabIndex = 15;
     this.btnAddChild.Text = "新增子级";
     this.btnAddChild.Click += new System.EventHandler(this.btnAddChild_Click);
     //
     // btnDel
     //
     this.btnDel.Image = ((System.Drawing.Image)(resources.GetObject("btnDel.Image")));
     this.btnDel.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnDel.Location = new System.Drawing.Point(377, 509);
     this.btnDel.Name = "btnDel";
     this.btnDel.Size = new System.Drawing.Size(100, 26);
     this.btnDel.StyleController = this.dataLayoutControl1;
     this.btnDel.TabIndex = 16;
     this.btnDel.Text = "删除(&D)";
     this.btnDel.Click += new System.EventHandler(this.btnDel_Click);
     //
     // btnClose
     //
     this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
     this.btnClose.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnClose.Location = new System.Drawing.Point(585, 509);
     this.btnClose.Name = "btnClose";
     this.btnClose.Size = new System.Drawing.Size(100, 26);
     this.btnClose.StyleController = this.dataLayoutControl1;
     this.btnClose.TabIndex = 14;
     this.btnClose.Text = "关闭(&C)";
     this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
     //
     // btnSave
     //
     this.btnSave.Image = ((System.Drawing.Image)(resources.GetObject("btnSave.Image")));
     this.btnSave.ImageToTextAlignment = DevExpress.XtraEditors.ImageAlignToText.LeftCenter;
     this.btnSave.Location = new System.Drawing.Point(481, 509);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(100, 26);
     this.btnSave.StyleController = this.dataLayoutControl1;
     this.btnSave.TabIndex = 13;
     this.btnSave.Text = "保存(&S)";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ActionNoTextEdit
     //
     this.ActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionNo", true));
     this.ActionNoTextEdit.Location = new System.Drawing.Point(63, 12);
     this.ActionNoTextEdit.Name = "ActionNoTextEdit";
     this.ActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNoTextEdit.TabIndex = 4;
     //
     // bindingSource1
     //
     this.bindingSource1.DataSource = typeof(FengSharp.OneCardAccess.Domain.RBACModule.Entity.ActionEntity);
     //
     // ActionNameTextEdit
     //
     this.ActionNameTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionName", true));
     this.ActionNameTextEdit.Location = new System.Drawing.Point(63, 36);
     this.ActionNameTextEdit.Name = "ActionNameTextEdit";
     this.ActionNameTextEdit.Properties.NullValuePrompt = null;
     this.ActionNameTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionNameTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionNameTextEdit.TabIndex = 5;
     //
     // ParentActionNoTextEdit
     //
     this.ParentActionNoTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ParentActionNo", true));
     this.ParentActionNoTextEdit.Location = new System.Drawing.Point(63, 60);
     this.ParentActionNoTextEdit.Name = "ParentActionNoTextEdit";
     this.ParentActionNoTextEdit.Properties.NullValuePrompt = null;
     this.ParentActionNoTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ParentActionNoTextEdit.StyleController = this.dataLayoutControl1;
     this.ParentActionNoTextEdit.TabIndex = 6;
     //
     // OrderSpinEdit
     //
     this.OrderSpinEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Order", true));
     this.OrderSpinEdit.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.OrderSpinEdit.Location = new System.Drawing.Point(63, 84);
     this.OrderSpinEdit.Name = "OrderSpinEdit";
     this.OrderSpinEdit.Properties.Appearance.Options.UseTextOptions = true;
     this.OrderSpinEdit.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.OrderSpinEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.OrderSpinEdit.Properties.EditValueChangedFiringMode = DevExpress.XtraEditors.Controls.EditValueChangedFiringMode.Default;
     this.OrderSpinEdit.Properties.Mask.EditMask = "N0";
     this.OrderSpinEdit.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.OrderSpinEdit.Properties.NullValuePrompt = null;
     this.OrderSpinEdit.Size = new System.Drawing.Size(622, 20);
     this.OrderSpinEdit.StyleController = this.dataLayoutControl1;
     this.OrderSpinEdit.TabIndex = 10;
     //
     // RemarkMemoEdit
     //
     this.RemarkMemoEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "Remark", true));
     this.RemarkMemoEdit.Location = new System.Drawing.Point(63, 132);
     this.RemarkMemoEdit.Name = "RemarkMemoEdit";
     this.RemarkMemoEdit.Properties.NullValuePrompt = null;
     this.RemarkMemoEdit.Size = new System.Drawing.Size(622, 373);
     this.RemarkMemoEdit.StyleController = this.dataLayoutControl1;
     this.RemarkMemoEdit.TabIndex = 11;
     //
     // ActionTypeTextEdit
     //
     this.ActionTypeTextEdit.DataBindings.Add(new System.Windows.Forms.Binding("EditValue", this.bindingSource1, "ActionType", true));
     this.ActionTypeTextEdit.Location = new System.Drawing.Point(63, 108);
     this.ActionTypeTextEdit.Name = "ActionTypeTextEdit";
     this.ActionTypeTextEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.ActionTypeTextEdit.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.ImageComboBoxItem[] {
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("module", "module", -1),
     new DevExpress.XtraEditors.Controls.ImageComboBoxItem("auth", "auth", -1)});
     this.ActionTypeTextEdit.Properties.NullValuePrompt = null;
     this.ActionTypeTextEdit.Size = new System.Drawing.Size(622, 20);
     this.ActionTypeTextEdit.StyleController = this.dataLayoutControl1;
     this.ActionTypeTextEdit.TabIndex = 8;
     //
     // Root
     //
     this.Root.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.Root.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlGroup2});
     this.Root.Location = new System.Drawing.Point(0, 0);
     this.Root.Name = "Root";
     this.Root.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.Root.Size = new System.Drawing.Size(697, 547);
     this.Root.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.AllowDrawBackground = false;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.ItemForActionNo,
     this.ItemForActionName,
     this.ItemForParentActionNo,
     this.ItemForOrder,
     this.ItemForActionType,
     this.ItemForRemark,
     this.layoutControlItem3,
     this.layoutControlItem4,
     this.emptySpaceItem1,
     this.layoutControlItem6,
     this.layoutControlItem7,
     this.layoutControlItem8});
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name = "autoGeneratedGroup0";
     this.layoutControlGroup2.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup2.Size = new System.Drawing.Size(689, 539);
     this.layoutControlGroup2.TextVisible = false;
     //
     // ItemForActionNo
     //
     this.ItemForActionNo.Control = this.ActionNoTextEdit;
     this.ItemForActionNo.Location = new System.Drawing.Point(0, 0);
     this.ItemForActionNo.Name = "ItemForActionNo";
     this.ItemForActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionNo.Text = "权限编号";
     this.ItemForActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionName
     //
     this.ItemForActionName.Control = this.ActionNameTextEdit;
     this.ItemForActionName.Location = new System.Drawing.Point(0, 24);
     this.ItemForActionName.Name = "ItemForActionName";
     this.ItemForActionName.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionName.Text = "权限名称";
     this.ItemForActionName.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForParentActionNo
     //
     this.ItemForParentActionNo.Control = this.ParentActionNoTextEdit;
     this.ItemForParentActionNo.CustomizationFormText = "父级编号";
     this.ItemForParentActionNo.Location = new System.Drawing.Point(0, 48);
     this.ItemForParentActionNo.Name = "ItemForParentActionNo";
     this.ItemForParentActionNo.Size = new System.Drawing.Size(677, 24);
     this.ItemForParentActionNo.Text = "父级编号";
     this.ItemForParentActionNo.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForOrder
     //
     this.ItemForOrder.Control = this.OrderSpinEdit;
     this.ItemForOrder.CustomizationFormText = "序号";
     this.ItemForOrder.Location = new System.Drawing.Point(0, 72);
     this.ItemForOrder.Name = "ItemForOrder";
     this.ItemForOrder.Size = new System.Drawing.Size(677, 24);
     this.ItemForOrder.Text = "序号";
     this.ItemForOrder.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForActionType
     //
     this.ItemForActionType.Control = this.ActionTypeTextEdit;
     this.ItemForActionType.CustomizationFormText = "类型";
     this.ItemForActionType.Location = new System.Drawing.Point(0, 96);
     this.ItemForActionType.Name = "ItemForActionType";
     this.ItemForActionType.Size = new System.Drawing.Size(677, 24);
     this.ItemForActionType.Text = "类型";
     this.ItemForActionType.TextSize = new System.Drawing.Size(48, 13);
     //
     // ItemForRemark
     //
     this.ItemForRemark.Control = this.RemarkMemoEdit;
     this.ItemForRemark.CustomizationFormText = "备注";
     this.ItemForRemark.Location = new System.Drawing.Point(0, 120);
     this.ItemForRemark.Name = "ItemForRemark";
     this.ItemForRemark.Size = new System.Drawing.Size(677, 377);
     this.ItemForRemark.Text = "备注";
     this.ItemForRemark.TextSize = new System.Drawing.Size(48, 13);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnSave;
     this.layoutControlItem3.Location = new System.Drawing.Point(469, 497);
     this.layoutControlItem3.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.Name = "layoutControlItem3";
     this.layoutControlItem3.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem3.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextVisible = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnClose;
     this.layoutControlItem4.Location = new System.Drawing.Point(573, 497);
     this.layoutControlItem4.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.Name = "layoutControlItem4";
     this.layoutControlItem4.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextVisible = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack = false;
     this.emptySpaceItem1.Location = new System.Drawing.Point(0, 497);
     this.emptySpaceItem1.Name = "emptySpaceItem1";
     this.emptySpaceItem1.Size = new System.Drawing.Size(157, 30);
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnDel;
     this.layoutControlItem6.Location = new System.Drawing.Point(365, 497);
     this.layoutControlItem6.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.Name = "layoutControlItem6";
     this.layoutControlItem6.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem6.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextVisible = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btnAddChild;
     this.layoutControlItem7.Location = new System.Drawing.Point(261, 497);
     this.layoutControlItem7.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.Name = "layoutControlItem7";
     this.layoutControlItem7.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem7.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextVisible = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.btnAdd;
     this.layoutControlItem8.Location = new System.Drawing.Point(157, 497);
     this.layoutControlItem8.MaxSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.MinSize = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.Name = "layoutControlItem8";
     this.layoutControlItem8.Size = new System.Drawing.Size(104, 30);
     this.layoutControlItem8.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextVisible = false;
     //
     // treeList1
     //
     this.treeList1.Appearance.EvenRow.BackColor = System.Drawing.Color.LightYellow;
     this.treeList1.Appearance.EvenRow.Options.UseBackColor = true;
     this.treeList1.Appearance.OddRow.BackColor = System.Drawing.Color.White;
     this.treeList1.Appearance.OddRow.Options.UseBackColor = true;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.tcolActionName});
     this.treeList1.IndicatorWidth = 40;
     this.treeList1.KeyFieldName = "ActionNo";
     this.treeList_ShowLine1.SetLineNoFormatString(this.treeList1, "{0}");
     this.treeList1.Location = new System.Drawing.Point(6, 6);
     this.treeList1.Name = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeList1.OptionsSelection.UseIndicatorForSelection = true;
     this.treeList1.OptionsView.EnableAppearanceEvenRow = true;
     this.treeList1.OptionsView.EnableAppearanceOddRow = true;
     this.treeList1.ParentFieldName = "ParentActionNo";
     this.treeList_ShowLine1.SetShowLineNo(this.treeList1, true);
     this.treeList1.Size = new System.Drawing.Size(227, 547);
     this.treeList1.TabIndex = 4;
     //
     // tcolActionName
     //
     this.tcolActionName.Caption = "功能名称";
     this.tcolActionName.FieldName = "ActionName";
     this.tcolActionName.Name = "tcolActionName";
     this.tcolActionName.Visible = true;
     this.tcolActionName.VisibleIndex = 0;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutControlItem1,
     this.layoutControlItem2});
     this.layoutControlGroup1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name = "layoutControlGroup1";
     this.layoutControlGroup1.Padding = new DevExpress.XtraLayout.Utils.Padding(3, 3, 3, 3);
     this.layoutControlGroup1.Size = new System.Drawing.Size(940, 559);
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.treeList1;
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name = "layoutControlItem1";
     this.layoutControlItem1.Size = new System.Drawing.Size(231, 551);
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextVisible = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.dataLayoutControl1;
     this.layoutControlItem2.Location = new System.Drawing.Point(231, 0);
     this.layoutControlItem2.Name = "layoutControlItem2";
     this.layoutControlItem2.Size = new System.Drawing.Size(701, 551);
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextVisible = false;
     //
     // ActionManageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(940, 559);
     this.Controls.Add(this.layoutControl1);
     this.formLoadErrorExit1.SetEnableLoadError(this, true);
     this.Name = "ActionManageForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "功能设置";
     this.Load += new System.EventHandler(this.ActionManageForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dataLayoutControl1)).EndInit();
     this.dataLayoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionNameTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ParentActionNoTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.OrderSpinEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.RemarkMemoEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ActionTypeTextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Root)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForParentActionNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForOrder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForActionType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ItemForRemark)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.sptPanel1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeCtl1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.groupPanel1 = new DevExpress.XtraEditors.GroupControl();
     this.btnSaveToSvr = new DevExpress.XtraEditors.SimpleButton();
     this.groupPanel3 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuItem = new DevExpress.XtraEditors.SimpleButton();
     this.chkUsing = new DevExpress.XtraEditors.CheckEdit();
     this.txtmnuAsmName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuClassName = new DevExpress.XtraEditors.TextEdit();
     this.txtmnuName = new DevExpress.XtraEditors.TextEdit();
     this.groupPanel2 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btnSaveMnuGrp = new DevExpress.XtraEditors.SimpleButton();
     this.txtmnuGrp = new DevExpress.XtraEditors.TextEdit();
     this.barManager1 = new DevExpress.XtraBars.BarManager();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnLogoff = new DevExpress.XtraBars.BarButtonItem();
     this.barBtnExit = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barLabel = new DevExpress.XtraBars.BarStaticItem();
     this.barSubOpt = new DevExpress.XtraBars.BarSubItem();
     this.barSkin = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem2 = new DevExpress.XtraBars.BarSubItem();
     this.barChkSys = new DevExpress.XtraBars.BarCheckItem();
     this.barChkTaobao = new DevExpress.XtraBars.BarCheckItem();
     this.barBtnSysMnu = new DevExpress.XtraBars.BarButtonItem();
     this.barSubItem3 = new DevExpress.XtraBars.BarSubItem();
     this.barBtnSysInfo = new DevExpress.XtraBars.BarButtonItem();
     this.barMnuTaobao = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem2 = new DevExpress.XtraBars.BarStaticItem();
     this.barStaticItem3 = new DevExpress.XtraBars.BarStaticItem();
     this.barbtnMnuGrp = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnMnuItem = new DevExpress.XtraBars.BarButtonItem();
     this.barbtnDel = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.popMenuCtl1 = new DevExpress.XtraBars.PopupMenu();
     this.fdlg = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).BeginInit();
     this.sptPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).BeginInit();
     this.groupPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).BeginInit();
     this.SuspendLayout();
     //
     // sptPanel1
     //
     this.sptPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.sptPanel1.Location = new System.Drawing.Point(0, 0);
     this.sptPanel1.Name = "sptPanel1";
     this.sptPanel1.Panel1.Controls.Add(this.treeCtl1);
     this.sptPanel1.Panel1.Text = "Panel1";
     this.sptPanel1.Panel2.Controls.Add(this.groupPanel1);
     this.sptPanel1.Panel2.Text = "Panel2";
     this.sptPanel1.Size = new System.Drawing.Size(732, 448);
     this.sptPanel1.SplitterPosition = 214;
     this.sptPanel1.TabIndex = 0;
     this.sptPanel1.Text = "sptPanel1";
     //
     // treeCtl1
     //
     this.treeCtl1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeCtl1.HorzScrollVisibility = DevExpress.XtraTreeList.ScrollVisibility.Always;
     this.treeCtl1.Location = new System.Drawing.Point(0, 0);
     this.treeCtl1.Name = "treeCtl1";
     this.treeCtl1.BeginUnboundLoad();
     this.treeCtl1.AppendNode(new object[] {
     "1"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "11"}, 0);
     this.treeCtl1.AppendNode(new object[] {
     "2"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "22"}, 2);
     this.treeCtl1.AppendNode(new object[] {
     "222"}, 3);
     this.treeCtl1.AppendNode(new object[] {
     "3"}, -1);
     this.treeCtl1.EndUnboundLoad();
     this.treeCtl1.OptionsBehavior.DragNodes = true;
     this.treeCtl1.OptionsBehavior.Editable = false;
     this.treeCtl1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.treeCtl1.OptionsSelection.InvertSelection = true;
     this.treeCtl1.OptionsView.ShowColumns = false;
     this.treeCtl1.OptionsView.ShowFocusedFrame = false;
     this.treeCtl1.OptionsView.ShowHorzLines = false;
     this.treeCtl1.OptionsView.ShowIndicator = false;
     this.treeCtl1.OptionsView.ShowVertLines = false;
     this.treeCtl1.ShowButtonMode = DevExpress.XtraTreeList.ShowButtonModeEnum.ShowForFocusedRow;
     this.treeCtl1.Size = new System.Drawing.Size(214, 448);
     this.treeCtl1.TabIndex = 0;
     this.treeCtl1.TreeLineStyle = DevExpress.XtraTreeList.LineStyle.Solid;
     this.treeCtl1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeCtl1_FocusedNodeChanged);
     this.treeCtl1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeCtl1_MouseUp);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "treeListColumn1";
     this.treeListColumn1.FieldName = "treeListColumn1";
     this.treeListColumn1.MinWidth = 86;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // groupPanel1
     //
     this.groupPanel1.Controls.Add(this.btnSaveToSvr);
     this.groupPanel1.Controls.Add(this.groupPanel3);
     this.groupPanel1.Controls.Add(this.groupPanel2);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupPanel1.Location = new System.Drawing.Point(0, 0);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(513, 448);
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "菜单编辑";
     //
     // btnSaveToSvr
     //
     this.btnSaveToSvr.Location = new System.Drawing.Point(14, 377);
     this.btnSaveToSvr.Name = "btnSaveToSvr";
     this.btnSaveToSvr.Size = new System.Drawing.Size(130, 23);
     this.btnSaveToSvr.TabIndex = 1;
     this.btnSaveToSvr.Text = "保存菜单至服务器";
     this.btnSaveToSvr.Click += new System.EventHandler(this.btnSaveToSvr_Click);
     //
     // groupPanel3
     //
     this.groupPanel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.groupPanel3.Controls.Add(this.labelControl4);
     this.groupPanel3.Controls.Add(this.labelControl3);
     this.groupPanel3.Controls.Add(this.labelControl2);
     this.groupPanel3.Controls.Add(this.btnSaveMnuItem);
     this.groupPanel3.Controls.Add(this.chkUsing);
     this.groupPanel3.Controls.Add(this.txtmnuAsmName);
     this.groupPanel3.Controls.Add(this.txtmnuClassName);
     this.groupPanel3.Controls.Add(this.txtmnuName);
     this.groupPanel3.Location = new System.Drawing.Point(14, 140);
     this.groupPanel3.Name = "groupPanel3";
     this.groupPanel3.Size = new System.Drawing.Size(487, 217);
     this.groupPanel3.TabIndex = 0;
     this.groupPanel3.Text = "菜单项";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(22, 67);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(48, 14);
     this.labelControl4.TabIndex = 6;
     this.labelControl4.Text = "主画面类";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(10, 94);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(60, 14);
     this.labelControl3.TabIndex = 5;
     this.labelControl3.Text = "程序集名称";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(10, 40);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(60, 14);
     this.labelControl2.TabIndex = 4;
     this.labelControl2.Text = "菜单项名称";
     //
     // btnSaveMnuItem
     //
     this.btnSaveMnuItem.Location = new System.Drawing.Point(7, 152);
     this.btnSaveMnuItem.Name = "btnSaveMnuItem";
     this.btnSaveMnuItem.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuItem.TabIndex = 1;
     this.btnSaveMnuItem.Text = "保存修改";
     this.btnSaveMnuItem.Click += new System.EventHandler(this.btnSaveMnuItem_Click);
     //
     // chkUsing
     //
     this.chkUsing.EditValue = true;
     this.chkUsing.Location = new System.Drawing.Point(5, 117);
     this.chkUsing.Name = "chkUsing";
     this.chkUsing.Properties.Caption = "启用";
     this.chkUsing.Size = new System.Drawing.Size(92, 19);
     this.chkUsing.TabIndex = 3;
     //
     // txtmnuAsmName
     //
     this.txtmnuAsmName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuAsmName.Location = new System.Drawing.Point(76, 91);
     this.txtmnuAsmName.Name = "txtmnuAsmName";
     this.txtmnuAsmName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuAsmName.TabIndex = 2;
     //
     // txtmnuClassName
     //
     this.txtmnuClassName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuClassName.Location = new System.Drawing.Point(76, 64);
     this.txtmnuClassName.Name = "txtmnuClassName";
     this.txtmnuClassName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuClassName.TabIndex = 1;
     //
     // txtmnuName
     //
     this.txtmnuName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuName.Location = new System.Drawing.Point(76, 37);
     this.txtmnuName.Name = "txtmnuName";
     this.txtmnuName.Size = new System.Drawing.Size(406, 20);
     this.txtmnuName.TabIndex = 0;
     //
     // 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.Controls.Add(this.labelControl1);
     this.groupPanel2.Controls.Add(this.btnSaveMnuGrp);
     this.groupPanel2.Controls.Add(this.txtmnuGrp);
     this.groupPanel2.Location = new System.Drawing.Point(14, 25);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(487, 100);
     this.groupPanel2.TabIndex = 0;
     this.groupPanel2.Text = "菜单组";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 38);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(60, 14);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text = "菜单组名称";
     //
     // btnSaveMnuGrp
     //
     this.btnSaveMnuGrp.Location = new System.Drawing.Point(5, 62);
     this.btnSaveMnuGrp.Name = "btnSaveMnuGrp";
     this.btnSaveMnuGrp.Size = new System.Drawing.Size(75, 23);
     this.btnSaveMnuGrp.TabIndex = 1;
     this.btnSaveMnuGrp.Text = "保存修改";
     this.btnSaveMnuGrp.Click += new System.EventHandler(this.btnSaveMnuGrp_Click);
     //
     // txtmnuGrp
     //
     this.txtmnuGrp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.txtmnuGrp.Location = new System.Drawing.Point(76, 35);
     this.txtmnuGrp.Name = "txtmnuGrp";
     this.txtmnuGrp.Size = new System.Drawing.Size(406, 20);
     this.txtmnuGrp.TabIndex = 0;
     //
     // barManager1
     //
     this.barManager1.DockControls.Add(this.barDockControlTop);
     this.barManager1.DockControls.Add(this.barDockControlBottom);
     this.barManager1.DockControls.Add(this.barDockControlLeft);
     this.barManager1.DockControls.Add(this.barDockControlRight);
     this.barManager1.Form = this;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
     this.barButtonItem1,
     this.barSubItem1,
     this.barBtnLogoff,
     this.barBtnExit,
     this.barStaticItem1,
     this.barLabel,
     this.barSubOpt,
     this.barSubItem3,
     this.barSkin,
     this.barSubItem2,
     this.barMnuTaobao,
     this.barChkSys,
     this.barChkTaobao,
     this.barBtnSysInfo,
     this.barStaticItem2,
     this.barStaticItem3,
     this.barBtnSysMnu,
     this.barbtnMnuGrp,
     this.barbtnMnuItem,
     this.barbtnDel,
     this.barButtonItem2,
     this.barButtonItem3,
     this.barButtonItem4,
     this.barButtonItem5});
     this.barManager1.MaxItemId = 26;
     //
     // barDockControlTop
     //
     this.barDockControlTop.CausesValidation = false;
     this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
     this.barDockControlTop.Size = new System.Drawing.Size(732, 0);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.CausesValidation = false;
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 448);
     this.barDockControlBottom.Size = new System.Drawing.Size(732, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.CausesValidation = false;
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 0);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 448);
     //
     // barDockControlRight
     //
     this.barDockControlRight.CausesValidation = false;
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(732, 0);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 448);
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "txx";
     this.barButtonItem1.Id = 0;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "系统(&S)";
     this.barSubItem1.Id = 1;
     this.barSubItem1.ImageIndex = 0;
     this.barSubItem1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnLogoff),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnExit)});
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnLogoff
     //
     this.barBtnLogoff.Caption = "注销(&L)";
     this.barBtnLogoff.Id = 2;
     this.barBtnLogoff.ImageIndex = 1;
     this.barBtnLogoff.Name = "barBtnLogoff";
     //
     // barBtnExit
     //
     this.barBtnExit.Caption = "退出(&X)";
     this.barBtnExit.Id = 3;
     this.barBtnExit.ImageIndex = 2;
     this.barBtnExit.Name = "barBtnExit";
     //
     // barStaticItem1
     //
     this.barStaticItem1.Caption = "当前登录用户:";
     this.barStaticItem1.Id = 4;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barLabel
     //
     this.barLabel.Caption = " ";
     this.barLabel.Id = 5;
     this.barLabel.Name = "barLabel";
     this.barLabel.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barSubOpt
     //
     this.barSubOpt.Caption = "设置(&S)";
     this.barSubOpt.Id = 6;
     this.barSubOpt.ImageIndex = 3;
     this.barSubOpt.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barSkin),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem2),
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysMnu)});
     this.barSubOpt.Name = "barSubOpt";
     this.barSubOpt.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barSkin
     //
     this.barSkin.Caption = "外观";
     this.barSkin.Id = 8;
     this.barSkin.ImageIndex = 4;
     this.barSkin.Name = "barSkin";
     //
     // barSubItem2
     //
     this.barSubItem2.Caption = "菜单样式";
     this.barSubItem2.Id = 10;
     this.barSubItem2.ImageIndex = 5;
     this.barSubItem2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkSys),
     new DevExpress.XtraBars.LinkPersistInfo(this.barChkTaobao)});
     this.barSubItem2.Name = "barSubItem2";
     this.barSubItem2.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barChkSys
     //
     this.barChkSys.Caption = "系统风格";
     this.barChkSys.Checked = true;
     this.barChkSys.Id = 13;
     this.barChkSys.Name = "barChkSys";
     //
     // barChkTaobao
     //
     this.barChkTaobao.Caption = "商家后台风格";
     this.barChkTaobao.Id = 14;
     this.barChkTaobao.Name = "barChkTaobao";
     //
     // barBtnSysMnu
     //
     this.barBtnSysMnu.Caption = "系统菜单";
     this.barBtnSysMnu.Id = 18;
     this.barBtnSysMnu.Name = "barBtnSysMnu";
     this.barBtnSysMnu.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barSubItem3
     //
     this.barSubItem3.Caption = "帮助(&H)";
     this.barSubItem3.Id = 7;
     this.barSubItem3.ImageIndex = 6;
     this.barSubItem3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barBtnSysInfo)});
     this.barSubItem3.Name = "barSubItem3";
     this.barSubItem3.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barBtnSysInfo
     //
     this.barBtnSysInfo.Caption = "系统信息";
     this.barBtnSysInfo.Id = 15;
     this.barBtnSysInfo.Name = "barBtnSysInfo";
     //
     // barMnuTaobao
     //
     this.barMnuTaobao.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.Check;
     this.barMnuTaobao.Caption = "商家后台风格";
     this.barMnuTaobao.Id = 12;
     this.barMnuTaobao.Name = "barMnuTaobao";
     //
     // barStaticItem2
     //
     this.barStaticItem2.Caption = "barStaticItem2";
     this.barStaticItem2.Id = 16;
     this.barStaticItem2.Name = "barStaticItem2";
     this.barStaticItem2.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barStaticItem3
     //
     this.barStaticItem3.Alignment = DevExpress.XtraBars.BarItemLinkAlignment.Right;
     this.barStaticItem3.Caption = "SvrTime";
     this.barStaticItem3.Id = 17;
     this.barStaticItem3.Name = "barStaticItem3";
     this.barStaticItem3.TextAlignment = System.Drawing.StringAlignment.Near;
     //
     // barbtnMnuGrp
     //
     this.barbtnMnuGrp.Caption = "添加菜单组";
     this.barbtnMnuGrp.Id = 19;
     this.barbtnMnuGrp.Name = "barbtnMnuGrp";
     this.barbtnMnuGrp.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuGrp_ItemClick);
     //
     // barbtnMnuItem
     //
     this.barbtnMnuItem.Caption = "添加菜单项";
     this.barbtnMnuItem.Id = 20;
     this.barbtnMnuItem.Name = "barbtnMnuItem";
     this.barbtnMnuItem.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnMnuItem_ItemClick);
     //
     // barbtnDel
     //
     this.barbtnDel.Caption = "删除";
     this.barbtnDel.Id = 21;
     this.barbtnDel.Name = "barbtnDel";
     this.barbtnDel.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barbtnDel_ItemClick);
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 22;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItem3
     //
     this.barButtonItem3.Caption = "加载最新菜单";
     this.barButtonItem3.Id = 23;
     this.barButtonItem3.Name = "barButtonItem3";
     this.barButtonItem3.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem3_ItemClick);
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "barButtonItem4";
     this.barButtonItem4.Id = 24;
     this.barButtonItem4.Name = "barButtonItem4";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "导出菜单";
     this.barButtonItem5.Id = 25;
     this.barButtonItem5.Name = "barButtonItem5";
     this.barButtonItem5.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem5_ItemClick);
     //
     // popMenuCtl1
     //
     this.popMenuCtl1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuGrp),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnMnuItem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barbtnDel),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem3),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem5)});
     this.popMenuCtl1.Manager = this.barManager1;
     this.popMenuCtl1.Name = "popMenuCtl1";
     //
     // fdlg
     //
     this.fdlg.Filter = "*.xml|*.xml";
     this.fdlg.Title = "菜单导出";
     //
     // MenuView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(732, 448);
     this.Controls.Add(this.sptPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "MenuView";
     this.Text = "系统菜单设置";
     this.Load += new System.EventHandler(this.MenuView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.sptPanel1)).EndInit();
     this.sptPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel3)).EndInit();
     this.groupPanel3.ResumeLayout(false);
     this.groupPanel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkUsing.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuAsmName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuClassName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     this.groupPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtmnuGrp.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popMenuCtl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBaseReportExt));
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel2 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.sbNewPreview = new DevExpress.XtraEditors.SimpleButton();
     this.sbPreview = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageIntro = new DevExpress.XtraTab.XtraTabPage();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel2.SuspendLayout();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPageIntro.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel2});
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "System.Windows.Forms.StatusBar"});
     //
     // dockPanel2
     //
     this.dockPanel2.Controls.Add(this.dockPanel2_Container);
     this.dockPanel2.Dock = DevExpress.XtraBars.Docking.DockingStyle.Float;
     this.dockPanel2.FloatLocation = new System.Drawing.Point(231, 255);
     this.dockPanel2.FloatVertical = true;
     this.dockPanel2.ID = new System.Guid("efb3e4b0-6cc1-412c-ae6c-fed385d7419d");
     this.dockPanel2.Location = new System.Drawing.Point(-32768, -32768);
     this.dockPanel2.Name = "dockPanel2";
     this.dockPanel2.OriginalSize = new System.Drawing.Size(0, 0);
     this.dockPanel2.SavedIndex = 0;
     this.dockPanel2.Size = new System.Drawing.Size(200, 200);
     this.dockPanel2.Text = "dockPanel2";
     this.dockPanel2.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
     //
     // dockPanel2_Container
     //
     this.dockPanel2_Container.Location = new System.Drawing.Point(3, 20);
     this.dockPanel2_Container.Name = "dockPanel2_Container";
     this.dockPanel2_Container.Size = new System.Drawing.Size(194, 177);
     this.dockPanel2_Container.TabIndex = 0;
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.FloatSize = new System.Drawing.Size(215, 200);
     this.dockPanel1.FloatVertical = true;
     this.dockPanel1.ID = new System.Guid("abe6377d-9058-4e9f-bb5c-d22cba2ec019");
     this.dockPanel1.Location = new System.Drawing.Point(0, 0);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.AllowDockBottom = false;
     this.dockPanel1.Options.AllowDockFill = false;
     this.dockPanel1.Options.AllowDockRight = false;
     this.dockPanel1.Options.AllowDockTop = false;
     this.dockPanel1.Options.AllowFloating = false;
     this.dockPanel1.Options.FloatOnDblClick = false;
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.Options.ShowMaximizeButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.Size = new System.Drawing.Size(200, 393);
     this.dockPanel1.Text = "Danh sách báo cáo";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.panelControl2);
     this.dockPanel1_Container.Controls.Add(this.panelControl1);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 365);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.splitContainerControl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(0, 0);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(194, 331);
     this.panelControl2.TabIndex = 0;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControl1.Margin = new System.Windows.Forms.Padding(0);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.treeList1);
     this.splitContainerControl1.Panel1.MinSize = 50;
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(194, 331);
     this.splitContainerControl1.SplitterPosition = 166;
     this.splitContainerControl1.TabIndex = 8;
     this.splitContainerControl1.Text = "splitContainerControl1";
     this.splitContainerControl1.SizeChanged += new System.EventHandler(this.splitContainerControl1_SizeChanged);
     //
     // treeList1
     //
     this.treeList1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 0);
     this.treeList1.Name = "treeList1";
     this.treeList1.BeginUnboundLoad();
     this.treeList1.AppendNode(new object[] {
     "Nhóm báo cáo A"}, -1);
     this.treeList1.AppendNode(new object[] {
     "Báo cáo A1"}, 0);
     this.treeList1.AppendNode(new object[] {
     "Báo cáo A2"}, 0);
     this.treeList1.AppendNode(new object[] {
     "Báo cáo A3"}, 0);
     this.treeList1.AppendNode(new object[] {
     "Nhóm báo cáo B"}, -1);
     this.treeList1.AppendNode(new object[] {
     "Báo cáo B1"}, 4);
     this.treeList1.AppendNode(new object[] {
     "Báo cáo B2"}, 4);
     this.treeList1.EndUnboundLoad();
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.OptionsMenu.EnableColumnMenu = false;
     this.treeList1.OptionsMenu.EnableFooterMenu = false;
     this.treeList1.Size = new System.Drawing.Size(194, 166);
     this.treeList1.TabIndex = 1;
     this.treeList1.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.treeList1_FocusedNodeChanged_1);
     //
     // treeListColumn1
     //
     this.treeListColumn1.MinWidth = 46;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // panelControl1
     //
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.sbNewPreview);
     this.panelControl1.Controls.Add(this.sbPreview);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 331);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Padding = new System.Windows.Forms.Padding(5, 5, 10, 5);
     this.panelControl1.Size = new System.Drawing.Size(194, 34);
     this.panelControl1.TabIndex = 9;
     //
     // sbNewPreview
     //
     this.sbNewPreview.Dock = System.Windows.Forms.DockStyle.Right;
     this.sbNewPreview.Location = new System.Drawing.Point(56, 5);
     this.sbNewPreview.Name = "sbNewPreview";
     this.sbNewPreview.Size = new System.Drawing.Size(64, 24);
     this.sbNewPreview.TabIndex = 1;
     this.sbNewPreview.Text = "&Mới";
     this.sbNewPreview.ToolTip = "Tạo báo cáo mới";
     this.sbNewPreview.Click += new System.EventHandler(this.sbNewPreview_Click);
     //
     // sbPreview
     //
     this.sbPreview.Dock = System.Windows.Forms.DockStyle.Right;
     this.sbPreview.Location = new System.Drawing.Point(120, 5);
     this.sbPreview.Name = "sbPreview";
     this.sbPreview.Size = new System.Drawing.Size(64, 24);
     this.sbPreview.TabIndex = 0;
     this.sbPreview.Text = "&Xem";
     this.sbPreview.ToolTip = "Tạo báo cáo theo điều kiện lọc";
     this.sbPreview.Click += new System.EventHandler(this.sbPreview_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.xtraTabControl1.HeaderButtons = ((DevExpress.XtraTab.TabButtons)(((DevExpress.XtraTab.TabButtons.Prev | DevExpress.XtraTab.TabButtons.Next)
                 | DevExpress.XtraTab.TabButtons.Close)));
     this.xtraTabControl1.Location = new System.Drawing.Point(200, 0);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPageIntro;
     this.xtraTabControl1.Size = new System.Drawing.Size(418, 393);
     this.xtraTabControl1.TabIndex = 9;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageIntro});
     this.xtraTabControl1.SelectedPageChanged += new DevExpress.XtraTab.TabPageChangedEventHandler(this.xtraTabControl1_SelectedPageChanged);
     this.xtraTabControl1.CloseButtonClick += new System.EventHandler(this.xtraTabControl1_CloseButtonClick);
     //
     // xtraTabPageIntro
     //
     this.xtraTabPageIntro.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.xtraTabPageIntro.Controls.Add(this.pictureEdit1);
     this.xtraTabPageIntro.Name = "xtraTabPageIntro";
     this.xtraTabPageIntro.Size = new System.Drawing.Size(411, 364);
     this.xtraTabPageIntro.Text = "Giới thiệu";
     //
     // pictureEdit1
     //
     this.pictureEdit1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.pictureEdit1.EditValue = ((object)(resources.GetObject("pictureEdit1.EditValue")));
     this.pictureEdit1.Location = new System.Drawing.Point(0, 0);
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.ReadOnly = true;
     this.pictureEdit1.Properties.ShowMenu = false;
     this.pictureEdit1.ShowToolTips = false;
     this.pictureEdit1.Size = new System.Drawing.Size(411, 364);
     this.pictureEdit1.TabIndex = 0;
     //
     // frmBaseReportExt
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(618, 393);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.dockPanel1);
     this.Name = "frmBaseReportExt";
     this.Text = "Hệ thống báo cáo";
     this.Load += new System.EventHandler(this.frmBaseReport_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel2.ResumeLayout(false);
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPageIntro.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccTypesDlgFrm));
     this.TLAccNames = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.BtnOk = new DevExpress.XtraEditors.SimpleButton();
     this.BtnCancel = new DevExpress.XtraEditors.SimpleButton();
     this.imageCollectionNodes = new DevExpress.Utils.ImageCollection(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.TLAccNames)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).BeginInit();
     this.SuspendLayout();
     //
     // TLAccNames
     //
     this.TLAccNames.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.TLAccNames.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2});
     this.TLAccNames.Location = new System.Drawing.Point(8, 3);
     this.TLAccNames.Name = "TLAccNames";
     this.TLAccNames.BeginUnboundLoad();
     this.TLAccNames.AppendNode(new object[] {
     "شجرة الحسابات",
     "0"}, -1, 0, 1, -1);
     this.TLAccNames.EndUnboundLoad();
     this.TLAccNames.OptionsBehavior.Editable = false;
     this.TLAccNames.OptionsBehavior.PopulateServiceColumns = true;
     this.TLAccNames.OptionsLayout.AddNewColumns = false;
     this.TLAccNames.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.TLAccNames.SelectImageList = this.imageCollectionNodes;
     this.TLAccNames.Size = new System.Drawing.Size(272, 220);
     this.TLAccNames.TabIndex = 0;
     this.TLAccNames.AfterExpand += new DevExpress.XtraTreeList.NodeEventHandler(this.TLAccNames_AfterExpand);
     this.TLAccNames.FocusedNodeChanged += new DevExpress.XtraTreeList.FocusedNodeChangedEventHandler(this.TLAccNames_FocusedNodeChanged);
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "اسم الحساب";
     this.treeListColumn1.FieldName = "AccountDes";
     this.treeListColumn1.MinWidth = 37;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "AccountId";
     this.treeListColumn2.FieldName = "AccountId";
     this.treeListColumn2.Name = "treeListColumn2";
     //
     // BtnOk
     //
     this.BtnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.BtnOk.Enabled = false;
     this.BtnOk.Location = new System.Drawing.Point(205, 229);
     this.BtnOk.Name = "BtnOk";
     this.BtnOk.Size = new System.Drawing.Size(75, 23);
     this.BtnOk.TabIndex = 1;
     this.BtnOk.Text = "موافق";
     this.BtnOk.Click += new System.EventHandler(this.BtnOk_Click);
     //
     // BtnCancel
     //
     this.BtnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.BtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.BtnCancel.Location = new System.Drawing.Point(124, 229);
     this.BtnCancel.Name = "BtnCancel";
     this.BtnCancel.Size = new System.Drawing.Size(75, 23);
     this.BtnCancel.TabIndex = 2;
     this.BtnCancel.Text = "الغاء";
     this.BtnCancel.Click += new System.EventHandler(this.BtnCancel_Click);
     //
     // imageCollectionNodes
     //
     this.imageCollectionNodes.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollectionNodes.ImageStream")));
     this.imageCollectionNodes.Images.SetKeyName(0, "NodeItems.jpg");
     this.imageCollectionNodes.Images.SetKeyName(1, "NodeSelected.png");
     this.imageCollectionNodes.Images.SetKeyName(2, "NodeNotSelected.png");
     //
     // AccTypesDlgFrm
     //
     this.AcceptButton = this.BtnOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.BtnCancel;
     this.ClientSize = new System.Drawing.Size(288, 258);
     this.ControlBox = false;
     this.Controls.Add(this.BtnCancel);
     this.Controls.Add(this.BtnOk);
     this.Controls.Add(this.TLAccNames);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "AccTypesDlgFrm";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.Text = "الحســــــــــــــابات";
     this.Load += new System.EventHandler(this.AccTypesDlgFrm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.TLAccNames)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.imageCollectionNodes)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.DocManagement_DocModify_TabContr = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_TabContr_BasicInfo = new DevExpress.XtraTab.XtraTabPage();
     this.btnCannel = new DevExpress.XtraEditors.SimpleButton();
     this.btnSave = new DevExpress.XtraEditors.SimpleButton();
     this.ckAuto = new DevExpress.XtraEditors.CheckEdit();
     this.ckFlow = new DevExpress.XtraEditors.CheckEdit();
     this.cbxDocDense = new DevExpress.XtraEditors.ComboBoxEdit();
     this.DocManagement_DocModify_GroupControl_PartsRelated = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControl1 = new DevExpress.XtraEditors.ListBoxControl();
     this.btnPartsDel = new DevExpress.XtraEditors.SimpleButton();
     this.btnPartsAdd = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo = new DevExpress.XtraTab.XtraTabControl();
     this.DocManagement_DocModify_XtraTabPage_Remark = new DevExpress.XtraTab.XtraTabPage();
     this.txtRemark = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords = new DevExpress.XtraTab.XtraTabPage();
     this.txtKey = new DevExpress.XtraEditors.MemoEdit();
     this.DocManagement_DocModify_XtraTabPage_Summary = new DevExpress.XtraTab.XtraTabPage();
     this.txtAbstract = new DevExpress.XtraEditors.MemoEdit();
     this.txtDocModel = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocUpload = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocFlow = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocCategory = new DevExpress.XtraEditors.ButtonEdit();
     this.txtDocNumber = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManagement_DocModify_Label_SecurityLevel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_InValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ValidTime = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocModel = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocUpload = new DevExpress.XtraEditors.LabelControl();
     this.txtDocPage = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocPage = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocFlow = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_ModifyTime = new DevExpress.XtraEditors.LabelControl();
     this.txtModifyTime = new DevExpress.XtraEditors.TextEdit();
     this.txtModifyCount = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_ModifyCount = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocCategory = new DevExpress.XtraEditors.LabelControl();
     this.txtDocFormat = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocFormat = new DevExpress.XtraEditors.LabelControl();
     this.txtEnName = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_EnglishName = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocName = new DevExpress.XtraEditors.LabelControl();
     this.txtDocName = new DevExpress.XtraEditors.TextEdit();
     this.txtDocVersion = new DevExpress.XtraEditors.TextEdit();
     this.DocManagement_DocModify_Label_DocVersion = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_Label_DocNumber = new DevExpress.XtraEditors.LabelControl();
     this.txtInValidTime = new DevExpress.XtraEditors.DateEdit();
     this.txtValidTime = new DevExpress.XtraEditors.DateEdit();
     this.DocManagement_DocModify_tabContr_AdditionalInfor = new DevExpress.XtraTab.XtraTabPage();
     this.DocManagement_DocModify_TabContr_ApproInfo = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
     this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.checkEdit4 = new DevExpress.XtraEditors.CheckEdit();
     this.checkEdit3 = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_TabContr_DocAssociated = new DevExpress.XtraTab.XtraTabPage();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton = new DevExpress.XtraEditors.SimpleButton();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn4 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl = new DevExpress.XtraGrid.GridControl();
     this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit = new DevExpress.XtraEditors.ButtonEdit();
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit = new DevExpress.XtraEditors.CheckEdit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl = new DevExpress.XtraEditors.GroupControl();
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit = new DevExpress.XtraEditors.TextEdit();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).BeginInit();
     this.DocManagement_DocModify_TabContr.SuspendLayout();
     this.DocManagement_DocModify_TabContr_BasicInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).BeginInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).BeginInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SuspendLayout();
     this.DocManagement_DocModify_XtraTabPage_Remark.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).BeginInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
     this.panelControl3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
     this.panelControl4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).BeginInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).BeginInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // DocManagement_DocModify_TabContr
     //
     this.DocManagement_DocModify_TabContr.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.DocManagement_DocModify_TabContr.Location = new System.Drawing.Point(-4, -2);
     this.DocManagement_DocModify_TabContr.Name = "DocManagement_DocModify_TabContr";
     this.DocManagement_DocModify_TabContr.SelectedTabPage = this.DocManagement_DocModify_TabContr_BasicInfo;
     this.DocManagement_DocModify_TabContr.Size = new System.Drawing.Size(777, 604);
     this.DocManagement_DocModify_TabContr.TabIndex = 0;
     this.DocManagement_DocModify_TabContr.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_TabContr_BasicInfo,
     this.DocManagement_DocModify_tabContr_AdditionalInfor,
     this.DocManagement_DocModify_TabContr_ApproInfo,
     this.DocManagement_DocModify_TabContr_DocAssociated});
     //
     // DocManagement_DocModify_TabContr_BasicInfo
     //
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnCannel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.btnSave);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckAuto);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.ckFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.cbxDocDense);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_GroupControl_PartsRelated);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_SecurityLevel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_InValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocModel);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocUpload);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocPage);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFlow);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_ModifyCount);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocCategory);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocFormat);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtEnName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_EnglishName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocName);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtDocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocVersion);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.DocManagement_DocModify_Label_DocNumber);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtInValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Controls.Add(this.txtValidTime);
     this.DocManagement_DocModify_TabContr_BasicInfo.Name = "DocManagement_DocModify_TabContr_BasicInfo";
     this.DocManagement_DocModify_TabContr_BasicInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_BasicInfo.Text = "文档基本信息";
     //
     // btnCannel
     //
     this.btnCannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnCannel.Location = new System.Drawing.Point(646, 512);
     this.btnCannel.Name = "btnCannel";
     this.btnCannel.Size = new System.Drawing.Size(75, 23);
     this.btnCannel.TabIndex = 76;
     this.btnCannel.Text = "取消";
     this.btnCannel.Click += new System.EventHandler(this.btnCannel_Click);
     //
     // btnSave
     //
     this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnSave.Location = new System.Drawing.Point(551, 512);
     this.btnSave.Name = "btnSave";
     this.btnSave.Size = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 75;
     this.btnSave.Text = "确定";
     this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
     //
     // ckAuto
     //
     this.ckAuto.Location = new System.Drawing.Point(498, 199);
     this.ckAuto.Name = "ckAuto";
     this.ckAuto.Properties.Caption = "自动归档";
     this.ckAuto.Size = new System.Drawing.Size(87, 19);
     this.ckAuto.TabIndex = 74;
     //
     // ckFlow
     //
     this.ckFlow.Location = new System.Drawing.Point(300, 119);
     this.ckFlow.Name = "ckFlow";
     this.ckFlow.Properties.Caption = "不需要审签";
     this.ckFlow.Size = new System.Drawing.Size(87, 19);
     this.ckFlow.TabIndex = 73;
     //
     // cbxDocDense
     //
     this.cbxDocDense.Location = new System.Drawing.Point(108, 198);
     this.cbxDocDense.Name = "cbxDocDense";
     this.cbxDocDense.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.cbxDocDense.Properties.Items.AddRange(new object[] {
     "绝密",
     "机密",
     "秘密",
     "一般"});
     this.cbxDocDense.Size = new System.Drawing.Size(279, 20);
     this.cbxDocDense.TabIndex = 72;
     //
     // DocManagement_DocModify_GroupControl_PartsRelated
     //
     this.DocManagement_DocModify_GroupControl_PartsRelated.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.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.listBoxControl1);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsDel);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Controls.Add(this.btnPartsAdd);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Location = new System.Drawing.Point(32, 371);
     this.DocManagement_DocModify_GroupControl_PartsRelated.Name = "DocManagement_DocModify_GroupControl_PartsRelated";
     this.DocManagement_DocModify_GroupControl_PartsRelated.Size = new System.Drawing.Size(731, 135);
     this.DocManagement_DocModify_GroupControl_PartsRelated.TabIndex = 38;
     this.DocManagement_DocModify_GroupControl_PartsRelated.Text = "关联零部件";
     //
     // listBoxControl1
     //
     this.listBoxControl1.Location = new System.Drawing.Point(10, 25);
     this.listBoxControl1.Name = "listBoxControl1";
     this.listBoxControl1.Size = new System.Drawing.Size(601, 105);
     this.listBoxControl1.TabIndex = 2;
     //
     // btnPartsDel
     //
     this.btnPartsDel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsDel.Location = new System.Drawing.Point(649, 95);
     this.btnPartsDel.Name = "btnPartsDel";
     this.btnPartsDel.Size = new System.Drawing.Size(75, 23);
     this.btnPartsDel.TabIndex = 1;
     this.btnPartsDel.Text = "删除";
     this.btnPartsDel.Click += new System.EventHandler(this.btnPartsDel_Click);
     //
     // btnPartsAdd
     //
     this.btnPartsAdd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.btnPartsAdd.Location = new System.Drawing.Point(649, 43);
     this.btnPartsAdd.Name = "btnPartsAdd";
     this.btnPartsAdd.Size = new System.Drawing.Size(75, 23);
     this.btnPartsAdd.TabIndex = 0;
     this.btnPartsAdd.Text = "添加";
     this.btnPartsAdd.Click += new System.EventHandler(this.btnPartsAdd_Click);
     //
     // DocManagement_DocModify_XtraTabControl_DocBasicInfo
     //
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.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.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderLocation = DevExpress.XtraTab.TabHeaderLocation.Left;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.HeaderOrientation = DevExpress.XtraTab.TabOrientation.Horizontal;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Location = new System.Drawing.Point(32, 224);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Name = "DocManagement_DocModify_XtraTabControl_DocBasicInfo";
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.SelectedTabPage = this.DocManagement_DocModify_XtraTabPage_Remark;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.Size = new System.Drawing.Size(736, 144);
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabIndex = 37;
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.DocManagement_DocModify_XtraTabPage_Remark,
     this.DocManagement_DocModify_XtraTabPage_KeyWords,
     this.DocManagement_DocModify_XtraTabPage_Summary});
     //
     // DocManagement_DocModify_XtraTabPage_Remark
     //
     this.DocManagement_DocModify_XtraTabPage_Remark.Controls.Add(this.txtRemark);
     this.DocManagement_DocModify_XtraTabPage_Remark.Name = "DocManagement_DocModify_XtraTabPage_Remark";
     this.DocManagement_DocModify_XtraTabPage_Remark.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Remark.Text = "备注";
     //
     // txtRemark
     //
     this.txtRemark.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtRemark.Location = new System.Drawing.Point(0, 0);
     this.txtRemark.Name = "txtRemark";
     this.txtRemark.Size = new System.Drawing.Size(680, 138);
     this.txtRemark.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_KeyWords
     //
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Controls.Add(this.txtKey);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Name = "DocManagement_DocModify_XtraTabPage_KeyWords";
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_KeyWords.Text = "关键字";
     //
     // txtKey
     //
     this.txtKey.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtKey.Location = new System.Drawing.Point(0, 0);
     this.txtKey.Name = "txtKey";
     this.txtKey.Size = new System.Drawing.Size(680, 138);
     this.txtKey.TabIndex = 0;
     //
     // DocManagement_DocModify_XtraTabPage_Summary
     //
     this.DocManagement_DocModify_XtraTabPage_Summary.Controls.Add(this.txtAbstract);
     this.DocManagement_DocModify_XtraTabPage_Summary.Name = "DocManagement_DocModify_XtraTabPage_Summary";
     this.DocManagement_DocModify_XtraTabPage_Summary.Size = new System.Drawing.Size(680, 138);
     this.DocManagement_DocModify_XtraTabPage_Summary.Text = "摘要";
     //
     // txtAbstract
     //
     this.txtAbstract.Dock = System.Windows.Forms.DockStyle.Fill;
     this.txtAbstract.Location = new System.Drawing.Point(0, 0);
     this.txtAbstract.Name = "txtAbstract";
     this.txtAbstract.Size = new System.Drawing.Size(680, 138);
     this.txtAbstract.TabIndex = 0;
     //
     // txtDocModel
     //
     this.txtDocModel.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.txtDocModel.Location = new System.Drawing.Point(498, 140);
     this.txtDocModel.Name = "txtDocModel";
     this.txtDocModel.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocModel.Size = new System.Drawing.Size(265, 20);
     this.txtDocModel.TabIndex = 35;
     this.txtDocModel.Click += new System.EventHandler(this.txtDocModel_Click);
     //
     // txtDocUpload
     //
     this.txtDocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocUpload.Location = new System.Drawing.Point(108, 146);
     this.txtDocUpload.Name = "txtDocUpload";
     this.txtDocUpload.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocUpload.Size = new System.Drawing.Size(279, 20);
     this.txtDocUpload.TabIndex = 33;
     this.txtDocUpload.Click += new System.EventHandler(this.docUpload_ButtonClick);
     //
     // txtDocFlow
     //
     this.txtDocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFlow.Location = new System.Drawing.Point(108, 117);
     this.txtDocFlow.Name = "txtDocFlow";
     this.txtDocFlow.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocFlow.Size = new System.Drawing.Size(160, 20);
     this.txtDocFlow.TabIndex = 32;
     this.txtDocFlow.Click += new System.EventHandler(this.txtDocFlow_Click);
     //
     // txtDocCategory
     //
     this.txtDocCategory.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.txtDocCategory.Location = new System.Drawing.Point(498, 60);
     this.txtDocCategory.Name = "txtDocCategory";
     this.txtDocCategory.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocCategory.Size = new System.Drawing.Size(265, 20);
     this.txtDocCategory.TabIndex = 31;
     this.txtDocCategory.Click += new System.EventHandler(this.txtDocCategory_Click);
     //
     // txtDocNumber
     //
     this.txtDocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocNumber.Location = new System.Drawing.Point(108, 6);
     this.txtDocNumber.Name = "txtDocNumber";
     this.txtDocNumber.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtDocNumber.Size = new System.Drawing.Size(279, 20);
     this.txtDocNumber.TabIndex = 30;
     this.txtDocNumber.Click += new System.EventHandler(this.txtDocNumber_Click);
     //
     // DocManagement_DocModify_Label_SecurityLevel
     //
     this.DocManagement_DocModify_Label_SecurityLevel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_SecurityLevel.Location = new System.Drawing.Point(32, 201);
     this.DocManagement_DocModify_Label_SecurityLevel.Name = "DocManagement_DocModify_Label_SecurityLevel";
     this.DocManagement_DocModify_Label_SecurityLevel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_SecurityLevel.TabIndex = 28;
     this.DocManagement_DocModify_Label_SecurityLevel.Text = "文档密级:";
     //
     // DocManagement_DocModify_Label_InValidTime
     //
     this.DocManagement_DocModify_Label_InValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_InValidTime.Location = new System.Drawing.Point(427, 173);
     this.DocManagement_DocModify_Label_InValidTime.Name = "DocManagement_DocModify_Label_InValidTime";
     this.DocManagement_DocModify_Label_InValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_InValidTime.TabIndex = 26;
     this.DocManagement_DocModify_Label_InValidTime.Text = "失效时间:";
     //
     // DocManagement_DocModify_Label_ValidTime
     //
     this.DocManagement_DocModify_Label_ValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ValidTime.Location = new System.Drawing.Point(32, 175);
     this.DocManagement_DocModify_Label_ValidTime.Name = "DocManagement_DocModify_Label_ValidTime";
     this.DocManagement_DocModify_Label_ValidTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ValidTime.TabIndex = 24;
     this.DocManagement_DocModify_Label_ValidTime.Text = "生效时间:";
     //
     // DocManagement_DocModify_Label_DocModel
     //
     this.DocManagement_DocModify_Label_DocModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocModel.Location = new System.Drawing.Point(427, 146);
     this.DocManagement_DocModify_Label_DocModel.Name = "DocManagement_DocModify_Label_DocModel";
     this.DocManagement_DocModify_Label_DocModel.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocModel.TabIndex = 22;
     this.DocManagement_DocModify_Label_DocModel.Text = "文档模板:";
     //
     // DocManagement_DocModify_Label_DocUpload
     //
     this.DocManagement_DocModify_Label_DocUpload.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocUpload.Location = new System.Drawing.Point(32, 149);
     this.DocManagement_DocModify_Label_DocUpload.Name = "DocManagement_DocModify_Label_DocUpload";
     this.DocManagement_DocModify_Label_DocUpload.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocUpload.TabIndex = 19;
     this.DocManagement_DocModify_Label_DocUpload.Text = "上传文件:";
     //
     // txtDocPage
     //
     this.txtDocPage.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.txtDocPage.Location = new System.Drawing.Point(498, 115);
     this.txtDocPage.Name = "txtDocPage";
     this.txtDocPage.Size = new System.Drawing.Size(265, 20);
     this.txtDocPage.TabIndex = 18;
     //
     // DocManagement_DocModify_Label_DocPage
     //
     this.DocManagement_DocModify_Label_DocPage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocPage.Location = new System.Drawing.Point(427, 120);
     this.DocManagement_DocModify_Label_DocPage.Name = "DocManagement_DocModify_Label_DocPage";
     this.DocManagement_DocModify_Label_DocPage.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocPage.TabIndex = 17;
     this.DocManagement_DocModify_Label_DocPage.Text = "文档页面:";
     //
     // DocManagement_DocModify_Label_DocFlow
     //
     this.DocManagement_DocModify_Label_DocFlow.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFlow.Location = new System.Drawing.Point(32, 120);
     this.DocManagement_DocModify_Label_DocFlow.Name = "DocManagement_DocModify_Label_DocFlow";
     this.DocManagement_DocModify_Label_DocFlow.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFlow.TabIndex = 16;
     this.DocManagement_DocModify_Label_DocFlow.Text = "文档流程:";
     //
     // DocManagement_DocModify_Label_ModifyTime
     //
     this.DocManagement_DocModify_Label_ModifyTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyTime.Location = new System.Drawing.Point(427, 92);
     this.DocManagement_DocModify_Label_ModifyTime.Name = "DocManagement_DocModify_Label_ModifyTime";
     this.DocManagement_DocModify_Label_ModifyTime.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyTime.TabIndex = 15;
     this.DocManagement_DocModify_Label_ModifyTime.Text = "修改时间:";
     //
     // txtModifyTime
     //
     this.txtModifyTime.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.txtModifyTime.Location = new System.Drawing.Point(499, 86);
     this.txtModifyTime.Name = "txtModifyTime";
     this.txtModifyTime.Size = new System.Drawing.Size(264, 20);
     this.txtModifyTime.TabIndex = 14;
     //
     // txtModifyCount
     //
     this.txtModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtModifyCount.Location = new System.Drawing.Point(108, 91);
     this.txtModifyCount.Name = "txtModifyCount";
     this.txtModifyCount.Size = new System.Drawing.Size(279, 20);
     this.txtModifyCount.TabIndex = 13;
     //
     // DocManagement_DocModify_Label_ModifyCount
     //
     this.DocManagement_DocModify_Label_ModifyCount.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_ModifyCount.Location = new System.Drawing.Point(32, 94);
     this.DocManagement_DocModify_Label_ModifyCount.Name = "DocManagement_DocModify_Label_ModifyCount";
     this.DocManagement_DocModify_Label_ModifyCount.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_ModifyCount.TabIndex = 12;
     this.DocManagement_DocModify_Label_ModifyCount.Text = "修改次数:";
     //
     // DocManagement_DocModify_Label_DocCategory
     //
     this.DocManagement_DocModify_Label_DocCategory.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocCategory.Location = new System.Drawing.Point(427, 63);
     this.DocManagement_DocModify_Label_DocCategory.Name = "DocManagement_DocModify_Label_DocCategory";
     this.DocManagement_DocModify_Label_DocCategory.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocCategory.TabIndex = 10;
     this.DocManagement_DocModify_Label_DocCategory.Text = "文档分类:";
     //
     // txtDocFormat
     //
     this.txtDocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocFormat.Location = new System.Drawing.Point(108, 63);
     this.txtDocFormat.Name = "txtDocFormat";
     this.txtDocFormat.Size = new System.Drawing.Size(279, 20);
     this.txtDocFormat.TabIndex = 9;
     //
     // DocManagement_DocModify_Label_DocFormat
     //
     this.DocManagement_DocModify_Label_DocFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocFormat.Location = new System.Drawing.Point(32, 65);
     this.DocManagement_DocModify_Label_DocFormat.Name = "DocManagement_DocModify_Label_DocFormat";
     this.DocManagement_DocModify_Label_DocFormat.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_DocFormat.TabIndex = 8;
     this.DocManagement_DocModify_Label_DocFormat.Text = "文档格式:";
     //
     // txtEnName
     //
     this.txtEnName.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.txtEnName.Location = new System.Drawing.Point(498, 34);
     this.txtEnName.Name = "txtEnName";
     this.txtEnName.Size = new System.Drawing.Size(265, 20);
     this.txtEnName.TabIndex = 7;
     //
     // DocManagement_DocModify_Label_EnglishName
     //
     this.DocManagement_DocModify_Label_EnglishName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_EnglishName.Location = new System.Drawing.Point(427, 37);
     this.DocManagement_DocModify_Label_EnglishName.Name = "DocManagement_DocModify_Label_EnglishName";
     this.DocManagement_DocModify_Label_EnglishName.Size = new System.Drawing.Size(52, 14);
     this.DocManagement_DocModify_Label_EnglishName.TabIndex = 6;
     this.DocManagement_DocModify_Label_EnglishName.Text = "英文名称:";
     //
     // DocManagement_DocModify_Label_DocName
     //
     this.DocManagement_DocModify_Label_DocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocName.Location = new System.Drawing.Point(25, 40);
     this.DocManagement_DocModify_Label_DocName.Name = "DocManagement_DocModify_Label_DocName";
     this.DocManagement_DocModify_Label_DocName.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocName.TabIndex = 5;
     this.DocManagement_DocModify_Label_DocName.Text = "*文档名称:";
     //
     // txtDocName
     //
     this.txtDocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtDocName.Location = new System.Drawing.Point(108, 37);
     this.txtDocName.Name = "txtDocName";
     this.txtDocName.Size = new System.Drawing.Size(279, 20);
     this.txtDocName.TabIndex = 4;
     //
     // txtDocVersion
     //
     this.txtDocVersion.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.txtDocVersion.Location = new System.Drawing.Point(499, 7);
     this.txtDocVersion.Name = "txtDocVersion";
     this.txtDocVersion.Size = new System.Drawing.Size(264, 20);
     this.txtDocVersion.TabIndex = 3;
     //
     // DocManagement_DocModify_Label_DocVersion
     //
     this.DocManagement_DocModify_Label_DocVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocVersion.Location = new System.Drawing.Point(412, 10);
     this.DocManagement_DocModify_Label_DocVersion.Name = "DocManagement_DocModify_Label_DocVersion";
     this.DocManagement_DocModify_Label_DocVersion.Size = new System.Drawing.Size(67, 14);
     this.DocManagement_DocModify_Label_DocVersion.TabIndex = 2;
     this.DocManagement_DocModify_Label_DocVersion.Text = "*文档版本:";
     //
     // DocManagement_DocModify_Label_DocNumber
     //
     this.DocManagement_DocModify_Label_DocNumber.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocNumber.Location = new System.Drawing.Point(25, 10);
     this.DocManagement_DocModify_Label_DocNumber.Name = "DocManagement_DocModify_Label_DocNumber";
     this.DocManagement_DocModify_Label_DocNumber.Size = new System.Drawing.Size(59, 14);
     this.DocManagement_DocModify_Label_DocNumber.TabIndex = 1;
     this.DocManagement_DocModify_Label_DocNumber.Text = "*文档编码:";
     //
     // txtInValidTime
     //
     this.txtInValidTime.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.txtInValidTime.EditValue = null;
     this.txtInValidTime.Location = new System.Drawing.Point(498, 167);
     this.txtInValidTime.Name = "txtInValidTime";
     this.txtInValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtInValidTime.Properties.Mask.EditMask = "F";
     this.txtInValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtInValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtInValidTime.Size = new System.Drawing.Size(265, 20);
     this.txtInValidTime.TabIndex = 36;
     //
     // txtValidTime
     //
     this.txtValidTime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.txtValidTime.EditValue = null;
     this.txtValidTime.Location = new System.Drawing.Point(108, 172);
     this.txtValidTime.Name = "txtValidTime";
     this.txtValidTime.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.txtValidTime.Properties.Mask.EditMask = "F";
     this.txtValidTime.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtValidTime.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.txtValidTime.Size = new System.Drawing.Size(279, 20);
     this.txtValidTime.TabIndex = 34;
     //
     // DocManagement_DocModify_tabContr_AdditionalInfor
     //
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Name = "DocManagement_DocModify_tabContr_AdditionalInfor";
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_tabContr_AdditionalInfor.Text = "文档附加信息";
     //
     // DocManagement_DocModify_TabContr_ApproInfo
     //
     this.DocManagement_DocModify_TabContr_ApproInfo.Controls.Add(this.panelControl3);
     this.DocManagement_DocModify_TabContr_ApproInfo.Name = "DocManagement_DocModify_TabContr_ApproInfo";
     this.DocManagement_DocModify_TabContr_ApproInfo.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_ApproInfo.Text = "文档审签信息";
     //
     // panelControl3
     //
     this.panelControl3.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.panelControl3.Controls.Add(this.panelControl4);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Query_SimpleButton);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit);
     this.panelControl3.Controls.Add(this.checkEdit4);
     this.panelControl3.Controls.Add(this.checkEdit3);
     this.panelControl3.Controls.Add(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl);
     this.panelControl3.Location = new System.Drawing.Point(1, 0);
     this.panelControl3.Name = "panelControl3";
     this.panelControl3.Size = new System.Drawing.Size(770, 531);
     this.panelControl3.TabIndex = 7;
     //
     // panelControl4
     //
     this.panelControl4.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.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton);
     this.panelControl4.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl);
     this.panelControl4.Location = new System.Drawing.Point(218, 1);
     this.panelControl4.Name = "panelControl4";
     this.panelControl4.Size = new System.Drawing.Size(552, 530);
     this.panelControl4.TabIndex = 27;
     //
     // DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Location = new System.Drawing.Point(274, 502);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.TabIndex = 32;
     this.DocManage_DocManageTool_DocModify_DeleteDocMessage_SimpleButton.Text = "删除";
     //
     // DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Location = new System.Drawing.Point(331, 502);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.TabIndex = 31;
     this.DocManage_DocManageTool_DocModify_ModifyDocMessage_SimpleButton.Text = "修改";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.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.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Location = new System.Drawing.Point(2, 225);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Size = new System.Drawing.Size(550, 271);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.Text = "文档审签详细信息";
     //
     // DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList
     //
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.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.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Location = new System.Drawing.Point(-2, 22);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Name = "DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList";
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.Size = new System.Drawing.Size(552, 249);
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList.TabIndex = 0;
     //
     // DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Location = new System.Drawing.Point(217, 502);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.TabIndex = 30;
     this.DocManage_DocManageTool_DocModify_AddDocMessage_SimpleButton.Text = "添加";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Location = new System.Drawing.Point(0, -1);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 220);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.Text = "文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_DocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Location = new System.Drawing.Point(1, 21);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.MainView = this.gridView2;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_DocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.Size = new System.Drawing.Size(551, 197);
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView2});
     //
     // gridView2
     //
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn5,
     this.gridColumn6,
     this.gridColumn7,
     this.gridColumn8,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11,
     this.gridColumn12,
     this.gridColumn13});
     this.gridView2.GridControl = this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn5
     //
     this.gridColumn5.Caption = "文档名称";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 0;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "文档编号";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 1;
     //
     // gridColumn7
     //
     this.gridColumn7.Caption = "文档版本";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 2;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "审签状态";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 3;
     //
     // gridColumn9
     //
     this.gridColumn9.Caption = "申请人";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 4;
     //
     // gridColumn10
     //
     this.gridColumn10.Caption = "申请日期";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 5;
     //
     // gridColumn11
     //
     this.gridColumn11.Caption = "审签人";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 6;
     //
     // gridColumn12
     //
     this.gridColumn12.Caption = "审签日期";
     this.gridColumn12.Name = "gridColumn12";
     this.gridColumn12.Visible = true;
     this.gridColumn12.VisibleIndex = 7;
     //
     // gridColumn13
     //
     this.gridColumn13.Caption = "备注";
     this.gridColumn13.Name = "gridColumn13";
     this.gridColumn13.Visible = true;
     this.gridColumn13.VisibleIndex = 8;
     //
     // DocManage_DocManageTool_DocModify_Query_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Location = new System.Drawing.Point(158, 204);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Name = "DocManage_DocManageTool_DocModify_Query_SimpleButton";
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_Query_SimpleButton.Text = "查询(Q)";
     //
     // DocManage_DocManageTool_DocModify_Proposer_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Location = new System.Drawing.Point(70, 141);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Proposer_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Approver_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Location = new System.Drawing.Point(70, 178);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Approver_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.TabIndex = 19;
     //
     // checkEdit4
     //
     this.checkEdit4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit4.Location = new System.Drawing.Point(2, 141);
     this.checkEdit4.Name = "checkEdit4";
     this.checkEdit4.Properties.Caption = "申请人:";
     this.checkEdit4.Size = new System.Drawing.Size(62, 19);
     this.checkEdit4.TabIndex = 11;
     //
     // checkEdit3
     //
     this.checkEdit3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.checkEdit3.Location = new System.Drawing.Point(2, 178);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "审签人:";
     this.checkEdit3.Size = new System.Drawing.Size(62, 19);
     this.checkEdit3.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_DocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl4);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Controls.Add(this.labelControl6);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Location = new System.Drawing.Point(5, 5);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_DocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.Text = "文档信息";
     //
     // DocManage_DocManageTool_DocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.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.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_DocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.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.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_DocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_DocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_DocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl4
     //
     this.labelControl4.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl4.Location = new System.Drawing.Point(7, 28);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(52, 14);
     this.labelControl4.TabIndex = 8;
     this.labelControl4.Text = "文档名称:";
     //
     // labelControl5
     //
     this.labelControl5.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.labelControl5.Location = new System.Drawing.Point(7, 64);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(52, 14);
     this.labelControl5.TabIndex = 7;
     this.labelControl5.Text = "文档编号:";
     //
     // labelControl6
     //
     this.labelControl6.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.labelControl6.Location = new System.Drawing.Point(7, 99);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(52, 14);
     this.labelControl6.TabIndex = 6;
     this.labelControl6.Text = "文档版本:";
     //
     // DocManagement_DocModify_TabContr_DocAssociated
     //
     this.DocManagement_DocModify_TabContr_DocAssociated.Controls.Add(this.panelControl1);
     this.DocManagement_DocModify_TabContr_DocAssociated.Name = "DocManagement_DocModify_TabContr_DocAssociated";
     this.DocManagement_DocModify_TabContr_DocAssociated.Size = new System.Drawing.Size(771, 575);
     this.DocManagement_DocModify_TabContr_DocAssociated.Text = "关联文档";
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Flat;
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton);
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit);
     this.panelControl1.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl);
     this.panelControl1.Location = new System.Drawing.Point(3, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(773, 531);
     this.panelControl1.TabIndex = 7;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Anchor = System.Windows.Forms.AnchorStyles.Left;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Location = new System.Drawing.Point(156, 214);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Size = new System.Drawing.Size(59, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.TabIndex = 25;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Text = "查询(Q)";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_RelevanceDocQuery_SimpleButton_Click);
     //
     // panelControl2
     //
     this.panelControl2.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.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl);
     this.panelControl2.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl);
     this.panelControl2.Location = new System.Drawing.Point(218, 2);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(555, 529);
     this.panelControl2.TabIndex = 23;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Location = new System.Drawing.Point(5, 202);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Size = new System.Drawing.Size(550, 327);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.TabIndex = 9;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.Text = "关联文档列表区";
     //
     // DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(294, 299);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.TabIndex = 29;
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Text = "删除";
     this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_DeleteRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton
     //
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Location = new System.Drawing.Point(221, 299);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Name = "DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Size = new System.Drawing.Size(51, 23);
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.TabIndex = 26;
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Text = "添加";
     this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton.Click += new System.EventHandler(this.DocManage_DocManageTool_DocModify_AddRelevanceDoc_SimpleButton_Click);
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.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.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1,
     this.treeListColumn2,
     this.treeListColumn3,
     this.treeListColumn4});
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Location = new System.Drawing.Point(0, 23);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Name = "DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList";
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.OptionsPrint.UsePrintStyles = true;
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.Size = new System.Drawing.Size(545, 273);
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList.TabIndex = 0;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "文档名称";
     this.treeListColumn1.FieldName = "cn_name";
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档编号";
     this.treeListColumn2.FieldName = "number";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 1;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "文档版本";
     this.treeListColumn3.FieldName = "version";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.Visible = true;
     this.treeListColumn3.VisibleIndex = 2;
     //
     // treeListColumn4
     //
     this.treeListColumn4.Caption = "文档类型";
     this.treeListColumn4.FieldName = "document_type_name";
     this.treeListColumn4.Name = "treeListColumn4";
     this.treeListColumn4.Visible = true;
     this.treeListColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Controls.Add(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Location = new System.Drawing.Point(3, 1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Size = new System.Drawing.Size(552, 195);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.Text = "关联文档查询结果";
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.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.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Location = new System.Drawing.Point(0, 21);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.MainView = this.gridView1;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.Size = new System.Drawing.Size(547, 174);
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.TabIndex = 0;
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridView1});
     //
     // gridView1
     //
     this.gridView1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn1,
     this.gridColumn2,
     this.gridColumn3,
     this.gridColumn4});
     this.gridView1.GridControl = this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl;
     this.gridView1.Name = "gridView1";
     this.gridView1.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn1
     //
     this.gridColumn1.Caption = "文档名称";
     this.gridColumn1.FieldName = "cn_name";
     this.gridColumn1.Name = "gridColumn1";
     this.gridColumn1.Visible = true;
     this.gridColumn1.VisibleIndex = 0;
     //
     // gridColumn2
     //
     this.gridColumn2.Caption = "文档编号";
     this.gridColumn2.FieldName = "number";
     this.gridColumn2.Name = "gridColumn2";
     this.gridColumn2.Visible = true;
     this.gridColumn2.VisibleIndex = 1;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "文档版本";
     this.gridColumn3.FieldName = "version";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 2;
     //
     // gridColumn4
     //
     this.gridColumn4.Caption = "文档类型";
     this.gridColumn4.FieldName = "document_type_name";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 3;
     //
     // DocManage_DocManageTool_DocModify_Creater_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Location = new System.Drawing.Point(68, 141);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Creater_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.TabIndex = 20;
     //
     // DocManage_DocManageTool_DocModify_Modifier_ButtonEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Location = new System.Drawing.Point(68, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_ButtonEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Size = new System.Drawing.Size(147, 20);
     this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.TabIndex = 19;
     //
     // DocManage_DocManageTool_DocModify_Creater_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Location = new System.Drawing.Point(1, 141);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Creater_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties.Caption = "创建人:";
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.TabIndex = 10;
     //
     // DocManage_DocManageTool_DocModify_Modifier_CheckEdit
     //
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Location = new System.Drawing.Point(1, 179);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Name = "DocManage_DocManageTool_DocModify_Modifier_CheckEdit";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties.Caption = "修改人:";
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Size = new System.Drawing.Size(61, 19);
     this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.TabIndex = 9;
     //
     // DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl
     //
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl2);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Controls.Add(this.labelControl1);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Location = new System.Drawing.Point(3, 3);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Name = "DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl";
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Size = new System.Drawing.Size(212, 122);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.TabIndex = 8;
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.Text = "关联文档信息";
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Location = new System.Drawing.Point(65, 96);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.TabIndex = 13;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Location = new System.Drawing.Point(65, 62);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.TabIndex = 14;
     //
     // DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit
     //
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Location = new System.Drawing.Point(65, 25);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Name = "DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit";
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Size = new System.Drawing.Size(142, 20);
     this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.TabIndex = 15;
     //
     // labelControl3
     //
     this.labelControl3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.labelControl3.Location = new System.Drawing.Point(7, 28);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(52, 14);
     this.labelControl3.TabIndex = 8;
     this.labelControl3.Text = "文档名称:";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(7, 64);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 14);
     this.labelControl2.TabIndex = 7;
     this.labelControl2.Text = "文档编号:";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(7, 99);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 14);
     this.labelControl1.TabIndex = 6;
     this.labelControl1.Text = "文档版本:";
     //
     // DocModify
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(772, 567);
     this.Controls.Add(this.DocManagement_DocModify_TabContr);
     this.IsMdiContainer = true;
     this.Name = "DocModify";
     this.Text = "修改文档";
     this.Load += new System.EventHandler(this.docManagement_Load);
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TabContr)).EndInit();
     this.DocManagement_DocModify_TabContr.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_TabContr_BasicInfo.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ckAuto.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ckFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDocDense.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_GroupControl_PartsRelated)).EndInit();
     this.DocManagement_DocModify_GroupControl_PartsRelated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_XtraTabControl_DocBasicInfo)).EndInit();
     this.DocManagement_DocModify_XtraTabControl_DocBasicInfo.ResumeLayout(false);
     this.DocManagement_DocModify_XtraTabPage_Remark.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtRemark.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_KeyWords.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtKey.Properties)).EndInit();
     this.DocManagement_DocModify_XtraTabPage_Summary.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.txtAbstract.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocModel.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocUpload.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFlow.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocCategory.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocNumber.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocPage.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtModifyCount.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocFormat.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtEnName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtDocVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInValidTime.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtValidTime.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_ApproInfo.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
     this.panelControl3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
     this.panelControl4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocReviewMessage_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocReviewMessage_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Proposer_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Approver_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit4.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_DocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_DocName_TextEdit.Properties)).EndInit();
     this.DocManagement_DocModify_TabContr_DocAssociated.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocList_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocList_TreeList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GroupControl.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocQueryValue_GridControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_ButtonEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Creater_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_Modifier_CheckEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl)).EndInit();
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.ResumeLayout(false);
     this.DocManage_DocManageTool_DocModify_RelevanceDocMessage_GroupControl.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocRelease_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocNumber_TextEdit.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManage_DocManageTool_RelevanceDocModify_DocName_TextEdit.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     this.groupPanel1 = new DevExpress.XtraEditors.GroupControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.roleGridEdit1 = new Ultra.Permission.RoleGridEdit();
     this.roleGridEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.groupPanel2 = new DevExpress.XtraEditors.GroupControl();
     this.treeCtl1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).BeginInit();
     this.pnlFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).BeginInit();
     this.groupPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.roleGridEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleGridEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).BeginInit();
     this.groupPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(648, 5);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(563, 5);
     this.btnOK.Text = "保存(&E)";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(562, 461);
     //
     // pnlFill
     //
     this.pnlFill.Controls.Add(this.groupPanel2);
     this.pnlFill.Controls.Add(this.groupPanel1);
     this.pnlFill.Size = new System.Drawing.Size(562, 415);
     //
     // pnlBottom
     //
     this.pnlBottom.Location = new System.Drawing.Point(0, 415);
     this.pnlBottom.Size = new System.Drawing.Size(562, 46);
     //
     // groupPanel1
     //
     this.groupPanel1.Controls.Add(this.labelControl1);
     this.groupPanel1.Controls.Add(this.roleGridEdit1);
     this.groupPanel1.Dock = System.Windows.Forms.DockStyle.Top;
     this.groupPanel1.Location = new System.Drawing.Point(2, 2);
     this.groupPanel1.Name = "groupPanel1";
     this.groupPanel1.Size = new System.Drawing.Size(558, 61);
     this.groupPanel1.TabIndex = 0;
     this.groupPanel1.Text = "角色";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(10, 34);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(48, 14);
     this.labelControl1.TabIndex = 1;
     this.labelControl1.Text = "角色名称";
     //
     // roleGridEdit1
     //
     this.roleGridEdit1.ClearButtonText = "清除所选";
     this.roleGridEdit1.ColumnCaption = "名称";
     this.roleGridEdit1.DisplayMember = "Name";
     this.roleGridEdit1.EditValue = "";
     this.roleGridEdit1.Location = new System.Drawing.Point(64, 31);
     this.roleGridEdit1.Name = "roleGridEdit1";
     this.roleGridEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete, "清除所选", -1, true, false, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "清除所选", null, null, true)});
     this.roleGridEdit1.Properties.DisplayMember = "Name";
     this.roleGridEdit1.Properties.NullText = "";
     this.roleGridEdit1.Properties.ValueMember = "Guid";
     this.roleGridEdit1.Properties.View = this.roleGridEdit1View;
     this.roleGridEdit1.SelectedValue = null;
     this.roleGridEdit1.Size = new System.Drawing.Size(237, 20);
     this.roleGridEdit1.TabIndex = 0;
     this.roleGridEdit1.ValueMember = "Guid";
     this.roleGridEdit1.EditValueChanged += new System.EventHandler(this.roleGridEdit1_EditValueChanged);
     //
     // roleGridEdit1View
     //
     this.roleGridEdit1View.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.roleGridEdit1View.Appearance.FocusedRow.Options.UseBackColor = true;
     this.roleGridEdit1View.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.roleGridEdit1View.Appearance.SelectedRow.Options.UseBackColor = true;
     this.roleGridEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.roleGridEdit1View.Name = "roleGridEdit1View";
     this.roleGridEdit1View.OptionsBehavior.AutoPopulateColumns = false;
     this.roleGridEdit1View.OptionsBehavior.Editable = false;
     this.roleGridEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.roleGridEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // groupPanel2
     //
     this.groupPanel2.Controls.Add(this.treeCtl1);
     this.groupPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupPanel2.Location = new System.Drawing.Point(2, 63);
     this.groupPanel2.Name = "groupPanel2";
     this.groupPanel2.Size = new System.Drawing.Size(558, 350);
     this.groupPanel2.TabIndex = 1;
     this.groupPanel2.Text = "权限";
     //
     // treeCtl1
     //
     this.treeCtl1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeCtl1.HorzScrollVisibility = DevExpress.XtraTreeList.ScrollVisibility.Always;
     this.treeCtl1.Location = new System.Drawing.Point(2, 22);
     this.treeCtl1.Name = "treeCtl1";
     this.treeCtl1.BeginUnboundLoad();
     this.treeCtl1.AppendNode(new object[] {
     "1"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "11"}, 0);
     this.treeCtl1.AppendNode(new object[] {
     "2"}, -1);
     this.treeCtl1.AppendNode(new object[] {
     "22"}, 2);
     this.treeCtl1.AppendNode(new object[] {
     "222"}, 3);
     this.treeCtl1.AppendNode(new object[] {
     "3"}, -1);
     this.treeCtl1.EndUnboundLoad();
     this.treeCtl1.OptionsBehavior.Editable = false;
     this.treeCtl1.OptionsSelection.EnableAppearanceFocusedRow = false;
     this.treeCtl1.OptionsSelection.InvertSelection = true;
     this.treeCtl1.OptionsView.ShowCheckBoxes = true;
     this.treeCtl1.OptionsView.ShowColumns = false;
     this.treeCtl1.OptionsView.ShowFocusedFrame = false;
     this.treeCtl1.OptionsView.ShowHorzLines = false;
     this.treeCtl1.OptionsView.ShowIndicator = false;
     this.treeCtl1.OptionsView.ShowVertLines = false;
     this.treeCtl1.ShowButtonMode = DevExpress.XtraTreeList.ShowButtonModeEnum.ShowForFocusedRow;
     this.treeCtl1.Size = new System.Drawing.Size(554, 326);
     this.treeCtl1.TabIndex = 1;
     this.treeCtl1.TreeLineStyle = DevExpress.XtraTreeList.LineStyle.Solid;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption = "treeListColumn1";
     this.treeListColumn1.FieldName = "treeListColumn1";
     this.treeListColumn1.MinWidth = 86;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     this.treeListColumn1.Width = 91;
     //
     // PermitView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(562, 461);
     this.Name = "PermitView";
     this.Text = "角色权限";
     this.Load += new System.EventHandler(this.PermitView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).EndInit();
     this.pnlFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel1)).EndInit();
     this.groupPanel1.ResumeLayout(false);
     this.groupPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.roleGridEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.roleGridEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupPanel2)).EndInit();
     this.groupPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
     this.barManager1     = new DevExpress.XtraBars.BarManager(this.components);
     this.bar1            = new DevExpress.XtraBars.Bar();
     this.mFile           = new DevExpress.XtraBars.BarSubItem();
     this.iNew            = new DevExpress.XtraBars.BarButtonItem();
     this.iOpen           = new DevExpress.XtraBars.BarButtonItem();
     this.iClose          = new DevExpress.XtraBars.BarButtonItem();
     this.iSave           = new DevExpress.XtraBars.BarButtonItem();
     this.iSaveAs         = new DevExpress.XtraBars.BarButtonItem();
     this.iPrint          = new DevExpress.XtraBars.BarButtonItem();
     this.iExit           = new DevExpress.XtraBars.BarButtonItem();
     this.mEdit           = new DevExpress.XtraBars.BarSubItem();
     this.iUndo           = new DevExpress.XtraBars.BarButtonItem();
     this.iCut            = new DevExpress.XtraBars.BarButtonItem();
     this.iCopy           = new DevExpress.XtraBars.BarButtonItem();
     this.iPaste          = new DevExpress.XtraBars.BarButtonItem();
     this.iClear          = new DevExpress.XtraBars.BarButtonItem();
     this.iSelectAll      = new DevExpress.XtraBars.BarButtonItem();
     this.iFind           = new DevExpress.XtraBars.BarButtonItem();
     this.iReplace        = new DevExpress.XtraBars.BarButtonItem();
     this.mFormat         = new DevExpress.XtraBars.BarSubItem();
     this.iFont           = new DevExpress.XtraBars.BarButtonItem();
     this.iFontColor      = new DevExpress.XtraBars.BarButtonItem();
     this.iBullets        = new DevExpress.XtraBars.BarButtonItem();
     this.iProtected      = new DevExpress.XtraBars.BarButtonItem();
     this.iToolBars       = new DevExpress.XtraBars.BarToolbarsListItem();
     this.mHelp           = new DevExpress.XtraBars.BarSubItem();
     this.iWeb            = new DevExpress.XtraBars.BarButtonItem();
     this.iAbout          = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem1  = new DevExpress.XtraBars.BarButtonItem();
     this.bar2            = new DevExpress.XtraBars.Bar();
     this.bar3            = new DevExpress.XtraBars.Bar();
     this.iBold           = new DevExpress.XtraBars.BarButtonItem();
     this.iItalic         = new DevExpress.XtraBars.BarButtonItem();
     this.iUnderline      = new DevExpress.XtraBars.BarButtonItem();
     this.iAlignLeft      = new DevExpress.XtraBars.BarButtonItem();
     this.iCenter         = new DevExpress.XtraBars.BarButtonItem();
     this.iAlignRight     = new DevExpress.XtraBars.BarButtonItem();
     this.bar4            = new DevExpress.XtraBars.Bar();
     this.iEdit           = new DevExpress.XtraBars.BarButtonItem();
     this.bar5            = new DevExpress.XtraBars.Bar();
     this.sPosition       = new DevExpress.XtraBars.BarStaticItem();
     this.sModifier       = new DevExpress.XtraBars.BarStaticItem();
     this.sDocName        = new DevExpress.XtraBars.BarStaticItem();
     this.bar7            = new DevExpress.XtraBars.Bar();
     this.iPaintStyle     = new DevExpress.XtraBars.BarSubItem();
     this.ipsDefault      = new DevExpress.XtraBars.BarButtonItem();
     this.ipsWXP          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsOXP          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO2K          = new DevExpress.XtraBars.BarButtonItem();
     this.ipsO3           = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControl1 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl2 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl3 = new DevExpress.XtraBars.BarDockControl();
     this.barDockControl4 = new DevExpress.XtraBars.BarDockControl();
     this.imageList1      = new System.Windows.Forms.ImageList(this.components);
     this.treeList1       = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     this.SuspendLayout();
     //
     // barManager1
     //
     this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
         this.bar1,
         this.bar2,
         this.bar3,
         this.bar4,
         this.bar5,
         this.bar7
     });
     this.barManager1.Categories.AddRange(new DevExpress.XtraBars.BarManagerCategory[] {
         new DevExpress.XtraBars.BarManagerCategory("File", new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f")),
         new DevExpress.XtraBars.BarManagerCategory("Edit", new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1")),
         new DevExpress.XtraBars.BarManagerCategory("Format", new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258")),
         new DevExpress.XtraBars.BarManagerCategory("Help", new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b")),
         new DevExpress.XtraBars.BarManagerCategory("Popup", new System.Guid("78945463-36c5-4beb-a57f-d50b6a74e9b9")),
         new DevExpress.XtraBars.BarManagerCategory("Status", new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d")),
         new DevExpress.XtraBars.BarManagerCategory("Built-in Menus", new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9")),
         new DevExpress.XtraBars.BarManagerCategory("ToolBars", new System.Guid("3856091a-e0f6-4a7c-80e9-103dece20d5b")),
         new DevExpress.XtraBars.BarManagerCategory("PaintStyle", new System.Guid("7102d69f-976b-49fe-978d-97325e115e10"))
     });
     this.barManager1.DockControls.Add(this.barDockControl1);
     this.barManager1.DockControls.Add(this.barDockControl2);
     this.barManager1.DockControls.Add(this.barDockControl3);
     this.barManager1.DockControls.Add(this.barDockControl4);
     this.barManager1.Form   = this;
     this.barManager1.Images = this.imageList1;
     this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
         this.iNew,
         this.iOpen,
         this.iClose,
         this.iSave,
         this.iSaveAs,
         this.iPrint,
         this.iExit,
         this.mFile,
         this.iUndo,
         this.iCut,
         this.iCopy,
         this.iPaste,
         this.iClear,
         this.iSelectAll,
         this.iFind,
         this.iReplace,
         this.mEdit,
         this.iFont,
         this.iBullets,
         this.iProtected,
         this.mFormat,
         this.iWeb,
         this.iAbout,
         this.mHelp,
         this.iBold,
         this.iItalic,
         this.iUnderline,
         this.iAlignLeft,
         this.iCenter,
         this.iAlignRight,
         this.iFontColor,
         this.iEdit,
         this.sPosition,
         this.sModifier,
         this.sDocName,
         this.iToolBars,
         this.iPaintStyle,
         this.ipsWXP,
         this.ipsOXP,
         this.ipsO2K,
         this.ipsO3,
         this.ipsDefault,
         this.barButtonItem1
     });
     this.barManager1.MainMenu  = this.bar1;
     this.barManager1.MaxItemId = 87;
     this.barManager1.StatusBar = this.bar5;
     //
     // bar1
     //
     this.bar1.BarName   = "MainMenu";
     this.bar1.DockCol   = 0;
     this.bar1.DockRow   = 0;
     this.bar1.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar1.FloatSize = new System.Drawing.Size(30, 22);
     this.bar1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.mFile),
         new DevExpress.XtraBars.LinkPersistInfo(this.mEdit),
         new DevExpress.XtraBars.LinkPersistInfo(this.mFormat),
         new DevExpress.XtraBars.LinkPersistInfo(this.iToolBars),
         new DevExpress.XtraBars.LinkPersistInfo(this.mHelp),
         new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem1)
     });
     this.bar1.OptionsBar.DrawDragBorder = false;
     this.bar1.OptionsBar.MultiLine      = true;
     this.bar1.OptionsBar.UseWholeRow    = true;
     this.bar1.Text = "MainMenu";
     //
     // mFile
     //
     this.mFile.Caption      = "&File";
     this.mFile.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mFile.Id           = 7;
     this.mFile.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iNew),
         new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
         new DevExpress.XtraBars.LinkPersistInfo(this.iClose),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSave, true),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iSaveAs, "", false, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iPrint, "", true, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iExit, true)
     });
     this.mFile.MenuBarWidth = 20;
     this.mFile.Name         = "mFile";
     //
     // iNew
     //
     this.iNew.Caption      = "&New";
     this.iNew.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iNew.Description  = "Creates a new, blank file.";
     this.iNew.Hint         = "New Blank Document";
     this.iNew.Id           = 0;
     this.iNew.ImageIndex   = 6;
     this.iNew.Name         = "iNew";
     //
     // iOpen
     //
     this.iOpen.Caption      = "&Open...";
     this.iOpen.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iOpen.Description  = "Opens a file.";
     this.iOpen.Hint         = "Open";
     this.iOpen.Id           = 1;
     this.iOpen.ImageIndex   = 7;
     this.iOpen.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O));
     this.iOpen.Name         = "iOpen";
     //
     // iClose
     //
     this.iClose.Caption      = "&Close";
     this.iClose.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iClose.Description  = "Closes the active document.";
     this.iClose.Hint         = "Close Document";
     this.iClose.Id           = 2;
     this.iClose.ImageIndex   = 12;
     this.iClose.Name         = "iClose";
     //
     // iSave
     //
     this.iSave.Caption      = "&Save";
     this.iSave.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iSave.Description  = "Saves the active document with its current file name.";
     this.iSave.Hint         = "Save";
     this.iSave.Id           = 3;
     this.iSave.ImageIndex   = 10;
     this.iSave.Name         = "iSave";
     //
     // iSaveAs
     //
     this.iSaveAs.Caption      = "Save &As...";
     this.iSaveAs.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iSaveAs.Description  = "Saves the active document with a different file name.";
     this.iSaveAs.Id           = 4;
     this.iSaveAs.Name         = "iSaveAs";
     //
     // iPrint
     //
     this.iPrint.Caption      = "&Print";
     this.iPrint.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iPrint.Description  = "Prints the active document.";
     this.iPrint.Hint         = "Print";
     this.iPrint.Id           = 5;
     this.iPrint.ImageIndex   = 9;
     this.iPrint.Name         = "iPrint";
     //
     // iExit
     //
     this.iExit.Caption      = "E&xit";
     this.iExit.CategoryGuid = new System.Guid("4b511317-d784-42ba-b4ed-0d2a746d6c1f");
     this.iExit.Description  = "Closes this program after prompting you to save unsaved document.";
     this.iExit.Id           = 6;
     this.iExit.Name         = "iExit";
     //
     // mEdit
     //
     this.mEdit.Caption      = "&Edit";
     this.mEdit.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mEdit.Id           = 16;
     this.mEdit.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iUndo),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCut, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCopy),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iClear, "", true, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSelectAll),
         new DevExpress.XtraBars.LinkPersistInfo(this.iFind, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iReplace)
     });
     this.mEdit.Name = "mEdit";
     //
     // iUndo
     //
     this.iUndo.Caption      = "&Undo";
     this.iUndo.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iUndo.Description  = "Reverses the last command or deletes the last entry you typed.";
     this.iUndo.Hint         = "Undo";
     this.iUndo.Id           = 8;
     this.iUndo.ImageIndex   = 11;
     this.iUndo.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Z));
     this.iUndo.Name         = "iUndo";
     //
     // iCut
     //
     this.iCut.Caption      = "Cu&t";
     this.iCut.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iCut.Description  = "Removes the selection from the active document and places it on the Clipboard.";
     this.iCut.Hint         = "Cut";
     this.iCut.Id           = 9;
     this.iCut.ImageIndex   = 2;
     this.iCut.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.X));
     this.iCut.Name         = "iCut";
     //
     // iCopy
     //
     this.iCopy.Caption      = "&Copy";
     this.iCopy.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iCopy.Description  = "Copies the selection to the Clipboard.";
     this.iCopy.Hint         = "Copy";
     this.iCopy.Id           = 10;
     this.iCopy.ImageIndex   = 1;
     this.iCopy.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C));
     this.iCopy.Name         = "iCopy";
     //
     // iPaste
     //
     this.iPaste.Caption      = "&Paste";
     this.iPaste.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iPaste.Description  = "Inserts the contents of the Clipboard at the insertion point, and replaces any se" +
                                "lection. This command is available only if you have cut or copied a text.";
     this.iPaste.Hint         = "Paste";
     this.iPaste.Id           = 11;
     this.iPaste.ImageIndex   = 8;
     this.iPaste.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V));
     this.iPaste.Name         = "iPaste";
     //
     // iClear
     //
     this.iClear.Caption      = "Cle&ar";
     this.iClear.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iClear.Description  = "Deletes the selected text without putting it on the Clipboard. This command is av" +
                                "ailable only if a text is selected. ";
     this.iClear.Hint       = "Clear";
     this.iClear.Id         = 12;
     this.iClear.ImageIndex = 13;
     this.iClear.Name       = "iClear";
     //
     // iSelectAll
     //
     this.iSelectAll.Caption      = "Select A&ll";
     this.iSelectAll.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iSelectAll.Description  = "Selects all text in the active document.";
     this.iSelectAll.Id           = 13;
     this.iSelectAll.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.A));
     this.iSelectAll.Name         = "iSelectAll";
     //
     // iFind
     //
     this.iFind.Caption      = "&Find...";
     this.iFind.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iFind.Description  = "Searches for the specified text.";
     this.iFind.Hint         = "Find";
     this.iFind.Id           = 14;
     this.iFind.ImageIndex   = 3;
     this.iFind.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.F));
     this.iFind.Name         = "iFind";
     //
     // iReplace
     //
     this.iReplace.Caption      = "R&eplace...";
     this.iReplace.CategoryGuid = new System.Guid("7c2486e1-92ea-4293-ad55-b819f61ff7f1");
     this.iReplace.Description  = "Searches for and replaces the specified text.";
     this.iReplace.Hint         = "Replace";
     this.iReplace.Id           = 15;
     this.iReplace.ImageIndex   = 14;
     this.iReplace.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.H));
     this.iReplace.Name         = "iReplace";
     //
     // mFormat
     //
     this.mFormat.Caption      = "F&ormat";
     this.mFormat.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mFormat.Id           = 20;
     this.mFormat.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iFont),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iFontColor, "", false, false, true, 0),
         new DevExpress.XtraBars.LinkPersistInfo(this.iBullets, true),
         new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.None, this.iProtected, "", false, false, true, 0)
     });
     this.mFormat.Name = "mFormat";
     //
     // iFont
     //
     this.iFont.Caption      = "&Font...";
     this.iFont.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iFont.Description  = "Changes the font and character spacing formats of the selected text.";
     this.iFont.Hint         = "Font Dialog";
     this.iFont.Id           = 17;
     this.iFont.ImageIndex   = 4;
     this.iFont.Name         = "iFont";
     //
     // iFontColor
     //
     this.iFontColor.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.iFontColor.Caption      = "Font C&olor";
     this.iFontColor.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iFontColor.Description  = "Formats the selected text with the color you click.";
     this.iFontColor.Hint         = "Font Color";
     this.iFontColor.Id           = 30;
     this.iFontColor.ImageIndex   = 5;
     this.iFontColor.Name         = "iFontColor";
     //
     // iBullets
     //
     this.iBullets.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iBullets.Caption      = "&Bullets";
     this.iBullets.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iBullets.Description  = "Adds bullets to or removes bullets from selected paragraphs.";
     this.iBullets.Hint         = "Bullets";
     this.iBullets.Id           = 18;
     this.iBullets.ImageIndex   = 0;
     this.iBullets.Name         = "iBullets";
     //
     // iProtected
     //
     this.iProtected.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iProtected.Caption      = "P&rotected";
     this.iProtected.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iProtected.Description  = "Protectes the selected text.";
     this.iProtected.Id           = 19;
     this.iProtected.Name         = "iProtected";
     //
     // iToolBars
     //
     this.iToolBars.Caption      = "&ToolBars";
     this.iToolBars.CategoryGuid = new System.Guid("3856091a-e0f6-4a7c-80e9-103dece20d5b");
     this.iToolBars.Id           = 38;
     this.iToolBars.Name         = "iToolBars";
     //
     // mHelp
     //
     this.mHelp.Caption      = "&Help";
     this.mHelp.CategoryGuid = new System.Guid("02ed6c1c-df85-47f8-9572-b20022d647f9");
     this.mHelp.Id           = 23;
     this.mHelp.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iWeb),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAbout, true)
     });
     this.mHelp.Name = "mHelp";
     //
     // iWeb
     //
     this.iWeb.Caption      = "&Developer Express on the Web";
     this.iWeb.CategoryGuid = new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b");
     this.iWeb.Description  = "Opens the web page.";
     this.iWeb.Hint         = "Developer Express on the Web";
     this.iWeb.Id           = 21;
     this.iWeb.ImageIndex   = 21;
     this.iWeb.Name         = "iWeb";
     //
     // iAbout
     //
     this.iAbout.Caption      = "&About";
     this.iAbout.CategoryGuid = new System.Guid("e07a4c24-66ac-4de6-bbcb-c0b6cfa7798b");
     this.iAbout.Description  = "Displays the description of this program.";
     this.iAbout.Id           = 22;
     this.iAbout.Name         = "iAbout";
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption    = "Update Links Tree";
     this.barButtonItem1.Id         = 86;
     this.barButtonItem1.Name       = "barButtonItem1";
     this.barButtonItem1.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItem1_ItemClick);
     //
     // bar2
     //
     this.bar2.BarName   = "Standard";
     this.bar2.DockCol   = 0;
     this.bar2.DockRow   = 1;
     this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar2.FloatSize = new System.Drawing.Size(48, 26);
     this.bar2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iNew),
         new DevExpress.XtraBars.LinkPersistInfo(this.iOpen),
         new DevExpress.XtraBars.LinkPersistInfo(this.iSave),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPrint, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCut, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCopy),
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaste),
         new DevExpress.XtraBars.LinkPersistInfo(this.iUndo, true)
     });
     this.bar2.Text = "Standard";
     //
     // bar3
     //
     this.bar3.BarName       = "Format";
     this.bar3.DockCol       = 0;
     this.bar3.DockRow       = 2;
     this.bar3.DockStyle     = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar3.FloatLocation = new System.Drawing.Point(34, 212);
     this.bar3.FloatSize     = new System.Drawing.Size(27, 168);
     this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iBold),
         new DevExpress.XtraBars.LinkPersistInfo(this.iItalic),
         new DevExpress.XtraBars.LinkPersistInfo(this.iUnderline),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAlignLeft, true),
         new DevExpress.XtraBars.LinkPersistInfo(this.iCenter),
         new DevExpress.XtraBars.LinkPersistInfo(this.iAlignRight),
         new DevExpress.XtraBars.LinkPersistInfo(this.iBullets, true)
     });
     this.bar3.Text = "Format";
     //
     // iBold
     //
     this.iBold.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iBold.Caption      = "&Bold";
     this.iBold.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iBold.Description  = "Makes selected text and numbers bold. If the selection is already bold, clicking " +
                               "button removes bold formatting.";
     this.iBold.Hint         = "Bold";
     this.iBold.Id           = 24;
     this.iBold.ImageIndex   = 15;
     this.iBold.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.B));
     this.iBold.Name         = "iBold";
     //
     // iItalic
     //
     this.iItalic.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iItalic.Caption      = "&Italic";
     this.iItalic.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iItalic.Description  = "Makes selected text and numbers italic. If the selection is already italic, click" +
                                 "ing button removes italic formatting.";
     this.iItalic.Hint         = "Italic";
     this.iItalic.Id           = 25;
     this.iItalic.ImageIndex   = 16;
     this.iItalic.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.I));
     this.iItalic.Name         = "iItalic";
     //
     // iUnderline
     //
     this.iUnderline.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iUnderline.Caption      = "&Underline";
     this.iUnderline.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iUnderline.Description  = "Underlines selected text and numbers. If the selection is already underlined, cli" +
                                    "cking button removes underlining.";
     this.iUnderline.Hint         = "Underline";
     this.iUnderline.Id           = 26;
     this.iUnderline.ImageIndex   = 17;
     this.iUnderline.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.U));
     this.iUnderline.Name         = "iUnderline";
     //
     // iAlignLeft
     //
     this.iAlignLeft.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iAlignLeft.Caption      = "Align &Left";
     this.iAlignLeft.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iAlignLeft.Description  = "Aligns the selected text to the left.";
     this.iAlignLeft.GroupIndex   = 1;
     this.iAlignLeft.Hint         = "Align Left";
     this.iAlignLeft.Id           = 27;
     this.iAlignLeft.ImageIndex   = 18;
     this.iAlignLeft.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.L));
     this.iAlignLeft.Name         = "iAlignLeft";
     //
     // iCenter
     //
     this.iCenter.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iCenter.Caption      = "&Center";
     this.iCenter.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iCenter.Description  = "Centers the selected text.";
     this.iCenter.GroupIndex   = 1;
     this.iCenter.Hint         = "Center";
     this.iCenter.Id           = 28;
     this.iCenter.ImageIndex   = 19;
     this.iCenter.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.E));
     this.iCenter.Name         = "iCenter";
     //
     // iAlignRight
     //
     this.iAlignRight.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.Check;
     this.iAlignRight.Caption      = "Align &Right";
     this.iAlignRight.CategoryGuid = new System.Guid("d3052f28-4b3e-4bae-b581-b3bb1c432258");
     this.iAlignRight.Description  = "Aligns the selected text to the right.";
     this.iAlignRight.GroupIndex   = 1;
     this.iAlignRight.Hint         = "Align Right";
     this.iAlignRight.Id           = 29;
     this.iAlignRight.ImageIndex   = 20;
     this.iAlignRight.ItemShortcut = new DevExpress.XtraBars.BarShortcut((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.R));
     this.iAlignRight.Name         = "iAlignRight";
     //
     // bar4
     //
     this.bar4.BarName       = "Font";
     this.bar4.DockCol       = 0;
     this.bar4.DockRow       = 0;
     this.bar4.DockStyle     = DevExpress.XtraBars.BarDockStyle.Right;
     this.bar4.FloatLocation = new System.Drawing.Point(493, 252);
     this.bar4.FloatSize     = new System.Drawing.Size(48, 26);
     this.bar4.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iFont),
         new DevExpress.XtraBars.LinkPersistInfo(this.iFontColor),
         new DevExpress.XtraBars.LinkPersistInfo(this.iEdit, true)
     });
     this.bar4.Text = "Font";
     //
     // iEdit
     //
     this.iEdit.ButtonStyle  = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.iEdit.Caption      = "&Edit...";
     this.iEdit.CategoryGuid = new System.Guid("78945463-36c5-4beb-a57f-d50b6a74e9b9");
     this.iEdit.Hint         = "Edit Menu";
     this.iEdit.Id           = 31;
     this.iEdit.ImageIndex   = 22;
     this.iEdit.Name         = "iEdit";
     //
     // bar5
     //
     this.bar5.BarName       = "StatusBar";
     this.bar5.CanDockStyle  = DevExpress.XtraBars.BarCanDockStyle.Bottom;
     this.bar5.DockCol       = 0;
     this.bar5.DockRow       = 0;
     this.bar5.DockStyle     = DevExpress.XtraBars.BarDockStyle.Bottom;
     this.bar5.FloatLocation = new System.Drawing.Point(86, 499);
     this.bar5.FloatSize     = new System.Drawing.Size(48, 26);
     this.bar5.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.sPosition),
         new DevExpress.XtraBars.LinkPersistInfo(this.sModifier),
         new DevExpress.XtraBars.LinkPersistInfo(this.sDocName)
     });
     this.bar5.OptionsBar.AllowQuickCustomization = false;
     this.bar5.OptionsBar.DrawDragBorder          = false;
     this.bar5.OptionsBar.DrawSizeGrip            = true;
     this.bar5.OptionsBar.UseWholeRow             = true;
     this.bar5.Text = "StatusBar";
     //
     // sPosition
     //
     this.sPosition.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.None;
     this.sPosition.Caption       = "Position";
     this.sPosition.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sPosition.Id            = 32;
     this.sPosition.Name          = "sPosition";
     this.sPosition.RightIndent   = 2;
     this.sPosition.TextAlignment = System.Drawing.StringAlignment.Center;
     this.sPosition.Width         = 145;
     //
     // sModifier
     //
     this.sModifier.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.None;
     this.sModifier.Caption       = "Modifier";
     this.sModifier.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sModifier.Id            = 33;
     this.sModifier.Name          = "sModifier";
     this.sModifier.RightIndent   = 2;
     this.sModifier.TextAlignment = System.Drawing.StringAlignment.Center;
     this.sModifier.Width         = 60;
     //
     // sDocName
     //
     this.sDocName.AutoSize      = DevExpress.XtraBars.BarStaticItemSize.Spring;
     this.sDocName.Caption       = "Name";
     this.sDocName.CategoryGuid  = new System.Guid("77795bb7-9bc5-4dd2-a297-cc758682e23d");
     this.sDocName.Id            = 34;
     this.sDocName.Name          = "sDocName";
     this.sDocName.TextAlignment = System.Drawing.StringAlignment.Near;
     this.sDocName.Width         = 245;
     //
     // bar7
     //
     this.bar7.BarName   = "PaintStyle";
     this.bar7.DockCol   = 1;
     this.bar7.DockRow   = 1;
     this.bar7.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.bar7.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.iPaintStyle)
     });
     this.bar7.Offset = 226;
     this.bar7.OptionsBar.AllowQuickCustomization = false;
     this.bar7.OptionsBar.RotateWhenVertical      = false;
     this.bar7.Text = "PaintStyle";
     //
     // iPaintStyle
     //
     this.iPaintStyle.Caption      = "Paint Style";
     this.iPaintStyle.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.iPaintStyle.Id           = 55;
     this.iPaintStyle.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsDefault),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsWXP),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsOXP),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsO2K),
         new DevExpress.XtraBars.LinkPersistInfo(this.ipsO3)
     });
     this.iPaintStyle.Name       = "iPaintStyle";
     this.iPaintStyle.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // ipsDefault
     //
     this.ipsDefault.Caption      = "Default";
     this.ipsDefault.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsDefault.Description  = "Default";
     this.ipsDefault.Id           = 74;
     this.ipsDefault.Name         = "ipsDefault";
     //
     // ipsWXP
     //
     this.ipsWXP.Caption      = "Windows XP";
     this.ipsWXP.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsWXP.Description  = "WindowsXP";
     this.ipsWXP.Id           = 56;
     this.ipsWXP.ImageIndex   = 25;
     this.ipsWXP.Name         = "ipsWXP";
     //
     // ipsOXP
     //
     this.ipsOXP.Caption      = "Office XP";
     this.ipsOXP.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsOXP.Description  = "OfficeXP";
     this.ipsOXP.Id           = 57;
     this.ipsOXP.ImageIndex   = 23;
     this.ipsOXP.Name         = "ipsOXP";
     //
     // ipsO2K
     //
     this.ipsO2K.Caption      = "Office 2000";
     this.ipsO2K.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsO2K.Description  = "Office2000";
     this.ipsO2K.Id           = 58;
     this.ipsO2K.ImageIndex   = 24;
     this.ipsO2K.Name         = "ipsO2K";
     //
     // ipsO3
     //
     this.ipsO3.Caption      = "Office 2003";
     this.ipsO3.CategoryGuid = new System.Guid("7102d69f-976b-49fe-978d-97325e115e10");
     this.ipsO3.Description  = "Office2003";
     this.ipsO3.Id           = 69;
     this.ipsO3.ImageIndex   = 26;
     this.ipsO3.Name         = "ipsO3";
     //
     // barDockControl1
     //
     this.barDockControl1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.barDockControl1.Location = new System.Drawing.Point(0, 0);
     this.barDockControl1.Size     = new System.Drawing.Size(550, 78);
     //
     // barDockControl2
     //
     this.barDockControl2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControl2.Location = new System.Drawing.Point(0, 374);
     this.barDockControl2.Size     = new System.Drawing.Size(550, 28);
     //
     // barDockControl3
     //
     this.barDockControl3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.barDockControl3.Location = new System.Drawing.Point(0, 78);
     this.barDockControl3.Size     = new System.Drawing.Size(0, 296);
     //
     // barDockControl4
     //
     this.barDockControl4.Dock     = System.Windows.Forms.DockStyle.Right;
     this.barDockControl4.Location = new System.Drawing.Point(513, 78);
     this.barDockControl4.Size     = new System.Drawing.Size(37, 296);
     //
     // imageList1
     //
     this.imageList1.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Magenta;
     this.imageList1.Images.SetKeyName(0, "");
     this.imageList1.Images.SetKeyName(1, "");
     this.imageList1.Images.SetKeyName(2, "");
     this.imageList1.Images.SetKeyName(3, "");
     this.imageList1.Images.SetKeyName(4, "");
     this.imageList1.Images.SetKeyName(5, "");
     this.imageList1.Images.SetKeyName(6, "");
     this.imageList1.Images.SetKeyName(7, "");
     this.imageList1.Images.SetKeyName(8, "");
     this.imageList1.Images.SetKeyName(9, "");
     this.imageList1.Images.SetKeyName(10, "");
     this.imageList1.Images.SetKeyName(11, "");
     this.imageList1.Images.SetKeyName(12, "");
     this.imageList1.Images.SetKeyName(13, "");
     this.imageList1.Images.SetKeyName(14, "");
     this.imageList1.Images.SetKeyName(15, "");
     this.imageList1.Images.SetKeyName(16, "");
     this.imageList1.Images.SetKeyName(17, "");
     this.imageList1.Images.SetKeyName(18, "");
     this.imageList1.Images.SetKeyName(19, "");
     this.imageList1.Images.SetKeyName(20, "");
     this.imageList1.Images.SetKeyName(21, "");
     this.imageList1.Images.SetKeyName(22, "");
     this.imageList1.Images.SetKeyName(23, "");
     this.imageList1.Images.SetKeyName(24, "");
     this.imageList1.Images.SetKeyName(25, "");
     this.imageList1.Images.SetKeyName(26, "");
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
         this.treeListColumn1
     });
     this.treeList1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.treeList1.Location = new System.Drawing.Point(0, 78);
     this.treeList1.Name     = "treeList1";
     this.treeList1.OptionsBehavior.Editable = false;
     this.treeList1.Size     = new System.Drawing.Size(513, 296);
     this.treeList1.TabIndex = 4;
     //
     // treeListColumn1
     //
     this.treeListColumn1.Caption      = "Toolbar / Item Name";
     this.treeListColumn1.FieldName    = "Toolbar / Item Name";
     this.treeListColumn1.Name         = "treeListColumn1";
     this.treeListColumn1.Visible      = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(550, 402);
     this.Controls.Add(this.treeList1);
     this.Controls.Add(this.barDockControl3);
     this.Controls.Add(this.barDockControl4);
     this.Controls.Add(this.barDockControl2);
     this.Controls.Add(this.barDockControl1);
     this.Name  = "Form1";
     this.Text  = "How to enumerate buttons in a menu or on a toolbar";
     this.Load += new System.EventHandler(this.Form1_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     this.ResumeLayout(false);
 }
Beispiel #52
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.gtRole = new Ultra.FASControls.LabelGridEdit();
     this.labelGridEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.treeCtl1 = new FAC.Login.Controls.TreeCtl();
     this.treeListColumn1 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).BeginInit();
     this.pnlMain.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).BeginInit();
     this.pnlFill.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).BeginInit();
     this.pnlBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gtRole.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelGridEdit1View)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).BeginInit();
     this.SuspendLayout();
     //
     // btnClose
     //
     this.btnClose.Location = new System.Drawing.Point(657, 5);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(558, 6);
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // pnlMain
     //
     this.pnlMain.Size = new System.Drawing.Size(461, 428);
     //
     // pnlFill
     //
     this.pnlFill.Controls.Add(this.panelControl2);
     this.pnlFill.Controls.Add(this.panelControl1);
     this.pnlFill.Size = new System.Drawing.Size(461, 382);
     //
     // pnlBottom
     //
     this.pnlBottom.Location = new System.Drawing.Point(0, 382);
     this.pnlBottom.Size = new System.Drawing.Size(461, 46);
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.gtRole);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Top;
     this.panelControl1.Location = new System.Drawing.Point(2, 2);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(457, 36);
     this.panelControl1.TabIndex = 0;
     //
     // gtRole
     //
     this.gtRole.ClearButtonText = "清除所选";
     this.gtRole.ColumnCaption = "角色";
     this.gtRole.DisplayMember = "Name";
     this.gtRole.EditValue = "";
     this.gtRole.LabelText = "角色";
     this.gtRole.Location = new System.Drawing.Point(10, 7);
     this.gtRole.Name = "gtRole";
     serializableAppearanceObject1.Options.UseTextOptions = true;
     serializableAppearanceObject1.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.gtRole.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "角色", 50, true, true, true, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo),
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete, "清除所选", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "清除所选", null, null, true)});
     this.gtRole.Properties.DisplayMember = "Name";
     this.gtRole.Properties.NullText = "";
     this.gtRole.Properties.ValueMember = "Guid";
     this.gtRole.Properties.View = this.labelGridEdit1View;
     this.gtRole.ShowClearButton = true;
     this.gtRole.Size = new System.Drawing.Size(358, 21);
     this.gtRole.TabIndex = 1;
     this.gtRole.ValueMember = "Guid";
     this.gtRole.EditValueChanged += new System.EventHandler(this.gtRole_EditValueChanged);
     //
     // labelGridEdit1View
     //
     this.labelGridEdit1View.Appearance.FocusedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.labelGridEdit1View.Appearance.FocusedRow.Options.UseBackColor = true;
     this.labelGridEdit1View.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(70)))), ((int)(((byte)(80)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
     this.labelGridEdit1View.Appearance.SelectedRow.Options.UseBackColor = true;
     this.labelGridEdit1View.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn3});
     this.labelGridEdit1View.FocusRectStyle = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFocus;
     this.labelGridEdit1View.Name = "labelGridEdit1View";
     this.labelGridEdit1View.OptionsBehavior.AutoPopulateColumns = false;
     this.labelGridEdit1View.OptionsBehavior.Editable = false;
     this.labelGridEdit1View.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.labelGridEdit1View.OptionsView.ShowAutoFilterRow = true;
     this.labelGridEdit1View.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn3
     //
     this.gridColumn3.Caption = "角色";
     this.gridColumn3.FieldName = "Name";
     this.gridColumn3.Name = "gridColumn3";
     this.gridColumn3.Visible = true;
     this.gridColumn3.VisibleIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.treeCtl1);
     this.panelControl2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl2.Location = new System.Drawing.Point(2, 38);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(457, 342);
     this.panelControl2.TabIndex = 1;
     //
     // treeCtl1
     //
     this.treeCtl1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn1});
     this.treeCtl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.treeCtl1.Location = new System.Drawing.Point(2, 2);
     this.treeCtl1.Name = "treeCtl1";
     this.treeCtl1.OptionsSelection.EnableAppearanceFocusedCell = false;
     this.treeCtl1.OptionsView.ShowCheckBoxes = true;
     this.treeCtl1.OptionsView.ShowColumns = false;
     this.treeCtl1.OptionsView.ShowIndicator = false;
     this.treeCtl1.Size = new System.Drawing.Size(453, 338);
     this.treeCtl1.TabIndex = 1;
     this.treeCtl1.AfterCheckNode += new DevExpress.XtraTreeList.NodeEventHandler(this.treeCtl1_AfterCheckNode);
     //
     // treeListColumn1
     //
     this.treeListColumn1.FieldName = "MenuName";
     this.treeListColumn1.MinWidth = 32;
     this.treeListColumn1.Name = "treeListColumn1";
     this.treeListColumn1.OptionsColumn.AllowEdit = false;
     this.treeListColumn1.OptionsColumn.ReadOnly = true;
     this.treeListColumn1.Visible = true;
     this.treeListColumn1.VisibleIndex = 0;
     //
     // EdtView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(461, 428);
     this.Name = "EdtView";
     this.Text = "权限设置";
     this.Load += new System.EventHandler(this.EdtView_Load);
     ((System.ComponentModel.ISupportInitialize)(this.pnlMain)).EndInit();
     this.pnlMain.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlFill)).EndInit();
     this.pnlFill.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pnlBottom)).EndInit();
     this.pnlBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gtRole.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.labelGridEdit1View)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeCtl1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.treeList1 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.repositoryItemCheckEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemCheckEdit();
     this.checkEdit1 = new DevExpress.XtraEditors.CheckEdit();
     this.simpleButton2 = new DevExpress.XtraEditors.SimpleButton();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.treeList1);
     this.panelControl1.Controls.Add(this.checkEdit1);
     this.panelControl1.Controls.Add(this.simpleButton2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(462, 344);
     this.panelControl1.TabIndex = 0;
     this.panelControl1.Text = "panelControl1";
     //
     // treeList1
     //
     this.treeList1.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList1.Dock = System.Windows.Forms.DockStyle.Top;
     this.treeList1.KeyFieldName = "A";
     this.treeList1.Location = new System.Drawing.Point(3, 3);
     this.treeList1.Name = "treeList1";
     this.treeList1.ParentFieldName = "D";
     this.treeList1.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemCheckEdit1});
     this.treeList1.Size = new System.Drawing.Size(456, 300);
     this.treeList1.TabIndex = 3;
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "名称";
     this.treeListColumn2.FieldName = "B";
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.OptionsColumn.AllowEdit = false;
     this.treeListColumn2.VisibleIndex = 0;
     this.treeListColumn2.Width = 96;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "是否选择";
     this.treeListColumn3.ColumnEdit = this.repositoryItemCheckEdit1;
     this.treeListColumn3.FieldName = "C";
     this.treeListColumn3.Name = "treeListColumn3";
     this.treeListColumn3.VisibleIndex = 1;
     this.treeListColumn3.Width = 96;
     //
     // repositoryItemCheckEdit1
     //
     this.repositoryItemCheckEdit1.AutoHeight = false;
     this.repositoryItemCheckEdit1.Name = "repositoryItemCheckEdit1";
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(12, 309);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "全选";
     this.checkEdit1.Size = new System.Drawing.Size(75, 19);
     this.checkEdit1.TabIndex = 2;
     this.checkEdit1.Visible = false;
     this.checkEdit1.CheckedChanged += new System.EventHandler(this.checkEdit1_CheckedChanged);
     //
     // simpleButton2
     //
     this.simpleButton2.Location = new System.Drawing.Point(358, 309);
     this.simpleButton2.Name = "simpleButton2";
     this.simpleButton2.Size = new System.Drawing.Size(66, 23);
     this.simpleButton2.TabIndex = 1;
     this.simpleButton2.Text = "取消";
     this.simpleButton2.Click += new System.EventHandler(this.simpleButton2_Click);
     //
     // simpleButton1
     //
     this.simpleButton1.Location = new System.Drawing.Point(277, 309);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(66, 23);
     this.simpleButton1.TabIndex = 1;
     this.simpleButton1.Text = "确定";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // FrmPicTreeSelect
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(462, 344);
     this.Controls.Add(this.panelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "FrmPicTreeSelect";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "选择图层";
     this.Load += new System.EventHandler(this.FrmPicTypeSelect_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.treeList1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemCheckEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmListCanhBaoQL));
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemExort = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemExcel2007 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemExcel2003 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPDF = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemHTML = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemRTF = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemCotHienThi = new DevExpress.XtraBars.BarSubItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemIn = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXemTruoc = new DevExpress.XtraBars.BarButtonItem();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.pageBanQuyen = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_CongT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.pageSoRun = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlSoRun = new DevExpress.XtraGrid.GridControl();
            this.gridViewSoRun = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TenCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DoiTuongKG = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TinhTrangCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_NuocSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DVCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_BanQuyenDTTNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTTNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_DTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_RUN_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_ThoiGianPSKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_SoRunDaPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_RUN_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand8 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.pageMuonTra = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlMuonTra = new DevExpress.XtraGrid.GridControl();
            this.gridViewMuonTra = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_MT_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_LoaiCB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_MT_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_MT_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
            this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
            this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_CongTy = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            this.ColDes_Category = new DevExpress.XtraTreeList.Columns.TreeListColumn();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanel1.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.pageBanQuyen.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            this.pageSoRun.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlSoRun)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewSoRun)).BeginInit();
            this.pageMuonTra.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMuonTra)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMuonTra)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
            this.splitContainerControl2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).BeginInit();
            this.SuspendLayout();
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(17, 28);
            this.gridControlDetail.TabIndex = 9;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.ColumnAutoWidth = false;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barSubItemCotHienThi,
            this.barSubItemInNhan,
            this.barButtonItemInBeatcamTrong,
            this.barButtonItemInBeatacamNgoai,
            this.barButtonItemIn,
            this.barButtonItemXemTruoc,
            this.barSubItemExort,
            this.barButtonItemExcel2007,
            this.barButtonItemExcel2003,
            this.barButtonItemPDF,
            this.barButtonItemHTML,
            this.barButtonItemRTF});
            this.barManager1.MaxItemId = 50;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemExort),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemCotHienThi, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemAdd.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "&Xem";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem trước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barSubItemInNhan
            //
            this.barSubItemInNhan.Caption = "In n&hãn";
            this.barSubItemInNhan.Id = 36;
            this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
            this.barSubItemInNhan.Name = "barSubItemInNhan";
            this.barSubItemInNhan.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barButtonItemInBeatcamTrong
            //
            this.barButtonItemInBeatcamTrong.Caption = "In beatcam t&rong";
            this.barButtonItemInBeatcamTrong.Id = 37;
            this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
            //
            // barButtonItemInBeatacamNgoai
            //
            this.barButtonItemInBeatacamNgoai.Caption = "In betacam n&ngoài";
            this.barButtonItemInBeatacamNgoai.Id = 38;
            this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
            //
            // barSubItemExort
            //
            this.barSubItemExort.Caption = "Xuất ra file";
            this.barSubItemExort.Id = 44;
            this.barSubItemExort.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemExcel2007),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemExcel2003),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPDF),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemHTML),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRTF)});
            this.barSubItemExort.Name = "barSubItemExort";
            this.barSubItemExort.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;

            //
            // barButtonItemExcel2007
            //
            this.barButtonItemExcel2007.Caption = "Xuất ra file Excel 2007";
            this.barButtonItemExcel2007.Id = 45;
            this.barButtonItemExcel2007.Name = "barButtonItemExcel2007";
            this.barButtonItemExcel2007.Tag = "xlsx";
            this.barButtonItemExcel2007.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemExcel2003
            //
            this.barButtonItemExcel2003.Caption = "Xuất ra file Excel 97 - 2003";
            this.barButtonItemExcel2003.Id = 46;
            this.barButtonItemExcel2003.Name = "barButtonItemExcel2003";
            this.barButtonItemExcel2003.Tag = "xls";
            this.barButtonItemExcel2003.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemPDF
            //
            this.barButtonItemPDF.Caption = "Xuất ra file PDF";
            this.barButtonItemPDF.Id = 47;
            this.barButtonItemPDF.Name = "barButtonItemPDF";
            this.barButtonItemPDF.Tag = "pdf";
            this.barButtonItemPDF.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemHTML
            //
            this.barButtonItemHTML.Caption = "Xuất ra file HTML";
            this.barButtonItemHTML.Id = 48;
            this.barButtonItemHTML.Name = "barButtonItemHTML";
            this.barButtonItemHTML.Tag = "htm";
            this.barButtonItemHTML.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemRTF
            //
            this.barButtonItemRTF.Caption = "Xuất ra file RTF";
            this.barButtonItemRTF.Id = 49;
            this.barButtonItemRTF.Name = "barButtonItemRTF";
            this.barButtonItemRTF.Tag = "rtf";
            this.barButtonItemRTF.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemExport_ItemClick);
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tìm kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điều &kiện lọc";
            this.barCheckItemFilter.Checked = true;
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.CheckedChanged += new DevExpress.XtraBars.ItemClickEventHandler(this.barCheckItemFilter_CheckedChanged);
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đóng";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItemCotHienThi
            //
            this.barSubItemCotHienThi.Caption = "Chọn cột hiển thị";
            this.barSubItemCotHienThi.Id = 35;
            this.barSubItemCotHienThi.Name = "barSubItemCotHienThi";
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1028, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 545);
            this.barDockControlBottom.Size = new System.Drawing.Size(1028, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 521);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1028, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 521);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.HiddenPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanel1});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanel1
            //
            this.dockPanel1.Controls.Add(this.dockPanel1_Container);
            this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.FloatVertical = true;
            this.dockPanel1.ID = new System.Guid("437240ce-168d-4c05-a0b9-c702ea5e41f7");
            this.dockPanel1.Location = new System.Drawing.Point(0, 24);
            this.dockPanel1.Name = "dockPanel1";
            this.dockPanel1.Options.AllowDockLeft = false;
            this.dockPanel1.Options.AllowDockRight = false;
            this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 83);
            this.dockPanel1.SavedDock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanel1.SavedIndex = 0;
            this.dockPanel1.Size = new System.Drawing.Size(1028, 83);
            this.dockPanel1.Text = "Điều kiện tìm kiếm";
            this.dockPanel1.Visibility = DevExpress.XtraBars.Docking.DockVisibility.Hidden;
            this.dockPanel1.VisibilityChanged += new DevExpress.XtraBars.Docking.VisibilityChangedEventHandler(this.dockPanel1_VisibilityChanged);
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(1022, 55);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1022, 55);
            this.popupControlContainerFilter.TabIndex = 5;
            this.popupControlContainerFilter.Visible = false;
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Location = new System.Drawing.Point(840, 6);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.splitContainerControl1.Panel1.Text = "Chương trình";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.gridControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(52, 28);
            this.splitContainerControl1.SplitterPosition = 29;
            this.splitContainerControl1.TabIndex = 4;
            this.splitContainerControl1.Text = "splitContainerControl1";
            this.splitContainerControl1.Visible = false;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItemIn
            //
            this.barButtonItemIn.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemIn.Caption = "&In";
            this.barButtonItemIn.Id = 41;
            this.barButtonItemIn.Name = "barButtonItemIn";
            this.barButtonItemIn.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemIn.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemIn_ItemClick);
            //
            // barButtonItemXemTruoc
            //
            this.barButtonItemXemTruoc.Caption = "&Xem trước";
            this.barButtonItemXemTruoc.Id = 42;
            this.barButtonItemXemTruoc.Name = "barButtonItemXemTruoc";
            this.barButtonItemXemTruoc.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemXemTruoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXemTruoc_ItemClick);
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 24);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(1028, 521);
            this.xtraTabControlDetail.TabIndex = 11;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail,
            this.pageBanQuyen,
            this.pageSoRun,
            this.pageMuonTra});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.PageVisible = false;
            this.xtraTabPageDetail.Size = new System.Drawing.Size(1021, 492);
            this.xtraTabPageDetail.Text = "Detail";
            //
            // pageBanQuyen
            //
            this.pageBanQuyen.Controls.Add(this.gridControlMaster);
            this.pageBanQuyen.Name = "pageBanQuyen";
            this.pageBanQuyen.Size = new System.Drawing.Size(1021, 492);
            this.pageBanQuyen.Text = "Cảnh báo bản quyền";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(1021, 492);
            this.gridControlMaster.TabIndex = 10;
            this.gridControlMaster.TabStop = false;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
            this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandThongTinChinh,
            this.gridBandNguonGoc,
            this.gridBandThongTinPhatSong,
            this.gridBandThongTinBan});
            this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_CT_MaCT,
            this.Col_CT_NgayAWB,
            this.Col_CT_NgayLap,
            this.Col_CT_NguoiLap,
            this.Col_CT_PhongBan,
            this.Col_CT_NoiDung,
            this.Col_CT_TietMuc,
            this.Col_CT_TenGoc,
            this.Col_CT_DaoDien,
            this.Col_CT_DienVien,
            this.Col_CT_KHPL,
            this.Col_CT_DoiTuongKhanGia,
            this.Col_CT_TuKhoa,
            this.Col_CT_KHXK,
            this.Col_CT_TinhTrangBang,
            this.Col_CT_TomTat,
            this.Col_CT_ThanhLy,
            this.Col_CT_GhiChu,
            this.Col_CT_ThongTinBan,
            this.Col_CT_NamSX,
            this.Col_CT_Nuoc,
            this.Col_CT_DonViCungCap,
            this.Col_CT_DonViSoHuu,
            this.Col_CT_KenhHanCheBan,
            this.Col_CT_PhatSongChinh,
            this.Col_CT_TongSoRun,
            this.Col_CT_SoLanPhat,
            this.Col_CT_SoRunConLai,
            this.Col_CT_Release,
            this.Col_CT_Category,
            this.Col_CT_Ranking,
            this.Col_CT_Script,
            this.Col_CT_Photos,
            this.Col_CT_TrailerGoc,
            this.Col_CT_BanQuyenThuoc,
            this.Col_CT_BanQuyenDIDStart,
            this.Col_CT_BanQuyenDIDEnd,
            this.Col_CT_BanQuyenDTNNStart,
            this.Col_CT_BanQuyenDTNNEnd,
            this.Col_CT_BanQuyenHTV,
            this.Col_CT_MuaKem,
            this.Col_CT_PhatSongKhac,
            this.Col_CT_PhatSongLai,
            this.Col_CT_CongT,
            this.Col_CT_LoaiCB});
            this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsSelection.MultiSelect = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_CT_LoaiCB, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "Thông tin cảnh báo thời hạn bản quyền";
            //
            // gridBandThongTinChinh
            //
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinChinh.Caption = "Thông tin chính";
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_MaCT);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayAWB);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Category);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NoiDung);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TenGoc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TietMuc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DaoDien);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DienVien);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TomTat);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_DoiTuongKhanGia);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHPL);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_KHXK);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TinhTrangBang);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TuKhoa);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_ThanhLy);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_GhiChu);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Photos);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Ranking);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_Script);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_TrailerGoc);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_LoaiCB);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NgayLap);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_NguoiLap);
            this.gridBandThongTinChinh.Columns.Add(this.Col_CT_CongT);
            this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
            this.gridBandThongTinChinh.Width = 1427;
            //
            // Col_CT_MaCT
            //
            this.Col_CT_MaCT.Caption = "Mã chương trình";
            this.Col_CT_MaCT.Name = "Col_CT_MaCT";
            this.Col_CT_MaCT.Visible = true;
            this.Col_CT_MaCT.Width = 90;
            //
            // Col_CT_NgayAWB
            //
            this.Col_CT_NgayAWB.Caption = "Ngày AWB";
            this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
            this.Col_CT_NgayAWB.Visible = true;
            this.Col_CT_NgayAWB.Width = 63;
            //
            // Col_CT_Category
            //
            this.Col_CT_Category.Caption = "Category";
            this.Col_CT_Category.Name = "Col_CT_Category";
            this.Col_CT_Category.Visible = true;
            this.Col_CT_Category.Width = 57;
            //
            // Col_CT_NoiDung
            //
            this.Col_CT_NoiDung.Caption = "Tên chương trình";
            this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
            this.Col_CT_NoiDung.Visible = true;
            this.Col_CT_NoiDung.Width = 94;
            //
            // Col_CT_TenGoc
            //
            this.Col_CT_TenGoc.Caption = "Tên gốc";
            this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
            this.Col_CT_TenGoc.Visible = true;
            this.Col_CT_TenGoc.Width = 50;
            //
            // Col_CT_TietMuc
            //
            this.Col_CT_TietMuc.Caption = "Tiết mục";
            this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
            this.Col_CT_TietMuc.Visible = true;
            this.Col_CT_TietMuc.Width = 52;
            //
            // Col_CT_DaoDien
            //
            this.Col_CT_DaoDien.Caption = "Đạo diễn";
            this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
            this.Col_CT_DaoDien.Visible = true;
            this.Col_CT_DaoDien.Width = 55;
            //
            // Col_CT_DienVien
            //
            this.Col_CT_DienVien.Caption = "Diễn viên";
            this.Col_CT_DienVien.Name = "Col_CT_DienVien";
            this.Col_CT_DienVien.Visible = true;
            this.Col_CT_DienVien.Width = 56;
            //
            // Col_CT_TomTat
            //
            this.Col_CT_TomTat.Caption = "Tóm tắt";
            this.Col_CT_TomTat.Name = "Col_CT_TomTat";
            this.Col_CT_TomTat.Visible = true;
            this.Col_CT_TomTat.Width = 49;
            //
            // Col_CT_DoiTuongKhanGia
            //
            this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
            this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
            this.Col_CT_DoiTuongKhanGia.Visible = true;
            this.Col_CT_DoiTuongKhanGia.Width = 103;
            //
            // Col_CT_KHPL
            //
            this.Col_CT_KHPL.Caption = "KHPL";
            this.Col_CT_KHPL.Name = "Col_CT_KHPL";
            this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
            this.Col_CT_KHPL.Visible = true;
            this.Col_CT_KHPL.Width = 36;
            //
            // Col_CT_KHXK
            //
            this.Col_CT_KHXK.Caption = "KHXK";
            this.Col_CT_KHXK.Name = "Col_CT_KHXK";
            this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
            this.Col_CT_KHXK.Visible = true;
            this.Col_CT_KHXK.Width = 37;
            //
            // Col_CT_TinhTrangBang
            //
            this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
            this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
            this.Col_CT_TinhTrangBang.Visible = true;
            this.Col_CT_TinhTrangBang.Width = 77;
            //
            // Col_CT_TuKhoa
            //
            this.Col_CT_TuKhoa.Caption = "Từ khóa";
            this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
            this.Col_CT_TuKhoa.Visible = true;
            this.Col_CT_TuKhoa.Width = 51;
            //
            // Col_CT_ThanhLy
            //
            this.Col_CT_ThanhLy.Caption = "Thanh lý";
            this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
            this.Col_CT_ThanhLy.Visible = true;
            this.Col_CT_ThanhLy.Width = 53;
            //
            // Col_CT_GhiChu
            //
            this.Col_CT_GhiChu.Caption = "Ghi chú";
            this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
            this.Col_CT_GhiChu.Visible = true;
            this.Col_CT_GhiChu.Width = 47;
            //
            // Col_CT_Photos
            //
            this.Col_CT_Photos.Caption = "Photos";
            this.Col_CT_Photos.Name = "Col_CT_Photos";
            this.Col_CT_Photos.Visible = true;
            this.Col_CT_Photos.Width = 45;
            //
            // Col_CT_Ranking
            //
            this.Col_CT_Ranking.Caption = "Ranking";
            this.Col_CT_Ranking.Name = "Col_CT_Ranking";
            this.Col_CT_Ranking.Visible = true;
            this.Col_CT_Ranking.Width = 50;
            //
            // Col_CT_Script
            //
            this.Col_CT_Script.Caption = "Script";
            this.Col_CT_Script.Name = "Col_CT_Script";
            this.Col_CT_Script.Visible = true;
            this.Col_CT_Script.Width = 39;
            //
            // Col_CT_TrailerGoc
            //
            this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
            this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
            this.Col_CT_TrailerGoc.Visible = true;
            this.Col_CT_TrailerGoc.Width = 62;
            //
            // Col_CT_LoaiCB
            //
            this.Col_CT_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_CT_LoaiCB.Name = "Col_CT_LoaiCB";
            this.Col_CT_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_CT_LoaiCB.Visible = true;
            //
            // Col_CT_NgayLap
            //
            this.Col_CT_NgayLap.Caption = "Ngày lập";
            this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
            this.Col_CT_NgayLap.Visible = true;
            this.Col_CT_NgayLap.Width = 54;
            //
            // Col_CT_NguoiLap
            //
            this.Col_CT_NguoiLap.Caption = "Người lập";
            this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
            this.Col_CT_NguoiLap.Visible = true;
            this.Col_CT_NguoiLap.Width = 57;
            //
            // Col_CT_CongT
            //
            this.Col_CT_CongT.Caption = "Công ty";
            this.Col_CT_CongT.Name = "Col_CT_CongT";
            this.Col_CT_CongT.Visible = true;
            //
            // gridBandNguonGoc
            //
            this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandNguonGoc.Caption = "Nguồn gốc";
            this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1,
            this.gridBand2});
            this.gridBandNguonGoc.Name = "gridBandNguonGoc";
            this.gridBandNguonGoc.Width = 1153;
            //
            // gridBand1
            //
            this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand1.Caption = "Thông tin sở hữu";
            this.gridBand1.Columns.Add(this.Col_CT_PhongBan);
            this.gridBand1.Columns.Add(this.Col_CT_NamSX);
            this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
            this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
            this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
            this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
            this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 507;
            //
            // Col_CT_PhongBan
            //
            this.Col_CT_PhongBan.Caption = "Phòng ban";
            this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
            this.Col_CT_PhongBan.Visible = true;
            this.Col_CT_PhongBan.Width = 63;
            //
            // Col_CT_NamSX
            //
            this.Col_CT_NamSX.Caption = "Năm SX";
            this.Col_CT_NamSX.Name = "Col_CT_NamSX";
            this.Col_CT_NamSX.Visible = true;
            this.Col_CT_NamSX.Width = 48;
            //
            // Col_CT_Nuoc
            //
            this.Col_CT_Nuoc.Caption = "Nước SX";
            this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
            this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
            this.Col_CT_Nuoc.Visible = true;
            this.Col_CT_Nuoc.Width = 52;
            //
            // Col_CT_DonViCungCap
            //
            this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
            this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
            this.Col_CT_DonViCungCap.Visible = true;
            this.Col_CT_DonViCungCap.Width = 89;
            //
            // Col_CT_DonViSoHuu
            //
            this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
            this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
            this.Col_CT_DonViSoHuu.Visible = true;
            this.Col_CT_DonViSoHuu.Width = 79;
            //
            // Col_CT_KenhHanCheBan
            //
            this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
            this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
            this.Col_CT_KenhHanCheBan.Visible = true;
            this.Col_CT_KenhHanCheBan.Width = 98;
            //
            // Col_CT_ThongTinBan
            //
            this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
            this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
            this.Col_CT_ThongTinBan.Visible = true;
            this.Col_CT_ThongTinBan.Width = 78;
            //
            // gridBand2
            //
            this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand2.Caption = "Thời hạn bản quyền";
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
            this.gridBand2.Name = "gridBand2";
            this.gridBand2.Width = 646;
            //
            // Col_CT_BanQuyenThuoc
            //
            this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
            this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
            this.Col_CT_BanQuyenThuoc.Visible = true;
            this.Col_CT_BanQuyenThuoc.Width = 93;
            //
            // Col_CT_BanQuyenDIDStart
            //
            this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
            this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
            this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
            this.Col_CT_BanQuyenDIDStart.Visible = true;
            this.Col_CT_BanQuyenDIDStart.Width = 119;
            //
            // Col_CT_BanQuyenDIDEnd
            //
            this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
            this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
            this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
            this.Col_CT_BanQuyenDIDEnd.Visible = true;
            this.Col_CT_BanQuyenDIDEnd.Width = 113;
            //
            // Col_CT_BanQuyenDTNNStart
            //
            this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
            this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
            this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
            this.Col_CT_BanQuyenDTNNStart.Visible = true;
            this.Col_CT_BanQuyenDTNNStart.Width = 121;
            //
            // Col_CT_BanQuyenDTNNEnd
            //
            this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
            this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
            this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
            this.Col_CT_BanQuyenDTNNEnd.Visible = true;
            this.Col_CT_BanQuyenDTNNEnd.Width = 115;
            //
            // Col_CT_BanQuyenHTV
            //
            this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
            this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
            this.Col_CT_BanQuyenHTV.Visible = true;
            this.Col_CT_BanQuyenHTV.Width = 85;
            //
            // gridBandThongTinPhatSong
            //
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
            this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
            this.gridBandThongTinPhatSong.Width = 794;
            //
            // Col_CT_MuaKem
            //
            this.Col_CT_MuaKem.Caption = "Mua kèm";
            this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
            this.Col_CT_MuaKem.Visible = true;
            this.Col_CT_MuaKem.Width = 54;
            //
            // Col_CT_PhatSongChinh
            //
            this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
            this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
            this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
            this.Col_CT_PhatSongChinh.Visible = true;
            this.Col_CT_PhatSongChinh.Width = 102;
            //
            // Col_CT_PhatSongLai
            //
            this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
            this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
            this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
            this.Col_CT_PhatSongLai.Visible = true;
            this.Col_CT_PhatSongLai.Width = 87;
            //
            // Col_CT_PhatSongKhac
            //
            this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
            this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
            this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
            this.Col_CT_PhatSongKhac.Visible = true;
            this.Col_CT_PhatSongKhac.Width = 148;
            //
            // Col_CT_TongSoRun
            //
            this.Col_CT_TongSoRun.Caption = "Tổng số Run";
            this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
            this.Col_CT_TongSoRun.Visible = true;
            this.Col_CT_TongSoRun.Width = 72;
            //
            // Col_CT_SoLanPhat
            //
            this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
            this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
            this.Col_CT_SoLanPhat.Visible = true;
            this.Col_CT_SoLanPhat.Width = 152;
            //
            // Col_CT_SoRunConLai
            //
            this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
            this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
            this.Col_CT_SoRunConLai.Visible = true;
            this.Col_CT_SoRunConLai.Width = 79;
            //
            // Col_CT_Release
            //
            this.Col_CT_Release.Caption = "Release (Số ngày)";
            this.Col_CT_Release.Name = "Col_CT_Release";
            this.Col_CT_Release.Visible = true;
            this.Col_CT_Release.Width = 100;
            //
            // gridBandThongTinBan
            //
            this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinBan.Caption = "Thông tin bán";
            this.gridBandThongTinBan.Name = "gridBandThongTinBan";
            this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
            this.gridBandThongTinBan.Visible = false;
            this.gridBandThongTinBan.Width = 67;
            //
            // pageSoRun
            //
            this.pageSoRun.Controls.Add(this.gridControlSoRun);
            this.pageSoRun.Name = "pageSoRun";
            this.pageSoRun.Size = new System.Drawing.Size(1021, 492);
            this.pageSoRun.Text = "Cảnh báo số Run";
            //
            // gridControlSoRun
            //
            this.gridControlSoRun.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlSoRun.BackgroundImage")));
            this.gridControlSoRun.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlSoRun.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlSoRun.Location = new System.Drawing.Point(0, 0);
            this.gridControlSoRun.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlSoRun.MainView = this.gridViewSoRun;
            this.gridControlSoRun.Name = "gridControlSoRun";
            this.gridControlSoRun.Size = new System.Drawing.Size(1021, 492);
            this.gridControlSoRun.TabIndex = 11;
            this.gridControlSoRun.TabStop = false;
            this.gridControlSoRun.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewSoRun});
            //
            // gridViewSoRun
            //
            this.gridViewSoRun.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
            this.gridViewSoRun.Appearance.GroupPanel.Options.UseFont = true;
            this.gridViewSoRun.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewSoRun.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewSoRun.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.gridViewSoRun.Appearance.ViewCaption.Options.UseBackColor = true;
            this.gridViewSoRun.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand3,
            this.gridBand4,
            this.gridBand7,
            this.gridBand8});
            this.gridViewSoRun.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewSoRun.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_RUN_MaCT,
            this.Col_RUN_NgayAWB,
            this.Col_RUN_NgayLap,
            this.Col_RUN_NguoiLap,
            this.Col_RUN_PhongBan,
            this.Col_RUN_TenCT,
            this.Col_RUN_TietMuc,
            this.Col_RUN_TenGoc,
            this.Col_RUN_DaoDien,
            this.Col_RUN_DienVien,
            this.Col_RUN_KHPL,
            this.Col_RUN_DoiTuongKG,
            this.Col_RUN_TuKhoa,
            this.Col_RUN_KHXK,
            this.Col_RUN_TinhTrangCT,
            this.Col_RUN_TomTat,
            this.Col_RUN_ThanhLy,
            this.Col_RUN_GhiChu,
            this.Col_RUN_ThongTinBan,
            this.Col_RUN_NamSX,
            this.Col_RUN_NuocSX,
            this.Col_RUN_DVCungCap,
            this.Col_RUN_DonViSoHuu,
            this.Col_RUN_KenhHanCheBan,
            this.Col_RUN_ThoiGianPSChinh,
            this.Col_RUN_TongSoRun,
            this.Col_RUN_SoRunDaPhat,
            this.Col_RUN_SoRunConLai,
            this.Col_RUN_Release,
            this.Col_RUN_Category,
            this.Col_RUN_Ranking,
            this.Col_RUN_Script,
            this.Col_RUN_Photos,
            this.Col_RUN_TrailerGoc,
            this.Col_RUN_BanQuyenThuoc,
            this.Col_RUN_BanQuyenDTTNStart,
            this.Col_RUN_DTTNEnd,
            this.Col_RUN_DTNNStart,
            this.Col_RUN_DTNNEnd,
            this.Col_RUN_BanQuyenHTV,
            this.Col_RUN_MuaKem,
            this.Col_RUN_ThoiGianPSKhac,
            this.Col_RUN_ThoiGianPSLai,
            this.Col_RUN_CongTy,
            this.Col_RUN_LoaiCB});
            this.gridViewSoRun.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
            this.gridViewSoRun.GridControl = this.gridControlSoRun;
            this.gridViewSoRun.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
            this.gridViewSoRun.IndicatorWidth = 40;
            this.gridViewSoRun.Name = "gridViewSoRun";
            this.gridViewSoRun.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewSoRun.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewSoRun.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewSoRun.OptionsPrint.UsePrintStyles = true;
            this.gridViewSoRun.OptionsSelection.MultiSelect = true;
            this.gridViewSoRun.OptionsView.ColumnAutoWidth = false;
            this.gridViewSoRun.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewSoRun.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewSoRun.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewSoRun.OptionsView.ShowGroupPanel = false;
            this.gridViewSoRun.OptionsView.ShowViewCaption = true;
            this.gridViewSoRun.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_RUN_LoaiCB, DevExpress.Data.ColumnSortOrder.Descending)});
            this.gridViewSoRun.ViewCaption = "Thông tin cảnh báo số RUN";
            //
            // gridBand3
            //
            this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand3.Caption = "Thông tin chính";
            this.gridBand3.Columns.Add(this.Col_RUN_MaCT);
            this.gridBand3.Columns.Add(this.Col_RUN_NgayAWB);
            this.gridBand3.Columns.Add(this.Col_RUN_Category);
            this.gridBand3.Columns.Add(this.Col_RUN_TenCT);
            this.gridBand3.Columns.Add(this.Col_RUN_TenGoc);
            this.gridBand3.Columns.Add(this.Col_RUN_TietMuc);
            this.gridBand3.Columns.Add(this.Col_RUN_DaoDien);
            this.gridBand3.Columns.Add(this.Col_RUN_DienVien);
            this.gridBand3.Columns.Add(this.Col_RUN_TomTat);
            this.gridBand3.Columns.Add(this.Col_RUN_DoiTuongKG);
            this.gridBand3.Columns.Add(this.Col_RUN_KHPL);
            this.gridBand3.Columns.Add(this.Col_RUN_KHXK);
            this.gridBand3.Columns.Add(this.Col_RUN_TinhTrangCT);
            this.gridBand3.Columns.Add(this.Col_RUN_TuKhoa);
            this.gridBand3.Columns.Add(this.Col_RUN_ThanhLy);
            this.gridBand3.Columns.Add(this.Col_RUN_GhiChu);
            this.gridBand3.Columns.Add(this.Col_RUN_Photos);
            this.gridBand3.Columns.Add(this.Col_RUN_Ranking);
            this.gridBand3.Columns.Add(this.Col_RUN_Script);
            this.gridBand3.Columns.Add(this.Col_RUN_TrailerGoc);
            this.gridBand3.Columns.Add(this.Col_RUN_LoaiCB);
            this.gridBand3.Columns.Add(this.Col_RUN_NguoiLap);
            this.gridBand3.Columns.Add(this.Col_RUN_NgayLap);
            this.gridBand3.Columns.Add(this.Col_RUN_PhongBan);
            this.gridBand3.Columns.Add(this.Col_RUN_CongTy);
            this.gridBand3.Name = "gridBand3";
            this.gridBand3.Width = 1490;
            //
            // Col_RUN_MaCT
            //
            this.Col_RUN_MaCT.Caption = "Mã chương trình";
            this.Col_RUN_MaCT.Name = "Col_RUN_MaCT";
            this.Col_RUN_MaCT.Visible = true;
            this.Col_RUN_MaCT.Width = 90;
            //
            // Col_RUN_NgayAWB
            //
            this.Col_RUN_NgayAWB.Caption = "Ngày AWB";
            this.Col_RUN_NgayAWB.Name = "Col_RUN_NgayAWB";
            this.Col_RUN_NgayAWB.Visible = true;
            this.Col_RUN_NgayAWB.Width = 63;
            //
            // Col_RUN_Category
            //
            this.Col_RUN_Category.Caption = "Category";
            this.Col_RUN_Category.Name = "Col_RUN_Category";
            this.Col_RUN_Category.Visible = true;
            this.Col_RUN_Category.Width = 57;
            //
            // Col_RUN_TenCT
            //
            this.Col_RUN_TenCT.Caption = "Tên chương trình";
            this.Col_RUN_TenCT.Name = "Col_RUN_TenCT";
            this.Col_RUN_TenCT.Visible = true;
            this.Col_RUN_TenCT.Width = 94;
            //
            // Col_RUN_TenGoc
            //
            this.Col_RUN_TenGoc.Caption = "Tên gốc";
            this.Col_RUN_TenGoc.Name = "Col_RUN_TenGoc";
            this.Col_RUN_TenGoc.Visible = true;
            this.Col_RUN_TenGoc.Width = 50;
            //
            // Col_RUN_TietMuc
            //
            this.Col_RUN_TietMuc.Caption = "Tiết mục";
            this.Col_RUN_TietMuc.Name = "Col_RUN_TietMuc";
            this.Col_RUN_TietMuc.Visible = true;
            this.Col_RUN_TietMuc.Width = 52;
            //
            // Col_RUN_DaoDien
            //
            this.Col_RUN_DaoDien.Caption = "Đạo diễn";
            this.Col_RUN_DaoDien.Name = "Col_RUN_DaoDien";
            this.Col_RUN_DaoDien.Visible = true;
            this.Col_RUN_DaoDien.Width = 55;
            //
            // Col_RUN_DienVien
            //
            this.Col_RUN_DienVien.Caption = "Diễn viên";
            this.Col_RUN_DienVien.Name = "Col_RUN_DienVien";
            this.Col_RUN_DienVien.Visible = true;
            this.Col_RUN_DienVien.Width = 56;
            //
            // Col_RUN_TomTat
            //
            this.Col_RUN_TomTat.Caption = "Tóm tắt";
            this.Col_RUN_TomTat.Name = "Col_RUN_TomTat";
            this.Col_RUN_TomTat.Visible = true;
            this.Col_RUN_TomTat.Width = 49;
            //
            // Col_RUN_DoiTuongKG
            //
            this.Col_RUN_DoiTuongKG.Caption = "Đối tượng khán giả";
            this.Col_RUN_DoiTuongKG.Name = "Col_RUN_DoiTuongKG";
            this.Col_RUN_DoiTuongKG.Visible = true;
            this.Col_RUN_DoiTuongKG.Width = 103;
            //
            // Col_RUN_KHPL
            //
            this.Col_RUN_KHPL.Caption = "KHPL";
            this.Col_RUN_KHPL.Name = "Col_RUN_KHPL";
            this.Col_RUN_KHPL.ToolTip = "Ký hiệu phân loại";
            this.Col_RUN_KHPL.Visible = true;
            this.Col_RUN_KHPL.Width = 36;
            //
            // Col_RUN_KHXK
            //
            this.Col_RUN_KHXK.Caption = "KHXK";
            this.Col_RUN_KHXK.Name = "Col_RUN_KHXK";
            this.Col_RUN_KHXK.ToolTip = "Ký hiệu xếp kho";
            this.Col_RUN_KHXK.Visible = true;
            this.Col_RUN_KHXK.Width = 37;
            //
            // Col_RUN_TinhTrangCT
            //
            this.Col_RUN_TinhTrangCT.Caption = "Tình trạng CT";
            this.Col_RUN_TinhTrangCT.Name = "Col_RUN_TinhTrangCT";
            this.Col_RUN_TinhTrangCT.Visible = true;
            this.Col_RUN_TinhTrangCT.Width = 77;
            //
            // Col_RUN_TuKhoa
            //
            this.Col_RUN_TuKhoa.Caption = "Từ khóa";
            this.Col_RUN_TuKhoa.Name = "Col_RUN_TuKhoa";
            this.Col_RUN_TuKhoa.Visible = true;
            this.Col_RUN_TuKhoa.Width = 51;
            //
            // Col_RUN_ThanhLy
            //
            this.Col_RUN_ThanhLy.Caption = "Thanh lý";
            this.Col_RUN_ThanhLy.Name = "Col_RUN_ThanhLy";
            this.Col_RUN_ThanhLy.Visible = true;
            this.Col_RUN_ThanhLy.Width = 53;
            //
            // Col_RUN_GhiChu
            //
            this.Col_RUN_GhiChu.Caption = "Ghi chú";
            this.Col_RUN_GhiChu.Name = "Col_RUN_GhiChu";
            this.Col_RUN_GhiChu.Visible = true;
            this.Col_RUN_GhiChu.Width = 47;
            //
            // Col_RUN_Photos
            //
            this.Col_RUN_Photos.Caption = "Photos";
            this.Col_RUN_Photos.Name = "Col_RUN_Photos";
            this.Col_RUN_Photos.Visible = true;
            this.Col_RUN_Photos.Width = 45;
            //
            // Col_RUN_Ranking
            //
            this.Col_RUN_Ranking.Caption = "Ranking";
            this.Col_RUN_Ranking.Name = "Col_RUN_Ranking";
            this.Col_RUN_Ranking.Visible = true;
            this.Col_RUN_Ranking.Width = 50;
            //
            // Col_RUN_Script
            //
            this.Col_RUN_Script.Caption = "Script";
            this.Col_RUN_Script.Name = "Col_RUN_Script";
            this.Col_RUN_Script.Visible = true;
            this.Col_RUN_Script.Width = 39;
            //
            // Col_RUN_TrailerGoc
            //
            this.Col_RUN_TrailerGoc.Caption = "Trailer gốc";
            this.Col_RUN_TrailerGoc.Name = "Col_RUN_TrailerGoc";
            this.Col_RUN_TrailerGoc.Visible = true;
            this.Col_RUN_TrailerGoc.Width = 62;
            //
            // Col_RUN_LoaiCB
            //
            this.Col_RUN_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_RUN_LoaiCB.Name = "Col_RUN_LoaiCB";
            this.Col_RUN_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_RUN_LoaiCB.Visible = true;
            //
            // Col_RUN_NguoiLap
            //
            this.Col_RUN_NguoiLap.Caption = "Người lập";
            this.Col_RUN_NguoiLap.Name = "Col_RUN_NguoiLap";
            this.Col_RUN_NguoiLap.Visible = true;
            this.Col_RUN_NguoiLap.Width = 57;
            //
            // Col_RUN_NgayLap
            //
            this.Col_RUN_NgayLap.Caption = "Ngày lập";
            this.Col_RUN_NgayLap.Name = "Col_RUN_NgayLap";
            this.Col_RUN_NgayLap.Visible = true;
            this.Col_RUN_NgayLap.Width = 54;
            //
            // Col_RUN_PhongBan
            //
            this.Col_RUN_PhongBan.Caption = "Phòng ban";
            this.Col_RUN_PhongBan.Name = "Col_RUN_PhongBan";
            this.Col_RUN_PhongBan.Visible = true;
            this.Col_RUN_PhongBan.Width = 63;
            //
            // Col_RUN_CongTy
            //
            this.Col_RUN_CongTy.Caption = "Công ty";
            this.Col_RUN_CongTy.Name = "Col_RUN_CongTy";
            this.Col_RUN_CongTy.Visible = true;
            //
            // gridBand4
            //
            this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand4.Caption = "Nguồn gốc";
            this.gridBand4.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand5,
            this.gridBand6});
            this.gridBand4.Name = "gridBand4";
            this.gridBand4.Width = 1090;
            //
            // gridBand5
            //
            this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand5.Caption = "Thông tin sở hữu";
            this.gridBand5.Columns.Add(this.Col_RUN_NamSX);
            this.gridBand5.Columns.Add(this.Col_RUN_NuocSX);
            this.gridBand5.Columns.Add(this.Col_RUN_DVCungCap);
            this.gridBand5.Columns.Add(this.Col_RUN_DonViSoHuu);
            this.gridBand5.Columns.Add(this.Col_RUN_KenhHanCheBan);
            this.gridBand5.Columns.Add(this.Col_RUN_ThongTinBan);
            this.gridBand5.Name = "gridBand5";
            this.gridBand5.Width = 444;
            //
            // Col_RUN_NamSX
            //
            this.Col_RUN_NamSX.Caption = "Năm SX";
            this.Col_RUN_NamSX.Name = "Col_RUN_NamSX";
            this.Col_RUN_NamSX.Visible = true;
            this.Col_RUN_NamSX.Width = 48;
            //
            // Col_RUN_NuocSX
            //
            this.Col_RUN_NuocSX.Caption = "Nước SX";
            this.Col_RUN_NuocSX.Name = "Col_RUN_NuocSX";
            this.Col_RUN_NuocSX.ToolTip = "Nước sản xuất";
            this.Col_RUN_NuocSX.Visible = true;
            this.Col_RUN_NuocSX.Width = 52;
            //
            // Col_RUN_DVCungCap
            //
            this.Col_RUN_DVCungCap.Caption = "Đơn vị cung cấp";
            this.Col_RUN_DVCungCap.Name = "Col_RUN_DVCungCap";
            this.Col_RUN_DVCungCap.Visible = true;
            this.Col_RUN_DVCungCap.Width = 89;
            //
            // Col_RUN_DonViSoHuu
            //
            this.Col_RUN_DonViSoHuu.Caption = "Đơn vị sở hữu";
            this.Col_RUN_DonViSoHuu.Name = "Col_RUN_DonViSoHuu";
            this.Col_RUN_DonViSoHuu.Visible = true;
            this.Col_RUN_DonViSoHuu.Width = 79;
            //
            // Col_RUN_KenhHanCheBan
            //
            this.Col_RUN_KenhHanCheBan.Caption = "Kênh hạn chế bán";
            this.Col_RUN_KenhHanCheBan.Name = "Col_RUN_KenhHanCheBan";
            this.Col_RUN_KenhHanCheBan.Visible = true;
            this.Col_RUN_KenhHanCheBan.Width = 98;
            //
            // Col_RUN_ThongTinBan
            //
            this.Col_RUN_ThongTinBan.Caption = "Thông tin bán";
            this.Col_RUN_ThongTinBan.Name = "Col_RUN_ThongTinBan";
            this.Col_RUN_ThongTinBan.Visible = true;
            this.Col_RUN_ThongTinBan.Width = 78;
            //
            // gridBand6
            //
            this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand6.Caption = "Thời hạn bản quyền";
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenThuoc);
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenDTTNStart);
            this.gridBand6.Columns.Add(this.Col_RUN_DTTNEnd);
            this.gridBand6.Columns.Add(this.Col_RUN_DTNNStart);
            this.gridBand6.Columns.Add(this.Col_RUN_DTNNEnd);
            this.gridBand6.Columns.Add(this.Col_RUN_BanQuyenHTV);
            this.gridBand6.Name = "gridBand6";
            this.gridBand6.Width = 646;
            //
            // Col_RUN_BanQuyenThuoc
            //
            this.Col_RUN_BanQuyenThuoc.Caption = "Bản quyền thuộc";
            this.Col_RUN_BanQuyenThuoc.Name = "Col_RUN_BanQuyenThuoc";
            this.Col_RUN_BanQuyenThuoc.Visible = true;
            this.Col_RUN_BanQuyenThuoc.Width = 93;
            //
            // Col_RUN_BanQuyenDTTNStart
            //
            this.Col_RUN_BanQuyenDTTNStart.Caption = "Bản quyền DTTN Start";
            this.Col_RUN_BanQuyenDTTNStart.Name = "Col_RUN_BanQuyenDTTNStart";
            this.Col_RUN_BanQuyenDTTNStart.ToolTip = "Bản quyền đối tác trong nước Start";
            this.Col_RUN_BanQuyenDTTNStart.Visible = true;
            this.Col_RUN_BanQuyenDTTNStart.Width = 119;
            //
            // Col_RUN_DTTNEnd
            //
            this.Col_RUN_DTTNEnd.Caption = "Bản quyền DTTN End";
            this.Col_RUN_DTTNEnd.Name = "Col_RUN_DTTNEnd";
            this.Col_RUN_DTTNEnd.ToolTip = "Bản quyền đối tác trong nước End";
            this.Col_RUN_DTTNEnd.Visible = true;
            this.Col_RUN_DTTNEnd.Width = 113;
            //
            // Col_RUN_DTNNStart
            //
            this.Col_RUN_DTNNStart.Caption = "Bản quyền ĐTNN Start";
            this.Col_RUN_DTNNStart.Name = "Col_RUN_DTNNStart";
            this.Col_RUN_DTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
            this.Col_RUN_DTNNStart.Visible = true;
            this.Col_RUN_DTNNStart.Width = 121;
            //
            // Col_RUN_DTNNEnd
            //
            this.Col_RUN_DTNNEnd.Caption = "Bản quyền ĐTNN End";
            this.Col_RUN_DTNNEnd.Name = "Col_RUN_DTNNEnd";
            this.Col_RUN_DTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
            this.Col_RUN_DTNNEnd.Visible = true;
            this.Col_RUN_DTNNEnd.Width = 115;
            //
            // Col_RUN_BanQuyenHTV
            //
            this.Col_RUN_BanQuyenHTV.Caption = "Bản quyền HTV";
            this.Col_RUN_BanQuyenHTV.Name = "Col_RUN_BanQuyenHTV";
            this.Col_RUN_BanQuyenHTV.Visible = true;
            this.Col_RUN_BanQuyenHTV.Width = 85;
            //
            // gridBand7
            //
            this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand7.Caption = "Thông tin phát sóng";
            this.gridBand7.Columns.Add(this.Col_RUN_MuaKem);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSChinh);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSLai);
            this.gridBand7.Columns.Add(this.Col_RUN_ThoiGianPSKhac);
            this.gridBand7.Columns.Add(this.Col_RUN_TongSoRun);
            this.gridBand7.Columns.Add(this.Col_RUN_SoRunDaPhat);
            this.gridBand7.Columns.Add(this.Col_RUN_SoRunConLai);
            this.gridBand7.Columns.Add(this.Col_RUN_Release);
            this.gridBand7.Name = "gridBand7";
            this.gridBand7.Width = 794;
            //
            // Col_RUN_MuaKem
            //
            this.Col_RUN_MuaKem.Caption = "Mua kèm";
            this.Col_RUN_MuaKem.Name = "Col_RUN_MuaKem";
            this.Col_RUN_MuaKem.Visible = true;
            this.Col_RUN_MuaKem.Width = 54;
            //
            // Col_RUN_ThoiGianPSChinh
            //
            this.Col_RUN_ThoiGianPSChinh.Caption = "Thời gian P/S chính";
            this.Col_RUN_ThoiGianPSChinh.Name = "Col_RUN_ThoiGianPSChinh";
            this.Col_RUN_ThoiGianPSChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
            this.Col_RUN_ThoiGianPSChinh.Visible = true;
            this.Col_RUN_ThoiGianPSChinh.Width = 102;
            //
            // Col_RUN_ThoiGianPSLai
            //
            this.Col_RUN_ThoiGianPSLai.Caption = "Thời gian P/S lại";
            this.Col_RUN_ThoiGianPSLai.Name = "Col_RUN_ThoiGianPSLai";
            this.Col_RUN_ThoiGianPSLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
            this.Col_RUN_ThoiGianPSLai.Visible = true;
            this.Col_RUN_ThoiGianPSLai.Width = 87;
            //
            // Col_RUN_ThoiGianPSKhac
            //
            this.Col_RUN_ThoiGianPSKhac.Caption = "Thời gian P/S trên kênh khác";
            this.Col_RUN_ThoiGianPSKhac.Name = "Col_RUN_ThoiGianPSKhac";
            this.Col_RUN_ThoiGianPSKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
            this.Col_RUN_ThoiGianPSKhac.Visible = true;
            this.Col_RUN_ThoiGianPSKhac.Width = 148;
            //
            // Col_RUN_TongSoRun
            //
            this.Col_RUN_TongSoRun.Caption = "Tổng số Run";
            this.Col_RUN_TongSoRun.Name = "Col_RUN_TongSoRun";
            this.Col_RUN_TongSoRun.Visible = true;
            this.Col_RUN_TongSoRun.Width = 72;
            //
            // Col_RUN_SoRunDaPhat
            //
            this.Col_RUN_SoRunDaPhat.Caption = "Tồng số lần đã phát (đã Run)";
            this.Col_RUN_SoRunDaPhat.Name = "Col_RUN_SoRunDaPhat";
            this.Col_RUN_SoRunDaPhat.Visible = true;
            this.Col_RUN_SoRunDaPhat.Width = 152;
            //
            // Col_RUN_SoRunConLai
            //
            this.Col_RUN_SoRunConLai.Caption = "Số Run còn lại";
            this.Col_RUN_SoRunConLai.Name = "Col_RUN_SoRunConLai";
            this.Col_RUN_SoRunConLai.Visible = true;
            this.Col_RUN_SoRunConLai.Width = 79;
            //
            // Col_RUN_Release
            //
            this.Col_RUN_Release.Caption = "Release (Số ngày)";
            this.Col_RUN_Release.Name = "Col_RUN_Release";
            this.Col_RUN_Release.Visible = true;
            this.Col_RUN_Release.Width = 100;
            //
            // gridBand8
            //
            this.gridBand8.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand8.Caption = "Thông tin bán";
            this.gridBand8.Name = "gridBand8";
            this.gridBand8.OptionsBand.ShowInCustomizationForm = false;
            this.gridBand8.Visible = false;
            this.gridBand8.Width = 67;
            //
            // pageMuonTra
            //
            this.pageMuonTra.Controls.Add(this.splitContainerControl2);
            this.pageMuonTra.Name = "pageMuonTra";
            this.pageMuonTra.Size = new System.Drawing.Size(1021, 492);
            this.pageMuonTra.Text = "Cảnh báo mượn trả";
            //
            // gridControlMuonTra
            //
            this.gridControlMuonTra.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMuonTra.BackgroundImage")));
            this.gridControlMuonTra.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMuonTra.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMuonTra.Location = new System.Drawing.Point(0, 0);
            this.gridControlMuonTra.MainView = this.gridViewMuonTra;
            this.gridControlMuonTra.Name = "gridControlMuonTra";
            this.gridControlMuonTra.Size = new System.Drawing.Size(1021, 305);
            this.gridControlMuonTra.TabIndex = 11;
            this.gridControlMuonTra.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMuonTra});
            //
            // gridViewMuonTra
            //
            this.gridViewMuonTra.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMuonTra.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMuonTra.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandChuongTrinh,
            this.gridBandPostMaster});
            this.gridViewMuonTra.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_MT_MaPhieu,
            this.Col_MT_NguoiMuon,
            this.Col_MT_BoPhanMuon,
            this.Col_MT_CongTyMuon,
            this.Col_MT_NgayMuon,
            this.Col_MT_MucDich,
            this.Col_MT_NgayTra,
            this.Col_MT_NguoiTao,
            this.Col_MT_NgayTao,
            this.Col_MT_PhongBan,
            this.Col_MT_CongTy,
            this.Col_MT_LoaiCB});
            this.gridViewMuonTra.GridControl = this.gridControlMuonTra;
            this.gridViewMuonTra.IndicatorWidth = 40;
            this.gridViewMuonTra.Name = "gridViewMuonTra";
            this.gridViewMuonTra.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMuonTra.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMuonTra.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMuonTra.OptionsPrint.UsePrintStyles = true;
            this.gridViewMuonTra.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMuonTra.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMuonTra.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMuonTra.OptionsView.ShowGroupPanel = false;
            this.gridViewMuonTra.OptionsView.ShowViewCaption = true;
            this.gridViewMuonTra.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_MT_LoaiCB, DevExpress.Data.ColumnSortOrder.Descending)});
            this.gridViewMuonTra.ViewCaption = "Thông tin cảnh báo mượn trả";
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin mượn/trả";
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_MaPhieu);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NguoiMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_BoPhanMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_CongTyMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NgayMuon);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_MucDich);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_NgayTra);
            this.gridBandChuongTrinh.Columns.Add(this.Col_MT_LoaiCB);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 590;
            //
            // Col_MT_MaPhieu
            //
            this.Col_MT_MaPhieu.Caption = "Mã PMT";
            this.Col_MT_MaPhieu.Name = "Col_MT_MaPhieu";
            this.Col_MT_MaPhieu.ToolTip = "Mã phiếu mượn trả";
            this.Col_MT_MaPhieu.Visible = true;
            this.Col_MT_MaPhieu.Width = 49;
            //
            // Col_MT_NguoiMuon
            //
            this.Col_MT_NguoiMuon.Caption = "Người mượn";
            this.Col_MT_NguoiMuon.Name = "Col_MT_NguoiMuon";
            this.Col_MT_NguoiMuon.Visible = true;
            this.Col_MT_NguoiMuon.Width = 70;
            //
            // Col_MT_BoPhanMuon
            //
            this.Col_MT_BoPhanMuon.Caption = "Bộ phận mượn";
            this.Col_MT_BoPhanMuon.Name = "Col_MT_BoPhanMuon";
            this.Col_MT_BoPhanMuon.Visible = true;
            this.Col_MT_BoPhanMuon.Width = 81;
            //
            // Col_MT_CongTyMuon
            //
            this.Col_MT_CongTyMuon.Caption = "Công ty mượn";
            this.Col_MT_CongTyMuon.Name = "Col_MT_CongTyMuon";
            this.Col_MT_CongTyMuon.Visible = true;
            this.Col_MT_CongTyMuon.Width = 80;
            //
            // Col_MT_NgayMuon
            //
            this.Col_MT_NgayMuon.Caption = "Ngày mượn";
            this.Col_MT_NgayMuon.Name = "Col_MT_NgayMuon";
            this.Col_MT_NgayMuon.Visible = true;
            this.Col_MT_NgayMuon.Width = 67;
            //
            // Col_MT_MucDich
            //
            this.Col_MT_MucDich.Caption = "Mục đích mượn";
            this.Col_MT_MucDich.Name = "Col_MT_MucDich";
            this.Col_MT_MucDich.Visible = true;
            this.Col_MT_MucDich.Width = 83;
            //
            // Col_MT_NgayTra
            //
            this.Col_MT_NgayTra.Caption = "Ngày trả";
            this.Col_MT_NgayTra.Name = "Col_MT_NgayTra";
            this.Col_MT_NgayTra.Visible = true;
            this.Col_MT_NgayTra.Width = 54;
            //
            // Col_MT_LoaiCB
            //
            this.Col_MT_LoaiCB.Caption = "Cấp độ cảnh báo";
            this.Col_MT_LoaiCB.Name = "Col_MT_LoaiCB";
            this.Col_MT_LoaiCB.SortMode = DevExpress.XtraGrid.ColumnSortMode.Value;
            this.Col_MT_LoaiCB.Visible = true;
            this.Col_MT_LoaiCB.Width = 106;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin tạo phiếu";
            this.gridBandPostMaster.Columns.Add(this.Col_MT_NguoiTao);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_NgayTao);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_PhongBan);
            this.gridBandPostMaster.Columns.Add(this.Col_MT_CongTy);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 228;
            //
            // Col_MT_NguoiTao
            //
            this.Col_MT_NguoiTao.Caption = "Người tạo";
            this.Col_MT_NguoiTao.Name = "Col_MT_NguoiTao";
            this.Col_MT_NguoiTao.Visible = true;
            this.Col_MT_NguoiTao.Width = 59;
            //
            // Col_MT_NgayTao
            //
            this.Col_MT_NgayTao.Caption = "Ngày tạo";
            this.Col_MT_NgayTao.Name = "Col_MT_NgayTao";
            this.Col_MT_NgayTao.Visible = true;
            this.Col_MT_NgayTao.Width = 56;
            //
            // Col_MT_PhongBan
            //
            this.Col_MT_PhongBan.Caption = "Phòng ban";
            this.Col_MT_PhongBan.Name = "Col_MT_PhongBan";
            this.Col_MT_PhongBan.Visible = true;
            this.Col_MT_PhongBan.Width = 63;
            //
            // Col_MT_CongTy
            //
            this.Col_MT_CongTy.Caption = "Công ty";
            this.Col_MT_CongTy.Name = "Col_MT_CongTy";
            this.Col_MT_CongTy.Visible = true;
            this.Col_MT_CongTy.Width = 50;
            //
            // popupMenu2
            //
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXemTruoc)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            //
            // splitContainerControl2
            //
            this.splitContainerControl2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl2.Horizontal = false;
            this.splitContainerControl2.Location = new System.Drawing.Point(0, 0);
            this.splitContainerControl2.Name = "splitContainerControl2";
            this.splitContainerControl2.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseFont = true;
            this.splitContainerControl2.Panel1.AppearanceCaption.Options.UseTextOptions = true;
            this.splitContainerControl2.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.splitContainerControl2.Panel1.Controls.Add(this.gridControlMuonTra);
            this.splitContainerControl2.Panel1.Text = "Chương trình";
            this.splitContainerControl2.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl2.Panel2.Controls.Add(this.TreeDes);
            this.splitContainerControl2.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl2.Size = new System.Drawing.Size(1021, 492);
            this.splitContainerControl2.SplitterPosition = 305;
            this.splitContainerControl2.TabIndex = 12;
            this.splitContainerControl2.Text = "splitContainerControl1";
            this.splitContainerControl2.Visible = true;
            //
            // TreeDes
            //
            this.TreeDes.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.TreeDes.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.TreeDes.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
            this.ColDes_Ten,
            this.treeListColumn2,
            this.ColDes_TenGoc,
            this.ColDes_NuocSX,
            this.ColDes_TietMuc,
            this.ColDes_SoTapGoc,
            this.ColDes_LoaiLuuTru,
            this.ColDes_Betacam,
            this.ColDes_File,
            this.ColDes_DVD,
            this.ColDes_Cap,
            this.ColDes_TenPM,
            this.ColDes_TenCT,
            this.ColDes_PhongBan,
            this.ColDes_CongTy,
            this.ColDes_Category});
            this.TreeDes.Dock = System.Windows.Forms.DockStyle.Fill;
            this.TreeDes.Location = new System.Drawing.Point(0, 0);
            this.TreeDes.Name = "TreeDes";
            this.TreeDes.OptionsBehavior.AllowExpandOnDblClick = false;
            this.TreeDes.OptionsBehavior.AutoFocusNewNode = true;
            this.TreeDes.OptionsBehavior.AutoMoveRowFocus = true;
            this.TreeDes.OptionsSelection.MultiSelect = true;
            this.TreeDes.OptionsView.EnableAppearanceEvenRow = true;
            this.TreeDes.OptionsView.EnableAppearanceOddRow = true;
            this.TreeDes.Size = new System.Drawing.Size(1021, 181);
            this.TreeDes.TabIndex = 36;
            //
            // ColDes_Ten
            //
            this.ColDes_Ten.Caption = "Tên";
            this.ColDes_Ten.FieldName = "Được quyền xóa";
            this.ColDes_Ten.Name = "ColDes_Ten";
            this.ColDes_Ten.OptionsColumn.AllowEdit = false;
            this.ColDes_Ten.OptionsColumn.AllowFocus = false;
            this.ColDes_Ten.Visible = true;
            this.ColDes_Ten.VisibleIndex = 0;
            this.ColDes_Ten.Width = 80;
            //
            // treeListColumn2
            //
            this.treeListColumn2.Caption = "Là nhóm";
            this.treeListColumn2.FieldName = "Là nhóm";
            this.treeListColumn2.Name = "treeListColumn2";
            this.treeListColumn2.OptionsColumn.AllowEdit = false;
            this.treeListColumn2.OptionsColumn.ShowInCustomizationForm = false;
            //
            // ColDes_TenGoc
            //
            this.ColDes_TenGoc.Caption = "Tên gốc";
            this.ColDes_TenGoc.FieldName = "Tên gốc";
            this.ColDes_TenGoc.Name = "ColDes_TenGoc";
            this.ColDes_TenGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_TenGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_TenGoc.Visible = true;
            this.ColDes_TenGoc.VisibleIndex = 1;
            this.ColDes_TenGoc.Width = 55;
            //
            // ColDes_NuocSX
            //
            this.ColDes_NuocSX.Caption = "Nước SX";
            this.ColDes_NuocSX.FieldName = "Được quyền thêm";
            this.ColDes_NuocSX.Name = "ColDes_NuocSX";
            this.ColDes_NuocSX.OptionsColumn.AllowEdit = false;
            this.ColDes_NuocSX.OptionsColumn.AllowFocus = false;
            this.ColDes_NuocSX.Visible = true;
            this.ColDes_NuocSX.VisibleIndex = 3;
            this.ColDes_NuocSX.Width = 54;
            //
            // ColDes_TietMuc
            //
            this.ColDes_TietMuc.Caption = "Tiết mục";
            this.ColDes_TietMuc.FieldName = "Được quyền xem";
            this.ColDes_TietMuc.Name = "ColDes_TietMuc";
            this.ColDes_TietMuc.OptionsColumn.AllowEdit = false;
            this.ColDes_TietMuc.OptionsColumn.AllowFocus = false;
            this.ColDes_TietMuc.Visible = true;
            this.ColDes_TietMuc.VisibleIndex = 6;
            this.ColDes_TietMuc.Width = 55;
            //
            // ColDes_SoTapGoc
            //
            this.ColDes_SoTapGoc.Caption = "Số tập gốc/cắt";
            this.ColDes_SoTapGoc.FieldName = "Được quyền sửa";
            this.ColDes_SoTapGoc.Name = "ColDes_SoTapGoc";
            this.ColDes_SoTapGoc.OptionsColumn.AllowEdit = false;
            this.ColDes_SoTapGoc.OptionsColumn.AllowFocus = false;
            this.ColDes_SoTapGoc.Visible = true;
            this.ColDes_SoTapGoc.VisibleIndex = 9;
            this.ColDes_SoTapGoc.Width = 86;
            //
            // ColDes_LoaiLuuTru
            //
            this.ColDes_LoaiLuuTru.Caption = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.FieldName = "Loại lưu trữ";
            this.ColDes_LoaiLuuTru.Name = "ColDes_LoaiLuuTru";
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowEdit = false;
            this.ColDes_LoaiLuuTru.OptionsColumn.AllowFocus = false;
            this.ColDes_LoaiLuuTru.Visible = true;
            this.ColDes_LoaiLuuTru.VisibleIndex = 8;
            this.ColDes_LoaiLuuTru.Width = 70;
            //
            // ColDes_Betacam
            //
            this.ColDes_Betacam.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_Betacam.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_Betacam.AppearanceHeader.Options.UseFont = true;
            this.ColDes_Betacam.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_Betacam.Caption = "Betacam";
            this.ColDes_Betacam.FieldName = "Betacam";
            this.ColDes_Betacam.Name = "ColDes_Betacam";
            this.ColDes_Betacam.Visible = true;
            this.ColDes_Betacam.VisibleIndex = 12;
            this.ColDes_Betacam.Width = 53;
            //
            // ColDes_File
            //
            this.ColDes_File.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_File.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_File.AppearanceHeader.Options.UseFont = true;
            this.ColDes_File.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_File.Caption = "File";
            this.ColDes_File.FieldName = "File";
            this.ColDes_File.Name = "ColDes_File";
            this.ColDes_File.Visible = true;
            this.ColDes_File.VisibleIndex = 13;
            this.ColDes_File.Width = 50;
            //
            // ColDes_DVD
            //
            this.ColDes_DVD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ColDes_DVD.AppearanceHeader.ForeColor = System.Drawing.Color.Blue;
            this.ColDes_DVD.AppearanceHeader.Options.UseFont = true;
            this.ColDes_DVD.AppearanceHeader.Options.UseForeColor = true;
            this.ColDes_DVD.Caption = "DVD";
            this.ColDes_DVD.FieldName = "DVD";
            this.ColDes_DVD.Name = "ColDes_DVD";
            this.ColDes_DVD.Visible = true;
            this.ColDes_DVD.VisibleIndex = 14;
            this.ColDes_DVD.Width = 49;
            //
            // ColDes_Cap
            //
            this.ColDes_Cap.Caption = "Cấp";
            this.ColDes_Cap.FieldName = "Cấp";
            this.ColDes_Cap.Name = "ColDes_Cap";
            this.ColDes_Cap.OptionsColumn.AllowEdit = false;
            this.ColDes_Cap.OptionsColumn.AllowFocus = false;
            this.ColDes_Cap.Visible = true;
            this.ColDes_Cap.VisibleIndex = 2;
            this.ColDes_Cap.Width = 79;
            //
            // ColDes_TenPM
            //
            this.ColDes_TenPM.Caption = "P/M";
            this.ColDes_TenPM.FieldName = "P/M";
            this.ColDes_TenPM.Name = "ColDes_TenPM";
            this.ColDes_TenPM.OptionsColumn.AllowEdit = false;
            this.ColDes_TenPM.OptionsColumn.AllowFocus = false;
            this.ColDes_TenPM.Visible = true;
            this.ColDes_TenPM.VisibleIndex = 5;
            this.ColDes_TenPM.Width = 79;
            //
            // ColDes_TenCT
            //
            this.ColDes_TenCT.Caption = "CT";
            this.ColDes_TenCT.FieldName = "CT";
            this.ColDes_TenCT.Name = "ColDes_TenCT";
            this.ColDes_TenCT.OptionsColumn.AllowEdit = false;
            this.ColDes_TenCT.OptionsColumn.AllowFocus = false;
            this.ColDes_TenCT.Visible = true;
            this.ColDes_TenCT.VisibleIndex = 4;
            this.ColDes_TenCT.Width = 79;
            //
            // ColDes_PhongBan
            //
            this.ColDes_PhongBan.Caption = "Phòng ban";
            this.ColDes_PhongBan.FieldName = "ColDes_PhongBan";
            this.ColDes_PhongBan.Name = "ColDes_PhongBan";
            this.ColDes_PhongBan.OptionsColumn.AllowEdit = false;
            this.ColDes_PhongBan.OptionsColumn.AllowFocus = false;
            this.ColDes_PhongBan.Visible = true;
            this.ColDes_PhongBan.VisibleIndex = 10;
            this.ColDes_PhongBan.Width = 79;
            //
            // ColDes_CongTy
            //
            this.ColDes_CongTy.Caption = "Công ty";
            this.ColDes_CongTy.FieldName = "Công ty";
            this.ColDes_CongTy.Name = "ColDes_CongTy";
            this.ColDes_CongTy.OptionsColumn.AllowEdit = false;
            this.ColDes_CongTy.OptionsColumn.AllowFocus = false;
            this.ColDes_CongTy.Visible = true;
            this.ColDes_CongTy.VisibleIndex = 11;
            this.ColDes_CongTy.Width = 79;
            //
            // ColDes_Category
            //
            this.ColDes_Category.Caption = "Category";
            this.ColDes_Category.FieldName = "Category";
            this.ColDes_Category.Name = "ColDes_Category";
            this.ColDes_Category.Visible = true;
            this.ColDes_Category.VisibleIndex = 7;
            //
            // frmListCanhBaoQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1028, 545);
            this.Controls.Add(this.xtraTabControlDetail);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmListCanhBaoQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Thông tin cảnh báo";
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanel1.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.pageBanQuyen.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            this.pageSoRun.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlSoRun)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewSoRun)).EndInit();
            this.pageMuonTra.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMuonTra)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMuonTra)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).EndInit();
            this.splitContainerControl2.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.TreeDes)).EndInit();
            this.ResumeLayout(false);
        }
Beispiel #55
0
        /// <summary>
        /// 根据权限列表加载菜单
        /// </summary>
        /// <param name="FuncList">功能权限列表</param>
        private void LoadMenus(List <T_ADMM_FuncList> FuncList)
        {
            try
            {
                if (FuncList.Count > 0 && FuncList != null)
                {
                    //将所有一级菜单统计出来
                    var query = from Func in FuncList
                                where Func.Levels == 0
                                select Func;

                    int i = 0;
                    //逐一将一级菜单加入分组
                    foreach (var Func1 in query)
                    {
                        NavBarGroup NBG1 = new NavBarGroup();
                        NBG1.Caption = Func1.FuncNam;

                        //新建树菜单
                        TrList_Menus      = new DevExpress.XtraTreeList.TreeList();
                        TrList_Menus.Dock = System.Windows.Forms.DockStyle.Fill;
                        TrList_Menus.Name = "TrList_" + Func1.GroupID;
                        //新建树菜单列
                        DevExpress.XtraTreeList.Columns.TreeListColumn Col_FuncID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
                        Col_FuncID.Name      = "FuncID";
                        Col_FuncID.FieldName = "FuncID";
                        Col_FuncID.Caption   = "FuncID";

                        DevExpress.XtraTreeList.Columns.TreeListColumn Col_ParentID = new DevExpress.XtraTreeList.Columns.TreeListColumn();
                        Col_ParentID.Name      = "ParentID";
                        Col_ParentID.Caption   = "ParentID";
                        Col_ParentID.FieldName = "ParentID";

                        DevExpress.XtraTreeList.Columns.TreeListColumn Col_FuncNam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
                        Col_FuncNam.Name         = "FuncNam";
                        Col_FuncNam.Caption      = "FuncNam";
                        Col_FuncNam.FieldName    = "FuncNam";
                        Col_FuncNam.Visible      = true;
                        Col_FuncNam.VisibleIndex = 2;

                        DevExpress.XtraTreeList.Columns.TreeListColumn Col_FrmNam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
                        Col_FrmNam.Name      = "FrmNam";
                        Col_FrmNam.Caption   = "FrmNam";
                        Col_FrmNam.FieldName = "FrmNam";

                        //将列添加到树菜单
                        TrList_Menus.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
                            Col_FuncID,
                            Col_ParentID,
                            Col_FuncNam,
                            Col_FrmNam
                        }
                                                      );
                        TrList_Menus.KeyFieldName             = "FuncID";
                        TrList_Menus.ParentFieldName          = "ParentID";
                        TrList_Menus.OptionsView.ShowColumns  = false;
                        TrList_Menus.OptionsBehavior.Editable = false;
                        ////设置树菜单背景色
                        //TrList_Menus.BackColor = Color.White;
                        ////设置树菜单空白区域的背景色
                        //TrList_Menus.Appearance.Empty.BackColor = Color.Transparent;
                        //设置树菜单节点竖向边框不显示
                        TrList_Menus.OptionsView.ShowVertLines = false;
                        //设置树菜单节点横向边框不显示
                        TrList_Menus.OptionsView.ShowHorzLines = false;
                        //设置树菜单节点的字体大小
                        TrList_Menus.Appearance.Row.Font = new System.Drawing.Font("Tahoma", 10F);
                        //TrList_Menus.OptionsView.ShowIndentAsRowStyle = true;

                        ////设置获得焦点单元格背景色
                        //TrList_Menus.Appearance.FocusedCell.BackColor = System.Drawing.Color.LightSteelBlue;
                        //TrList_Menus.Appearance.FocusedCell.BackColor2 = System.Drawing.Color.SteelBlue;

                        //TrList_Menus.Appearance.FocusedCell.Options.UseBackColor = true;
                        //TrList_Menus.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.Style3D;
                        //TrList_Menus.LookAndFeel.UseDefaultLookAndFeel = false;

                        //注册鼠标双击事件
                        if (Func1.GroupID == "ADM")
                        {
                            TrList_Menus.DoubleClick += new System.EventHandler(TrList_ADM_DoubleClick);
                        }
                        else if (Func1.GroupID == "Test")
                        {
                            TrList_Menus.DoubleClick += new System.EventHandler(TrList_Test_DoubleClick);
                        }
                        else if (Func1.GroupID == "test1")
                        {
                            TrList_Menus.DoubleClick += new System.EventHandler(TrList_Test1_DoubleClick);
                        }

                        List_Container.Add(new NavBarGroupControlContainer());
                        List_Container[i].Name = "Contain_" + Func1.GroupID;

                        //将容器加入导航控件
                        Nav_ADM.Controls.Add(List_Container[i]);

                        //将树菜单加入容器
                        List_Container[i].Controls.Add(TrList_Menus);

                        //将容器加入菜单组
                        NBG1.ControlContainer = List_Container[i];

                        //将菜单组加入导航控件
                        Nav_ADM.Groups.Add(NBG1);

                        //将该菜单组所有的子菜单全部统计出来
                        var query1 = from Func in FuncList
                                     where Func.GroupID == Func1.GroupID
                                     select new { FuncID = Func.FuncID, ParentID = Func.ParentID, FuncNam = Func.FuncNam, FrmNam = Func.FrmNam } into query2
                        select query2;

                        //将查询结果转换为集合
                        List <MainMenus> ListTreeData = new List <MainMenus>();
                        foreach (var TreeData1 in query1)
                        {
                            MainMenus TreeData = new MainMenus();
                            TreeData.FuncID   = TreeData1.FuncID;
                            TreeData.ParentID = TreeData1.ParentID;
                            TreeData.FuncNam  = TreeData1.FuncNam;
                            TreeData.FrmNam   = TreeData1.FrmNam;

                            ListTreeData.Add(TreeData);
                        }
                        //树控件绑定数据源
                        TrList_Menus.DataSource = ListTreeData;
                        i += 1;
                    }
                }
            }
            catch (Exception Ex)
            {
                Common.ShowMsg(Ex.Message);
            }
        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.treeList2 = new DevExpress.XtraTreeList.TreeList();
     this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.treeListColumn3 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
     this.simpleButton1 = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add = new DevExpress.XtraEditors.SimpleButton();
     this.DocManagement_DocModify_Label_DocName = new DevExpress.XtraEditors.LabelControl();
     this.DocManagement_DocModify_TextEdit_ = new DevExpress.XtraEditors.TextEdit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TextEdit_.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // panelControl1
     //
     this.panelControl1.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.panelControl1.Controls.Add(this.treeList2);
     this.panelControl1.Controls.Add(this.simpleButton1);
     this.panelControl1.Controls.Add(this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add);
     this.panelControl1.Controls.Add(this.DocManagement_DocModify_Label_DocName);
     this.panelControl1.Controls.Add(this.DocManagement_DocModify_TextEdit_);
     this.panelControl1.Location = new System.Drawing.Point(0, 0);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(499, 447);
     this.panelControl1.TabIndex = 0;
     //
     // treeList2
     //
     this.treeList2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.treeList2.Columns.AddRange(new DevExpress.XtraTreeList.Columns.TreeListColumn[] {
     this.treeListColumn2,
     this.treeListColumn3});
     this.treeList2.Location = new System.Drawing.Point(2, 7);
     this.treeList2.Name = "treeList2";
     this.treeList2.OptionsPrint.UsePrintStyles = true;
     this.treeList2.Size = new System.Drawing.Size(495, 357);
     this.treeList2.TabIndex = 15;
     this.treeList2.Click += new System.EventHandler(this.treeList2_Click);
     this.treeList2.MouseUp += new System.Windows.Forms.MouseEventHandler(this.treeList2_MouseUp);
     //
     // treeListColumn2
     //
     this.treeListColumn2.Caption = "文档模板";
     this.treeListColumn2.FieldName = "name";
     this.treeListColumn2.MinWidth = 52;
     this.treeListColumn2.Name = "treeListColumn2";
     this.treeListColumn2.Visible = true;
     this.treeListColumn2.VisibleIndex = 0;
     //
     // treeListColumn3
     //
     this.treeListColumn3.Caption = "Id";
     this.treeListColumn3.FieldName = "id";
     this.treeListColumn3.Name = "treeListColumn3";
     //
     // simpleButton1
     //
     this.simpleButton1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.simpleButton1.Location = new System.Drawing.Point(376, 416);
     this.simpleButton1.Name = "simpleButton1";
     this.simpleButton1.Size = new System.Drawing.Size(75, 23);
     this.simpleButton1.TabIndex = 14;
     this.simpleButton1.Text = "取消";
     this.simpleButton1.Click += new System.EventHandler(this.simpleButton1_Click);
     //
     // DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add
     //
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Location = new System.Drawing.Point(281, 416);
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Name = "DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add";
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Size = new System.Drawing.Size(75, 23);
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.TabIndex = 13;
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Text = "添加";
     this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add.Click += new System.EventHandler(this.DocManagement_DocModify_GroupControl_PartsRelated_Btn_Add_Click);
     //
     // DocManagement_DocModify_Label_DocName
     //
     this.DocManagement_DocModify_Label_DocName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.DocManagement_DocModify_Label_DocName.Location = new System.Drawing.Point(38, 385);
     this.DocManagement_DocModify_Label_DocName.Name = "DocManagement_DocModify_Label_DocName";
     this.DocManagement_DocModify_Label_DocName.Size = new System.Drawing.Size(88, 14);
     this.DocManagement_DocModify_Label_DocName.TabIndex = 12;
     this.DocManagement_DocModify_Label_DocName.Text = "选中的文档模板:";
     //
     // DocManagement_DocModify_TextEdit_
     //
     this.DocManagement_DocModify_TextEdit_.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.DocManagement_DocModify_TextEdit_.Location = new System.Drawing.Point(142, 382);
     this.DocManagement_DocModify_TextEdit_.Name = "DocManagement_DocModify_TextEdit_";
     this.DocManagement_DocModify_TextEdit_.Size = new System.Drawing.Size(321, 20);
     this.DocManagement_DocModify_TextEdit_.TabIndex = 11;
     //
     // ChooseDocTemplate
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(499, 447);
     this.Controls.Add(this.panelControl1);
     this.Name = "ChooseDocTemplate";
     this.Text = "选择文档模板";
     this.Load += new System.EventHandler(this.ChooseDocTemplate_Load);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.treeList2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DocManagement_DocModify_TextEdit_.Properties)).EndInit();
     this.ResumeLayout(false);
 }