Exemplo n.º 1
0
 public static void FocusAndSelectAll(this DevExpress.XtraEditors.LabelControl label)
 {
     label.Focus();
     label.Select();
     //textEdit.SelectionStart = 0;
     //textEdit.SelectionLength = textEdit.Text.Length;
 }
Exemplo n.º 2
0
        private void labModule_Click(object sender, EventArgs e)
        {
            try
            {
                DevExpress.XtraEditors.LabelControl lab_id = (DevExpress.XtraEditors.LabelControl)sender;
                DataTable dt_con = bll_roll_product.GetList_RK_KW("", lab_id.AccessibleDescription, "", icbo_CK.Text.Trim()).Tables[0];
                gc_SJXX.DataSource = dt_con;
                gv_SJXX.BestFitColumns();
                int slab_count = 0;
                int kw_cap     = 0;
                foreach (Control item in panel4.Controls)
                {
                    if (item is LabelControl)
                    {
                        if (((LabelControl)sender).Text == item.Text)
                        {
                            ((LabelControl)sender).BackColor = Color.Yellow;
                        }
                        else
                        {
                            DataRow[] drsSlab = dtSlabCount.Select(" C_LINEWH_LOC_CODE =  '" + item.AccessibleDescription + "' ");
                            DataRow[] drs_Kw  = dtKwCount.Select(" C_LINEWH_LOC_CODE =  '" + item.AccessibleDescription + "' ");

                            if (drs_Kw.Length > 0)
                            {
                                kw_cap = Convert.ToInt32(drs_Kw[0]["N_QTY"].ToString());
                            }
                            else
                            {
                                kw_cap = 0;
                            }

                            if (drsSlab.Length > 0)
                            {
                                slab_count = Convert.ToInt32(drsSlab[0]["N_NUM"].ToString());

                                if (slab_count > kw_cap)
                                {
                                    item.BackColor = Color.Red;
                                }
                                else
                                {
                                    item.BackColor = Color.LightGreen;
                                }
                            }
                            else
                            {
                                slab_count     = 0;
                                item.BackColor = Color.LightGray;
                            }
                        }
                    }
                }
                SetGridViewRowNum.SetRowNum(gv_SJXX);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Exemplo n.º 3
0
 /// <summary>
 /// 状态栏-NG 显示状态  - Zhao :20150126
 /// </summary>
 /// <param name="panelControl"></param>
 /// <param name="lblStatus"></param>
 /// <param name="str"></param>
 public static void showNG(DevExpress.XtraEditors.PanelControl panelControl, DevExpress.XtraEditors.LabelControl lblStatus, string str)
 {
     lblStatus.Text           = str;
     panelControl.BackColor   = Color.Red;
     panelControl.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     //lblStatus.ForeColor = System.Drawing.Color.Red;
 }
Exemplo n.º 4
0
 private void OnSafeSetLabelControl(DevExpress.XtraEditors.LabelControl lable, string va)
 {
     if (lable.InvokeRequired)
     {
         SafeSetLabelControl call = delegate(string v) { lable.Text = v; };
         lable.Invoke(call, va);
     }
     else
     {
         lable.Text = va;
     }
 }
Exemplo n.º 5
0
 /// <summary>
 /// 更新LabelControl控件
 /// </summary>
 /// <param name="lbl"></param>
 /// <param name="lan"></param>
 private void UpdateLabelControl(DevExpress.XtraEditors.LabelControl lbl, ProCommon.Communal.Language lan, System.Resources.ResourceManager resrcMgr)
 {
     if (lbl != null &&
         lbl.Tag != null)
     {
         if (resrcMgr != null)
         {
             bool   isChs = (lan == ProCommon.Communal.Language.Chinese);
             string str   = lbl.Tag.ToString();
             lbl.Text = isChs ? resrcMgr.GetString("chs_" + str) : resrcMgr.GetString("en_" + str);
         }
     }
 }
Exemplo n.º 6
0
        protected void grControl_Click(object sender, EventArgs e)

        {
            DevExpress.XtraEditors.LabelControl grControl = sender as DevExpress.XtraEditors.LabelControl;

            int    cellIndex     = (int)grControl.Tag;
            object key           = zoneNameGridLookUpEdit.EditValue;
            var    selectedIndex = zoneNameGridLookUpEdit.Properties.GetIndexByKeyValue(key);

            if (selectedIndex != -1)
            {
                if (cellList[cellIndex].ZoneColor == null)     // можно выделять только не закрепленные ячейки (не закрашенные)
                {
                    grControl.BackColor = colorPickEdit.Color;

                    Color color = (Color)colorPickEdit.EditValue;
                    cellList[cellIndex].ZoneColor  = '#' + color.Name;
                    cellList[cellIndex].ZoneNameId = ((ZoneNamesDTO)zoneNameGridLookUpEdit.GetSelectedDataRow()).ZoneNameId;
                    cellList[cellIndex].ZoneName   = ((ZoneNamesDTO)zoneNameGridLookUpEdit.GetSelectedDataRow()).ZoneName;
                }
                else
                {
                    if (cellList[cellIndex].ZoneNameId == ((ZoneNamesDTO)zoneNameGridLookUpEdit.GetSelectedDataRow()).ZoneNameId)
                    {
                        if (cellList[cellIndex].LoadingStatusId == 1)     // можно откреплять есть не загружена ячейка
                        {
                            grControl.BackColor = defColor;

                            cellList[cellIndex].ZoneColor  = null;
                            cellList[cellIndex].ZoneNameId = null;
                            cellList[cellIndex].ZoneName   = null;
                        }
                        else
                        {
                            MessageBox.Show("В ячейке находятся материалы! Открепить можно только пустую ячейку.", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
                        }
                    }
                    else
                    {
                        MessageBox.Show("Вы не можете работать с данной зоной, потому что выбрана другая зона хранения для работы!", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
                    }
                }
            }
            else
            {
                MessageBox.Show("Не выбрана зона хранения", "Сообщение", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }
        }
Exemplo n.º 7
0
 public bool DownloadUpdate(
     DevExpress.XtraEditors.ProgressBarControl progress,
     DevExpress.XtraEditors.LabelControl labelControl)
 {
     try
     {
         NetworkCredential credentials = new NetworkCredential(this.FtpUserID, this.FtpPassword);
         string            url         = FtpServer;
         return(DownloadFtpDirectory(progress, labelControl, url, credentials, Environment.CurrentDirectory + "/Update/"));
     }
     catch (Exception ex)
     {
         XtraMessageBox.Show("Error : " + ex.Message);
         return(false);
     }
 }
Exemplo n.º 8
0
        private void MarkCells(List <WareHousesDTO> cellFreeList)
        {
            for (int j = 0; j <= cellFreeList.Count - 1; j++)
            {
                string keyControl = "grControl" + (cellFreeList[j].WareHouseId).ToString();

                DevExpress.XtraEditors.LabelControl grControl = panel.Controls.Find(keyControl, true)[0] as DevExpress.XtraEditors.LabelControl;

                grControl.BackColor = colorPickEdit.Color;

                var   zoneId    = ((ZoneNamesDTO)zoneNameGridLookUpEdit.GetSelectedDataRow()).ZoneNameId;
                var   zoneName  = ((ZoneNamesDTO)zoneNameGridLookUpEdit.GetSelectedDataRow()).ZoneName;
                Color color     = (Color)colorPickEdit.EditValue;
                var   zoneColor = '#' + color.Name;
                cellList.Where(s => s.WareHouseId == cellFreeList[j].WareHouseId).Select(s => { s.ZoneNameId = zoneId; s.ZoneName = zoneName; s.ZoneColor = zoneColor; return(s); }).ToList();
            }
        }
Exemplo n.º 9
0
        public static void SetDefaultBehaviorControls(DevExpress.XtraGrid.Views.Grid.GridView pGridView, bool pEditable,
                                                      DevExpress.XtraGrid.GridControl pGrid,
                                                      DevExpress.XtraBars.Bar pBar,
                                                      DevExpress.XtraEditors.LabelControl plblTitulo,
                                                      DevExpress.XtraEditors.PanelControl pPanelTitulo,
                                                      String _tituloVentana,
                                                      System.Windows.Forms.Form pForm)
        {
            //Grid
            pGridView.FocusRectStyle           = DevExpress.XtraGrid.Views.Grid.DrawFocusRectStyle.RowFullFocus;
            pGridView.OptionsBehavior.Editable = pEditable;
            pGridView.OptionsSelection.EnableAppearanceFocusedRow = true;
            pGridView.OptionsFilter.DefaultFilterEditorView       = DevExpress.XtraEditors.FilterEditorViewMode.TextAndVisual;
            pGridView.OptionsView.ShowAutoFilterRow = true;
            //Navegador
            if (pGrid != null)
            {
                pGrid.EmbeddedNavigator.Buttons.Append.Enabled = false;
                pGrid.EmbeddedNavigator.Buttons.Append.Visible = false;

                pGrid.EmbeddedNavigator.Buttons.CancelEdit.Enabled = false;
                pGrid.EmbeddedNavigator.Buttons.CancelEdit.Visible = false;

                pGrid.EmbeddedNavigator.Buttons.Remove.Enabled = false;
                pGrid.EmbeddedNavigator.Buttons.Remove.Visible = false;

                pGrid.EmbeddedNavigator.Buttons.EndEdit.Enabled = false;
                pGrid.EmbeddedNavigator.Buttons.EndEdit.Visible = false;
                pGrid.EmbeddedNavigator.Enabled = true;
            }
            //Barra Prinicpal
            pBar.OptionsBar.AllowQuickCustomization = false;

            //titulo
            plblTitulo.Font      = new Font(plblTitulo.Font.FontFamily, 12f, FontStyle.Bold);
            plblTitulo.Size      = new Size(pPanelTitulo.Size.Width / 2, pPanelTitulo.Size.Height / 2);
            plblTitulo.Top       = (pPanelTitulo.Height / 2) - (plblTitulo.Height / 2);
            plblTitulo.Left      = (pPanelTitulo.Width / 2) - (plblTitulo.Width / 2);
            plblTitulo.ForeColor = Color.DodgerBlue;
            plblTitulo.Text      = _tituloVentana;

            ////Titulo e Icono de la ventana
            pForm.Text = _tituloVentana;
            pForm.Icon = Properties.Resources.Icon1;
        }
Exemplo n.º 10
0
 void  changcolor(DevExpress.XtraEditors.LabelControl lb)
 {
     labelControl3.BackColor  = System.Drawing.Color.White;
     labelControl8.BackColor  = System.Drawing.Color.White;
     labelControl10.BackColor = System.Drawing.Color.White;
     labelControl11.BackColor = System.Drawing.Color.White;
     labelControl12.BackColor = System.Drawing.Color.White;
     labelControl13.BackColor = System.Drawing.Color.White;
     labelControl14.BackColor = System.Drawing.Color.White;
     lb.BackColor             = System.Drawing.Color.FromArgb(255, 128, 0);
     labelControl3.ForeColor  = System.Drawing.Color.Black;
     labelControl8.ForeColor  = System.Drawing.Color.Black;
     labelControl10.ForeColor = System.Drawing.Color.Black;
     labelControl11.ForeColor = System.Drawing.Color.Black;
     labelControl12.ForeColor = System.Drawing.Color.Black;
     labelControl13.ForeColor = System.Drawing.Color.Black;
     labelControl14.ForeColor = System.Drawing.Color.Black;
     lb.ForeColor             = System.Drawing.Color.White;
 }
Exemplo n.º 11
0
        /// <summary>
        /// 加载标签
        /// </summary>
        private void BindLabel()
        {
            try
            {
                panel4.Controls.Clear();
                int       slab_count = 0;
                int       kw_cap     = 0;
                DataTable dt_Lab     = bll_xckw_lab.GetList_ID(icbo_CK.Text, "").Tables[0];

                if (dt_Lab.Rows.Count > 0)
                {
                    for (int i = 0; i < dt_Lab.Rows.Count; i++)
                    {
                        DevExpress.XtraEditors.LabelControl lab = new DevExpress.XtraEditors.LabelControl();
                        lab.Name = "labNum_" + dt_Lab.Rows[i]["C_LOC_CODE"].ToString();
                        lab.Text = dt_Lab.Rows[i]["C_LOC_CODE"].ToString();
                        lab.AccessibleDescription = dt_Lab.Rows[i]["C_LOC_CODE"].ToString();
                        lab.Size      = new Size(Convert.ToInt32(dt_Lab.Rows[i]["C_LAB_WIDTH"].ToString()), Convert.ToInt32(dt_Lab.Rows[i]["C_LAB_HEIGHT"].ToString()));
                        lab.Location  = new Point(Convert.ToInt32(dt_Lab.Rows[i]["C_X_WIRE"].ToString()), Convert.ToInt32(dt_Lab.Rows[i]["C_Y_WIRE"].ToString()));
                        lab.BackColor = Color.LightGreen;


                        DataRow[] drsSlab = dtSlabCount.Select(" C_LINEWH_LOC_CODE = '" + dt_Lab.Rows[i]["C_LOC_CODE"].ToString() + "' ");
                        DataRow[] drs_Kw  = dtKwCount.Select(" C_LINEWH_LOC_CODE = '" + dt_Lab.Rows[i]["C_LOC_CODE"].ToString() + "' ");

                        if (drs_Kw.Length > 0)
                        {
                            kw_cap = Convert.ToInt32(drs_Kw[0]["N_QTY"].ToString());
                        }
                        else
                        {
                            kw_cap = 0;
                        }

                        if (drsSlab.Length > 0)
                        {
                            slab_count = Convert.ToInt32(drsSlab[0]["N_NUM"].ToString());

                            if (slab_count > kw_cap)
                            {
                                lab.BackColor = Color.Red;
                            }
                            else
                            {
                                lab.BackColor = Color.LightGreen;
                            }
                        }
                        else
                        {
                            slab_count    = 0;
                            lab.BackColor = Color.LightGray;
                        }
                        lab.Text   = dt_Lab.Rows[i]["C_LOC_CODE"].ToString() + "\r\n——\r\n" + slab_count + "/" + kw_cap;
                        lab.Click += new System.EventHandler(labModule_Click);

                        lab.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                        lab.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                        lab.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
                        lab.BorderStyle  = DevExpress.XtraEditors.Controls.BorderStyles.Simple;

                        this.panel4.Controls.Add(lab);
                    }
                }
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
Exemplo n.º 12
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl6       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.btnOK               = new DevExpress.XtraEditors.SimpleButton();
     this.ceVersion           = new DevExpress.XtraEditors.CheckEdit();
     this.cbVersion           = new DevExpress.XtraEditors.ComboBoxEdit();
     this.btnTestConn         = new DevExpress.XtraEditors.SimpleButton();
     this.teUserPwd           = new DevExpress.XtraEditors.TextEdit();
     this.teUserName          = new DevExpress.XtraEditors.TextEdit();
     this.teDatabase          = new DevExpress.XtraEditors.TextEdit();
     this.teInstance          = new DevExpress.XtraEditors.TextEdit();
     this.teServer            = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem12 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem13 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlItem14 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem15 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup4 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem16 = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem9  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ceVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbVersion.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserPwd.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teDatabase.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teInstance.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.teServer.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.labelControl6);
     this.layoutControl1.Controls.Add(this.labelControl5);
     this.layoutControl1.Controls.Add(this.labelControl4);
     this.layoutControl1.Controls.Add(this.labelControl3);
     this.layoutControl1.Controls.Add(this.labelControl2);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.btnOK);
     this.layoutControl1.Controls.Add(this.ceVersion);
     this.layoutControl1.Controls.Add(this.cbVersion);
     this.layoutControl1.Controls.Add(this.btnTestConn);
     this.layoutControl1.Controls.Add(this.teUserPwd);
     this.layoutControl1.Controls.Add(this.teUserName);
     this.layoutControl1.Controls.Add(this.teDatabase);
     this.layoutControl1.Controls.Add(this.teInstance);
     this.layoutControl1.Controls.Add(this.teServer);
     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(284, 313);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // labelControl6
     //
     this.labelControl6.Location        = new System.Drawing.Point(5, 233);
     this.labelControl6.Name            = "labelControl6";
     this.labelControl6.Size            = new System.Drawing.Size(60, 14);
     this.labelControl6.StyleController = this.layoutControl1;
     this.labelControl6.TabIndex        = 19;
     this.labelControl6.Text            = "版本名称:";
     //
     // labelControl5
     //
     this.labelControl5.Location        = new System.Drawing.Point(5, 155);
     this.labelControl5.Name            = "labelControl5";
     this.labelControl5.Size            = new System.Drawing.Size(48, 14);
     this.labelControl5.StyleController = this.layoutControl1;
     this.labelControl5.TabIndex        = 18;
     this.labelControl5.Text            = "密   码:";
     //
     // labelControl4
     //
     this.labelControl4.Location        = new System.Drawing.Point(5, 129);
     this.labelControl4.Name            = "labelControl4";
     this.labelControl4.Size            = new System.Drawing.Size(48, 14);
     this.labelControl4.StyleController = this.layoutControl1;
     this.labelControl4.TabIndex        = 17;
     this.labelControl4.Text            = "用户名:";
     //
     // labelControl3
     //
     this.labelControl3.Location        = new System.Drawing.Point(5, 77);
     this.labelControl3.Name            = "labelControl3";
     this.labelControl3.Size            = new System.Drawing.Size(48, 14);
     this.labelControl3.StyleController = this.layoutControl1;
     this.labelControl3.TabIndex        = 16;
     this.labelControl3.Text            = "数据库:";
     //
     // labelControl2
     //
     this.labelControl2.Location        = new System.Drawing.Point(5, 51);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(48, 14);
     this.labelControl2.StyleController = this.layoutControl1;
     this.labelControl2.TabIndex        = 15;
     this.labelControl2.Text            = "服   务:";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 25);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(48, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 14;
     this.labelControl1.Text            = "服务器:";
     //
     // btnCancel
     //
     this.btnCancel.Location        = new System.Drawing.Point(146, 285);
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.Size            = new System.Drawing.Size(136, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex        = 13;
     this.btnCancel.Text            = "取消";
     this.btnCancel.Click          += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.Location        = new System.Drawing.Point(2, 285);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(140, 22);
     this.btnOK.StyleController = this.layoutControl1;
     this.btnOK.TabIndex        = 12;
     this.btnOK.Text            = "确定";
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // ceVersion
     //
     this.ceVersion.Location           = new System.Drawing.Point(5, 259);
     this.ceVersion.Name               = "ceVersion";
     this.ceVersion.Properties.Caption = "保存版本";
     this.ceVersion.Size               = new System.Drawing.Size(274, 19);
     this.ceVersion.StyleController    = this.layoutControl1;
     this.ceVersion.TabIndex           = 11;
     //
     // cbVersion
     //
     this.cbVersion.EditValue = "SDE.DEFAULT";
     this.cbVersion.Location  = new System.Drawing.Point(69, 233);
     this.cbVersion.Name      = "cbVersion";
     this.cbVersion.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbVersion.Size            = new System.Drawing.Size(210, 22);
     this.cbVersion.StyleController = this.layoutControl1;
     this.cbVersion.TabIndex        = 10;
     this.cbVersion.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.cbVersion_MouseDown);
     //
     // btnTestConn
     //
     this.btnTestConn.Location        = new System.Drawing.Point(189, 181);
     this.btnTestConn.Name            = "btnTestConn";
     this.btnTestConn.Size            = new System.Drawing.Size(90, 22);
     this.btnTestConn.StyleController = this.layoutControl1;
     this.btnTestConn.TabIndex        = 9;
     this.btnTestConn.Text            = "测试连接";
     this.btnTestConn.Click          += new System.EventHandler(this.btnTestConn_Click);
     //
     // teUserPwd
     //
     this.teUserPwd.EditValue = "wkgis";
     this.teUserPwd.Location  = new System.Drawing.Point(57, 155);
     this.teUserPwd.Name      = "teUserPwd";
     this.teUserPwd.Properties.PasswordChar = '*';
     this.teUserPwd.Size            = new System.Drawing.Size(222, 22);
     this.teUserPwd.StyleController = this.layoutControl1;
     this.teUserPwd.TabIndex        = 8;
     //
     // teUserName
     //
     this.teUserName.EditValue       = "sa";
     this.teUserName.Location        = new System.Drawing.Point(57, 129);
     this.teUserName.Name            = "teUserName";
     this.teUserName.Size            = new System.Drawing.Size(222, 22);
     this.teUserName.StyleController = this.layoutControl1;
     this.teUserName.TabIndex        = 7;
     //
     // teDatabase
     //
     this.teDatabase.EditValue       = "SDE";
     this.teDatabase.Location        = new System.Drawing.Point(57, 77);
     this.teDatabase.Name            = "teDatabase";
     this.teDatabase.Size            = new System.Drawing.Size(222, 22);
     this.teDatabase.StyleController = this.layoutControl1;
     this.teDatabase.TabIndex        = 6;
     //
     // teInstance
     //
     this.teInstance.EditValue       = "sde:sqlserver:192.168.1.102";
     this.teInstance.Location        = new System.Drawing.Point(57, 51);
     this.teInstance.Name            = "teInstance";
     this.teInstance.Size            = new System.Drawing.Size(222, 22);
     this.teInstance.StyleController = this.layoutControl1;
     this.teInstance.TabIndex        = 5;
     //
     // teServer
     //
     this.teServer.EditValue       = "192.168.1.102";
     this.teServer.Location        = new System.Drawing.Point(57, 25);
     this.teServer.Name            = "teServer";
     this.teServer.Size            = new System.Drawing.Size(222, 22);
     this.teServer.StyleController = this.layoutControl1;
     this.teServer.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2,
         this.layoutControlGroup3,
         this.layoutControlGroup4,
         this.layoutControlItem9,
         this.layoutControlItem10
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 313);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem11,
         this.layoutControlItem12,
         this.layoutControlItem13
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(284, 104);
     this.layoutControlGroup2.Text     = "连接参数";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.teServer;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(52, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.teInstance;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(52, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.teDatabase;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(52, 52);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.labelControl1;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem11.Name     = "layoutControlItem11";
     this.layoutControlItem11.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem11.Text     = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible           = false;
     //
     // layoutControlItem12
     //
     this.layoutControlItem12.Control = this.labelControl2;
     this.layoutControlItem12.CustomizationFormText = "layoutControlItem12";
     this.layoutControlItem12.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem12.Name     = "layoutControlItem12";
     this.layoutControlItem12.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem12.Text     = "layoutControlItem12";
     this.layoutControlItem12.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem12.TextToControlDistance = 0;
     this.layoutControlItem12.TextVisible           = false;
     //
     // layoutControlItem13
     //
     this.layoutControlItem13.Control = this.labelControl3;
     this.layoutControlItem13.CustomizationFormText = "layoutControlItem13";
     this.layoutControlItem13.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem13.Name     = "layoutControlItem13";
     this.layoutControlItem13.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem13.Text     = "layoutControlItem13";
     this.layoutControlItem13.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem13.TextToControlDistance = 0;
     this.layoutControlItem13.TextVisible           = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "layoutControlGroup3";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.emptySpaceItem1,
         this.layoutControlItem14,
         this.layoutControlItem15
     });
     this.layoutControlGroup3.Location = new System.Drawing.Point(0, 104);
     this.layoutControlGroup3.Name     = "layoutControlGroup3";
     this.layoutControlGroup3.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup3.Size     = new System.Drawing.Size(284, 104);
     this.layoutControlGroup3.Text     = "账号";
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.teUserName;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(52, 0);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.teUserPwd;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(52, 26);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(226, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnTestConn;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(184, 52);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(94, 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(0, 52);
     this.emptySpaceItem1.MaxSize             = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.MinSize             = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.Name                = "emptySpaceItem1";
     this.emptySpaceItem1.Size                = new System.Drawing.Size(184, 26);
     this.emptySpaceItem1.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.emptySpaceItem1.Text                = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize            = new System.Drawing.Size(0, 0);
     //
     // layoutControlItem14
     //
     this.layoutControlItem14.Control = this.labelControl4;
     this.layoutControlItem14.CustomizationFormText = "layoutControlItem14";
     this.layoutControlItem14.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem14.Name     = "layoutControlItem14";
     this.layoutControlItem14.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem14.Text     = "layoutControlItem14";
     this.layoutControlItem14.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem14.TextToControlDistance = 0;
     this.layoutControlItem14.TextVisible           = false;
     //
     // layoutControlItem15
     //
     this.layoutControlItem15.Control = this.labelControl5;
     this.layoutControlItem15.CustomizationFormText = "layoutControlItem15";
     this.layoutControlItem15.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem15.Name     = "layoutControlItem15";
     this.layoutControlItem15.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem15.Text     = "layoutControlItem15";
     this.layoutControlItem15.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem15.TextToControlDistance = 0;
     this.layoutControlItem15.TextVisible           = false;
     //
     // layoutControlGroup4
     //
     this.layoutControlGroup4.CustomizationFormText = "layoutControlGroup4";
     this.layoutControlGroup4.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem7,
         this.layoutControlItem8,
         this.layoutControlItem16
     });
     this.layoutControlGroup4.Location = new System.Drawing.Point(0, 208);
     this.layoutControlGroup4.Name     = "layoutControlGroup4";
     this.layoutControlGroup4.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup4.Size     = new System.Drawing.Size(284, 75);
     this.layoutControlGroup4.Text     = "版本";
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.cbVersion;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(64, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(214, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.ceVersion;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem8.Name     = "layoutControlItem8";
     this.layoutControlItem8.Size     = new System.Drawing.Size(278, 23);
     this.layoutControlItem8.Text     = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible           = false;
     //
     // layoutControlItem16
     //
     this.layoutControlItem16.Control = this.labelControl6;
     this.layoutControlItem16.CustomizationFormText = "layoutControlItem16";
     this.layoutControlItem16.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem16.Name     = "layoutControlItem16";
     this.layoutControlItem16.Size     = new System.Drawing.Size(64, 26);
     this.layoutControlItem16.Text     = "layoutControlItem16";
     this.layoutControlItem16.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem16.TextToControlDistance = 0;
     this.layoutControlItem16.TextVisible           = false;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.btnOK;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(0, 283);
     this.layoutControlItem9.Name     = "layoutControlItem9";
     this.layoutControlItem9.Size     = new System.Drawing.Size(144, 30);
     this.layoutControlItem9.Text     = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible           = false;
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.btnCancel;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(144, 283);
     this.layoutControlItem10.Name     = "layoutControlItem10";
     this.layoutControlItem10.Size     = new System.Drawing.Size(140, 30);
     this.layoutControlItem10.Text     = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible           = false;
     //
     // FrmConnSDE
     //
     this.ClientSize = new System.Drawing.Size(284, 313);
     this.Controls.Add(this.layoutControl1);
     this.Name     = "FrmConnSDE";
     this.ShowIcon = false;
     this.Text     = "连接SDE";
     this.Load    += new System.EventHandler(this.FrmConnSDE_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ceVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbVersion.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserPwd.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teUserName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teDatabase.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teInstance.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.teServer.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem15)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
     this.ClientVersion   = new DevExpress.XtraEditors.LabelControl();
     this.ServicesVersion = new DevExpress.XtraEditors.LabelControl();
     this.OK            = new DevExpress.XtraEditors.SimpleButton();
     this.Server        = new DevExpress.XtraEditors.LabelControl();
     this.MobiusIcon    = new System.Windows.Forms.PictureBox();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.MobiusIcon)).BeginInit();
     this.SuspendLayout();
     //
     // ClientVersion
     //
     this.ClientVersion.Location = new System.Drawing.Point(69, 9);
     this.ClientVersion.Name     = "ClientVersion";
     this.ClientVersion.Size     = new System.Drawing.Size(192, 13);
     this.ClientVersion.TabIndex = 1;
     this.ClientVersion.Text     = "Mobius Client: 1.2.3.4, January 1, 2010";
     //
     // ServicesVersion
     //
     this.ServicesVersion.Location = new System.Drawing.Point(69, 30);
     this.ServicesVersion.Name     = "ServicesVersion";
     this.ServicesVersion.Size     = new System.Drawing.Size(197, 13);
     this.ServicesVersion.TabIndex = 2;
     this.ServicesVersion.Text     = "Mobius Server: 1.2.3.4, January 1, 2010";
     //
     // OK
     //
     this.OK.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.OK.DialogResult                    = System.Windows.Forms.DialogResult.OK;
     this.OK.Location                        = new System.Drawing.Point(235, 79);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(68, 24);
     this.OK.TabIndex    = 24;
     this.OK.Tag         = "OK";
     this.OK.Text        = "OK";
     //
     // Server
     //
     this.Server.Location = new System.Drawing.Point(72, 47);
     this.Server.Name     = "Server";
     this.Server.Size     = new System.Drawing.Size(76, 13);
     this.Server.TabIndex = 25;
     this.Server.Text     = "ServerName (1)";
     //
     // MobiusIcon
     //
     this.MobiusIcon.Image    = ((System.Drawing.Image)(resources.GetObject("MobiusIcon.Image")));
     this.MobiusIcon.Location = new System.Drawing.Point(10, 9);
     this.MobiusIcon.Name     = "MobiusIcon";
     this.MobiusIcon.Size     = new System.Drawing.Size(48, 48);
     this.MobiusIcon.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.MobiusIcon.TabIndex = 0;
     this.MobiusIcon.TabStop  = false;
     //
     // labelControl1
     //
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineVisible  = true;
     this.labelControl1.Location     = new System.Drawing.Point(-2, 68);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(314, 6);
     this.labelControl1.TabIndex     = 26;
     //
     // AboutDialog
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.OK;
     this.ClientSize        = new System.Drawing.Size(309, 109);
     this.Controls.Add(this.Server);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.ServicesVersion);
     this.Controls.Add(this.ClientVersion);
     this.Controls.Add(this.MobiusIcon);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "AboutDialog";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "About Mobius";
     ((System.ComponentModel.ISupportInitialize)(this.MobiusIcon)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 14
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.te_Original         = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.te_Target           = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.btn_Original        = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.btn_Target          = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.te_CreateXml        = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.simpleButton2       = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem8  = new DevExpress.XtraLayout.LayoutControlItem();
     this.te_Xml              = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlItem9  = new DevExpress.XtraLayout.LayoutControlItem();
     this.labelControl3       = new DevExpress.XtraEditors.LabelControl();
     this.layoutControlItem10 = new DevExpress.XtraLayout.LayoutControlItem();
     this.btn_Xml             = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlItem11 = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Original.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Target.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Xml.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.btn_Xml);
     this.layoutControl1.Controls.Add(this.labelControl3);
     this.layoutControl1.Controls.Add(this.te_Xml);
     this.layoutControl1.Controls.Add(this.simpleButton2);
     this.layoutControl1.Controls.Add(this.te_CreateXml);
     this.layoutControl1.Controls.Add(this.labelControl2);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btn_Target);
     this.layoutControl1.Controls.Add(this.btn_Original);
     this.layoutControl1.Controls.Add(this.te_Target);
     this.layoutControl1.Controls.Add(this.te_Original);
     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(358, 203);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem6,
         this.layoutControlGroup2,
         this.layoutControlItem9,
         this.layoutControlItem10,
         this.layoutControlItem11
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(358, 203);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // te_Original
     //
     this.te_Original.Location        = new System.Drawing.Point(78, 2);
     this.te_Original.Name            = "te_Original";
     this.te_Original.Size            = new System.Drawing.Size(223, 22);
     this.te_Original.StyleController = this.layoutControl1;
     this.te_Original.TabIndex        = 4;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.te_Original;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(76, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(227, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // te_Target
     //
     this.te_Target.Location        = new System.Drawing.Point(78, 28);
     this.te_Target.Name            = "te_Target";
     this.te_Target.Size            = new System.Drawing.Size(223, 22);
     this.te_Target.StyleController = this.layoutControl1;
     this.te_Target.TabIndex        = 5;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.te_Target;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(76, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(227, 26);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // btn_Original
     //
     this.btn_Original.Location        = new System.Drawing.Point(305, 2);
     this.btn_Original.Name            = "btn_Original";
     this.btn_Original.Size            = new System.Drawing.Size(51, 22);
     this.btn_Original.StyleController = this.layoutControl1;
     this.btn_Original.TabIndex        = 6;
     this.btn_Original.Text            = "...";
     this.btn_Original.Click          += new System.EventHandler(this.btn_Original_Click);
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btn_Original;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(303, 0);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(55, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // btn_Target
     //
     this.btn_Target.Location        = new System.Drawing.Point(305, 28);
     this.btn_Target.Name            = "btn_Target";
     this.btn_Target.Size            = new System.Drawing.Size(51, 22);
     this.btn_Target.StyleController = this.layoutControl1;
     this.btn_Target.TabIndex        = 7;
     this.btn_Target.Text            = "...";
     this.btn_Target.Click          += new System.EventHandler(this.btn_Target_Click);
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btn_Target;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(303, 26);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(55, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(2, 2);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(72, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 8;
     this.labelControl1.Text            = "源 数 据 库:";
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.labelControl1;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(76, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // labelControl2
     //
     this.labelControl2.Location        = new System.Drawing.Point(2, 28);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(72, 14);
     this.labelControl2.StyleController = this.layoutControl1;
     this.labelControl2.TabIndex        = 9;
     this.labelControl2.Text            = "目标数据库:";
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.labelControl2;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(76, 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(0, 26);
     this.emptySpaceItem1.Name     = "emptySpaceItem1";
     this.emptySpaceItem1.Size     = new System.Drawing.Size(352, 93);
     this.emptySpaceItem1.Text     = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.emptySpaceItem1,
         this.layoutControlItem7,
         this.layoutControlItem8
     });
     this.layoutControlGroup2.Location    = new System.Drawing.Point(0, 78);
     this.layoutControlGroup2.Name        = "layoutControlGroup2";
     this.layoutControlGroup2.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size        = new System.Drawing.Size(358, 125);
     this.layoutControlGroup2.Text        = "layoutControlGroup2";
     this.layoutControlGroup2.TextVisible = false;
     //
     // te_CreateXml
     //
     this.te_CreateXml.Location        = new System.Drawing.Point(5, 83);
     this.te_CreateXml.Name            = "te_CreateXml";
     this.te_CreateXml.Size            = new System.Drawing.Size(188, 22);
     this.te_CreateXml.StyleController = this.layoutControl1;
     this.te_CreateXml.TabIndex        = 10;
     this.te_CreateXml.Text            = "创建Xml";
     this.te_CreateXml.Click          += new System.EventHandler(this.te_CreateXml_Click);
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.te_CreateXml;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(192, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // simpleButton2
     //
     this.simpleButton2.Location        = new System.Drawing.Point(197, 83);
     this.simpleButton2.Name            = "simpleButton2";
     this.simpleButton2.Size            = new System.Drawing.Size(156, 20);
     this.simpleButton2.StyleController = this.layoutControl1;
     this.simpleButton2.TabIndex        = 11;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.simpleButton2;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(192, 0);
     this.layoutControlItem8.Name     = "layoutControlItem8";
     this.layoutControlItem8.Size     = new System.Drawing.Size(160, 26);
     this.layoutControlItem8.Text     = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible           = false;
     //
     // te_Xml
     //
     this.te_Xml.Location        = new System.Drawing.Point(78, 54);
     this.te_Xml.Name            = "te_Xml";
     this.te_Xml.Size            = new System.Drawing.Size(223, 22);
     this.te_Xml.StyleController = this.layoutControl1;
     this.te_Xml.TabIndex        = 12;
     //
     // layoutControlItem9
     //
     this.layoutControlItem9.Control = this.te_Xml;
     this.layoutControlItem9.CustomizationFormText = "layoutControlItem9";
     this.layoutControlItem9.Location = new System.Drawing.Point(76, 52);
     this.layoutControlItem9.Name     = "layoutControlItem9";
     this.layoutControlItem9.Size     = new System.Drawing.Size(227, 26);
     this.layoutControlItem9.Text     = "layoutControlItem9";
     this.layoutControlItem9.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem9.TextToControlDistance = 0;
     this.layoutControlItem9.TextVisible           = false;
     //
     // labelControl3
     //
     this.labelControl3.Location        = new System.Drawing.Point(2, 54);
     this.labelControl3.Name            = "labelControl3";
     this.labelControl3.Size            = new System.Drawing.Size(63, 14);
     this.labelControl3.StyleController = this.layoutControl1;
     this.labelControl3.TabIndex        = 13;
     this.labelControl3.Text            = "Xml 配 置:";
     //
     // layoutControlItem10
     //
     this.layoutControlItem10.Control = this.labelControl3;
     this.layoutControlItem10.CustomizationFormText = "layoutControlItem10";
     this.layoutControlItem10.Location = new System.Drawing.Point(0, 52);
     this.layoutControlItem10.Name     = "layoutControlItem10";
     this.layoutControlItem10.Size     = new System.Drawing.Size(76, 26);
     this.layoutControlItem10.Text     = "layoutControlItem10";
     this.layoutControlItem10.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem10.TextToControlDistance = 0;
     this.layoutControlItem10.TextVisible           = false;
     //
     // btn_Xml
     //
     this.btn_Xml.Location        = new System.Drawing.Point(305, 54);
     this.btn_Xml.Name            = "btn_Xml";
     this.btn_Xml.Size            = new System.Drawing.Size(51, 22);
     this.btn_Xml.StyleController = this.layoutControl1;
     this.btn_Xml.TabIndex        = 14;
     this.btn_Xml.Text            = "...";
     //
     // layoutControlItem11
     //
     this.layoutControlItem11.Control = this.btn_Xml;
     this.layoutControlItem11.CustomizationFormText = "layoutControlItem11";
     this.layoutControlItem11.Location = new System.Drawing.Point(303, 52);
     this.layoutControlItem11.Name     = "layoutControlItem11";
     this.layoutControlItem11.Size     = new System.Drawing.Size(55, 26);
     this.layoutControlItem11.Text     = "layoutControlItem11";
     this.layoutControlItem11.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem11.TextToControlDistance = 0;
     this.layoutControlItem11.TextVisible           = false;
     //
     // MdbImport
     //
     this.ClientSize = new System.Drawing.Size(358, 203);
     this.Controls.Add(this.layoutControl1);
     this.Name = "MdbImport";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Original.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Target.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.te_Xml.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem11)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>  
 /// Required method for Designer support - do not modify
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmTNSSaleCppScrQL));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
     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.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.Grid.PLGridView();
     this.colName = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colDenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgayLap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTenFile = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTarget = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThiTruong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNguoiThem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.Target = new ProtocolVN.App.VideoLibrary.PLMultiChoiceGrid();
     this.ThiTruong = new ProtocolVN.App.VideoLibrary.PLMultiChoiceGrid();
     this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.DenNam = new DevExpress.XtraEditors.SpinEdit();
     this.DenThang = new DevExpress.XtraEditors.SpinEdit();
     this.TuNam = new DevExpress.XtraEditors.SpinEdit();
     this.TuThang = new DevExpress.XtraEditors.SpinEdit();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
     this.NguoiLap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.NgayLap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.TenFile = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.TenNguon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
     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.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();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DenNam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenThang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNam.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuThang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenFile.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenNguon.Properties)).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.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 = 43;
     //
     // 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(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint),
     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 = "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;
     //
     // 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;
     //
     // barButtonItemClose
     //
     this.barButtonItemClose.Caption = "Đón&g";
     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(1187, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
     this.barDockControlBottom.Size = new System.Drawing.Size(1187, 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, 473);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1187, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
     //
     // 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.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
     this.splitContainerControl1.Location = new System.Drawing.Point(0, 102);
     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.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.PanelVisibility = DevExpress.XtraEditors.SplitPanelVisibility.Panel1;
     this.splitContainerControl1.Size = new System.Drawing.Size(1187, 395);
     this.splitContainerControl1.SplitterPosition = 368;
     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(1187, 395);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.FooterPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     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.colName,
     this.colTuNgay,
     this.colDenNgay,
     this.colNgayLap,
     this.colGhiChu,
     this.colTenFile,
     this.colTarget,
     this.colThiTruong,
     this.colNguoiThem});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Di chuyển tiêu đề vào đây để gom nhóm theo cột tiêu đề";
     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.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.ShowViewCaption = true;
     this.gridViewMaster.ViewCaption = "DANH SÁCH FILE NGUỒN CPP";
     //
     // colName
     //
     this.colName.Caption = "Tên nguồn";
     this.colName.Name = "colName";
     this.colName.OptionsColumn.AllowEdit = false;
     this.colName.OptionsColumn.AllowFocus = false;
     this.colName.OptionsColumn.ReadOnly = true;
     this.colName.Visible = true;
     this.colName.VisibleIndex = 0;
     this.colName.Width = 63;
     //
     // colTuNgay
     //
     this.colTuNgay.Caption = "Từ tháng";
     this.colTuNgay.Name = "colTuNgay";
     this.colTuNgay.OptionsColumn.AllowEdit = false;
     this.colTuNgay.OptionsColumn.AllowFocus = false;
     this.colTuNgay.OptionsColumn.ReadOnly = true;
     this.colTuNgay.Visible = true;
     this.colTuNgay.VisibleIndex = 4;
     this.colTuNgay.Width = 56;
     //
     // colDenNgay
     //
     this.colDenNgay.Caption = "Đến tháng";
     this.colDenNgay.Name = "colDenNgay";
     this.colDenNgay.OptionsColumn.AllowEdit = false;
     this.colDenNgay.OptionsColumn.AllowFocus = false;
     this.colDenNgay.OptionsColumn.AllowMove = false;
     this.colDenNgay.OptionsColumn.ReadOnly = true;
     this.colDenNgay.Visible = true;
     this.colDenNgay.VisibleIndex = 5;
     this.colDenNgay.Width = 63;
     //
     // colNgayLap
     //
     this.colNgayLap.Caption = "Ngày thêm";
     this.colNgayLap.Name = "colNgayLap";
     this.colNgayLap.Visible = true;
     this.colNgayLap.VisibleIndex = 6;
     this.colNgayLap.Width = 64;
     //
     // colGhiChu
     //
     this.colGhiChu.Caption = "Ghi chú";
     this.colGhiChu.Name = "colGhiChu";
     this.colGhiChu.Visible = true;
     this.colGhiChu.VisibleIndex = 8;
     this.colGhiChu.Width = 47;
     //
     // colTenFile
     //
     this.colTenFile.Caption = "Tên file";
     this.colTenFile.Name = "colTenFile";
     this.colTenFile.Visible = true;
     this.colTenFile.VisibleIndex = 1;
     this.colTenFile.Width = 47;
     //
     // colTarget
     //
     this.colTarget.Caption = "Target";
     this.colTarget.Name = "colTarget";
     this.colTarget.Visible = true;
     this.colTarget.VisibleIndex = 2;
     this.colTarget.Width = 44;
     //
     // colThiTruong
     //
     this.colThiTruong.Caption = "Thị trường";
     this.colThiTruong.Name = "colThiTruong";
     this.colThiTruong.Visible = true;
     this.colThiTruong.VisibleIndex = 3;
     this.colThiTruong.Width = 62;
     //
     // colNguoiThem
     //
     this.colNguoiThem.Caption = "Người thêm";
     this.colNguoiThem.Name = "colNguoiThem";
     this.colNguoiThem.Visible = true;
     this.colNguoiThem.VisibleIndex = 7;
     this.colNguoiThem.Width = 67;
     //
     // xtraTabControlDetail
     //
     this.xtraTabControlDetail.Location = new System.Drawing.Point(1141, 13);
     this.xtraTabControlDetail.Name = "xtraTabControlDetail";
     this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(20, 13);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     this.xtraTabControlDetail.Visible = false;
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(13, 0);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.Target);
     this.popupControlContainerFilter.Controls.Add(this.ThiTruong);
     this.popupControlContainerFilter.Controls.Add(this.PhongBan);
     this.popupControlContainerFilter.Controls.Add(this.labelControl3);
     this.popupControlContainerFilter.Controls.Add(this.DenNam);
     this.popupControlContainerFilter.Controls.Add(this.DenThang);
     this.popupControlContainerFilter.Controls.Add(this.TuNam);
     this.popupControlContainerFilter.Controls.Add(this.TuThang);
     this.popupControlContainerFilter.Controls.Add(this.labelControl7);
     this.popupControlContainerFilter.Controls.Add(this.labelControl8);
     this.popupControlContainerFilter.Controls.Add(this.labelControl6);
     this.popupControlContainerFilter.Controls.Add(this.labelControl5);
     this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail);
     this.popupControlContainerFilter.Controls.Add(this.plLabel5);
     this.popupControlContainerFilter.Controls.Add(this.NguoiLap);
     this.popupControlContainerFilter.Controls.Add(this.NgayLap);
     this.popupControlContainerFilter.Controls.Add(this.TenFile);
     this.popupControlContainerFilter.Controls.Add(this.TenNguon);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.labelControl2);
     this.popupControlContainerFilter.Controls.Add(this.labelControl1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(1187, 78);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // Target
     //
     this.Target.Location = new System.Drawing.Point(397, 3);
     this.Target.Name = "Target";
     this.Target.Size = new System.Drawing.Size(275, 20);
     this.Target.TabIndex = 259;
     //
     // ThiTruong
     //
     this.ThiTruong.Location = new System.Drawing.Point(397, 27);
     this.ThiTruong.Name = "ThiTruong";
     this.ThiTruong.Size = new System.Drawing.Size(275, 20);
     this.ThiTruong.TabIndex = 258;
     //
     // PhongBan
     //
     this.PhongBan.Location = new System.Drawing.Point(397, 51);
     this.PhongBan.Name = "PhongBan";
     this.PhongBan.Size = new System.Drawing.Size(275, 20);
     this.PhongBan.TabIndex = 242;
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(342, 55);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(51, 13);
     this.labelControl3.TabIndex = 243;
     this.labelControl3.Text = "Phòng ban";
     this.labelControl3.ToolTip = "Phòng ban (Cấp 1)";
     //
     // DenNam
     //
     this.DenNam.EditValue = new decimal(new int[] {
     1900,
     0,
     0,
     0});
     this.DenNam.Location = new System.Drawing.Point(276, 53);
     this.DenNam.Name = "DenNam";
     this.DenNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenNam.Properties.Mask.EditMask = "d";
     this.DenNam.Properties.MaxValue = new decimal(new int[] {
     9999,
     0,
     0,
     0});
     this.DenNam.Properties.MinValue = new decimal(new int[] {
     1900,
     0,
     0,
     0});
     this.DenNam.Size = new System.Drawing.Size(55, 20);
     this.DenNam.TabIndex = 237;
     //
     // DenThang
     //
     this.DenThang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.DenThang.Location = new System.Drawing.Point(205, 52);
     this.DenThang.Name = "DenThang";
     this.DenThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenThang.Properties.Mask.EditMask = "d";
     this.DenThang.Properties.MaxValue = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.DenThang.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.DenThang.Size = new System.Drawing.Size(55, 20);
     this.DenThang.TabIndex = 238;
     //
     // TuNam
     //
     this.TuNam.EditValue = new decimal(new int[] {
     1900,
     0,
     0,
     0});
     this.TuNam.Location = new System.Drawing.Point(126, 52);
     this.TuNam.Name = "TuNam";
     this.TuNam.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuNam.Properties.Mask.EditMask = "d";
     this.TuNam.Properties.MaxValue = new decimal(new int[] {
     9999,
     0,
     0,
     0});
     this.TuNam.Properties.MinValue = new decimal(new int[] {
     1900,
     0,
     0,
     0});
     this.TuNam.Size = new System.Drawing.Size(47, 20);
     this.TuNam.TabIndex = 240;
     //
     // TuThang
     //
     this.TuThang.EditValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TuThang.Location = new System.Drawing.Point(68, 51);
     this.TuThang.Name = "TuThang";
     this.TuThang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuThang.Properties.Mask.EditMask = "d";
     this.TuThang.Properties.MaxValue = new decimal(new int[] {
     12,
     0,
     0,
     0});
     this.TuThang.Properties.MinValue = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.TuThang.Size = new System.Drawing.Size(47, 20);
     this.TuThang.TabIndex = 239;
     //
     // labelControl7
     //
     this.labelControl7.Location = new System.Drawing.Point(179, 56);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(20, 13);
     this.labelControl7.TabIndex = 236;
     this.labelControl7.Text = "Đến";
     this.labelControl7.Click += new System.EventHandler(this.labelControl7_Click);
     //
     // labelControl8
     //
     this.labelControl8.Location = new System.Drawing.Point(266, 56);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(4, 13);
     this.labelControl8.TabIndex = 232;
     this.labelControl8.Text = "/";
     //
     // labelControl6
     //
     this.labelControl6.Location = new System.Drawing.Point(117, 55);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(4, 13);
     this.labelControl6.TabIndex = 235;
     this.labelControl6.Text = "/";
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(12, 54);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(44, 13);
     this.labelControl5.TabIndex = 234;
     this.labelControl5.Text = "Từ tháng";
     //
     // plLabel5
     //
     this.plLabel5.Location = new System.Drawing.Point(678, 7);
     this.plLabel5.Name = "plLabel5";
     this.plLabel5.Size = new System.Drawing.Size(55, 13);
     this.plLabel5.TabIndex = 199;
     this.plLabel5.Text = "Người thêm";
     //
     // NguoiLap
     //
     this.NguoiLap.DataSource = null;
     this.NguoiLap.DisplayField = null;
     this.NguoiLap.Location = new System.Drawing.Point(740, 6);
     this.NguoiLap.Name = "NguoiLap";
     this.NguoiLap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.NguoiLap.Size = new System.Drawing.Size(284, 20);
     this.NguoiLap.TabIndex = 198;
     this.NguoiLap.ValueField = null;
     //
     // NgayLap
     //
     this.NgayLap.Caption = "Từ ngày 25/07/2012 đến ngày 01/08/2012";
     this.NgayLap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayLap.FirstFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
     this.NgayLap.FirstTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
     this.NgayLap.FromDate = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
     this.NgayLap.Location = new System.Drawing.Point(739, 31);
     this.NgayLap.Name = "NgayLap";
     this.NgayLap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.NgayLap.SecondFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
     this.NgayLap.SecondTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
     this.NgayLap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayLap.Size = new System.Drawing.Size(285, 20);
     this.NgayLap.TabIndex = 195;
     this.NgayLap.ToDate = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
     this.NgayLap.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)));
     //
     // TenFile
     //
     this.TenFile._DataSource = null;
     this.TenFile._GetField = null;
     this.TenFile.Location = new System.Drawing.Point(68, 26);
     this.TenFile.Name = "TenFile";
     this.TenFile.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.TenFile.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenFile.Size = new System.Drawing.Size(263, 20);
     this.TenFile.TabIndex = 194;
     //
     // TenNguon
     //
     this.TenNguon._DataSource = null;
     this.TenNguon._GetField = null;
     this.TenNguon.Location = new System.Drawing.Point(69, 3);
     this.TenNguon.MenuManager = this.barManager1;
     this.TenNguon.Name = "TenNguon";
     this.TenNguon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
     this.TenNguon.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.TenNguon.Size = new System.Drawing.Size(263, 20);
     this.TenNguon.TabIndex = 194;
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(679, 34);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(52, 13);
     this.plLabel3.TabIndex = 192;
     this.plLabel3.Text = "Ngày thêm";
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(12, 29);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(35, 13);
     this.plLabel1.TabIndex = 188;
     this.plLabel1.Text = "Tên file";
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(340, 30);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(50, 13);
     this.labelControl2.TabIndex = 188;
     this.labelControl2.Text = "Thị trường";
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(340, 6);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(32, 13);
     this.labelControl1.TabIndex = 188;
     this.labelControl1.Text = "Target";
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(12, 6);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(51, 13);
     this.plLabel2.TabIndex = 188;
     this.plLabel2.Text = "Tên nguồn";
     //
     // 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;
     //
     // FrmTNSSaleCppScrQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1187, 497);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "FrmTNSSaleCppScrQL";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Quản lý file nguồn CPP";
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).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);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.DenNam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenThang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNam.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuThang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenFile.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TenNguon.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 16
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmManChk));
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage1    = new DevExpress.XtraTab.XtraTabPage();
     this.txtManChk       = new DevExpress.XtraEditors.TextEdit();
     this.labelControl1   = new DevExpress.XtraEditors.LabelControl();
     this.panelControl1   = new DevExpress.XtraEditors.PanelControl();
     this.panelControl2   = new DevExpress.XtraEditors.PanelControl();
     this.btnSave         = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel       = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtManChk.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     this.SuspendLayout();
     //
     // 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.ShowTabHeader   = DevExpress.Utils.DefaultBoolean.False;
     this.xtraTabControl1.Size            = new System.Drawing.Size(304, 78);
     this.xtraTabControl1.TabIndex        = 0;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
         this.xtraTabPage1
     });
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.txtManChk);
     this.xtraTabPage1.Controls.Add(this.labelControl1);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(295, 69);
     this.xtraTabPage1.Text = "xtraTabPage1";
     //
     // txtManChk
     //
     this.txtManChk.Location = new System.Drawing.Point(120, 24);
     this.txtManChk.Name     = "txtManChk";
     this.txtManChk.Properties.Mask.EditMask = "g0";
     this.txtManChk.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtManChk.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtManChk.Size               = new System.Drawing.Size(136, 20);
     this.txtManChk.TabIndex           = 1;
     this.txtManChk.EditValueChanging += new DevExpress.XtraEditors.Controls.ChangingEventHandler(this.txtManChk_EditValueChanging);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(24, 24);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(77, 13);
     this.labelControl1.TabIndex = 0;
     this.labelControl1.Text     = "Manual Check #";
     //
     // panelControl1
     //
     this.panelControl1.Controls.Add(this.panelControl2);
     this.panelControl1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.panelControl1.Location = new System.Drawing.Point(0, 78);
     this.panelControl1.Name     = "panelControl1";
     this.panelControl1.Size     = new System.Drawing.Size(304, 40);
     this.panelControl1.TabIndex = 1;
     //
     // panelControl2
     //
     this.panelControl2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl2.Controls.Add(this.btnSave);
     this.panelControl2.Controls.Add(this.btnCancel);
     this.panelControl2.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panelControl2.Location = new System.Drawing.Point(126, 2);
     this.panelControl2.Name     = "panelControl2";
     this.panelControl2.Size     = new System.Drawing.Size(176, 36);
     this.panelControl2.TabIndex = 0;
     //
     // btnSave
     //
     this.btnSave.Location = new System.Drawing.Point(8, 8);
     this.btnSave.Name     = "btnSave";
     this.btnSave.Size     = new System.Drawing.Size(75, 23);
     this.btnSave.TabIndex = 1;
     this.btnSave.Text     = "Save";
     this.btnSave.Click   += new System.EventHandler(this.btnSave_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(96, 8);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 0;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // frmManChk
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(304, 118);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.panelControl1);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmManChk";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Manual Check";
     this.Load         += new System.EventHandler(this.frmManChk_Load);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtManChk.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Exemplo n.º 17
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.Prompt     = new DevExpress.XtraEditors.LabelControl();
     this.OK         = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel     = new DevExpress.XtraEditors.SimpleButton();
     this.HtmlPrompt = new System.Windows.Forms.WebBrowser();
     this.Input      = new DevExpress.XtraEditors.ComboBoxEdit();
     ((System.ComponentModel.ISupportInitialize)(this.Input.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Prompt
     //
     this.Prompt.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.Prompt.Appearance.BackColor              = System.Drawing.Color.Transparent;
     this.Prompt.Appearance.Options.UseBackColor   = true;
     this.Prompt.Appearance.Options.UseTextOptions = true;
     this.Prompt.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.Prompt.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.Prompt.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.Prompt.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.Prompt.Location     = new System.Drawing.Point(8, 9);
     this.Prompt.Name         = "Prompt";
     this.Prompt.Size         = new System.Drawing.Size(317, 65);
     this.Prompt.TabIndex     = 0;
     //
     // OK
     //
     this.OK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location     = new System.Drawing.Point(193, 101);
     this.OK.Name         = "OK";
     this.OK.Size         = new System.Drawing.Size(60, 22);
     this.OK.TabIndex     = 2;
     this.OK.Text         = "OK";
     //
     // Cancel
     //
     this.Cancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location     = new System.Drawing.Point(265, 101);
     this.Cancel.Name         = "Cancel";
     this.Cancel.Size         = new System.Drawing.Size(60, 22);
     this.Cancel.TabIndex     = 3;
     this.Cancel.Text         = "Cancel";
     //
     // HtmlPrompt
     //
     this.HtmlPrompt.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.HtmlPrompt.Location    = new System.Drawing.Point(8, 9);
     this.HtmlPrompt.MinimumSize = new System.Drawing.Size(20, 20);
     this.HtmlPrompt.Name        = "HtmlPrompt";
     this.HtmlPrompt.Size        = new System.Drawing.Size(317, 65);
     this.HtmlPrompt.TabIndex    = 5;
     //
     // Input
     //
     this.Input.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                               | System.Windows.Forms.AnchorStyles.Right)));
     this.Input.Location = new System.Drawing.Point(8, 75);
     this.Input.Name     = "Input";
     this.Input.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.Input.Properties.Sorted = true;
     this.Input.Size     = new System.Drawing.Size(317, 20);
     this.Input.TabIndex = 86;
     //
     // InputBoxMx
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.Cancel;
     this.ClientSize        = new System.Drawing.Size(331, 128);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.Prompt);
     this.Controls.Add(this.HtmlPrompt);
     this.Controls.Add(this.Input);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "InputBoxMx";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "InputBox";
     this.Activated      += new System.EventHandler(this.InputBox_Activated);
     ((System.ComponentModel.ISupportInitialize)(this.Input.Properties)).EndInit();
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQLKhoLuuBetaCam));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.capNhatViTri = new DevExpress.XtraBars.BarButtonItem();
            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.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.gridBandChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_MaChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TenChuongTrinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.cboTang = new ProtocolVN.Framework.Win.PLCombobox();
            this.cboNgan = new ProtocolVN.Framework.Win.PLCombobox();
            this.cboKe = new ProtocolVN.Framework.Win.PLCombobox();
            this.ngay = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).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();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).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.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.capNhatViTri});
            this.barManager1.MaxItemId = 38;
            //
            // 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.capNhatViTri),
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint),
            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";
            //
            // capNhatViTri
            //
            this.capNhatViTri.Caption = "Cập nhật vị trí";
            this.capNhatViTri.Id = 37;
            this.capNhatViTri.Name = "capNhatViTri";
            this.capNhatViTri.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.capNhatViTri.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.capNhatViTri_ItemClick);
            //
            // 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 = "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;
            //
            // 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;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đón&g";
            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(943, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
            this.barDockControlBottom.Size = new System.Drawing.Size(943, 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, 473);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(943, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
            //
            // 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, 108);
            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(943, 389);
            this.splitContainerControl1.SplitterPosition = 428;
            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(943, 383);
            this.gridControlMaster.TabIndex = 12;
            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_PM_MaChuongTrinh,
            this.Col_PM_TenChuongTrinh,
            this.Col_PM_TietMuc,
            this.Col_PM_PostMaster,
            this.Col_PM_ThanhLy,
            this.Col_PM_LoaiLuu,
            this.Col_PM_TongTap,
            this.Col_PM_Ke,
            this.Col_PM_Ngan,
            this.Col_PM_Tang,
            this.Col_PM_PopUp,
            this.Col_PM_TTDinhKem,
            this.Col_PM_NgayNhapKho,
            this.Col_PM_DVDNgayDuyet,
            this.Col_PM_DVDNgayHoanTat,
            this.Col_PM_TTHD,
            this.Col_PM_ThoiLuongChung,
            this.Col_PM_Category});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupCount = 2;
            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.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.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_Category, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.Col_PM_PostMaster, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "Post/Master (Cấp 2)";
            //
            // gridBandChuongTrinh
            //
            this.gridBandChuongTrinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandChuongTrinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandChuongTrinh.Caption = "Thông tin chương trình";
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_Category);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_MaChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TenChuongTrinh);
            this.gridBandChuongTrinh.Columns.Add(this.Col_PM_TietMuc);
            this.gridBandChuongTrinh.Name = "gridBandChuongTrinh";
            this.gridBandChuongTrinh.Width = 297;
            //
            // Col_PM_Category
            //
            this.Col_PM_Category.Caption = "Category";
            this.Col_PM_Category.Name = "Col_PM_Category";
            this.Col_PM_Category.Visible = true;
            this.Col_PM_Category.Width = 58;
            //
            // Col_PM_MaChuongTrinh
            //
            this.Col_PM_MaChuongTrinh.Caption = "Mã chương trình";
            this.Col_PM_MaChuongTrinh.Name = "Col_PM_MaChuongTrinh";
            this.Col_PM_MaChuongTrinh.Visible = true;
            this.Col_PM_MaChuongTrinh.Width = 90;
            //
            // Col_PM_TenChuongTrinh
            //
            this.Col_PM_TenChuongTrinh.Caption = "Tên chương trình";
            this.Col_PM_TenChuongTrinh.Name = "Col_PM_TenChuongTrinh";
            this.Col_PM_TenChuongTrinh.Visible = true;
            this.Col_PM_TenChuongTrinh.Width = 94;
            //
            // Col_PM_TietMuc
            //
            this.Col_PM_TietMuc.Caption = " Tiết mục";
            this.Col_PM_TietMuc.Name = "Col_PM_TietMuc";
            this.Col_PM_TietMuc.Visible = true;
            this.Col_PM_TietMuc.Width = 55;
            //
            // gridBandPostMaster
            //
            this.gridBandPostMaster.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandPostMaster.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandPostMaster.Caption = "Thông tin Post/Master";
            this.gridBandPostMaster.Columns.Add(this.Col_PM_PostMaster);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TongTap);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_LoaiLuu);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Ke);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Ngan);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_Tang);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_PopUp);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_ThoiLuongChung);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TTDinhKem);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_ThanhLy);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_NgayNhapKho);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_TTHD);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayDuyet);
            this.gridBandPostMaster.Columns.Add(this.Col_PM_DVDNgayHoanTat);
            this.gridBandPostMaster.Name = "gridBandPostMaster";
            this.gridBandPostMaster.Width = 942;
            //
            // Col_PM_PostMaster
            //
            this.Col_PM_PostMaster.Caption = "Post/Master";
            this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
            this.Col_PM_PostMaster.OptionsColumn.AllowMove = false;
            this.Col_PM_PostMaster.OptionsColumn.AllowShowHide = false;
            this.Col_PM_PostMaster.Visible = true;
            this.Col_PM_PostMaster.Width = 70;
            //
            // Col_PM_TongTap
            //
            this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
            this.Col_PM_TongTap.Name = "Col_PM_TongTap";
            this.Col_PM_TongTap.Visible = true;
            this.Col_PM_TongTap.Width = 82;
            //
            // Col_PM_LoaiLuu
            //
            this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
            this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
            this.Col_PM_LoaiLuu.Visible = true;
            this.Col_PM_LoaiLuu.Width = 67;
            //
            // Col_PM_Ke
            //
            this.Col_PM_Ke.Caption = "Kệ";
            this.Col_PM_Ke.Name = "Col_PM_Ke";
            this.Col_PM_Ke.Visible = true;
            this.Col_PM_Ke.Width = 24;
            //
            // Col_PM_Ngan
            //
            this.Col_PM_Ngan.Caption = "Ngăn";
            this.Col_PM_Ngan.Name = "Col_PM_Ngan";
            this.Col_PM_Ngan.Visible = true;
            this.Col_PM_Ngan.Width = 37;
            //
            // Col_PM_Tang
            //
            this.Col_PM_Tang.Caption = "Tầng";
            this.Col_PM_Tang.Name = "Col_PM_Tang";
            this.Col_PM_Tang.Visible = true;
            this.Col_PM_Tang.Width = 36;
            //
            // Col_PM_PopUp
            //
            this.Col_PM_PopUp.Caption = "Pop Up";
            this.Col_PM_PopUp.Name = "Col_PM_PopUp";
            this.Col_PM_PopUp.Visible = true;
            this.Col_PM_PopUp.Width = 46;
            //
            // Col_PM_ThoiLuongChung
            //
            this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
            this.Col_PM_ThoiLuongChung.Visible = true;
            this.Col_PM_ThoiLuongChung.Width = 94;
            //
            // Col_PM_TTDinhKem
            //
            this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
            this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
            this.Col_PM_TTDinhKem.Visible = true;
            this.Col_PM_TTDinhKem.Width = 71;
            //
            // Col_PM_ThanhLy
            //
            this.Col_PM_ThanhLy.Caption = "Thanh lý";
            this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
            this.Col_PM_ThanhLy.Visible = true;
            this.Col_PM_ThanhLy.Width = 53;
            //
            // Col_PM_NgayNhapKho
            //
            this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
            this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
            this.Col_PM_NgayNhapKho.Visible = true;
            this.Col_PM_NgayNhapKho.Width = 84;
            //
            // Col_PM_TTHD
            //
            this.Col_PM_TTHD.Caption = "Thông tin HD";
            this.Col_PM_TTHD.Name = "Col_PM_TTHD";
            this.Col_PM_TTHD.Visible = true;
            this.Col_PM_TTHD.Width = 84;
            //
            // Col_PM_DVDNgayDuyet
            //
            this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
            this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
            this.Col_PM_DVDNgayDuyet.Visible = true;
            this.Col_PM_DVDNgayDuyet.Width = 90;
            //
            // Col_PM_DVDNgayHoanTat
            //
            this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
            this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
            this.Col_PM_DVDNgayHoanTat.Visible = true;
            this.Col_PM_DVDNgayHoanTat.Width = 104;
            //
            // 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(0, 0);
            this.xtraTabControlDetail.TabIndex = 0;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
            this.xtraTabPageDetail.Text = "Chi tiết";
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.PostMaster);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Controls.Add(this.NoiDung);
            this.popupControlContainerFilter.Controls.Add(this.cboTang);
            this.popupControlContainerFilter.Controls.Add(this.cboNgan);
            this.popupControlContainerFilter.Controls.Add(this.cboKe);
            this.popupControlContainerFilter.Controls.Add(this.ngay);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.labelControl4);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(943, 84);
            this.popupControlContainerFilter.TabIndex = 0;
            this.popupControlContainerFilter.Visible = false;
            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(71, 56);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(167, 20);
            this.PhongBan.TabIndex = 252;
            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(4, 59);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(51, 13);
            this.plLabel7.TabIndex = 253;
            this.plLabel7.Text = "Phòng ban";
            this.plLabel7.ToolTip = "Phòng ban (Cấp 1)";

            //
            // PostMaster
            //
            this.PostMaster.DataSource = null;
            this.PostMaster.DisplayField = null;
            this.PostMaster.Location = new System.Drawing.Point(71, 7);
            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(162, 20);
            this.PostMaster.TabIndex = 251;
            this.PostMaster.ValueField = null;
            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(6, 11);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(58, 13);
            this.label10.TabIndex = 250;
            this.label10.Text = "Post/Master";

            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(71, 31);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(162, 20);
            this.Category.TabIndex = 249;
            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(7, 34);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(45, 13);
            this.plLabel5.TabIndex = 248;
            this.plLabel5.Text = "Category";

            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(755, 3);
            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(185, 20);
            this.LoaiLuuTru.TabIndex = 246;
            this.LoaiLuuTru.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(755, 27);
            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(185, 20);
            this.TietMuc.TabIndex = 246;
            this.TietMuc.ValueField = null;
            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(692, 6);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(55, 13);
            this.plLabel6.TabIndex = 247;
            this.plLabel6.Text = "Loại lưu trữ";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(692, 30);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(40, 13);
            this.label5.TabIndex = 247;
            this.label5.Text = "Tiết mục";

            //
            // NoiDung
            //
            this.NoiDung._DataSource = null;
            this.NoiDung._GetField = null;
            this.NoiDung.Location = new System.Drawing.Point(302, 31);
            this.NoiDung.Name = "NoiDung";
            this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NoiDung.Size = new System.Drawing.Size(373, 20);
            this.NoiDung.TabIndex = 245;
            //
            // cboTang
            //
            this.cboTang.DataSource = null;
            this.cboTang.DisplayField = null;
            this.cboTang.Location = new System.Drawing.Point(592, 6);
            this.cboTang.Name = "cboTang";
            this.cboTang.Size = new System.Drawing.Size(83, 20);
            this.cboTang.TabIndex = 244;
            this.cboTang.ValueField = null;
            //
            // cboNgan
            //
            this.cboNgan.DataSource = null;
            this.cboNgan.DisplayField = null;
            this.cboNgan.Location = new System.Drawing.Point(451, 7);
            this.cboNgan.Name = "cboNgan";
            this.cboNgan.Size = new System.Drawing.Size(92, 20);
            this.cboNgan.TabIndex = 243;
            this.cboNgan.ValueField = null;
            //
            // cboKe
            //
            this.cboKe.DataSource = null;
            this.cboKe.DisplayField = null;
            this.cboKe.Location = new System.Drawing.Point(301, 7);
            this.cboKe.Name = "cboKe";
            this.cboKe.Size = new System.Drawing.Size(107, 20);
            this.cboKe.TabIndex = 242;
            this.cboKe.ValueField = null;
            //
            // ngay
            //
            this.ngay.Caption = "Từ ngày 5/11/2012 đến ngày 5/18/2012";
            this.ngay.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngay.FirstFrom = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.FirstTo = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.FromDate = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.Location = new System.Drawing.Point(302, 54);
            this.ngay.Name = "ngay";
            this.ngay.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngay.SecondFrom = new System.DateTime(2012, 5, 11, 4, 13, 4, 526);
            this.ngay.SecondTo = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngay.Size = new System.Drawing.Size(373, 20);
            this.ngay.TabIndex = 196;
            this.ngay.ToDate = new System.DateTime(2012, 5, 18, 4, 13, 4, 526);
            this.ngay.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)));
            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(558, 10);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(24, 13);
            this.plLabel3.TabIndex = 195;
            this.plLabel3.Text = "Tầng";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(244, 59);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(52, 13);
            this.plLabel4.TabIndex = 188;
            this.plLabel4.Text = "Ngày nhập";

            //
            // labelControl4
            //
            this.labelControl4.Location = new System.Drawing.Point(244, 34);
            this.labelControl4.Name = "labelControl4";
            this.labelControl4.Size = new System.Drawing.Size(34, 13);
            this.labelControl4.TabIndex = 188;
            this.labelControl4.Text = "Tên CT";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(414, 10);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(25, 13);
            this.plLabel2.TabIndex = 193;
            this.plLabel2.Text = "Ngăn";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(247, 10);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(12, 13);
            this.plLabel1.TabIndex = 192;
            this.plLabel1.Text = "Kệ";

            //
            // frmQLKhoLuuBetaCam
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(943, 497);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.popupControlContainerFilter);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmQLKhoLuuBetaCam";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý kho lưu Betacam";
            this.Load += new System.EventHandler(this.frmQLKhoLuuBetaCam_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).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);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
            this.ResumeLayout(false);
        }
Exemplo n.º 19
0
        /// <summary>
        /// 在示例画面上"铺"上一层新的按钮和标签
        /// </summary>
        /// <param name="obj">画面实例</param>
        private void SetControls(Object obj)
        {
            x = 0;
            y = 0;
            buttons.Clear();

            GetButtonInfo((Control)obj);

            //2010-12-2 wengfei 添加工具栏四个按钮

            if (EC.ProjectConfig.Instance.CurrentProject.TOOLBAR)
            {
                 EFButton buttNew = new  EFButton();
                buttNew.Name = "ToolbarNew";
                buttNew.Text = EP.EPES.EPESC0000063/*新增*/;
                buttNew.Location = new Point(12, 655);
                buttNew.Size = new System.Drawing.Size(70, 25);
                buttons.Add(buttNew);

                (( EFButton)buttNew).Click += new EventHandler(TestClick);

                 EFButton buttAddcopy = new  EFButton();
                buttAddcopy.Name = "ToolbarAddCopy";
                buttAddcopy.Text = EP.EPES.EPESC0000064/*复制新增*/;
                buttAddcopy.Location = new Point(100, 655);
                buttAddcopy.Size = new System.Drawing.Size(70, 25);
                buttons.Add(buttAddcopy);

                (( EFButton)buttAddcopy).Click += new EventHandler(TestClick);

                 EFButton buttDelete = new  EFButton();
                buttDelete.Name = "ToolbarDelete";
                buttDelete.Text = EP.EPES.EPESC0000065/*删除*/;
                buttDelete.Location = new Point(192, 655);
                buttDelete.Size = new System.Drawing.Size(70, 25);
                buttons.Add(buttDelete);

                (( EFButton)buttDelete).Click += new EventHandler(TestClick);

                 EFButton buttSave = new  EFButton();
                buttSave.Name = "ToolbarSaveAll";
                buttSave.Text = EP.EPES.EPESC0000066/*存盘*/;
                buttSave.Location = new Point(282, 655);
                buttSave.Size = new System.Drawing.Size(70, 25);
                buttons.Add(buttSave);

                (( EFButton)buttSave).Click += new EventHandler(TestClick);
            }
            //取出并添加按钮和标签
            foreach ( EFButton btn in buttons)
            {
                 DevExpress.XtraEditors.LabelControl label = new  DevExpress.XtraEditors.LabelControl();
                label.Text = btn.Name;
                label.AutoSize = true;
                label.BackColor = Color.Yellow;
                label.Location = new Point(btn.Location.X, btn.Location.Y - 15);
                ((Control)obj).Controls.Add(label);
                label.BringToFront();

                ((Control)obj).Controls.Add(btn);
                btn.BringToFront();
            }
        }
Exemplo n.º 20
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.meDetail            = new DevExpress.XtraEditors.MemoEdit();
     this.btnDetail           = new DevExpress.XtraEditors.SimpleButton();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.emptySpaceItem1     = new DevExpress.XtraLayout.EmptySpaceItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.meDetail.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.meDetail);
     this.layoutControl1.Controls.Add(this.btnDetail);
     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(284, 194);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(12, 12);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(107, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 6;
     //
     // meDetail
     //
     this.meDetail.Location              = new System.Drawing.Point(12, 38);
     this.meDetail.Name                  = "meDetail";
     this.meDetail.Size                  = new System.Drawing.Size(260, 144);
     this.meDetail.StyleController       = this.layoutControl1;
     this.meDetail.TabIndex              = 5;
     this.meDetail.UseOptimizedRendering = true;
     //
     // btnDetail
     //
     this.btnDetail.Location        = new System.Drawing.Point(183, 12);
     this.btnDetail.Name            = "btnDetail";
     this.btnDetail.Size            = new System.Drawing.Size(89, 22);
     this.btnDetail.StyleController = this.layoutControl1;
     this.btnDetail.TabIndex        = 4;
     this.btnDetail.Text            = "<<详细信息";
     this.btnDetail.Click          += new System.EventHandler(this.btnDetail_Click);
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.emptySpaceItem1
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 194);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.btnDetail;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(171, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(93, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.meDetail;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(264, 148);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.labelControl1;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(111, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // emptySpaceItem1
     //
     this.emptySpaceItem1.AllowHotTrack         = false;
     this.emptySpaceItem1.CustomizationFormText = "emptySpaceItem1";
     this.emptySpaceItem1.Location = new System.Drawing.Point(111, 0);
     this.emptySpaceItem1.Name     = "emptySpaceItem1";
     this.emptySpaceItem1.Size     = new System.Drawing.Size(60, 26);
     this.emptySpaceItem1.Text     = "emptySpaceItem1";
     this.emptySpaceItem1.TextSize = new System.Drawing.Size(0, 0);
     //
     // FrmErrorInfo
     //
     this.ClientSize = new System.Drawing.Size(284, 194);
     this.Controls.Add(this.layoutControl1);
     this.Name = "FrmErrorInfo";
     this.Text = "错误信息";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.meDetail.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.emptySpaceItem1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 21
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.btnOK               = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.btnTMdb             = new DevExpress.XtraEditors.SimpleButton();
     this.btnRMdb             = new DevExpress.XtraEditors.SimpleButton();
     this.textEdit2           = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1           = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup2 = 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.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem8  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem6  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).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.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.btnOK);
     this.layoutControl1.Controls.Add(this.labelControl2);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btnTMdb);
     this.layoutControl1.Controls.Add(this.btnRMdb);
     this.layoutControl1.Controls.Add(this.textEdit2);
     this.layoutControl1.Controls.Add(this.textEdit1);
     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(284, 105);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // btnCancel
     //
     this.btnCancel.Location        = new System.Drawing.Point(136, 80);
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.Size            = new System.Drawing.Size(146, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex        = 13;
     this.btnCancel.Text            = "取消";
     //
     // btnOK
     //
     this.btnOK.Location        = new System.Drawing.Point(2, 80);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(130, 22);
     this.btnOK.StyleController = this.layoutControl1;
     this.btnOK.TabIndex        = 12;
     this.btnOK.Text            = "确定";
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // labelControl2
     //
     this.labelControl2.Location        = new System.Drawing.Point(5, 51);
     this.labelControl2.Name            = "labelControl2";
     this.labelControl2.Size            = new System.Drawing.Size(72, 14);
     this.labelControl2.StyleController = this.layoutControl1;
     this.labelControl2.TabIndex        = 11;
     this.labelControl2.Text            = "目标数据库:";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 25);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(68, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 10;
     this.labelControl1.Text            = "  源数据库:";
     //
     // btnTMdb
     //
     this.btnTMdb.Location        = new System.Drawing.Point(248, 51);
     this.btnTMdb.Name            = "btnTMdb";
     this.btnTMdb.Size            = new System.Drawing.Size(31, 22);
     this.btnTMdb.StyleController = this.layoutControl1;
     this.btnTMdb.TabIndex        = 7;
     this.btnTMdb.Text            = "...";
     this.btnTMdb.Click          += new System.EventHandler(this.btnTMdb_Click);
     //
     // btnRMdb
     //
     this.btnRMdb.Location        = new System.Drawing.Point(248, 25);
     this.btnRMdb.Name            = "btnRMdb";
     this.btnRMdb.Size            = new System.Drawing.Size(31, 22);
     this.btnRMdb.StyleController = this.layoutControl1;
     this.btnRMdb.TabIndex        = 6;
     this.btnRMdb.Text            = "...";
     this.btnRMdb.Click          += new System.EventHandler(this.btnRMdb_Click);
     //
     // textEdit2
     //
     this.textEdit2.Location        = new System.Drawing.Point(81, 51);
     this.textEdit2.Name            = "textEdit2";
     this.textEdit2.Size            = new System.Drawing.Size(163, 22);
     this.textEdit2.StyleController = this.layoutControl1;
     this.textEdit2.TabIndex        = 5;
     //
     // textEdit1
     //
     this.textEdit1.Location        = new System.Drawing.Point(77, 25);
     this.textEdit1.Name            = "textEdit1";
     this.textEdit1.Size            = new System.Drawing.Size(167, 22);
     this.textEdit1.StyleController = this.layoutControl1;
     this.textEdit1.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup2,
         this.layoutControlItem5,
         this.layoutControlItem6
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 105);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "layoutControlGroup2";
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem4,
         this.layoutControlItem7,
         this.layoutControlItem8
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(284, 78);
     this.layoutControlGroup2.Text     = "数据库路径";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.textEdit1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(72, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(171, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.textEdit2;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(76, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(167, 26);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnRMdb;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(243, 0);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(35, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.btnTMdb;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(243, 26);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(35, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.labelControl1;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(72, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlItem8
     //
     this.layoutControlItem8.Control = this.labelControl2;
     this.layoutControlItem8.CustomizationFormText = "layoutControlItem8";
     this.layoutControlItem8.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem8.Name     = "layoutControlItem8";
     this.layoutControlItem8.Size     = new System.Drawing.Size(76, 26);
     this.layoutControlItem8.Text     = "layoutControlItem8";
     this.layoutControlItem8.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem8.TextToControlDistance = 0;
     this.layoutControlItem8.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btnOK;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 78);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(134, 27);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem6
     //
     this.layoutControlItem6.Control = this.btnCancel;
     this.layoutControlItem6.CustomizationFormText = "layoutControlItem6";
     this.layoutControlItem6.Location = new System.Drawing.Point(134, 78);
     this.layoutControlItem6.Name     = "layoutControlItem6";
     this.layoutControlItem6.Size     = new System.Drawing.Size(150, 27);
     this.layoutControlItem6.Text     = "layoutControlItem6";
     this.layoutControlItem6.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem6.TextToControlDistance = 0;
     this.layoutControlItem6.TextVisible           = false;
     //
     // FrmCreateDEM
     //
     this.ClientSize = new System.Drawing.Size(284, 105);
     this.Controls.Add(this.layoutControl1);
     this.Name  = "FrmCreateDEM";
     this.Text  = "创建DEM";
     this.Load += new System.EventHandler(this.FrmCreateDEM_Load);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).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.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem6)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 22
0
 private void InitializeComponent()
 {
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.btnOK               = new DevExpress.XtraEditors.SimpleButton();
     this.teFileName          = new DevExpress.XtraEditors.TextEdit();
     this.layoutControlGroup1 = 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();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.teFileName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).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();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.btnCancel);
     this.layoutControl1.Controls.Add(this.btnOK);
     this.layoutControl1.Controls.Add(this.teFileName);
     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(284, 73);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(12, 12);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(48, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 7;
     this.labelControl1.Text            = "文件名:";
     //
     // btnCancel
     //
     this.btnCancel.Location        = new System.Drawing.Point(128, 38);
     this.btnCancel.Name            = "btnCancel";
     this.btnCancel.Size            = new System.Drawing.Size(144, 22);
     this.btnCancel.StyleController = this.layoutControl1;
     this.btnCancel.TabIndex        = 6;
     this.btnCancel.Text            = "取消";
     this.btnCancel.Click          += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.Location        = new System.Drawing.Point(12, 38);
     this.btnOK.Name            = "btnOK";
     this.btnOK.Size            = new System.Drawing.Size(112, 22);
     this.btnOK.StyleController = this.layoutControl1;
     this.btnOK.TabIndex        = 5;
     this.btnOK.Text            = "确定";
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // teFileName
     //
     this.teFileName.Location        = new System.Drawing.Point(64, 12);
     this.teFileName.Name            = "teFileName";
     this.teFileName.Size            = new System.Drawing.Size(208, 22);
     this.teFileName.StyleController = this.layoutControl1;
     this.teFileName.TabIndex        = 4;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1,
         this.layoutControlItem2,
         this.layoutControlItem3,
         this.layoutControlItem4
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Size        = new System.Drawing.Size(284, 73);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.teFileName;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(52, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(212, 26);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.btnOK;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 26);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(116, 27);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.btnCancel;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(116, 26);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(148, 27);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.labelControl1;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(52, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // FrmSDEFileName
     //
     this.ClientSize = new System.Drawing.Size(284, 73);
     this.Controls.Add(this.layoutControl1);
     this.Name     = "FrmSDEFileName";
     this.ShowIcon = false;
     this.Text     = "连接SDE文件名";
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.teFileName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).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();
     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(frmBienMucSearchQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItemAddNext = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu3 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItemSuaGiuMB = 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.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.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItemDonGian = 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.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
            this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
            this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
            this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
            this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
            this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
            this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
            this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
            this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
            this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
            this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
            this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
            this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.label34 = new DevExpress.XtraEditors.LabelControl();
            this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = 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.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_BM_TapSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_TenTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_SoBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_MaBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThongSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_NoiDungDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TraierPost = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand3 = 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_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhongBan = 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.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            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.ThôngtinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            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.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanelAdvance.SuspendLayout();
            this.dockPanel2_Container.SuspendLayout();
            this.dockPanelSimple.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.QuocGia.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.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).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.barButtonItem5,
            this.barSubItemInNhan,
            this.barButtonItemInBeatcamTrong,
            this.barButtonItemInBeatacamNgoai,
            this.barButtonItemAddNext,
            this.barButtonItemSuaGiuMB,
            this.barCheckItemNangCao,
            this.barCheckItemDonGian,
            this.barButtonItemThongKe});
            this.barManager1.MaxItemId = 44;
            //
            // 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(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
            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.barSubItemInNhan),
            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.barButtonItemThongKe, 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.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.DropDownControl = this.popupMenu2;
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu2
            //
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNext)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            //
            // barButtonItemAddNext
            //
            this.barButtonItemAddNext.Caption = "Thêm tậ&p tiếp theo";
            this.barButtonItemAddNext.Id = 39;
            this.barButtonItemAddNext.Name = "barButtonItemAddNext";
            this.barButtonItemAddNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNext_ItemClick);
            //
            // 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;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.DropDownControl = this.popupMenu3;
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu3
            //
            this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSuaGiuMB)});
            this.popupMenu3.Manager = this.barManager1;
            this.popupMenu3.Name = "popupMenu3";
            //
            // barButtonItemSuaGiuMB
            //
            this.barButtonItemSuaGiuMB.Caption = "Sửa &vẫn giữ phần số của mã băng";
            this.barButtonItemSuaGiuMB.Id = 40;
            this.barButtonItemSuaGiuMB.Name = "barButtonItemSuaGiuMB";
            this.barButtonItemSuaGiuMB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaGiuMB_ItemClick);
            //
            // 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 t&rướ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.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemInBeatcamTrong
            //
            this.barButtonItemInBeatcamTrong.Caption = "In betatcam t&rong";
            this.barButtonItemInBeatcamTrong.Id = 37;
            this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
            this.barButtonItemInBeatcamTrong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
            //
            // barButtonItemInBeatacamNgoai
            //
            this.barButtonItemInBeatacamNgoai.Caption = "In beatacam n&goài";
            this.barButtonItemInBeatacamNgoai.Id = 38;
            this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
            this.barButtonItemInBeatacamNgoai.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_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),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điề&u kiện lọc";
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barCheckItemNangCao
            //
            this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
            this.barCheckItemNangCao.Id = 41;
            this.barCheckItemNangCao.Name = "barCheckItemNangCao";
            //
            // barCheckItemDonGian
            //
            this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
            this.barCheckItemDonGian.Id = 42;
            this.barCheckItemDonGian.Name = "barCheckItemDonGian";
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đón&g";
            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(1028, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 734);
            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, 710);
            //
            // 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, 710);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanelAdvance,
            this.dockPanelSimple});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanelAdvance
            //
            this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container);
            this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockPanelAdvance.ID = new System.Guid("4dfe076a-bb5a-4480-b941-f391f02697b8");
            this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
            this.dockPanelAdvance.Name = "dockPanelAdvance";
            this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanelAdvance.Size = new System.Drawing.Size(200, 710);
            this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
            //
            // dockPanel2_Container
            //
            this.dockPanel2_Container.Controls.Add(this.filterControl1);
            this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel2_Container.Name = "dockPanel2_Container";
            this.dockPanel2_Container.Size = new System.Drawing.Size(194, 682);
            this.dockPanel2_Container.TabIndex = 0;
            //
            // filterControl1
            //
            this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.filterControl1.Location = new System.Drawing.Point(0, 0);
            this.filterControl1.Name = "filterControl1";
            this.filterControl1.Size = new System.Drawing.Size(194, 682);
            this.filterControl1.TabIndex = 11;
            this.filterControl1.Text = "filterControl1";
            //
            // dockPanelSimple
            //
            this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
            this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanelSimple.FloatVertical = true;
            this.dockPanelSimple.ID = new System.Guid("2345a568-0c89-4a76-a607-0aff4b702676");
            this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
            this.dockPanelSimple.Name = "dockPanelSimple";
            this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 161);
            this.dockPanelSimple.Size = new System.Drawing.Size(828, 161);
            this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
            //
            // 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(822, 133);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel21);
            this.popupControlContainerFilter.Controls.Add(this.plLabel22);
            this.popupControlContainerFilter.Controls.Add(this.TenTap);
            this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
            this.popupControlContainerFilter.Controls.Add(this.plLabel20);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.plLabel19);
            this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
            this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
            this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
            this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
            this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
            this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
            this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
            this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
            this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
            this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel11);
            this.popupControlContainerFilter.Controls.Add(this.plLabel17);
            this.popupControlContainerFilter.Controls.Add(this.plLabel16);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel9);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel14);
            this.popupControlContainerFilter.Controls.Add(this.plLabel13);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.label34);
            this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
            this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenGoc);
            this.popupControlContainerFilter.Controls.Add(this.NoiDung);
            this.popupControlContainerFilter.Controls.Add(this.QuocGia);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel18);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel23);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            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(822, 133);
            this.popupControlContainerFilter.TabIndex = 12;
            this.popupControlContainerFilter.Visible = false;
            //
            // ngayNhap
            //
            this.ngayNhap.Caption = "Từ ngày 25/02/2012 đến ngày 03/03/2012";
            this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.FromDate = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.Location = new System.Drawing.Point(583, 78);
            this.ngayNhap.Name = "ngayNhap";
            this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.Size = new System.Drawing.Size(291, 21);
            this.ngayNhap.TabIndex = 247;
            this.ngayNhap.ToDate = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.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)));
            //
            // TapSoDen
            //
            this.TapSoDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoDen.Location = new System.Drawing.Point(687, 106);
            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(75, 20);
            this.TapSoDen.TabIndex = 245;
            //
            // TapSoTu
            //
            this.TapSoTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoTu.Location = new System.Drawing.Point(585, 105);
            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(67, 20);
            this.TapSoTu.TabIndex = 246;
            //
            // plLabel21
            //
            this.plLabel21.Location = new System.Drawing.Point(657, 109);
            this.plLabel21.Name = "plLabel21";
            this.plLabel21.Size = new System.Drawing.Size(18, 13);
            this.plLabel21.TabIndex = 243;
            this.plLabel21.Text = "đến";

            //
            // plLabel22
            //
            this.plLabel22.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.plLabel22.Appearance.Options.UseFont = true;
            this.plLabel22.Location = new System.Drawing.Point(496, 107);
            this.plLabel22.Name = "plLabel22";
            this.plLabel22.Size = new System.Drawing.Size(53, 13);
            this.plLabel22.TabIndex = 244;
            this.plLabel22.Text = "Tập số từ";
            this.plLabel22.ToolTip = "Tập số (Cấp 3)";

            //
            // TenTap
            //
            this.TenTap._DataSource = null;
            this.TenTap._GetField = null;
            this.TenTap.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.TenTap.Location = new System.Drawing.Point(844, 106);
            this.TenTap.Name = "TenTap";
            this.TenTap.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenTap.Size = new System.Drawing.Size(626, 20);
            this.TenTap.TabIndex = 242;
            //
            // SoDKCBHD
            //
            this.SoDKCBHD.DataSource = null;
            this.SoDKCBHD.DisplayField = null;
            this.SoDKCBHD.Location = new System.Drawing.Point(333, 103);
            this.SoDKCBHD.Name = "SoDKCBHD";
            this.SoDKCBHD.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.SoDKCBHD.Size = new System.Drawing.Size(150, 20);
            this.SoDKCBHD.TabIndex = 241;
            this.SoDKCBHD.ValueField = null;
            //
            // plLabel20
            //
            this.plLabel20.Location = new System.Drawing.Point(266, 108);
            this.plLabel20.Name = "plLabel20";
            this.plLabel20.Size = new System.Drawing.Size(59, 13);
            this.plLabel20.TabIndex = 240;
            this.plLabel20.Text = "Số ĐKCB HD";
            this.plLabel20.ToolTip = "Số ĐKCB HD (Cấp 2)";

            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
            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(185, 20);
            this.LoaiLuuTru.TabIndex = 241;
            this.LoaiLuuTru.ValueField = null;
            //
            // plLabel19
            //
            this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.plLabel19.Appearance.Options.UseFont = true;
            this.plLabel19.Location = new System.Drawing.Point(4, 108);
            this.plLabel19.Name = "plLabel19";
            this.plLabel19.Size = new System.Drawing.Size(65, 13);
            this.plLabel19.TabIndex = 240;
            this.plLabel19.Text = "Loại lưu trữ";
            this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";

            //
            // TimeslotDen
            //
            this.TimeslotDen.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
            this.TimeslotDen.Location = new System.Drawing.Point(174, 79);
            this.TimeslotDen.Name = "TimeslotDen";
            this.TimeslotDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TimeslotDen.Properties.Mask.EditMask = "HH:mm";
            this.TimeslotDen.Size = new System.Drawing.Size(86, 20);
            this.TimeslotDen.TabIndex = 239;
            //
            // TimeslotTu
            //
            this.TimeslotTu.EditValue = new System.DateTime(2011, 12, 15, 0, 0, 0, 0);
            this.TimeslotTu.Location = new System.Drawing.Point(48, 79);
            this.TimeslotTu.MenuManager = this.barManager1;
            this.TimeslotTu.Name = "TimeslotTu";
            this.TimeslotTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TimeslotTu.Properties.Mask.EditMask = "HH:mm";
            this.TimeslotTu.Size = new System.Drawing.Size(78, 20);
            this.TimeslotTu.TabIndex = 239;
            //
            // SoRunConLaiTu
            //
            this.SoRunConLaiTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.SoRunConLaiTu.Location = new System.Drawing.Point(844, 55);
            this.SoRunConLaiTu.Name = "SoRunConLaiTu";
            this.SoRunConLaiTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SoRunConLaiTu.Size = new System.Drawing.Size(67, 20);
            this.SoRunConLaiTu.TabIndex = 238;
            //
            // SoRunDaDungTu
            //
            this.SoRunDaDungTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.SoRunDaDungTu.Location = new System.Drawing.Point(844, 32);
            this.SoRunDaDungTu.Name = "SoRunDaDungTu";
            this.SoRunDaDungTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SoRunDaDungTu.Size = new System.Drawing.Size(67, 20);
            this.SoRunDaDungTu.TabIndex = 238;
            //
            // SoRunConLaiDen
            //
            this.SoRunConLaiDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.SoRunConLaiDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.SoRunConLaiDen.Location = new System.Drawing.Point(934, 53);
            this.SoRunConLaiDen.Name = "SoRunConLaiDen";
            this.SoRunConLaiDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SoRunConLaiDen.Size = new System.Drawing.Size(626, 20);
            this.SoRunConLaiDen.TabIndex = 238;
            //
            // SoRunDaDungDen
            //
            this.SoRunDaDungDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.SoRunDaDungDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.SoRunDaDungDen.Location = new System.Drawing.Point(934, 31);
            this.SoRunDaDungDen.Name = "SoRunDaDungDen";
            this.SoRunDaDungDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.SoRunDaDungDen.Size = new System.Drawing.Size(626, 20);
            this.SoRunDaDungDen.TabIndex = 238;
            //
            // TongSoRunDen
            //
            this.TongSoRunDen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                        | System.Windows.Forms.AnchorStyles.Right)));
            this.TongSoRunDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TongSoRunDen.Location = new System.Drawing.Point(934, 7);
            this.TongSoRunDen.Name = "TongSoRunDen";
            this.TongSoRunDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TongSoRunDen.Size = new System.Drawing.Size(626, 20);
            this.TongSoRunDen.TabIndex = 238;
            //
            // TongSoRunTu
            //
            this.TongSoRunTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TongSoRunTu.Location = new System.Drawing.Point(843, 8);
            this.TongSoRunTu.Name = "TongSoRunTu";
            this.TongSoRunTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TongSoRunTu.Size = new System.Drawing.Size(67, 20);
            this.TongSoRunTu.TabIndex = 238;
            //
            // BQDTTNEndDen
            //
            this.BQDTTNEndDen.EditValue = null;
            this.BQDTTNEndDen.Location = new System.Drawing.Point(687, 31);
            this.BQDTTNEndDen.Name = "BQDTTNEndDen";
            this.BQDTTNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BQDTTNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.BQDTTNEndDen.Size = new System.Drawing.Size(75, 20);
            this.BQDTTNEndDen.TabIndex = 237;
            //
            // BQDTNNEndDen
            //
            this.BQDTNNEndDen.EditValue = null;
            this.BQDTNNEndDen.Location = new System.Drawing.Point(687, 53);
            this.BQDTNNEndDen.Name = "BQDTNNEndDen";
            this.BQDTNNEndDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BQDTNNEndDen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.BQDTNNEndDen.Size = new System.Drawing.Size(75, 20);
            this.BQDTNNEndDen.TabIndex = 237;
            //
            // BQDTNNEndTu
            //
            this.BQDTNNEndTu.EditValue = null;
            this.BQDTNNEndTu.Location = new System.Drawing.Point(583, 53);
            this.BQDTNNEndTu.Name = "BQDTNNEndTu";
            this.BQDTNNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BQDTNNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.BQDTNNEndTu.Size = new System.Drawing.Size(74, 20);
            this.BQDTNNEndTu.TabIndex = 237;
            //
            // BQDTTNEndTu
            //
            this.BQDTTNEndTu.EditValue = null;
            this.BQDTTNEndTu.Location = new System.Drawing.Point(583, 30);
            this.BQDTTNEndTu.MenuManager = this.barManager1;
            this.BQDTTNEndTu.Name = "BQDTTNEndTu";
            this.BQDTTNEndTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BQDTTNEndTu.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.BQDTTNEndTu.Size = new System.Drawing.Size(73, 20);
            this.BQDTTNEndTu.TabIndex = 237;
            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(333, 79);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(150, 20);
            this.PhongBan.TabIndex = 10;
            //
            // NamSXDen
            //
            this.NamSXDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.NamSXDen.Location = new System.Drawing.Point(430, 32);
            this.NamSXDen.Name = "NamSXDen";
            this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.NamSXDen.Size = new System.Drawing.Size(55, 20);
            this.NamSXDen.TabIndex = 234;
            //
            // NamSXTu
            //
            this.NamSXTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.NamSXTu.Location = new System.Drawing.Point(333, 32);
            this.NamSXTu.MenuManager = this.barManager1;
            this.NamSXTu.Name = "NamSXTu";
            this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.NamSXTu.Size = new System.Drawing.Size(69, 20);
            this.NamSXTu.TabIndex = 235;
            //
            // plLabel11
            //
            this.plLabel11.Location = new System.Drawing.Point(663, 57);
            this.plLabel11.Name = "plLabel11";
            this.plLabel11.Size = new System.Drawing.Size(18, 13);
            this.plLabel11.TabIndex = 231;
            this.plLabel11.Text = "đến";

            //
            // plLabel17
            //
            this.plLabel17.Location = new System.Drawing.Point(914, 60);
            this.plLabel17.Name = "plLabel17";
            this.plLabel17.Size = new System.Drawing.Size(18, 13);
            this.plLabel17.TabIndex = 231;
            this.plLabel17.Text = "đến";

            //
            // plLabel16
            //
            this.plLabel16.Location = new System.Drawing.Point(914, 36);
            this.plLabel16.Name = "plLabel16";
            this.plLabel16.Size = new System.Drawing.Size(18, 13);
            this.plLabel16.TabIndex = 231;
            this.plLabel16.Text = "đến";

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

            //
            // plLabel9
            //
            this.plLabel9.Location = new System.Drawing.Point(663, 34);
            this.plLabel9.Name = "plLabel9";
            this.plLabel9.Size = new System.Drawing.Size(18, 13);
            this.plLabel9.TabIndex = 231;
            this.plLabel9.Text = "đến";

            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(407, 36);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(18, 13);
            this.plLabel3.TabIndex = 231;
            this.plLabel3.Text = "đến";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(267, 35);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(50, 13);
            this.plLabel2.TabIndex = 229;
            this.plLabel2.Text = "Năm SX từ";
            this.plLabel2.ToolTip = "Năm sản xuất chương trình (Câp 1)";

            //
            // plLabel10
            //
            this.plLabel10.Location = new System.Drawing.Point(496, 57);
            this.plLabel10.Name = "plLabel10";
            this.plLabel10.Size = new System.Drawing.Size(79, 13);
            this.plLabel10.TabIndex = 232;
            this.plLabel10.Text = "BQ DTNN End từ";
            this.plLabel10.ToolTip = "Bản quyền đối với đối tác nước ngoài End (Cấp 1)";

            //
            // plLabel8
            //
            this.plLabel8.Location = new System.Drawing.Point(495, 34);
            this.plLabel8.Name = "plLabel8";
            this.plLabel8.Size = new System.Drawing.Size(78, 13);
            this.plLabel8.TabIndex = 232;
            this.plLabel8.Text = "BQ DTTN End từ";
            this.plLabel8.ToolTip = "Bản quyền đối với đối tác trong nước End (Cấp 1)";

            //
            // plLabel14
            //
            this.plLabel14.Location = new System.Drawing.Point(768, 57);
            this.plLabel14.Name = "plLabel14";
            this.plLabel14.Size = new System.Drawing.Size(64, 13);
            this.plLabel14.TabIndex = 232;
            this.plLabel14.Text = "Số run còn lại";
            this.plLabel14.ToolTip = "Số run còn lại (Cấp 1)";

            //
            // plLabel13
            //
            this.plLabel13.Location = new System.Drawing.Point(768, 34);
            this.plLabel13.Name = "plLabel13";
            this.plLabel13.Size = new System.Drawing.Size(73, 13);
            this.plLabel13.TabIndex = 232;
            this.plLabel13.Text = "Số run đã dùng";
            this.plLabel13.ToolTip = "Số run đã dùng (Cấp 1)";

            //
            // plLabel12
            //
            this.plLabel12.Location = new System.Drawing.Point(768, 14);
            this.plLabel12.Name = "plLabel12";
            this.plLabel12.Size = new System.Drawing.Size(57, 13);
            this.plLabel12.TabIndex = 232;
            this.plLabel12.Text = "Tổng số run";
            this.plLabel12.ToolTip = "Tổng số run (Cấp 1)";

            //
            // plLabel7
            //
            this.plLabel7.Location = new System.Drawing.Point(496, 12);
            this.plLabel7.Name = "plLabel7";
            this.plLabel7.Size = new System.Drawing.Size(81, 13);
            this.plLabel7.TabIndex = 232;
            this.plLabel7.Text = "Bản quyền thuộc";
            this.plLabel7.ToolTip = "Bản quyền thuộc (Cấp 1)";

            //
            // label34
            //
            this.label34.Location = new System.Drawing.Point(267, 58);
            this.label34.Name = "label34";
            this.label34.Size = new System.Drawing.Size(60, 13);
            this.label34.TabIndex = 232;
            this.label34.Text = "ĐV cung cấp";
            this.label34.ToolTip = "Đơn vị cung cấp (Cấp 1)";

            //
            // BanQuyenThuoc
            //
            this.BanQuyenThuoc.DataSource = null;
            this.BanQuyenThuoc.DisplayField = null;
            this.BanQuyenThuoc.Location = new System.Drawing.Point(583, 8);
            this.BanQuyenThuoc.Name = "BanQuyenThuoc";
            this.BanQuyenThuoc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.BanQuyenThuoc.Size = new System.Drawing.Size(179, 20);
            this.BanQuyenThuoc.TabIndex = 227;
            this.BanQuyenThuoc.ValueField = null;
            //
            // DonViCungCap
            //
            this.DonViCungCap.DataSource = null;
            this.DonViCungCap.DisplayField = null;
            this.DonViCungCap.Location = new System.Drawing.Point(333, 55);
            this.DonViCungCap.Name = "DonViCungCap";
            this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.DonViCungCap.Size = new System.Drawing.Size(150, 20);
            this.DonViCungCap.TabIndex = 227;
            this.DonViCungCap.ValueField = null;
            //
            // Category
            //
            this.Category._DataSource = null;
            this.Category._GetField = null;
            this.Category.Location = new System.Drawing.Point(174, 54);
            this.Category.Name = "Category";
            this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.Category.Size = new System.Drawing.Size(87, 20);
            this.Category.TabIndex = 1;
            //
            // TenGoc
            //
            this.TenGoc._DataSource = null;
            this.TenGoc._GetField = null;
            this.TenGoc.Location = new System.Drawing.Point(47, 31);
            this.TenGoc.Name = "TenGoc";
            this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenGoc.Size = new System.Drawing.Size(214, 20);
            this.TenGoc.TabIndex = 1;
            //
            // NoiDung
            //
            this.NoiDung._DataSource = null;
            this.NoiDung._GetField = null;
            this.NoiDung.Location = new System.Drawing.Point(48, 8);
            this.NoiDung.Name = "NoiDung";
            this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.NoiDung.Size = new System.Drawing.Size(213, 20);
            this.NoiDung.TabIndex = 0;
            //
            // QuocGia
            //
            this.QuocGia.DataSource = null;
            this.QuocGia.DisplayField = null;
            this.QuocGia.Location = new System.Drawing.Point(333, 8);
            this.QuocGia.Name = "QuocGia";
            this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.QuocGia.Size = new System.Drawing.Size(152, 20);
            this.QuocGia.TabIndex = 220;
            this.QuocGia.ValueField = null;
            //
            // TietMuc
            //
            this.TietMuc.DataSource = null;
            this.TietMuc.DisplayField = null;
            this.TietMuc.Location = new System.Drawing.Point(48, 54);
            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(78, 20);
            this.TietMuc.TabIndex = 2;
            this.TietMuc.ValueField = null;
            //
            // plLabel18
            //
            this.plLabel18.Location = new System.Drawing.Point(133, 83);
            this.plLabel18.Name = "plLabel18";
            this.plLabel18.Size = new System.Drawing.Size(20, 13);
            this.plLabel18.TabIndex = 213;
            this.plLabel18.Text = "Đến";
            this.plLabel18.ToolTip = "Nước sản xuất";

            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(128, 57);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(45, 13);
            this.plLabel5.TabIndex = 213;
            this.plLabel5.Text = "Category";
            this.plLabel5.ToolTip = "Category (Cấp 1)";

            //
            // label10
            //
            this.label10.Location = new System.Drawing.Point(267, 12);
            this.label10.Name = "label10";
            this.label10.Size = new System.Drawing.Size(40, 13);
            this.label10.TabIndex = 213;
            this.label10.Text = "Nước SX";
            this.label10.ToolTip = "Nước sản xuất (Cấp 1)";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(266, 83);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(51, 13);
            this.plLabel1.TabIndex = 217;
            this.plLabel1.Text = "Phòng ban";
            this.plLabel1.ToolTip = "Phòng ban (Cấp 1)";

            //
            // plLabel23
            //
            this.plLabel23.Location = new System.Drawing.Point(768, 110);
            this.plLabel23.Name = "plLabel23";
            this.plLabel23.Size = new System.Drawing.Size(37, 13);
            this.plLabel23.TabIndex = 217;
            this.plLabel23.Text = "Tên tập";
            this.plLabel23.ToolTip = "Tên tập (Cấp 3)";

            //
            // label29
            //
            this.label29.Location = new System.Drawing.Point(495, 83);
            this.label29.Name = "label29";
            this.label29.Size = new System.Drawing.Size(52, 13);
            this.label29.TabIndex = 217;
            this.label29.Text = "Ngày nhập";
            this.label29.ToolTip = "Ngày nhập thông tin chương trình  (Cấp 1)";

            //
            // plLabel6
            //
            this.plLabel6.Location = new System.Drawing.Point(4, 34);
            this.plLabel6.Name = "plLabel6";
            this.plLabel6.Size = new System.Drawing.Size(38, 13);
            this.plLabel6.TabIndex = 218;
            this.plLabel6.Text = "Tên gốc";
            this.plLabel6.ToolTip = "Tên chương trình gốc (cấp 1)";

            //
            // label3
            //
            this.label3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.label3.Appearance.Options.UseFont = true;
            this.label3.Location = new System.Drawing.Point(3, 11);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(38, 13);
            this.label3.TabIndex = 218;
            this.label3.Text = "Tên CT";
            this.label3.ToolTip = "Tên chương trình (Cấp 1)";

            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(3, 83);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(39, 13);
            this.plLabel4.TabIndex = 219;
            this.plLabel4.Text = "Timeslot";
            this.plLabel4.ToolTip = "Timeslot (Cấp 1)";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(2, 57);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(40, 13);
            this.label5.TabIndex = 219;
            this.label5.Text = "Tiết mục";
            this.label5.ToolTip = "Tiết mục (Cấp 1)";

            //
            // 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";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Caption = "barButtonItem5";
            this.barButtonItem5.Id = 34;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // Col_PM_PostMaster
            //
            this.Col_PM_PostMaster.Caption = "Post/Master";
            this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
            this.Col_PM_PostMaster.Visible = true;
            this.Col_PM_PostMaster.Width = 70;
            //
            // Col_PM_ThanhLy
            //
            this.Col_PM_ThanhLy.Caption = "Thanh lý (Cấp 2)";
            this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
            this.Col_PM_ThanhLy.Visible = true;
            this.Col_PM_ThanhLy.Width = 92;
            //
            // Col_PM_LoaiLuu
            //
            this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
            this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
            this.Col_PM_LoaiLuu.Visible = true;
            this.Col_PM_LoaiLuu.Width = 67;
            //
            // Col_PM_TongTap
            //
            this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
            this.Col_PM_TongTap.Name = "Col_PM_TongTap";
            this.Col_PM_TongTap.Visible = true;
            this.Col_PM_TongTap.Width = 82;
            //
            // Col_PM_Ke
            //
            this.Col_PM_Ke.Caption = "Kệ";
            this.Col_PM_Ke.Name = "Col_PM_Ke";
            this.Col_PM_Ke.Visible = true;
            this.Col_PM_Ke.Width = 24;
            //
            // Col_PM_Ngan
            //
            this.Col_PM_Ngan.Caption = "Ngăn";
            this.Col_PM_Ngan.Name = "Col_PM_Ngan";
            this.Col_PM_Ngan.Visible = true;
            this.Col_PM_Ngan.Width = 37;
            //
            // Col_PM_Tang
            //
            this.Col_PM_Tang.Caption = "Tầng";
            this.Col_PM_Tang.Name = "Col_PM_Tang";
            this.Col_PM_Tang.Visible = true;
            this.Col_PM_Tang.Width = 36;
            //
            // Col_PM_PopUp
            //
            this.Col_PM_PopUp.Caption = "Pop Up";
            this.Col_PM_PopUp.Name = "Col_PM_PopUp";
            this.Col_PM_PopUp.Visible = true;
            this.Col_PM_PopUp.Width = 46;
            //
            // Col_PM_TTDinhKem
            //
            this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
            this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
            this.Col_PM_TTDinhKem.Visible = true;
            this.Col_PM_TTDinhKem.Width = 71;
            //
            // Col_PM_NgayNhapKho
            //
            this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
            this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
            this.Col_PM_NgayNhapKho.Visible = true;
            this.Col_PM_NgayNhapKho.Width = 84;
            //
            // Col_PM_DVDNgayDuyet
            //
            this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
            this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
            this.Col_PM_DVDNgayDuyet.Visible = true;
            this.Col_PM_DVDNgayDuyet.Width = 90;
            //
            // Col_PM_DVDNgayHoanTat
            //
            this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
            this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
            this.Col_PM_DVDNgayHoanTat.Visible = true;
            this.Col_PM_DVDNgayHoanTat.Width = 104;
            //
            // Col_PM_TTHD
            //
            this.Col_PM_TTHD.Caption = "Thông tin HD";
            this.Col_PM_TTHD.Name = "Col_PM_TTHD";
            this.Col_PM_TTHD.Visible = true;
            this.Col_PM_TTHD.Width = 74;
            //
            // Col_PM_ThoiLuongChung
            //
            this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
            this.Col_PM_ThoiLuongChung.Visible = true;
            this.Col_PM_ThoiLuongChung.Width = 94;
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(200, 185);
            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.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "Chương trình";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(828, 549);
            this.splitContainerControl1.SplitterPosition = 503;
            this.splitContainerControl1.TabIndex = 5;
            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.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(828, 503);
            this.gridControlMaster.TabIndex = 9;
            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.ThôngtinHD});
            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_PM_PostMaster,
            this.Col_PM_ThanhLy,
            this.Col_PM_LoaiLuu,
            this.Col_PM_TongTap,
            this.Col_PM_Ke,
            this.Col_PM_Ngan,
            this.Col_PM_Tang,
            this.Col_PM_PopUp,
            this.Col_PM_TTDinhKem,
            this.Col_PM_TraierPost,
            this.Col_PM_NgayNhapKho,
            this.Col_PM_DVDNgayDuyet,
            this.Col_PM_DVDNgayHoanTat,
            this.Col_PM_NoiDungDuyet,
            this.Col_PM_TTHD,
            this.Col_PM_ThoiLuongChung,
            this.Col_BM_ThanhLy,
            this.Col_BM_MaBang,
            this.Col_BM_TapSo,
            this.Col_BM_TenTap,
            this.Col_BM_SoBang,
            this.Col_BM_ThongSo,
            this.Col_BM_ThoiLuong,
            this.Col_BM_SoDKCBHD,
            this.Col_BM_NoiLuuTru});
            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.ViewCaption = "Danh sách biên mục (Cấp 3)";
            //
            // gridBandThongTinChinh
            //
            this.gridBandThongTinChinh.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandThongTinChinh.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseFont = true;
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseForeColor = true;
            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.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand5,
            this.gridBand4,
            this.gridBand3});
            this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
            this.gridBandThongTinChinh.Width = 2750;
            //
            // gridBand5
            //
            this.gridBand5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand5.AppearanceHeader.Options.UseFont = true;
            this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand5.Caption = "Biên mục (Cấp 3)";
            this.gridBand5.Columns.Add(this.Col_BM_TapSo);
            this.gridBand5.Columns.Add(this.Col_BM_TenTap);
            this.gridBand5.Columns.Add(this.Col_BM_SoBang);
            this.gridBand5.Columns.Add(this.Col_BM_MaBang);
            this.gridBand5.Columns.Add(this.Col_BM_ThoiLuong);
            this.gridBand5.Columns.Add(this.Col_BM_ThongSo);
            this.gridBand5.Columns.Add(this.Col_PM_ThanhLy);
            this.gridBand5.Name = "gridBand5";
            this.gridBand5.Width = 407;
            //
            // Col_BM_TapSo
            //
            this.Col_BM_TapSo.Caption = "Tập số";
            this.Col_BM_TapSo.Name = "Col_BM_TapSo";
            this.Col_BM_TapSo.Visible = true;
            this.Col_BM_TapSo.Width = 44;
            //
            // Col_BM_TenTap
            //
            this.Col_BM_TenTap.Caption = "Tên tập";
            this.Col_BM_TenTap.Name = "Col_BM_TenTap";
            this.Col_BM_TenTap.Visible = true;
            this.Col_BM_TenTap.Width = 49;
            //
            // Col_BM_SoBang
            //
            this.Col_BM_SoBang.Caption = "Số băng";
            this.Col_BM_SoBang.Name = "Col_BM_SoBang";
            this.Col_BM_SoBang.Visible = true;
            this.Col_BM_SoBang.Width = 51;
            //
            // Col_BM_MaBang
            //
            this.Col_BM_MaBang.Caption = "Mã băng";
            this.Col_BM_MaBang.Name = "Col_BM_MaBang";
            this.Col_BM_MaBang.Visible = true;
            this.Col_BM_MaBang.Width = 53;
            //
            // Col_BM_ThoiLuong
            //
            this.Col_BM_ThoiLuong.Caption = "Thời lượng";
            this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
            this.Col_BM_ThoiLuong.Visible = true;
            this.Col_BM_ThoiLuong.Width = 62;
            //
            // Col_BM_ThongSo
            //
            this.Col_BM_ThongSo.Caption = "Thông số";
            this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
            this.Col_BM_ThongSo.Visible = true;
            this.Col_BM_ThongSo.Width = 56;
            //
            // gridBand4
            //
            this.gridBand4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand4.AppearanceHeader.Options.UseFont = true;
            this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand4.Caption = "Post/Master (Cấp 2)";
            this.gridBand4.Columns.Add(this.Col_PM_PostMaster);
            this.gridBand4.Columns.Add(this.Col_PM_LoaiLuu);
            this.gridBand4.Columns.Add(this.Col_PM_NoiDungDuyet);
            this.gridBand4.Columns.Add(this.Col_PM_TongTap);
            this.gridBand4.Columns.Add(this.Col_PM_ThoiLuongChung);
            this.gridBand4.Columns.Add(this.Col_PM_PopUp);
            this.gridBand4.Columns.Add(this.Col_PM_TraierPost);
            this.gridBand4.Columns.Add(this.Col_PM_Ke);
            this.gridBand4.Columns.Add(this.Col_PM_Ngan);
            this.gridBand4.Columns.Add(this.Col_PM_Tang);
            this.gridBand4.Columns.Add(this.Col_PM_TTDinhKem);
            this.gridBand4.Columns.Add(this.Col_PM_DVDNgayDuyet);
            this.gridBand4.Columns.Add(this.Col_PM_DVDNgayHoanTat);
            this.gridBand4.Columns.Add(this.Col_BM_ThanhLy);
            this.gridBand4.Name = "gridBand4";
            this.gridBand4.Width = 964;
            //
            // Col_PM_NoiDungDuyet
            //
            this.Col_PM_NoiDungDuyet.Caption = "Nội dung duyệt";
            this.Col_PM_NoiDungDuyet.Name = "Col_PM_NoiDungDuyet";
            this.Col_PM_NoiDungDuyet.Visible = true;
            this.Col_PM_NoiDungDuyet.Width = 85;
            //
            // Col_PM_TraierPost
            //
            this.Col_PM_TraierPost.Caption = "Trailer Post";
            this.Col_PM_TraierPost.Name = "Col_PM_TraierPost";
            this.Col_PM_TraierPost.Visible = true;
            this.Col_PM_TraierPost.Width = 66;
            //
            // Col_BM_ThanhLy
            //
            this.Col_BM_ThanhLy.Caption = "Thanh lý (Cấp 3)";
            this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
            this.Col_BM_ThanhLy.Visible = true;
            this.Col_BM_ThanhLy.Width = 92;
            //
            // gridBand3
            //
            this.gridBand3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand3.AppearanceHeader.Options.UseFont = true;
            this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand3.Caption = "Chương trình (Cấp 1)";
            this.gridBand3.Columns.Add(this.Col_CT_MaCT);
            this.gridBand3.Columns.Add(this.Col_CT_NgayAWB);
            this.gridBand3.Columns.Add(this.Col_CT_NgayLap);
            this.gridBand3.Columns.Add(this.Col_CT_NguoiLap);
            this.gridBand3.Columns.Add(this.Col_CT_PhongBan);
            this.gridBand3.Columns.Add(this.Col_CT_Category);
            this.gridBand3.Columns.Add(this.Col_CT_NoiDung);
            this.gridBand3.Columns.Add(this.Col_CT_TenGoc);
            this.gridBand3.Columns.Add(this.Col_CT_TietMuc);
            this.gridBand3.Columns.Add(this.Col_CT_DaoDien);
            this.gridBand3.Columns.Add(this.Col_CT_DienVien);
            this.gridBand3.Columns.Add(this.Col_CT_TomTat);
            this.gridBand3.Columns.Add(this.Col_CT_DoiTuongKhanGia);
            this.gridBand3.Columns.Add(this.Col_CT_KHPL);
            this.gridBand3.Columns.Add(this.Col_CT_KHXK);
            this.gridBand3.Columns.Add(this.Col_CT_TinhTrangBang);
            this.gridBand3.Columns.Add(this.Col_CT_TuKhoa);
            this.gridBand3.Columns.Add(this.Col_CT_ThanhLy);
            this.gridBand3.Columns.Add(this.Col_CT_GhiChu);
            this.gridBand3.Columns.Add(this.Col_CT_Photos);
            this.gridBand3.Columns.Add(this.Col_CT_Ranking);
            this.gridBand3.Columns.Add(this.Col_CT_Script);
            this.gridBand3.Columns.Add(this.Col_CT_TrailerGoc);
            this.gridBand3.Name = "gridBand3";
            this.gridBand3.Width = 1379;
            //
            // 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_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_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_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ý (Cấp 1)";
            this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
            this.Col_CT_ThanhLy.Visible = true;
            this.Col_CT_ThanhLy.Width = 92;
            //
            // 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;
            //
            // gridBandNguonGoc
            //
            this.gridBandNguonGoc.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandNguonGoc.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandNguonGoc.AppearanceHeader.Options.UseFont = true;
            this.gridBandNguonGoc.AppearanceHeader.Options.UseForeColor = true;
            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 = 1174;
            //
            // gridBand1
            //
            this.gridBand1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand1.AppearanceHeader.Options.UseFont = true;
            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_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 = 444;
            //
            // 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.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand2.AppearanceHeader.Options.UseFont = true;
            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_PM_NgayNhapKho);
            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 = 730;
            //
            // 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.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandThongTinPhatSong.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseFont = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseForeColor = true;
            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;
            //
            // ThôngtinHD
            //
            this.ThôngtinHD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ThôngtinHD.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.ThôngtinHD.AppearanceHeader.Options.UseFont = true;
            this.ThôngtinHD.AppearanceHeader.Options.UseForeColor = true;
            this.ThôngtinHD.AppearanceHeader.Options.UseTextOptions = true;
            this.ThôngtinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.ThôngtinHD.Caption = "Thông tin HD";
            this.ThôngtinHD.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand7,
            this.gridBand6});
            this.ThôngtinHD.Name = "ThôngtinHD";
            this.ThôngtinHD.Width = 286;
            //
            // gridBand7
            //
            this.gridBand7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand7.AppearanceHeader.Options.UseFont = true;
            this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand7.Caption = "Biên mục (Cấp 3)";
            this.gridBand7.Columns.Add(this.Col_BM_SoDKCBHD);
            this.gridBand7.Columns.Add(this.Col_BM_NoiLuuTru);
            this.gridBand7.Name = "gridBand7";
            this.gridBand7.Width = 212;
            //
            // Col_BM_SoDKCBHD
            //
            this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD (Cấp 3)";
            this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
            this.Col_BM_SoDKCBHD.Visible = true;
            this.Col_BM_SoDKCBHD.Width = 110;
            //
            // Col_BM_NoiLuuTru
            //
            this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ (Cấp 3)";
            this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
            this.Col_BM_NoiLuuTru.Visible = true;
            this.Col_BM_NoiLuuTru.Width = 102;
            //
            // gridBand6
            //
            this.gridBand6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand6.AppearanceHeader.Options.UseFont = true;
            this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand6.Caption = "Post/Master (Cấp 2)";
            this.gridBand6.Columns.Add(this.Col_PM_TTHD);
            this.gridBand6.Name = "gridBand6";
            this.gridBand6.Width = 74;
            //
            // 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(828, 40);
            this.xtraTabControlDetail.TabIndex = 11;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            this.xtraTabControlDetail.Visible = false;
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(821, 11);
            this.xtraTabPageDetail.Text = "Post/Master";
            //
            // 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(821, 11);
            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.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)";
            //
            // barButtonItemThongKe
            //
            this.barButtonItemThongKe.Caption = "&Thống kê";
            this.barButtonItemThongKe.Id = 43;
            this.barButtonItemThongKe.Name = "barButtonItemThongKe";
            this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // frmBienMucSearchQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1028, 734);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanelSimple);
            this.Controls.Add(this.dockPanelAdvance);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmBienMucSearchQL";
            this.Text = "Tra cứu biên mục";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanelAdvance.ResumeLayout(false);
            this.dockPanel2_Container.ResumeLayout(false);
            this.dockPanelSimple.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.QuocGia.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.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            this.ResumeLayout(false);
        }
Exemplo n.º 24
0
        public static void LoadControlsLayOut(ref System.Windows.Forms.SplitContainer ctrs, string formName)
        {
            int       height    = 0;
            const int width     = 250;
            const int heightBox = 32;
            Control   ctlParent = ctrs.Panel1;

            try
            {
                string    ControlName = string.Empty;
                DataTable dt          = UIMessage.DBEngine.execReturnDataTable(string.Format("select * from tblFormLayout where FormName = '{0}' and (IsLayout is null or IsLayout =0)", formName));
                if (dt != null && dt.Rows.Count > 0)
                {
                    foreach (DataRow dr in dt.Rows)
                    {
                        ControlName = dr["ControlName"].ToString();
                        if (ctlParent.Controls.Find(ControlName, true).Length <= 0)
                        {
                            DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl()
                            {
                                Name = string.Format("lbl{0}", ControlName), Text = UIMessage.Get_Message(string.Format("lbl{0}", ControlName)), Location = new Point(10, height)
                            };
                            ctlParent.Controls.Add(lbl);
                            switch (dr["SystemType"].ToString())
                            {
                            case "ComboBox":
                                DevExpress.XtraEditors.LookUpEdit led = new DevExpress.XtraEditors.LookUpEdit()
                                {
                                    Name = string.Format("cbx{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(led);
                                break;

                            case "Datetime":
                            case "Date":
                                if (!ControlName.ToLower().Contains("time"))
                                {
                                    DevExpress.XtraEditors.DateEdit dtp = new DevExpress.XtraEditors.DateEdit()
                                    {
                                        Name = string.Format("dtp{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                    };
                                    ctlParent.Controls.Add(dtp);
                                }
                                else
                                {
                                    DevExpress.XtraEditors.TimeEdit tid = new DevExpress.XtraEditors.TimeEdit()
                                    {
                                        Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                    };
                                    ctlParent.Controls.Add(tid);
                                }
                                break;

                            case "Time":
                                DevExpress.XtraEditors.TimeEdit tid1 = new DevExpress.XtraEditors.TimeEdit()
                                {
                                    Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(tid1);
                                break;

                            case "CheckEdit":
                                DevExpress.XtraEditors.CheckEdit ckb = new DevExpress.XtraEditors.CheckEdit()
                                {
                                    Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(ckb);
                                break;

                            case "PictureEdit":
                                DevExpress.XtraEditors.PictureEdit pic = new DevExpress.XtraEditors.PictureEdit()
                                {
                                    Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(pic);
                                break;

                            default:
                                DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit()
                                {
                                    Name = string.Format("txt{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox
                                };
                                ctlParent.Controls.Add(txt);
                                break;
                            }
                            height += 25;
                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Helper.LogError(ex, ex.Message, "LoadControlsLayOut()");
            }
            LoadDesignedControls(ctrs, formName);
        }
Exemplo n.º 25
0
        //起始位置11、11 |128、8;size 337:21|
        //垂直增加33  
        private void frmSBTZ_Load(object sender, EventArgs e)
        {
            List<DicType> dicTypeList = new List<DicType>();
            if (sdxl != null)
            {
                gtList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_gt>("where LineCode='" + sdxl.LineCode + "'");
            }
            foreach (sd_gt sdgt in gtList)
            {
                dicTypeList.Add(new DicType(sdgt.gtCode, sdgt.gtCode));
            }
            //lable一个字符站12个宽度
            this.xtraTabControl1.TabPages.Clear();
            this.splitContainerControl1.Panel2.Controls.Clear();
            //lable起始位置
            int startlblw = 11;
            int startlblh = 11;
            //textbox起始位置
            int starttextw = 180;
            int starttexth = 8;
            int addh = 33;
            int pageNumber = 1;
            int nrows = 30;
            IList<sd_tsqyzlsx> sbsxList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<sd_tsqyzlsx>("where zldm='" + tsqyzl.zldm + "' and isuse='是' order by convert(int,norder)");
            int[] widthArr = new int[sbsxList.Count / nrows + 1];
            for (int i = 0; i < widthArr.Length; i++)
            {
                widthArr[i] = GetMaxLblWidth(i, sbsxList);
            }
            if (widthArr[0] == 0)
                widthArr[0] = 48;
            if (pageNumber == 1)
            {
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrpage" + pageNumber;
                XtraPage.Text = string.Format("特殊区域属性");
                this.xtraTabControl1.TabPages.Add(XtraPage);

                DevExpress.XtraEditors.LabelControl lblstart = new DevExpress.XtraEditors.LabelControl();
                lblstart.Name = "lblStart";
                lblstart.Text = "起始杆塔";
                lblstart.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueStart = new LookUpEdit();
                lkueStart.Name = "lkueStart";
                SetComboBoxData(lkueStart, "Value", "Key", "请选择", "起始杆塔", dicTypeList);

                lkueStart.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueStart.DataBindings.Add("EditValue", rowData, "gtbegin");

                XtraPage.Controls.Add(lblstart);
                XtraPage.Controls.Add(lkueStart);
                startlblh += 33;
                starttexth += 33;
                

                DevExpress.XtraEditors.LabelControl lblend = new DevExpress.XtraEditors.LabelControl();
                lblend.Name = "lblend";
                lblend.Text = "终止杆塔";
                lblend.Location = new Point(startlblw, startlblh);

                DevExpress.XtraEditors.LookUpEdit lkueEnd = new LookUpEdit();
                lkueEnd.Name = "lkueend";
                SetComboBoxData(lkueEnd, "Value", "Key", "请选择", "终止杆塔", dicTypeList);
                lkueEnd.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                lkueEnd.DataBindings.Add("EditValue", rowData, "gtend");

                XtraPage.Controls.Add(lblend);
                XtraPage.Controls.Add(lkueEnd);
                startlblh += 33;
                starttexth += 33;
                
            }

                if (sbsxList.Count > 0)
                {
                    
                    int i = 3;
                    foreach (sd_tsqyzlsx sbsx in sbsxList)
                    {
                        if (i > nrows || XtraPage == null)
                        {
                            pageNumber++;
                            XtraPage = new DevExpress.XtraTab.XtraTabPage();
                            XtraPage.Name = "xtrpage" + pageNumber;
                            XtraPage.Text = string.Format("特殊区域第{0}页", pageNumber);
                            this.xtraTabControl1.TabPages.Add(XtraPage);
                            XtraPage.AutoScroll = true;
                            //XtraPage.SizeChanged += new EventHandler(XtraPage_SizeChanged);
                        }

                        if (i > nrows)
                        {
                            i = 1;
                            startlblw = 11;
                            startlblh = 11;
                            starttextw = 180;
                            starttexth = 8;
                        }
                        
                        DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
                        lbl.Name = lbl + sbsx.sxcol;
                        lbl.Text = sbsx.sxname.Trim();
                        lbl.Location = new Point(startlblw, startlblh);

                        Control txtEdit = createControl(sbsx);
                        txtEdit.Name = sbsx.sxcol;
                        //txtEdit.DataBindings.Add("EditValue", rowData, sbsx.sxcol);
                        txtEdit.Size = new Size(337, 21);
                        //txtEdit.Location = new Point(starttextw, starttexth);
                        txtEdit.Location = new Point(widthArr[pageNumber - 1] + 40, starttexth);
                        
                        XtraPage.Controls.Add(lbl);
                        XtraPage.Controls.Add(txtEdit);
                        XtraPage.AutoScrollMinSize = new Size(txtEdit.Right + 10, txtEdit.Bottom + 10);
                        startlblh += 33;
                        starttexth += 33;
                        i++;
                    }
                    

                }
                XtraPage = new DevExpress.XtraTab.XtraTabPage();
                XtraPage.Name = "xtrPagePicture";
                XtraPage.Text = "特殊区域照片";
                this.xtraTabControl1.TabPages.Add(XtraPage);
                GroupBox grpbox = new GroupBox();
                grpbox.Location = new Point(0, 0);
                grpbox.Text = "照片";
                grpbox.Name = "grppicture";
                //grpbox.Dock = DockStyle.Top;
                grpbox.Dock = DockStyle.Fill;
                grpbox.Size = new Size(565, 386);
                XtraPage.Controls.Add(grpbox);

                pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
                pictureEdit1.Dock = DockStyle.Fill;
                pictureEdit1.Name = "pictureEdit1";
                grpbox.Controls.Add(pictureEdit1);
                pictureEdit1.EditValueChanged += new EventHandler(pictureEdit1_EditValueChanged);


                DevExpress.XtraEditors.SimpleButton btnOk = new DevExpress.XtraEditors.SimpleButton();
                btnOk.Name = "btnOk";
                btnOk.Text = "确定";
                btnOk.Location = new Point(357, 9);
                btnOk.Click += new EventHandler(btnOk_Click);
                btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                DevExpress.XtraEditors.SimpleButton btnCancel = new DevExpress.XtraEditors.SimpleButton();
                btnCancel.Name = "btnCancel";
                btnCancel.Text = "取消";
                btnCancel.Location = new Point(461, 9);
                btnCancel.Click += new EventHandler(btnCancel_Click);
                btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;
                this.splitContainerControl1.Panel2.Controls.Add(btnOk);
                this.splitContainerControl1.Panel2.Controls.Add(btnCancel);
            setImage();

        }
Exemplo n.º 26
0
 private void InitializeComponent()
 {
     DevExpress.XtraCharts.XYDiagram xyDiagram1 = new DevExpress.XtraCharts.XYDiagram();
     DevExpress.XtraCharts.Series    series1    = new DevExpress.XtraCharts.Series();
     DevExpress.XtraCharts.Series    series2    = new DevExpress.XtraCharts.Series();
     this.layoutControl1      = new DevExpress.XtraLayout.LayoutControl();
     this.chartControl1       = new DevExpress.XtraCharts.ChartControl();
     this.btn_Stats           = new DevExpress.XtraEditors.SimpleButton();
     this.clbx_disList        = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.btn_chartOutput     = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.cbx_prop            = new DevExpress.XtraEditors.ComboBoxEdit();
     this.layoutControlGroup1 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlGroup3 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem3  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem4  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem5  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem2  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlItem7  = new DevExpress.XtraLayout.LayoutControlItem();
     this.layoutControlGroup2 = new DevExpress.XtraLayout.LayoutControlGroup();
     this.layoutControlItem1  = new DevExpress.XtraLayout.LayoutControlItem();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).BeginInit();
     this.layoutControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbx_disList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_prop.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).BeginInit();
     this.SuspendLayout();
     //
     // layoutControl1
     //
     this.layoutControl1.Controls.Add(this.chartControl1);
     this.layoutControl1.Controls.Add(this.btn_Stats);
     this.layoutControl1.Controls.Add(this.clbx_disList);
     this.layoutControl1.Controls.Add(this.btn_chartOutput);
     this.layoutControl1.Controls.Add(this.labelControl1);
     this.layoutControl1.Controls.Add(this.cbx_prop);
     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(574, 357);
     this.layoutControl1.TabIndex = 0;
     this.layoutControl1.Text     = "layoutControl1";
     //
     // chartControl1
     //
     xyDiagram1.AxisX.VisibleInPanesSerializable = "-1";
     xyDiagram1.AxisY.VisibleInPanesSerializable = "-1";
     this.chartControl1.Diagram  = xyDiagram1;
     this.chartControl1.Location = new System.Drawing.Point(158, 25);
     this.chartControl1.Name     = "chartControl1";
     series1.Name = "Series 1";
     series2.Name = "Series 2";
     this.chartControl1.SeriesSerializable = new DevExpress.XtraCharts.Series[] {
         series1,
         series2
     };
     this.chartControl1.Size     = new System.Drawing.Size(411, 327);
     this.chartControl1.TabIndex = 12;
     //
     // btn_Stats
     //
     this.btn_Stats.Location        = new System.Drawing.Point(5, 304);
     this.btn_Stats.Name            = "btn_Stats";
     this.btn_Stats.Size            = new System.Drawing.Size(143, 22);
     this.btn_Stats.StyleController = this.layoutControl1;
     this.btn_Stats.TabIndex        = 11;
     this.btn_Stats.Text            = "生成统计";
     this.btn_Stats.Click          += new System.EventHandler(this.btn_Stats_Click);
     //
     // clbx_disList
     //
     this.clbx_disList.Location        = new System.Drawing.Point(5, 25);
     this.clbx_disList.Name            = "clbx_disList";
     this.clbx_disList.Size            = new System.Drawing.Size(143, 249);
     this.clbx_disList.StyleController = this.layoutControl1;
     this.clbx_disList.TabIndex        = 9;
     //
     // btn_chartOutput
     //
     this.btn_chartOutput.Location        = new System.Drawing.Point(5, 330);
     this.btn_chartOutput.Name            = "btn_chartOutput";
     this.btn_chartOutput.Size            = new System.Drawing.Size(143, 22);
     this.btn_chartOutput.StyleController = this.layoutControl1;
     this.btn_chartOutput.TabIndex        = 8;
     this.btn_chartOutput.Text            = "图表输出";
     //
     // labelControl1
     //
     this.labelControl1.Location        = new System.Drawing.Point(5, 278);
     this.labelControl1.Name            = "labelControl1";
     this.labelControl1.Size            = new System.Drawing.Size(60, 14);
     this.labelControl1.StyleController = this.layoutControl1;
     this.labelControl1.TabIndex        = 7;
     this.labelControl1.Text            = "属性字段:";
     //
     // cbx_prop
     //
     this.cbx_prop.Location = new System.Drawing.Point(69, 278);
     this.cbx_prop.Name     = "cbx_prop";
     this.cbx_prop.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.cbx_prop.Size            = new System.Drawing.Size(79, 22);
     this.cbx_prop.StyleController = this.layoutControl1;
     this.cbx_prop.TabIndex        = 6;
     //
     // layoutControlGroup1
     //
     this.layoutControlGroup1.CustomizationFormText       = "layoutControlGroup1";
     this.layoutControlGroup1.EnableIndentsWithoutBorders = DevExpress.Utils.DefaultBoolean.True;
     this.layoutControlGroup1.GroupBordersVisible         = false;
     this.layoutControlGroup1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlGroup3,
         this.layoutControlGroup2
     });
     this.layoutControlGroup1.Location    = new System.Drawing.Point(0, 0);
     this.layoutControlGroup1.Name        = "layoutControlGroup1";
     this.layoutControlGroup1.Padding     = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup1.Size        = new System.Drawing.Size(574, 357);
     this.layoutControlGroup1.Text        = "layoutControlGroup1";
     this.layoutControlGroup1.TextVisible = false;
     //
     // layoutControlGroup3
     //
     this.layoutControlGroup3.CustomizationFormText = "参数设置";
     this.layoutControlGroup3.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem3,
         this.layoutControlItem4,
         this.layoutControlItem5,
         this.layoutControlItem2,
         this.layoutControlItem7
     });
     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(153, 357);
     this.layoutControlGroup3.Text     = "参数设置";
     //
     // layoutControlItem3
     //
     this.layoutControlItem3.Control = this.cbx_prop;
     this.layoutControlItem3.CustomizationFormText = "layoutControlItem3";
     this.layoutControlItem3.Location = new System.Drawing.Point(64, 253);
     this.layoutControlItem3.Name     = "layoutControlItem3";
     this.layoutControlItem3.Size     = new System.Drawing.Size(83, 26);
     this.layoutControlItem3.Text     = "layoutControlItem3";
     this.layoutControlItem3.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem3.TextToControlDistance = 0;
     this.layoutControlItem3.TextVisible           = false;
     //
     // layoutControlItem4
     //
     this.layoutControlItem4.Control = this.labelControl1;
     this.layoutControlItem4.CustomizationFormText = "layoutControlItem4";
     this.layoutControlItem4.Location = new System.Drawing.Point(0, 253);
     this.layoutControlItem4.Name     = "layoutControlItem4";
     this.layoutControlItem4.Size     = new System.Drawing.Size(64, 26);
     this.layoutControlItem4.Text     = "layoutControlItem4";
     this.layoutControlItem4.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem4.TextToControlDistance = 0;
     this.layoutControlItem4.TextVisible           = false;
     //
     // layoutControlItem5
     //
     this.layoutControlItem5.Control = this.btn_chartOutput;
     this.layoutControlItem5.CustomizationFormText = "layoutControlItem5";
     this.layoutControlItem5.Location = new System.Drawing.Point(0, 305);
     this.layoutControlItem5.Name     = "layoutControlItem5";
     this.layoutControlItem5.Size     = new System.Drawing.Size(147, 26);
     this.layoutControlItem5.Text     = "layoutControlItem5";
     this.layoutControlItem5.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem5.TextToControlDistance = 0;
     this.layoutControlItem5.TextVisible           = false;
     //
     // layoutControlItem2
     //
     this.layoutControlItem2.Control = this.clbx_disList;
     this.layoutControlItem2.CustomizationFormText = "layoutControlItem2";
     this.layoutControlItem2.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem2.Name     = "layoutControlItem2";
     this.layoutControlItem2.Size     = new System.Drawing.Size(147, 253);
     this.layoutControlItem2.Text     = "layoutControlItem2";
     this.layoutControlItem2.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem2.TextToControlDistance = 0;
     this.layoutControlItem2.TextVisible           = false;
     //
     // layoutControlItem7
     //
     this.layoutControlItem7.Control = this.btn_Stats;
     this.layoutControlItem7.CustomizationFormText = "layoutControlItem7";
     this.layoutControlItem7.Location = new System.Drawing.Point(0, 279);
     this.layoutControlItem7.Name     = "layoutControlItem7";
     this.layoutControlItem7.Size     = new System.Drawing.Size(147, 26);
     this.layoutControlItem7.Text     = "layoutControlItem7";
     this.layoutControlItem7.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem7.TextToControlDistance = 0;
     this.layoutControlItem7.TextVisible           = false;
     //
     // layoutControlGroup2
     //
     this.layoutControlGroup2.CustomizationFormText = "柱状图";
     this.layoutControlGroup2.ExpandButtonMode      = DevExpress.Utils.Controls.ExpandButtonMode.Inverted;
     this.layoutControlGroup2.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
         this.layoutControlItem1
     });
     this.layoutControlGroup2.Location = new System.Drawing.Point(153, 0);
     this.layoutControlGroup2.Name     = "layoutControlGroup2";
     this.layoutControlGroup2.Padding  = new DevExpress.XtraLayout.Utils.Padding(0, 0, 0, 0);
     this.layoutControlGroup2.Size     = new System.Drawing.Size(421, 357);
     this.layoutControlGroup2.Text     = "柱状图";
     //
     // layoutControlItem1
     //
     this.layoutControlItem1.Control = this.chartControl1;
     this.layoutControlItem1.CustomizationFormText = "layoutControlItem1";
     this.layoutControlItem1.Location = new System.Drawing.Point(0, 0);
     this.layoutControlItem1.Name     = "layoutControlItem1";
     this.layoutControlItem1.Size     = new System.Drawing.Size(415, 331);
     this.layoutControlItem1.Text     = "layoutControlItem1";
     this.layoutControlItem1.TextSize = new System.Drawing.Size(0, 0);
     this.layoutControlItem1.TextToControlDistance = 0;
     this.layoutControlItem1.TextVisible           = false;
     //
     // UCEconomyStatsChartOutput2D
     //
     this.Controls.Add(this.layoutControl1);
     this.Name = "UCEconomyStatsChartOutput2D";
     this.Size = new System.Drawing.Size(574, 357);
     ((System.ComponentModel.ISupportInitialize)(this.layoutControl1)).EndInit();
     this.layoutControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(xyDiagram1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(series2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chartControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.clbx_disList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbx_prop.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlGroup2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutControlItem1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 27
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Logon));
     this.Cancel      = new DevExpress.XtraEditors.SimpleButton();
     this.ToolTip1    = new System.Windows.Forms.ToolTip(this.components);
     this.OK          = new DevExpress.XtraEditors.SimpleButton();
     this.Password    = new DevExpress.XtraEditors.TextEdit();
     this.Username    = new DevExpress.XtraEditors.TextEdit();
     this.label       = new DevExpress.XtraEditors.LabelControl();
     this.Label2      = new DevExpress.XtraEditors.LabelControl();
     this.Label1      = new DevExpress.XtraEditors.LabelControl();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Username.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // Cancel
     //
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor       = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location     = new System.Drawing.Point(204, 118);
     this.Cancel.Name         = "Cancel";
     this.Cancel.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size         = new System.Drawing.Size(68, 24);
     this.Cancel.TabIndex     = 10;
     this.Cancel.Text         = "Cancel";
     this.Cancel.Click       += new System.EventHandler(this.Cancel_Click);
     //
     // OK
     //
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor      = System.Windows.Forms.Cursors.Default;
     this.OK.Location    = new System.Drawing.Point(128, 118);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(68, 24);
     this.OK.TabIndex    = 9;
     this.OK.Text        = "OK";
     this.OK.Click      += new System.EventHandler(this.OK_Click);
     //
     // Password
     //
     this.Password.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.Password.Location = new System.Drawing.Point(88, 86);
     this.Password.Name     = "Password";
     this.Password.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.Password.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.Password.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.Password.Properties.Appearance.Options.UseBackColor = true;
     this.Password.Properties.Appearance.Options.UseFont      = true;
     this.Password.Properties.Appearance.Options.UseForeColor = true;
     this.Password.Properties.PasswordChar = '*';
     this.Password.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Password.Size     = new System.Drawing.Size(184, 19);
     this.Password.TabIndex = 8;
     //
     // Username
     //
     this.Username.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.Username.Location = new System.Drawing.Point(88, 52);
     this.Username.Name     = "Username";
     this.Username.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.Username.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.Username.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.Username.Properties.Appearance.Options.UseBackColor = true;
     this.Username.Properties.Appearance.Options.UseFont      = true;
     this.Username.Properties.Appearance.Options.UseForeColor = true;
     this.Username.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Username.Size        = new System.Drawing.Size(184, 19);
     this.Username.TabIndex    = 7;
     //
     // label
     //
     this.label.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.label.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.label.Appearance.Options.UseBackColor = true;
     this.label.Appearance.Options.UseFont      = true;
     this.label.Appearance.Options.UseForeColor = true;
     this.label.Cursor   = System.Windows.Forms.Cursors.Default;
     this.label.Location = new System.Drawing.Point(46, 15);
     this.label.Name     = "label";
     this.label.Size     = new System.Drawing.Size(149, 13);
     this.label.TabIndex = 13;
     this.label.Text     = "Enter user name and password:"******"Arial", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label2.Appearance.Options.UseBackColor = true;
     this.Label2.Appearance.Options.UseFont      = true;
     this.Label2.Appearance.Options.UseForeColor = true;
     this.Label2.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label2.Location = new System.Drawing.Point(24, 86);
     this.Label2.Name     = "Label2";
     this.Label2.Size     = new System.Drawing.Size(53, 14);
     this.Label2.TabIndex = 12;
     this.Label2.Text     = "Password:"******"Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label1.Appearance.Options.UseBackColor = true;
     this.Label1.Appearance.Options.UseFont      = true;
     this.Label1.Appearance.Options.UseForeColor = true;
     this.Label1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label1.Location = new System.Drawing.Point(24, 52);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(54, 13);
     this.Label1.TabIndex = 11;
     this.Label1.Text     = "User name:";
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(4, 4);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(32, 32);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox1.TabIndex = 14;
     this.pictureBox1.TabStop  = false;
     //
     // Logon
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.Cancel;
     this.ClientSize        = new System.Drawing.Size(278, 147);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.Password);
     this.Controls.Add(this.Username);
     this.Controls.Add(this.label);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.Cancel);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "Logon";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Mobius Logon";
     this.Load           += new System.EventHandler(this.Logon_Load);
     this.Activated      += new System.EventHandler(this.Logon_Activated);
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.Logon_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.Password.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Username.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 28
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserDataImportTextFile));
     this.Browse             = new DevExpress.XtraEditors.SimpleButton();
     this.FileName           = new DevExpress.XtraEditors.TextEdit();
     this.Label1             = new DevExpress.XtraEditors.LabelControl();
     this.groupBox1          = new System.Windows.Forms.GroupBox();
     this.SpaceDelim         = new DevExpress.XtraEditors.CheckEdit();
     this.TabDelim           = new DevExpress.XtraEditors.CheckEdit();
     this.SemiDelim          = new DevExpress.XtraEditors.CheckEdit();
     this.CommaDelim         = new DevExpress.XtraEditors.CheckEdit();
     this.HeaderLine         = new DevExpress.XtraEditors.CheckEdit();
     this.DeleteExistingData = new DevExpress.XtraEditors.CheckEdit();
     this.Cancel             = new DevExpress.XtraEditors.SimpleButton();
     this.OK                  = new DevExpress.XtraEditors.SimpleButton();
     this.label2              = new DevExpress.XtraEditors.LabelControl();
     this.label3              = new DevExpress.XtraEditors.LabelControl();
     this.MultDelimsAsSingle  = new DevExpress.XtraEditors.CheckEdit();
     this.ImportInBackground  = new DevExpress.XtraEditors.CheckEdit();
     this.CheckForFileUpdates = new DevExpress.XtraEditors.CheckEdit();
     this.Bitmaps16x16        = new System.Windows.Forms.ImageList(this.components);
     this.TextQualifier       = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SpaceDelim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TabDelim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SemiDelim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CommaDelim.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLine.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteExistingData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MultDelimsAsSingle.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImportInBackground.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CheckForFileUpdates.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TextQualifier.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Browse
     //
     this.Browse.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Browse.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Browse.Appearance.Options.UseFont      = true;
     this.Browse.Appearance.Options.UseForeColor = true;
     this.Browse.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Browse.Location    = new System.Drawing.Point(324, 76);
     this.Browse.Name        = "Browse";
     this.Browse.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Browse.Size        = new System.Drawing.Size(85, 22);
     this.Browse.TabIndex    = 32;
     this.Browse.Text        = "&Browse...";
     this.Browse.Click      += new System.EventHandler(this.Browse_Click);
     //
     // FileName
     //
     this.FileName.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.FileName.Location = new System.Drawing.Point(75, 78);
     this.FileName.Name     = "FileName";
     this.FileName.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.FileName.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FileName.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.FileName.Properties.Appearance.Options.UseBackColor = true;
     this.FileName.Properties.Appearance.Options.UseFont      = true;
     this.FileName.Properties.Appearance.Options.UseForeColor = true;
     this.FileName.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.FileName.Size        = new System.Drawing.Size(243, 20);
     this.FileName.TabIndex    = 31;
     this.FileName.Tag         = "Title";
     //
     // Label1
     //
     this.Label1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.Label1.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label1.Location = new System.Drawing.Point(11, 78);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(50, 13);
     this.Label1.TabIndex = 33;
     this.Label1.Text     = "File Name:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.SpaceDelim);
     this.groupBox1.Controls.Add(this.TabDelim);
     this.groupBox1.Controls.Add(this.SemiDelim);
     this.groupBox1.Controls.Add(this.CommaDelim);
     this.groupBox1.Location = new System.Drawing.Point(11, 107);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(174, 67);
     this.groupBox1.TabIndex = 34;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Delimiter";
     //
     // SpaceDelim
     //
     this.SpaceDelim.Location                   = new System.Drawing.Point(96, 41);
     this.SpaceDelim.Name                       = "SpaceDelim";
     this.SpaceDelim.Properties.AutoWidth       = true;
     this.SpaceDelim.Properties.Caption         = "Space";
     this.SpaceDelim.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.SpaceDelim.Properties.RadioGroupIndex = 1;
     this.SpaceDelim.Size                       = new System.Drawing.Size(51, 19);
     this.SpaceDelim.TabIndex                   = 3;
     this.SpaceDelim.TabStop                    = false;
     this.SpaceDelim.CheckedChanged            += new System.EventHandler(this.SpaceDelim_CheckedChanged);
     //
     // TabDelim
     //
     this.TabDelim.Location                   = new System.Drawing.Point(96, 19);
     this.TabDelim.Name                       = "TabDelim";
     this.TabDelim.Properties.AutoWidth       = true;
     this.TabDelim.Properties.Caption         = "Tab";
     this.TabDelim.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.TabDelim.Properties.RadioGroupIndex = 1;
     this.TabDelim.Size                       = new System.Drawing.Size(40, 19);
     this.TabDelim.TabIndex                   = 2;
     this.TabDelim.TabStop                    = false;
     //
     // SemiDelim
     //
     this.SemiDelim.Location                   = new System.Drawing.Point(10, 41);
     this.SemiDelim.Name                       = "SemiDelim";
     this.SemiDelim.Properties.AutoWidth       = true;
     this.SemiDelim.Properties.Caption         = "Semicolon";
     this.SemiDelim.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.SemiDelim.Properties.RadioGroupIndex = 1;
     this.SemiDelim.Size                       = new System.Drawing.Size(69, 19);
     this.SemiDelim.TabIndex                   = 1;
     this.SemiDelim.TabStop                    = false;
     //
     // CommaDelim
     //
     this.CommaDelim.EditValue                  = true;
     this.CommaDelim.Location                   = new System.Drawing.Point(10, 19);
     this.CommaDelim.Name                       = "CommaDelim";
     this.CommaDelim.Properties.AutoWidth       = true;
     this.CommaDelim.Properties.Caption         = "Comma";
     this.CommaDelim.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.CommaDelim.Properties.RadioGroupIndex = 1;
     this.CommaDelim.Size                       = new System.Drawing.Size(57, 19);
     this.CommaDelim.TabIndex                   = 0;
     //
     // HeaderLine
     //
     this.HeaderLine.EditValue            = true;
     this.HeaderLine.Location             = new System.Drawing.Point(17, 185);
     this.HeaderLine.Name                 = "HeaderLine";
     this.HeaderLine.Properties.AutoWidth = true;
     this.HeaderLine.Properties.Caption   = "First line of file contains column header labels";
     this.HeaderLine.Size                 = new System.Drawing.Size(238, 19);
     this.HeaderLine.TabIndex             = 35;
     //
     // DeleteExistingData
     //
     this.DeleteExistingData.Location             = new System.Drawing.Point(17, 209);
     this.DeleteExistingData.Name                 = "DeleteExistingData";
     this.DeleteExistingData.Properties.AutoWidth = true;
     this.DeleteExistingData.Properties.Caption   = "Delete existing data before importing this file";
     this.DeleteExistingData.Size                 = new System.Drawing.Size(237, 19);
     this.DeleteExistingData.TabIndex             = 36;
     //
     // Cancel
     //
     this.Cancel.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult                    = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location                        = new System.Drawing.Point(341, 290);
     this.Cancel.Name        = "Cancel";
     this.Cancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size        = new System.Drawing.Size(68, 23);
     this.Cancel.TabIndex    = 38;
     this.Cancel.Tag         = "Cancel";
     this.Cancel.Text        = "Cancel";
     this.Cancel.Click      += new System.EventHandler(this.Cancel_Click);
     //
     // OK
     //
     this.OK.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.OK.Location                        = new System.Drawing.Point(265, 290);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(68, 23);
     this.OK.TabIndex    = 37;
     this.OK.Tag         = "OK";
     this.OK.Text        = "OK";
     this.OK.Click      += new System.EventHandler(this.OK_Click);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(193, 152);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(67, 13);
     this.label2.TabIndex = 40;
     this.label2.Text     = "Text qualifier:";
     //
     // label3
     //
     this.label3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.label3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.label3.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.label3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.label3.Location     = new System.Drawing.Point(6, 5);
     this.label3.Name         = "label3";
     this.label3.Size         = new System.Drawing.Size(404, 60);
     this.label3.TabIndex     = 41;
     this.label3.Text         = resources.GetString("label3.Text");
     this.label3.Click       += new System.EventHandler(this.label3_Click);
     //
     // MultDelimsAsSingle
     //
     this.MultDelimsAsSingle.Location             = new System.Drawing.Point(193, 117);
     this.MultDelimsAsSingle.Name                 = "MultDelimsAsSingle";
     this.MultDelimsAsSingle.Properties.AutoWidth = true;
     this.MultDelimsAsSingle.Properties.Caption   = "Treat consecutive delimiters as one";
     this.MultDelimsAsSingle.Size                 = new System.Drawing.Size(191, 19);
     this.MultDelimsAsSingle.TabIndex             = 42;
     //
     // ImportInBackground
     //
     this.ImportInBackground.Location             = new System.Drawing.Point(17, 233);
     this.ImportInBackground.Name                 = "ImportInBackground";
     this.ImportInBackground.Properties.AutoWidth = true;
     this.ImportInBackground.Properties.Caption   = "Import in the background";
     this.ImportInBackground.Size                 = new System.Drawing.Size(143, 19);
     this.ImportInBackground.TabIndex             = 44;
     //
     // CheckForFileUpdates
     //
     this.CheckForFileUpdates.Location             = new System.Drawing.Point(17, 257);
     this.CheckForFileUpdates.Name                 = "CheckForFileUpdates";
     this.CheckForFileUpdates.Properties.AutoWidth = true;
     this.CheckForFileUpdates.Properties.Caption   = "Re-import this file in the future whenever it changes";
     this.CheckForFileUpdates.Size                 = new System.Drawing.Size(272, 19);
     this.CheckForFileUpdates.TabIndex             = 45;
     //
     // Bitmaps16x16
     //
     this.Bitmaps16x16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Bitmaps16x16.ImageStream")));
     this.Bitmaps16x16.TransparentColor = System.Drawing.Color.Cyan;
     this.Bitmaps16x16.Images.SetKeyName(0, "SharePoint.bmp");
     //
     // TextQualifier
     //
     this.TextQualifier.Location = new System.Drawing.Point(266, 151);
     this.TextQualifier.Name     = "TextQualifier";
     this.TextQualifier.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.TextQualifier.Properties.DropDownRows = 3;
     this.TextQualifier.Properties.Items.AddRange(new object[] {
         "\"",
         "\'",
         "None"
     });
     this.TextQualifier.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.TextQualifier.Size     = new System.Drawing.Size(107, 20);
     this.TextQualifier.TabIndex = 48;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl1.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelControl1.AutoSizeMode         = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location    = new System.Drawing.Point(0, 58);
     this.labelControl1.Name        = "labelControl1";
     this.labelControl1.Size        = new System.Drawing.Size(415, 13);
     this.labelControl1.TabIndex    = 53;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl2.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelControl2.AutoSizeMode         = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location    = new System.Drawing.Point(0, 277);
     this.labelControl2.Name        = "labelControl2";
     this.labelControl2.Size        = new System.Drawing.Size(415, 10);
     this.labelControl2.TabIndex    = 54;
     //
     // UserDataImportTextFile
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(413, 317);
     this.Controls.Add(this.CheckForFileUpdates);
     this.Controls.Add(this.ImportInBackground);
     this.Controls.Add(this.MultDelimsAsSingle);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.DeleteExistingData);
     this.Controls.Add(this.HeaderLine);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Browse);
     this.Controls.Add(this.FileName);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.TextQualifier);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "UserDataImportTextFile";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Import Text File";
     this.Activated      += new System.EventHandler(this.AnnotationImport_Activated);
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.AnnotationImport_Closing);
     this.VisibleChanged += new System.EventHandler(this.UserDataImport_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SpaceDelim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TabDelim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SemiDelim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CommaDelim.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLine.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteExistingData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MultDelimsAsSingle.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImportInBackground.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CheckForFileUpdates.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TextQualifier.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.OK            = new DevExpress.XtraEditors.SimpleButton();
     this.Cancel        = new DevExpress.XtraEditors.SimpleButton();
     this.label1        = new DevExpress.XtraEditors.LabelControl();
     this.label2        = new DevExpress.XtraEditors.LabelControl();
     this.RemoveLink    = new DevExpress.XtraEditors.SimpleButton();
     this.Address       = new DevExpress.XtraEditors.TextEdit();
     this.DisplayText   = new DevExpress.XtraEditors.MemoEdit();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.Address.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DisplayText.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // OK
     //
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor       = System.Windows.Forms.Cursors.Default;
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location     = new System.Drawing.Point(292, 88);
     this.OK.Name         = "OK";
     this.OK.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.OK.ShowToolTips = false;
     this.OK.Size         = new System.Drawing.Size(68, 23);
     this.OK.TabIndex     = 37;
     this.OK.Text         = "OK";
     this.OK.Click       += new System.EventHandler(this.OK_Click);
     //
     // Cancel
     //
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor       = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location     = new System.Drawing.Point(372, 88);
     this.Cancel.Name         = "Cancel";
     this.Cancel.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size         = new System.Drawing.Size(68, 23);
     this.Cancel.TabIndex     = 36;
     this.Cancel.Text         = "Cancel";
     this.Cancel.Click       += new System.EventHandler(this.Cancel_Click);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(8, 10);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(75, 13);
     this.label1.TabIndex = 38;
     this.label1.Text     = "Text to display:";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(38, 51);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 39;
     this.label2.Text     = "Address:";
     //
     // RemoveLink
     //
     this.RemoveLink.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.RemoveLink.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.RemoveLink.Appearance.Options.UseFont      = true;
     this.RemoveLink.Appearance.Options.UseForeColor = true;
     this.RemoveLink.Cursor      = System.Windows.Forms.Cursors.Default;
     this.RemoveLink.Location    = new System.Drawing.Point(354, 49);
     this.RemoveLink.Name        = "RemoveLink";
     this.RemoveLink.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.RemoveLink.Size        = new System.Drawing.Size(86, 20);
     this.RemoveLink.TabIndex    = 40;
     this.RemoveLink.Text        = "Remove Link";
     this.RemoveLink.Click      += new System.EventHandler(this.RemoveLink_Click);
     //
     // Address
     //
     this.Address.EditValue = "";
     this.Address.Location  = new System.Drawing.Point(88, 49);
     this.Address.Name      = "Address";
     this.Address.Size      = new System.Drawing.Size(254, 20);
     this.Address.TabIndex  = 42;
     //
     // DisplayText
     //
     this.DisplayText.Location = new System.Drawing.Point(88, 9);
     this.DisplayText.Name     = "DisplayText";
     this.DisplayText.Size     = new System.Drawing.Size(254, 33);
     this.DisplayText.TabIndex = 44;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineVisible  = true;
     this.labelControl1.Location     = new System.Drawing.Point(1, 73);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(443, 10);
     this.labelControl1.TabIndex     = 45;
     //
     // EditHyperlink
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.Cancel;
     this.ClientSize        = new System.Drawing.Size(446, 117);
     this.Controls.Add(this.Address);
     this.Controls.Add(this.RemoveLink);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.DisplayText);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "EditHyperlink";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit Hyperlink";
     this.Activated      += new System.EventHandler(this.EditHyperlink_Activated);
     ((System.ComponentModel.ISupportInitialize)(this.Address.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DisplayText.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 30
0
 private void AddLable(int startlblw, string lblname, string lbltext, ref int startlblh, Control Parent)
 {
     DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
     lbl.Name = lblname;
     lbl.Text = lbltext;
     lbl.Location = new Point(startlblw, startlblh);
     Parent.Controls.Add(lbl);
     startlblh += 33;
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmKeHoachLPSQL));
            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
            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.barButtonItemViewDetail = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCopy = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemAddNote = 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.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemOpenNote = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDeleteNote = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemRefresh = new DevExpress.XtraBars.BarButtonItem();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.colKenhPhat = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colMaKeHoach = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colTenKeHoach = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColNam = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colNgayLap = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colNguoiLap = new DevExpress.XtraGrid.Columns.GridColumn();
            this.ColPhongBan = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colCongty = new DevExpress.XtraGrid.Columns.GridColumn();
            this.colGhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridControlNote = new DevExpress.XtraGrid.GridControl();
            this.gridViewNote = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.col_N_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.NguoiLap = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NgayLap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.TenKeHoach = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.MaKeHoach = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.kenhPhat = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
            this.popupMenuNote = new DevExpress.XtraBars.PopupMenu(this.components);
            this.ColLoaiKenh = 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.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlNote)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewNote)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenKeHoach.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaKeHoach.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.kenhPhat.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuNote)).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.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.barButtonItemCopy,
            this.barButtonItemAddNote,
            this.barButtonItemOpenNote,
            this.barButtonItemDeleteNote,
            this.barButtonItemRefresh,
            this.barButtonItemViewDetail});
            this.barManager1.MaxItemId = 44;
            //
            // 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(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm", true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemViewDetail),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCopy),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNote, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint),
            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 = "X&em";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemViewDetail
            //
            this.barButtonItemViewDetail.Caption = "Xem ch&i tiết";
            this.barButtonItemViewDetail.Id = 43;
            this.barButtonItemViewDetail.Name = "barButtonItemViewDetail";
            this.barButtonItemViewDetail.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemViewDetail.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemViewDetail_ItemClick);
            //
            // 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;
            //
            // barButtonItemCopy
            //
            this.barButtonItemCopy.Caption = "S&ao chép";
            this.barButtonItemCopy.Id = 38;
            this.barButtonItemCopy.Name = "barButtonItemCopy";
            this.barButtonItemCopy.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemCopy_ItemClick);
            //
            // barButtonItemAddNote
            //
            this.barButtonItemAddNote.Caption = "Thêm &note";
            this.barButtonItemAddNote.Id = 39;
            this.barButtonItemAddNote.Name = "barButtonItemAddNote";
            this.barButtonItemAddNote.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNote_ItemClick);
            //
            // 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;
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đón&g";
            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(1187, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 497);
            this.barDockControlBottom.Size = new System.Drawing.Size(1187, 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, 473);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1187, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 473);
            //
            // 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";
            //
            // barButtonItemOpenNote
            //
            this.barButtonItemOpenNote.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.barButtonItemOpenNote.Appearance.Options.UseFont = true;
            this.barButtonItemOpenNote.Caption = "&Mở note";
            this.barButtonItemOpenNote.Id = 40;
            this.barButtonItemOpenNote.Name = "barButtonItemOpenNote";
            this.barButtonItemOpenNote.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemOpenNote_ItemClick);
            //
            // barButtonItemDeleteNote
            //
            this.barButtonItemDeleteNote.Caption = "Xóa not&e";
            this.barButtonItemDeleteNote.Id = 41;
            this.barButtonItemDeleteNote.Name = "barButtonItemDeleteNote";
            this.barButtonItemDeleteNote.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemDeleteNote_ItemClick);
            //
            // barButtonItemRefresh
            //
            this.barButtonItemRefresh.Caption = "&Làm mới";
            this.barButtonItemRefresh.Id = 42;
            this.barButtonItemRefresh.Name = "barButtonItemRefresh";
            this.barButtonItemRefresh.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemRefresh_ItemClick);
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.FixedPanel = DevExpress.XtraEditors.SplitFixedPanel.Panel2;
            this.splitContainerControl1.Location = new System.Drawing.Point(0, 79);
            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.gridControlNote);
            this.splitContainerControl1.Panel2.ShowCaption = true;
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(1187, 418);
            this.splitContainerControl1.SplitterPosition = 368;
            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;
            gridLevelNode1.RelationName = "Level1";
            this.gridControlMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode1});
            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(813, 418);
            this.gridControlMaster.TabIndex = 0;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.FooterPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            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.colKenhPhat,
            this.colMaKeHoach,
            this.colTenKeHoach,
            this.ColNam,
            this.colNgayLap,
            this.colNguoiLap,
            this.ColPhongBan,
            this.colCongty,
            this.colGhiChu,
            this.ColLoaiKenh});
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupCount = 2;
            this.gridViewMaster.GroupPanelText = "Di chuyển tiêu đề vào đây để gom nhóm theo cột tiêu đề";
            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.ShowFooter = true;
            this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColLoaiKenh, DevExpress.Data.ColumnSortOrder.Ascending),
            new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colKenhPhat, DevExpress.Data.ColumnSortOrder.Ascending)});
            this.gridViewMaster.ViewCaption = "KẾ HOẠCH PHÁT SÓNG";
            //
            // colKenhPhat
            //
            this.colKenhPhat.Caption = "Kênh phát";
            this.colKenhPhat.Name = "colKenhPhat";
            this.colKenhPhat.OptionsColumn.AllowEdit = false;
            this.colKenhPhat.OptionsColumn.AllowFocus = false;
            this.colKenhPhat.OptionsColumn.ReadOnly = true;
            this.colKenhPhat.Visible = true;
            this.colKenhPhat.VisibleIndex = 0;
            this.colKenhPhat.Width = 74;
            //
            // colMaKeHoach
            //
            this.colMaKeHoach.Caption = "Mã kế hoạch";
            this.colMaKeHoach.Name = "colMaKeHoach";
            this.colMaKeHoach.OptionsColumn.AllowEdit = false;
            this.colMaKeHoach.OptionsColumn.AllowFocus = false;
            this.colMaKeHoach.OptionsColumn.ReadOnly = true;
            this.colMaKeHoach.Visible = true;
            this.colMaKeHoach.VisibleIndex = 1;
            this.colMaKeHoach.Width = 72;
            //
            // colTenKeHoach
            //
            this.colTenKeHoach.Caption = "Tên kế hoạch";
            this.colTenKeHoach.Name = "colTenKeHoach";
            this.colTenKeHoach.OptionsColumn.AllowEdit = false;
            this.colTenKeHoach.OptionsColumn.AllowFocus = false;
            this.colTenKeHoach.OptionsColumn.AllowMove = false;
            this.colTenKeHoach.OptionsColumn.ReadOnly = true;
            this.colTenKeHoach.Visible = true;
            this.colTenKeHoach.VisibleIndex = 2;
            this.colTenKeHoach.Width = 76;
            //
            // ColNam
            //
            this.ColNam.Caption = "Năm";
            this.ColNam.Name = "ColNam";
            this.ColNam.Visible = true;
            this.ColNam.VisibleIndex = 3;
            this.ColNam.Width = 33;
            //
            // colNgayLap
            //
            this.colNgayLap.Caption = "Ngày lập";
            this.colNgayLap.Name = "colNgayLap";
            this.colNgayLap.Visible = true;
            this.colNgayLap.VisibleIndex = 4;
            this.colNgayLap.Width = 54;
            //
            // colNguoiLap
            //
            this.colNguoiLap.Caption = "Người lập";
            this.colNguoiLap.Name = "colNguoiLap";
            this.colNguoiLap.OptionsColumn.AllowEdit = false;
            this.colNguoiLap.OptionsColumn.AllowFocus = false;
            this.colNguoiLap.OptionsColumn.ReadOnly = true;
            this.colNguoiLap.Visible = true;
            this.colNguoiLap.VisibleIndex = 5;
            this.colNguoiLap.Width = 57;
            //
            // ColPhongBan
            //
            this.ColPhongBan.Caption = "Phòng ban";
            this.ColPhongBan.Name = "ColPhongBan";
            this.ColPhongBan.Visible = true;
            this.ColPhongBan.VisibleIndex = 6;
            this.ColPhongBan.Width = 63;
            //
            // colCongty
            //
            this.colCongty.Caption = "Công ty";
            this.colCongty.Name = "colCongty";
            this.colCongty.Visible = true;
            this.colCongty.VisibleIndex = 7;
            this.colCongty.Width = 50;
            //
            // colGhiChu
            //
            this.colGhiChu.Caption = "Ghi chú";
            this.colGhiChu.Name = "colGhiChu";
            this.colGhiChu.Visible = true;
            this.colGhiChu.VisibleIndex = 8;
            this.colGhiChu.Width = 47;
            //
            // gridControlNote
            //
            this.gridControlNote.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNote.BackgroundImage")));
            this.gridControlNote.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlNote.Dock = System.Windows.Forms.DockStyle.Fill;
            gridLevelNode2.RelationName = "Level1";
            this.gridControlNote.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
            gridLevelNode2});
            this.gridControlNote.Location = new System.Drawing.Point(0, 0);
            this.gridControlNote.MainView = this.gridViewNote;
            this.gridControlNote.Name = "gridControlNote";
            this.gridControlNote.Size = new System.Drawing.Size(368, 418);
            this.gridControlNote.TabIndex = 1;
            this.gridControlNote.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewNote});
            //
            // gridViewNote
            //
            this.gridViewNote.Appearance.FooterPanel.Options.UseTextOptions = true;
            this.gridViewNote.Appearance.FooterPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
            this.gridViewNote.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewNote.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewNote.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
            this.col_N_NoiDung});
            this.gridViewNote.GridControl = this.gridControlNote;
            this.gridViewNote.GroupPanelText = "Di chuyển tiêu đề vào đây để gom nhóm theo cột tiêu đề";
            this.gridViewNote.IndicatorWidth = 40;
            this.gridViewNote.Name = "gridViewNote";
            this.gridViewNote.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewNote.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewNote.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewNote.OptionsPrint.UsePrintStyles = true;
            this.gridViewNote.OptionsSelection.MultiSelect = true;
            this.gridViewNote.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewNote.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewNote.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewNote.OptionsView.RowAutoHeight = true;
            this.gridViewNote.OptionsView.ShowColumnHeaders = false;
            this.gridViewNote.OptionsView.ShowGroupedColumns = true;
            this.gridViewNote.OptionsView.ShowGroupPanel = false;
            this.gridViewNote.OptionsView.ShowIndicator = false;
            this.gridViewNote.OptionsView.ShowViewCaption = true;
            this.gridViewNote.ViewCaption = "NOTES";
            this.gridViewNote.RowClick += new DevExpress.XtraGrid.Views.Grid.RowClickEventHandler(this.gridViewNote_RowClick);
            this.gridViewNote.MouseDown += new System.Windows.Forms.MouseEventHandler(this.gridViewNote_MouseDown);
            //
            // col_N_NoiDung
            //
            this.col_N_NoiDung.Caption = "Nội dung";
            this.col_N_NoiDung.Name = "col_N_NoiDung";
            this.col_N_NoiDung.Visible = true;
            this.col_N_NoiDung.VisibleIndex = 0;
            this.col_N_NoiDung.Width = 20;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Location = new System.Drawing.Point(1104, 33);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(20, 13);
            this.xtraTabControlDetail.TabIndex = 0;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            this.xtraTabControlDetail.Visible = false;
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(13, 0);
            this.xtraTabPageDetail.Text = "Chi tiết";
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.xtraTabControlDetail);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.NguoiLap);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NgayLap);
            this.popupControlContainerFilter.Controls.Add(this.TenKeHoach);
            this.popupControlContainerFilter.Controls.Add(this.MaKeHoach);
            this.popupControlContainerFilter.Controls.Add(this.kenhPhat);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 24);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(1187, 55);
            this.popupControlContainerFilter.TabIndex = 0;
            this.popupControlContainerFilter.Visible = false;
            //
            // plLabel5
            //
            this.plLabel5.Location = new System.Drawing.Point(522, 9);
            this.plLabel5.Name = "plLabel5";
            this.plLabel5.Size = new System.Drawing.Size(45, 13);
            this.plLabel5.TabIndex = 199;
            this.plLabel5.Text = "Người lập";

            //
            // NguoiLap
            //
            this.NguoiLap.DataSource = null;
            this.NguoiLap.DisplayField = null;
            this.NguoiLap.Location = new System.Drawing.Point(584, 6);
            this.NguoiLap.Name = "NguoiLap";
            this.NguoiLap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.NguoiLap.Size = new System.Drawing.Size(140, 20);
            this.NguoiLap.TabIndex = 198;
            this.NguoiLap.ValueField = null;
            //
            // plLabel4
            //
            this.plLabel4.Location = new System.Drawing.Point(743, 10);
            this.plLabel4.Name = "plLabel4";
            this.plLabel4.Size = new System.Drawing.Size(51, 13);
            this.plLabel4.TabIndex = 197;
            this.plLabel4.Text = "Phòng ban";

            //
            // PhongBan
            //
            this.PhongBan.Location = new System.Drawing.Point(800, 3);
            this.PhongBan.Name = "PhongBan";
            this.PhongBan.Size = new System.Drawing.Size(150, 20);
            this.PhongBan.TabIndex = 196;
            //
            // NgayLap
            //
            this.NgayLap.Caption = "Từ ngày 25/07/2012 đến ngày 01/08/2012";
            this.NgayLap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayLap.FirstFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
            this.NgayLap.FirstTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
            this.NgayLap.FromDate = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
            this.NgayLap.Location = new System.Drawing.Point(374, 29);
            this.NgayLap.Name = "NgayLap";
            this.NgayLap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.NgayLap.SecondFrom = new System.DateTime(2012, 7, 25, 9, 3, 40, 103);
            this.NgayLap.SecondTo = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
            this.NgayLap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.NgayLap.Size = new System.Drawing.Size(285, 20);
            this.NgayLap.TabIndex = 195;
            this.NgayLap.ToDate = new System.DateTime(2012, 8, 1, 9, 3, 40, 103);
            this.NgayLap.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)));
            //
            // TenKeHoach
            //
            this.TenKeHoach._DataSource = null;
            this.TenKeHoach._GetField = null;
            this.TenKeHoach.Location = new System.Drawing.Point(87, 26);
            this.TenKeHoach.Name = "TenKeHoach";
            this.TenKeHoach.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
            this.TenKeHoach.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.TenKeHoach.Size = new System.Drawing.Size(206, 20);
            this.TenKeHoach.TabIndex = 194;
            //
            // MaKeHoach
            //
            this.MaKeHoach._DataSource = null;
            this.MaKeHoach._GetField = null;
            this.MaKeHoach.Location = new System.Drawing.Point(88, 3);
            this.MaKeHoach.MenuManager = this.barManager1;
            this.MaKeHoach.Name = "MaKeHoach";
            this.MaKeHoach.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)});
            this.MaKeHoach.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
            this.MaKeHoach.Size = new System.Drawing.Size(206, 20);
            this.MaKeHoach.TabIndex = 194;
            //
            // kenhPhat
            //
            this.kenhPhat.DataSource = null;
            this.kenhPhat.DisplayField = null;
            this.kenhPhat.Location = new System.Drawing.Point(374, 3);
            this.kenhPhat.Name = "kenhPhat";
            this.kenhPhat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.kenhPhat.Size = new System.Drawing.Size(140, 20);
            this.kenhPhat.TabIndex = 193;
            this.kenhPhat.ValueField = null;
            //
            // plLabel3
            //
            this.plLabel3.Location = new System.Drawing.Point(319, 32);
            this.plLabel3.Name = "plLabel3";
            this.plLabel3.Size = new System.Drawing.Size(42, 13);
            this.plLabel3.TabIndex = 192;
            this.plLabel3.Text = "Ngày lập";

            //
            // label5
            //
            this.label5.Location = new System.Drawing.Point(319, 6);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(49, 13);
            this.label5.TabIndex = 192;
            this.label5.Text = "Kênh phát";

            //
            // plLabel1
            //
            this.plLabel1.Location = new System.Drawing.Point(12, 6);
            this.plLabel1.Name = "plLabel1";
            this.plLabel1.Size = new System.Drawing.Size(60, 13);
            this.plLabel1.TabIndex = 188;
            this.plLabel1.Text = "Mã kế hoạch";

            //
            // plLabel2
            //
            this.plLabel2.Location = new System.Drawing.Point(12, 29);
            this.plLabel2.Name = "plLabel2";
            this.plLabel2.Size = new System.Drawing.Size(64, 13);
            this.plLabel2.TabIndex = 188;
            this.plLabel2.Text = "Tên kế hoạch";

            //
            // 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;
            //
            // popupMenuNote
            //
            this.popupMenuNote.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemOpenNote),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNote),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDeleteNote),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRefresh)});
            this.popupMenuNote.Manager = this.barManager1;
            this.popupMenuNote.Name = "popupMenuNote";
            //
            // ColLoaiKenh
            //
            this.ColLoaiKenh.Caption = "Loại kênh";
            this.ColLoaiKenh.Name = "ColLoaiKenh";
            //
            // frmKeHoachLPSQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1187, 497);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.popupControlContainerFilter);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmKeHoachLPSQL";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Quản lý kế hoạch phát sóng";
            this.Load += new System.EventHandler(this.frmLichPhatSongQL_Load);
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).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.gridControlNote)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewNote)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.NguoiLap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenKeHoach.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.MaKeHoach.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.kenhPhat.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuNote)).EndInit();
            this.ResumeLayout(false);
        }
Exemplo n.º 32
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SetupExcel));
     this.Browse                    = new DevExpress.XtraEditors.SimpleButton();
     this.FileName                  = new DevExpress.XtraEditors.TextEdit();
     this.DuplicateKeyValues        = new DevExpress.XtraEditors.CheckEdit();
     this.FixedHeightStructs        = new DevExpress.XtraEditors.CheckEdit();
     this.QualifiedNumberFormatting = new System.Windows.Forms.GroupBox();
     this.QnfSplitOptions           = new Mobius.ClientComponents.QnfSplitControl();
     this.Check1                    = new DevExpress.XtraEditors.CheckEdit();
     this.Label3                    = new DevExpress.XtraEditors.LabelControl();
     this.Cancel                    = new DevExpress.XtraEditors.SimpleButton();
     this.OK = new DevExpress.XtraEditors.SimpleButton();
     this.InsightStructure          = new DevExpress.XtraEditors.CheckEdit();
     this.Label1                    = new DevExpress.XtraEditors.LabelControl();
     this.label4                    = new DevExpress.XtraEditors.LabelControl();
     this.ExportInBackground        = new DevExpress.XtraEditors.CheckEdit();
     this.Bitmaps16x16              = new System.Windows.Forms.ImageList(this.components);
     this.HeaderLines               = new DevExpress.XtraEditors.ComboBoxEdit();
     this.labelControl1             = new DevExpress.XtraEditors.LabelControl();
     this.groupBox1                 = new System.Windows.Forms.GroupBox();
     this.labelControl2             = new DevExpress.XtraEditors.LabelControl();
     this.MetafileStructure         = new DevExpress.XtraEditors.CheckEdit();
     this.SaveAsDefaultFolderOption = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DuplicateKeyValues.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedHeightStructs.Properties)).BeginInit();
     this.QualifiedNumberFormatting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Check1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.InsightStructure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExportInBackground.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLines.Properties)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MetafileStructure.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SaveAsDefaultFolderOption.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Browse
     //
     this.Browse.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.Browse.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Browse.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Browse.Appearance.Options.UseFont      = true;
     this.Browse.Appearance.Options.UseForeColor = true;
     this.Browse.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Browse.Location                        = new System.Drawing.Point(297, 5);
     this.Browse.Name        = "Browse";
     this.Browse.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Browse.Size        = new System.Drawing.Size(69, 22);
     this.Browse.TabIndex    = 29;
     this.Browse.Text        = "&Browse...";
     this.Browse.Click      += new System.EventHandler(this.Browse_Click);
     //
     // FileName
     //
     this.FileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.FileName.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.FileName.Location = new System.Drawing.Point(67, 6);
     this.FileName.Name     = "FileName";
     this.FileName.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.FileName.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FileName.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.FileName.Properties.Appearance.Options.UseBackColor = true;
     this.FileName.Properties.Appearance.Options.UseFont      = true;
     this.FileName.Properties.Appearance.Options.UseForeColor = true;
     this.FileName.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.FileName.Size        = new System.Drawing.Size(223, 20);
     this.FileName.TabIndex    = 28;
     this.FileName.Tag         = "Title";
     //
     // DuplicateKeyValues
     //
     this.DuplicateKeyValues.Cursor   = System.Windows.Forms.Cursors.Default;
     this.DuplicateKeyValues.Location = new System.Drawing.Point(24, 157);
     this.DuplicateKeyValues.Name     = "DuplicateKeyValues";
     this.DuplicateKeyValues.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.DuplicateKeyValues.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DuplicateKeyValues.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseBackColor = true;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseFont      = true;
     this.DuplicateKeyValues.Properties.Appearance.Options.UseForeColor = true;
     this.DuplicateKeyValues.Properties.Caption = "Duplicate data that occurs only once per compound";
     this.DuplicateKeyValues.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.DuplicateKeyValues.Size     = new System.Drawing.Size(318, 19);
     this.DuplicateKeyValues.TabIndex = 22;
     this.DuplicateKeyValues.Tag      = "FixedHeightStructs";
     //
     // FixedHeightStructs
     //
     this.FixedHeightStructs.Cursor   = System.Windows.Forms.Cursors.Default;
     this.FixedHeightStructs.Location = new System.Drawing.Point(351, 22);
     this.FixedHeightStructs.Name     = "FixedHeightStructs";
     this.FixedHeightStructs.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.FixedHeightStructs.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FixedHeightStructs.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.FixedHeightStructs.Properties.Appearance.Options.UseBackColor = true;
     this.FixedHeightStructs.Properties.Appearance.Options.UseFont      = true;
     this.FixedHeightStructs.Properties.Appearance.Options.UseForeColor = true;
     this.FixedHeightStructs.Properties.Caption = "Format structures into fixed size boxes";
     this.FixedHeightStructs.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.FixedHeightStructs.Size     = new System.Drawing.Size(217, 19);
     this.FixedHeightStructs.TabIndex = 21;
     this.FixedHeightStructs.Tag      = "FixedHeightStructs";
     this.FixedHeightStructs.Visible  = false;
     //
     // QualifiedNumberFormatting
     //
     this.QualifiedNumberFormatting.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.QualifiedNumberFormatting.BackColor = System.Drawing.Color.Transparent;
     this.QualifiedNumberFormatting.Controls.Add(this.QnfSplitOptions);
     this.QualifiedNumberFormatting.Controls.Add(this.Check1);
     this.QualifiedNumberFormatting.Controls.Add(this.Label3);
     this.QualifiedNumberFormatting.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.QualifiedNumberFormatting.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.QualifiedNumberFormatting.Location    = new System.Drawing.Point(9, 67);
     this.QualifiedNumberFormatting.Name        = "QualifiedNumberFormatting";
     this.QualifiedNumberFormatting.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.QualifiedNumberFormatting.Size        = new System.Drawing.Size(359, 79);
     this.QualifiedNumberFormatting.TabIndex    = 26;
     this.QualifiedNumberFormatting.TabStop     = false;
     this.QualifiedNumberFormatting.Text        = "Formatting of \"Qualified\" Numeric Values (e.g. >50) ";
     //
     // QnfSplitOptions
     //
     this.QnfSplitOptions.Location = new System.Drawing.Point(11, 21);
     this.QnfSplitOptions.Margin   = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.QnfSplitOptions.Name     = "QnfSplitOptions";
     this.QnfSplitOptions.Size     = new System.Drawing.Size(359, 49);
     this.QnfSplitOptions.TabIndex = 17;
     //
     // Check1
     //
     this.Check1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Check1.Location = new System.Drawing.Point(33, 122);
     this.Check1.Name     = "Check1";
     this.Check1.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.Check1.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Check1.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Check1.Properties.Appearance.Options.UseBackColor = true;
     this.Check1.Properties.Appearance.Options.UseFont      = true;
     this.Check1.Properties.Appearance.Options.UseForeColor = true;
     this.Check1.Properties.Caption = "Open output file with Spotfire (Spotfire must be installed)";
     this.Check1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.Check1.Size     = new System.Drawing.Size(344, 19);
     this.Check1.TabIndex = 15;
     //
     // Label3
     //
     this.Label3.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.Label3.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label3.Appearance.Options.UseBackColor = true;
     this.Label3.Appearance.Options.UseFont      = true;
     this.Label3.Appearance.Options.UseForeColor = true;
     this.Label3.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label3.Location = new System.Drawing.Point(58, 140);
     this.Label3.Name     = "Label3";
     this.Label3.Size     = new System.Drawing.Size(521, 13);
     this.Label3.TabIndex = 16;
     this.Label3.Text     = "Note: You can open an existing Spotfire file from the main menu with the expert c" +
                            "ommand: SPOTFIRE filename";
     //
     // Cancel
     //
     this.Cancel.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult                    = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location                        = new System.Drawing.Point(297, 245);
     this.Cancel.Name        = "Cancel";
     this.Cancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size        = new System.Drawing.Size(68, 23);
     this.Cancel.TabIndex    = 24;
     this.Cancel.Tag         = "Cancel";
     this.Cancel.Text        = "Cancel";
     //
     // OK
     //
     this.OK.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.OK.Location                        = new System.Drawing.Point(221, 245);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(69, 23);
     this.OK.TabIndex    = 23;
     this.OK.Tag         = "OK";
     this.OK.Text        = "OK";
     this.OK.Click      += new System.EventHandler(this.OK_Click);
     //
     // InsightStructure
     //
     this.InsightStructure.Cursor    = System.Windows.Forms.Cursors.Default;
     this.InsightStructure.EditValue = true;
     this.InsightStructure.Location  = new System.Drawing.Point(11, 22);
     this.InsightStructure.Name      = "InsightStructure";
     this.InsightStructure.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.InsightStructure.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.InsightStructure.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.InsightStructure.Properties.Appearance.Options.UseBackColor = true;
     this.InsightStructure.Properties.Appearance.Options.UseFont      = true;
     this.InsightStructure.Properties.Appearance.Options.UseForeColor = true;
     this.InsightStructure.Properties.Caption         = "Editable structures (Insight for Excel)";
     this.InsightStructure.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.InsightStructure.Properties.RadioGroupIndex = 1;
     this.InsightStructure.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.InsightStructure.Size        = new System.Drawing.Size(304, 19);
     this.InsightStructure.TabIndex    = 2;
     //
     // Label1
     //
     this.Label1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.Label1.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label1.Appearance.Options.UseBackColor = true;
     this.Label1.Appearance.Options.UseFont      = true;
     this.Label1.Appearance.Options.UseForeColor = true;
     this.Label1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label1.Location = new System.Drawing.Point(8, 9);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(48, 13);
     this.Label1.TabIndex = 30;
     this.Label1.Text     = "File name:";
     //
     // label4
     //
     this.label4.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.label4.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.label4.Appearance.Options.UseBackColor = true;
     this.label4.Appearance.Options.UseFont      = true;
     this.label4.Appearance.Options.UseForeColor = true;
     this.label4.Cursor   = System.Windows.Forms.Cursors.Default;
     this.label4.Location = new System.Drawing.Point(20, 36);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 32;
     this.label4.Text     = "Header lines:";
     //
     // ExportInBackground
     //
     this.ExportInBackground.Cursor   = System.Windows.Forms.Cursors.Default;
     this.ExportInBackground.Location = new System.Drawing.Point(24, 205);
     this.ExportInBackground.Name     = "ExportInBackground";
     this.ExportInBackground.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ExportInBackground.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ExportInBackground.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.ExportInBackground.Properties.Appearance.Options.UseBackColor = true;
     this.ExportInBackground.Properties.Appearance.Options.UseFont      = true;
     this.ExportInBackground.Properties.Appearance.Options.UseForeColor = true;
     this.ExportInBackground.Properties.Caption = "Export in the background";
     this.ExportInBackground.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.ExportInBackground.Size     = new System.Drawing.Size(206, 19);
     this.ExportInBackground.TabIndex = 33;
     //
     // Bitmaps16x16
     //
     this.Bitmaps16x16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Bitmaps16x16.ImageStream")));
     this.Bitmaps16x16.TransparentColor = System.Drawing.Color.Cyan;
     this.Bitmaps16x16.Images.SetKeyName(0, "SharePoint.bmp");
     //
     // HeaderLines
     //
     this.HeaderLines.Location = new System.Drawing.Point(94, 33);
     this.HeaderLines.Name     = "HeaderLines";
     this.HeaderLines.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.HeaderLines.Properties.DropDownRows = 3;
     this.HeaderLines.Properties.Items.AddRange(new object[] {
         "0",
         "1",
         "2"
     });
     this.HeaderLines.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor;
     this.HeaderLines.Size     = new System.Drawing.Size(52, 20);
     this.HeaderLines.TabIndex = 31;
     //
     // labelControl1
     //
     this.labelControl1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.LineVisible  = true;
     this.labelControl1.Location     = new System.Drawing.Point(-2, 230);
     this.labelControl1.Name         = "labelControl1";
     this.labelControl1.Size         = new System.Drawing.Size(398, 10);
     this.labelControl1.TabIndex     = 38;
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.InsightStructure);
     this.groupBox1.Controls.Add(this.FixedHeightStructs);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.MetafileStructure);
     this.groupBox1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.groupBox1.Location    = new System.Drawing.Point(353, 152);
     this.groupBox1.Name        = "groupBox1";
     this.groupBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.groupBox1.Size        = new System.Drawing.Size(359, 79);
     this.groupBox1.TabIndex    = 27;
     this.groupBox1.TabStop     = false;
     this.groupBox1.Text        = "Chemical Structure Format";
     this.groupBox1.Visible     = false;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.labelControl2.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.labelControl2.Appearance.Options.UseBackColor = true;
     this.labelControl2.Appearance.Options.UseFont      = true;
     this.labelControl2.Appearance.Options.UseForeColor = true;
     this.labelControl2.Cursor   = System.Windows.Forms.Cursors.Default;
     this.labelControl2.Location = new System.Drawing.Point(58, 140);
     this.labelControl2.Name     = "labelControl2";
     this.labelControl2.Size     = new System.Drawing.Size(521, 13);
     this.labelControl2.TabIndex = 16;
     this.labelControl2.Text     = "Note: You can open an existing Spotfire file from the main menu with the expert c" +
                                   "ommand: SPOTFIRE filename";
     //
     // MetafileStructure
     //
     this.MetafileStructure.Cursor   = System.Windows.Forms.Cursors.Default;
     this.MetafileStructure.Location = new System.Drawing.Point(11, 47);
     this.MetafileStructure.Name     = "MetafileStructure";
     this.MetafileStructure.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.MetafileStructure.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MetafileStructure.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.MetafileStructure.Properties.Appearance.Options.UseBackColor = true;
     this.MetafileStructure.Properties.Appearance.Options.UseFont      = true;
     this.MetafileStructure.Properties.Appearance.Options.UseForeColor = true;
     this.MetafileStructure.Properties.Caption         = "Uneditable structures (Windows metafile)";
     this.MetafileStructure.Properties.CheckStyle      = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.MetafileStructure.Properties.RadioGroupIndex = 1;
     this.MetafileStructure.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.MetafileStructure.Size        = new System.Drawing.Size(344, 19);
     this.MetafileStructure.TabIndex    = 3;
     this.MetafileStructure.TabStop     = false;
     //
     // SaveAsDefaultFolderOption
     //
     this.SaveAsDefaultFolderOption.Cursor   = System.Windows.Forms.Cursors.Default;
     this.SaveAsDefaultFolderOption.Location = new System.Drawing.Point(24, 181);
     this.SaveAsDefaultFolderOption.Name     = "SaveAsDefaultFolderOption";
     this.SaveAsDefaultFolderOption.Properties.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveAsDefaultFolderOption.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseBackColor = true;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseFont      = true;
     this.SaveAsDefaultFolderOption.Properties.Appearance.Options.UseForeColor = true;
     this.SaveAsDefaultFolderOption.Properties.Caption = "Use this as the default export folder in the future";
     this.SaveAsDefaultFolderOption.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.SaveAsDefaultFolderOption.Size     = new System.Drawing.Size(288, 19);
     this.SaveAsDefaultFolderOption.TabIndex = 47;
     this.SaveAsDefaultFolderOption.Tag      = "FixedHeightStructs";
     //
     // SetupExcel
     //
     this.AcceptButton      = this.OK;
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.CancelButton      = this.Cancel;
     this.ClientSize        = new System.Drawing.Size(375, 275);
     this.Controls.Add(this.SaveAsDefaultFolderOption);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.FileName);
     this.Controls.Add(this.DuplicateKeyValues);
     this.Controls.Add(this.ExportInBackground);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.HeaderLines);
     this.Controls.Add(this.Browse);
     this.Controls.Add(this.QualifiedNumberFormatting);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.labelControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SetupExcel";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Export to Excel";
     this.Activated      += new System.EventHandler(this.SetupExcel_Activated);
     this.VisibleChanged += new System.EventHandler(this.SetupExcel_VisibleChanged);
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DuplicateKeyValues.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FixedHeightStructs.Properties)).EndInit();
     this.QualifiedNumberFormatting.ResumeLayout(false);
     this.QualifiedNumberFormatting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Check1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.InsightStructure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ExportInBackground.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLines.Properties)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.MetafileStructure.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SaveAsDefaultFolderOption.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 public static void LoadControlsLayOut(ref System.Windows.Forms.SplitContainer ctrs, string formName)
 {
     int height = 0;
     const int width = 250;
     const int heightBox = 32;
     Control ctlParent = ctrs.Panel1;
     try
     {
         string ControlName = string.Empty;
         DataTable dt = UIMessage.DBEngine.execReturnDataTable(string.Format("select * from tblFormLayout where FormName = '{0}' and (IsLayout is null or IsLayout =0)", formName));
         if (dt != null && dt.Rows.Count > 0)
         {
             foreach (DataRow dr in dt.Rows)
             {
                 ControlName = dr["ControlName"].ToString();
                 if (ctlParent.Controls.Find(ControlName, true).Length <= 0)
                 {
                     DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl() { Name = string.Format("lbl{0}", ControlName), Text = UIMessage.Get_Message(string.Format("lbl{0}", ControlName)), Location = new Point(10, height) };
                     ctlParent.Controls.Add(lbl);
                     switch (dr["SystemType"].ToString())
                     {
                         case "ComboBox":
                             DevExpress.XtraEditors.LookUpEdit led = new DevExpress.XtraEditors.LookUpEdit() { Name = string.Format("cbx{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                             ctlParent.Controls.Add(led);
                             break;
                         case "Datetime":
                         case "Date":
                             if (!ControlName.ToLower().Contains("time"))
                             {
                                 DevExpress.XtraEditors.DateEdit dtp = new DevExpress.XtraEditors.DateEdit() { Name = string.Format("dtp{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                                 ctlParent.Controls.Add(dtp);
                             }
                             else
                             {
                                 DevExpress.XtraEditors.TimeEdit tid = new DevExpress.XtraEditors.TimeEdit() { Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                                 ctlParent.Controls.Add(tid);
                             }
                             break;
                         case "Time":
                             DevExpress.XtraEditors.TimeEdit tid1 = new DevExpress.XtraEditors.TimeEdit() { Name = string.Format("tid{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                             ctlParent.Controls.Add(tid1);
                             break;
                         case "CheckEdit":
                             DevExpress.XtraEditors.CheckEdit ckb = new DevExpress.XtraEditors.CheckEdit() { Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                             ctlParent.Controls.Add(ckb);
                             break;
                         case "PictureEdit":
                             DevExpress.XtraEditors.PictureEdit pic = new DevExpress.XtraEditors.PictureEdit() { Name = string.Format("ckb{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                             ctlParent.Controls.Add(pic);
                             break;
                         default:
                             DevExpress.XtraEditors.TextEdit txt = new DevExpress.XtraEditors.TextEdit() { Name = string.Format("txt{0}", ControlName), Location = new Point(130, height), Width = width, Height = heightBox };
                             ctlParent.Controls.Add(txt);
                             break;
                     }
                     height += 25;
                 }
             }
         }
     }
     catch (Exception ex)
     {
         Helper.LogError(ex, ex.Message, "LoadControlsLayOut()");
     }
     LoadDesignedControls(ctrs, formName);
 }
Exemplo n.º 34
0
        private void ControlVisual(int line, int column, List <WareHousesDTO> cellList)
        {
            panel.Controls.Clear();

            DevExpress.XtraEditors.LabelControl grCont = new DevExpress.XtraEditors.LabelControl();
            panel.Controls.Add(grCont);
            grCont.MaximumSize = new Size {
                Width = 30, Height = 20
            };
            grCont.MinimumSize = new Size {
                Width = 30, Height = 20
            };
            grCont.Left                 = 2;
            grCont.Top                  = 18;// 18 - вЫсота заголовка в панели
            grCont.Text                 = "С/Э";
            grCont.BackColor            = Color.SkyBlue;
            grCont.Anchor               = ((AnchorStyles)((AnchorStyles.Left)));
            grCont.Appearance.Font      = new Font("Tahoma", 9, FontStyle.Bold);
            grCont.Appearance.ForeColor = Color.Indigo;
            grCont.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            grCont.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
            grCont.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
            //
            int interval    = 2;
            int grHeight    = (((panel.Height - 18) - grCont.Height) / line) - interval; // 18 - вЫсота заголовка в панели
            int grWidth     = ((panel.Width - grCont.Width) / column) - interval;
            int dinamicTop  = grCont.Height + 18;                                        // 18 - вЫсота заголовка в панели
            int dinamicLeft = grCont.Width;
            int grLeft;
            int grTop;
            int k = 0;

            for (int j = 0; j < line; j++)
            {
                grLeft = interval + dinamicLeft;
                grTop  = interval + dinamicTop;

                for (int i = 0; i < column; i++)
                {
                    grLeft = interval + dinamicLeft;

                    DevExpress.XtraEditors.LabelControl grControl = new DevExpress.XtraEditors.LabelControl();
                    grControl.Name = "grControl" + k;
                    panel.Controls.Add(grControl);

                    grControl.MaximumSize = new Size {
                        Width = grWidth, Height = grHeight
                    };
                    grControl.MinimumSize = new Size {
                        Width = grWidth, Height = grHeight
                    };
                    grControl.Left                 = grLeft;
                    grControl.Top                  = grTop;
                    grControl.Anchor               = ((AnchorStyles)((AnchorStyles.Left)));
                    grControl.Appearance.Font      = new Font("Tahoma", 8, FontStyle.Bold);
                    grControl.Appearance.ForeColor = Color.Firebrick;
                    grControl.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                    grControl.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                    grControl.ImageAlignToText = DevExpress.XtraEditors.ImageAlignToText.BottomCenter;
                    grControl.BorderStyle      = DevExpress.XtraEditors.Controls.BorderStyles.Simple;

                    if (cellList[k].NumberCell > 0)
                    {
                        if (cellList[k].LoadingStatusId > 1)
                        {
                            grControl.Appearance.Image = (cellList[k].LoadingStatusId == 2 ? cellImageCollection.Images[1] : cellImageCollection.Images[2]);
                        }

                        grControl.Text = cellList[k].NumberCell.ToString();
                        if (cellList[k].ZoneColor != null)
                        {
                            grControl.BackColor = ColorTranslator.FromHtml(cellList[k].ZoneColor.ToString());
                        }
                    }
                    else
                    {
                        grControl.Text      = "";
                        grControl.BackColor = Color.GhostWhite;
                    }

                    grControl.Tag = k;

                    dinamicLeft = dinamicLeft + (grWidth + interval);

                    if (j == 0) // только на первом ряду названия стелажей
                    {
                        //контейнер название стелажей
                        DevExpress.XtraEditors.LabelControl grContSt = new DevExpress.XtraEditors.LabelControl();
                        panel.Controls.Add(grContSt);
                        grContSt.MaximumSize = new Size {
                            Width = grWidth, Height = 20
                        };
                        grContSt.MinimumSize = new Size {
                            Width = grWidth, Height = 20
                        };
                        grContSt.Left                 = grLeft;
                        grContSt.Top                  = 18;
                        grContSt.BackColor            = Color.SkyBlue;
                        grContSt.Anchor               = ((AnchorStyles)((AnchorStyles.Left)));
                        grContSt.Text                 = (i + 1).ToString();
                        grContSt.Appearance.Font      = new Font("Tahoma", 9, FontStyle.Bold);
                        grContSt.Appearance.ForeColor = Color.Indigo;
                        grContSt.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                        grContSt.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                        grContSt.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
                        //
                    }

                    k = k + 1;
                }

                //контейнер название этажей
                DevExpress.XtraEditors.LabelControl grContEt = new DevExpress.XtraEditors.LabelControl();
                panel.Controls.Add(grContEt);
                grContEt.MaximumSize = new Size {
                    Width = 30, Height = grHeight
                };
                grContEt.MinimumSize = new Size {
                    Width = 30, Height = grHeight
                };
                grContEt.Left                 = 2;
                grContEt.BackColor            = Color.SkyBlue;
                grContEt.Top                  = grTop;
                grContEt.Anchor               = ((AnchorStyles)((AnchorStyles.Left)));
                grContEt.Text                 = (line - j).ToString();
                grContEt.Appearance.Font      = new Font("Tahoma", 9, FontStyle.Bold);
                grContEt.Appearance.ForeColor = Color.Indigo;
                grContEt.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
                grContEt.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
                grContEt.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
                //
                dinamicLeft = grCont.Width;
                dinamicTop  = dinamicTop + grHeight + interval;
            }
        }
Exemplo n.º 35
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.labelControlNationalId         = new DevExpress.XtraEditors.LabelControl();
     this.labelControlAgeSex             = new DevExpress.XtraEditors.LabelControl();
     this.labelControlBirthdate          = new DevExpress.XtraEditors.LabelControl();
     this.labelControlPhoneNumber        = new DevExpress.XtraEditors.LabelControl();
     this.labelControlAddress            = new DevExpress.XtraEditors.LabelControl();
     this.labelControlAtollIslandCountry = new DevExpress.XtraEditors.LabelControl();
     this.labelControlEpisodeNumber      = new DevExpress.XtraEditors.LabelControl();
     this.labelControlCin              = new DevExpress.XtraEditors.LabelControl();
     this.labelControlSite             = new DevExpress.XtraEditors.LabelControl();
     this.splitContainerControlPatient = new DevExpress.XtraEditors.SplitContainerControl();
     this.groupControlSelectedPatientRequestClinicalDetailsArea = new DevExpress.XtraEditors.GroupControl();
     this.listBoxControlClinicalDetails       = new DevExpress.XtraEditors.ListBoxControl();
     this.splitContainerControlFunctions      = new DevExpress.XtraEditors.SplitContainerControl();
     this.splitContainerControlSamplesAndTest = new DevExpress.XtraEditors.SplitContainerControl();
     this.progressPanelSamples = new DevExpress.XtraWaitForm.ProgressPanel();
     this.gridControlSamples   = new DevExpress.XtraGrid.GridControl();
     this.gridViewSamples      = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.progressPanelTests   = new DevExpress.XtraWaitForm.ProgressPanel();
     this.gridControlTests     = new CD4.UI.CustomGridControl();
     this.gridViewTests        = new CD4.UI.CustomGridView();
     this.repositoryItemLookUpEditCodifiedPhrases = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
     this.graphsUserControl       = new CD4.UI.UserControls.GraphsUserControl();
     this.groupControlFunctions   = new DevExpress.XtraEditors.GroupControl();
     this.separatorControl1       = new DevExpress.XtraEditors.SeparatorControl();
     this.dateEditLoadWorksheetTo = new DevExpress.XtraEditors.DateEdit();
     this.simpleButtonPrintBothResultEntryReport = new DevExpress.XtraEditors.SimpleButton();
     this.exportReportOnDefaultTemplate          = new DevExpress.XtraEditors.DropDownButton();
     this.simpleButtonNotes            = new DevExpress.XtraEditors.SimpleButton();
     this.lookUpEditSampleStatusFilter = new DevExpress.XtraEditors.LookUpEdit();
     this.simpleButtonLoadWorksheet    = new DevExpress.XtraEditors.SimpleButton();
     this.dateEditLoadWorksheetFrom    = new DevExpress.XtraEditors.DateEdit();
     this.simpleButtonReport           = new DevExpress.XtraEditors.SimpleButton();
     this.gridColumnSampleStatus       = new DevExpress.XtraGrid.Columns.GridColumn();
     labelControlPatientName           = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlPatient)).BeginInit();
     this.splitContainerControlPatient.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelectedPatientRequestClinicalDetailsArea)).BeginInit();
     this.groupControlSelectedPatientRequestClinicalDetailsArea.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControlClinicalDetails)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlFunctions)).BeginInit();
     this.splitContainerControlFunctions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlSamplesAndTest)).BeginInit();
     this.splitContainerControlSamplesAndTest.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlSamples)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSamples)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlTests)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTests)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditCodifiedPhrases)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlFunctions)).BeginInit();
     this.groupControlFunctions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetTo.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetTo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditSampleStatusFilter.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetFrom.Properties.CalendarTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetFrom.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // labelControlNationalId
     //
     this.labelControlNationalId.Location = new System.Drawing.Point(12, 50);
     this.labelControlNationalId.Name     = "labelControlNationalId";
     this.labelControlNationalId.Size     = new System.Drawing.Size(54, 13);
     this.labelControlNationalId.TabIndex = 1;
     this.labelControlNationalId.Text     = "NationalId";
     //
     // labelControlAgeSex
     //
     this.labelControlAgeSex.Location = new System.Drawing.Point(12, 69);
     this.labelControlAgeSex.Name     = "labelControlAgeSex";
     this.labelControlAgeSex.Size     = new System.Drawing.Size(47, 13);
     this.labelControlAgeSex.TabIndex = 2;
     this.labelControlAgeSex.Text     = "Age / Sex";
     //
     // labelControlBirthdate
     //
     this.labelControlBirthdate.Location = new System.Drawing.Point(167, 50);
     this.labelControlBirthdate.Name     = "labelControlBirthdate";
     this.labelControlBirthdate.Size     = new System.Drawing.Size(47, 13);
     this.labelControlBirthdate.TabIndex = 3;
     this.labelControlBirthdate.Text     = "Birthdate";
     //
     // labelControlPhoneNumber
     //
     this.labelControlPhoneNumber.Location = new System.Drawing.Point(167, 69);
     this.labelControlPhoneNumber.Name     = "labelControlPhoneNumber";
     this.labelControlPhoneNumber.Size     = new System.Drawing.Size(74, 13);
     this.labelControlPhoneNumber.TabIndex = 4;
     this.labelControlPhoneNumber.Text     = "PhoneNumber";
     //
     // labelControlAddress
     //
     this.labelControlAddress.Location = new System.Drawing.Point(280, 50);
     this.labelControlAddress.Name     = "labelControlAddress";
     this.labelControlAddress.Size     = new System.Drawing.Size(41, 13);
     this.labelControlAddress.TabIndex = 5;
     this.labelControlAddress.Text     = "Address";
     //
     // labelControlAtollIslandCountry
     //
     this.labelControlAtollIslandCountry.Location = new System.Drawing.Point(280, 69);
     this.labelControlAtollIslandCountry.Name     = "labelControlAtollIslandCountry";
     this.labelControlAtollIslandCountry.Size     = new System.Drawing.Size(108, 13);
     this.labelControlAtollIslandCountry.TabIndex = 6;
     this.labelControlAtollIslandCountry.Text     = "Atoll, Island, Country";
     //
     // labelControlEpisodeNumber
     //
     this.labelControlEpisodeNumber.Location = new System.Drawing.Point(472, 50);
     this.labelControlEpisodeNumber.Name     = "labelControlEpisodeNumber";
     this.labelControlEpisodeNumber.Size     = new System.Drawing.Size(82, 13);
     this.labelControlEpisodeNumber.TabIndex = 8;
     this.labelControlEpisodeNumber.Text     = "EpisodeNumber";
     //
     // labelControlCin
     //
     this.labelControlCin.Appearance.Font                    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.labelControlCin.Appearance.Options.UseFont         = true;
     this.labelControlCin.AppearanceDisabled.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.labelControlCin.AppearanceDisabled.Options.UseFont = true;
     this.labelControlCin.AppearanceHovered.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.labelControlCin.AppearanceHovered.Options.UseFont  = true;
     this.labelControlCin.AppearancePressed.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.labelControlCin.AppearancePressed.Options.UseFont  = true;
     this.labelControlCin.Location = new System.Drawing.Point(472, 23);
     this.labelControlCin.Name     = "labelControlCin";
     this.labelControlCin.Size     = new System.Drawing.Size(107, 21);
     this.labelControlCin.TabIndex = 10;
     this.labelControlCin.Text     = "SELECTED CIN";
     //
     // labelControlSite
     //
     this.labelControlSite.Location = new System.Drawing.Point(472, 69);
     this.labelControlSite.Name     = "labelControlSite";
     this.labelControlSite.Size     = new System.Drawing.Size(19, 13);
     this.labelControlSite.TabIndex = 11;
     this.labelControlSite.Text     = "Site";
     //
     // splitContainerControlPatient
     //
     this.splitContainerControlPatient.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControlPatient.Horizontal = false;
     this.splitContainerControlPatient.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControlPatient.Name       = "splitContainerControlPatient";
     this.splitContainerControlPatient.Panel1.Controls.Add(this.groupControlSelectedPatientRequestClinicalDetailsArea);
     this.splitContainerControlPatient.Panel1.Text = "Panel1";
     this.splitContainerControlPatient.Panel2.Controls.Add(this.splitContainerControlFunctions);
     this.splitContainerControlPatient.Panel2.Text      = "Panel2";
     this.splitContainerControlPatient.Size             = new System.Drawing.Size(1294, 528);
     this.splitContainerControlPatient.SplitterPosition = 90;
     this.splitContainerControlPatient.TabIndex         = 0;
     //
     // groupControlSelectedPatientRequestClinicalDetailsArea
     //
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlSite);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlCin);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.listBoxControlClinicalDetails);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlEpisodeNumber);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlAtollIslandCountry);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlAddress);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlPhoneNumber);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlBirthdate);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlAgeSex);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(this.labelControlNationalId);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Controls.Add(labelControlPatientName);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Location = new System.Drawing.Point(0, 0);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Name     = "groupControlSelectedPatientRequestClinicalDetailsArea";
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Size     = new System.Drawing.Size(1294, 90);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.TabIndex = 0;
     this.groupControlSelectedPatientRequestClinicalDetailsArea.Text     = "Selected Patient, Request and Clinical Details Information";
     //
     // listBoxControlClinicalDetails
     //
     this.listBoxControlClinicalDetails.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.listBoxControlClinicalDetails.Appearance.BackColor            = System.Drawing.SystemColors.Control;
     this.listBoxControlClinicalDetails.Appearance.Options.UseBackColor = true;
     this.listBoxControlClinicalDetails.HorizontalScrollbar             = true;
     this.listBoxControlClinicalDetails.Location = new System.Drawing.Point(1068, 21);
     this.listBoxControlClinicalDetails.Name     = "listBoxControlClinicalDetails";
     this.listBoxControlClinicalDetails.Size     = new System.Drawing.Size(223, 66);
     this.listBoxControlClinicalDetails.TabIndex = 9;
     //
     // labelControlPatientName
     //
     labelControlPatientName.Appearance.Font                    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     labelControlPatientName.Appearance.Options.UseFont         = true;
     labelControlPatientName.AppearanceDisabled.Font            = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     labelControlPatientName.AppearanceDisabled.Options.UseFont = true;
     labelControlPatientName.AppearanceHovered.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     labelControlPatientName.AppearanceHovered.Options.UseFont  = true;
     labelControlPatientName.AppearancePressed.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     labelControlPatientName.AppearancePressed.Options.UseFont  = true;
     labelControlPatientName.Location = new System.Drawing.Point(12, 23);
     labelControlPatientName.Name     = "labelControlPatientName";
     labelControlPatientName.Size     = new System.Drawing.Size(118, 21);
     labelControlPatientName.TabIndex = 0;
     labelControlPatientName.Text     = "PATIENT NAME";
     //
     // splitContainerControlFunctions
     //
     this.splitContainerControlFunctions.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControlFunctions.Horizontal = false;
     this.splitContainerControlFunctions.Location   = new System.Drawing.Point(0, 0);
     this.splitContainerControlFunctions.Name       = "splitContainerControlFunctions";
     this.splitContainerControlFunctions.Panel1.Controls.Add(this.splitContainerControlSamplesAndTest);
     this.splitContainerControlFunctions.Panel1.Text = "Panel1";
     this.splitContainerControlFunctions.Panel2.Controls.Add(this.groupControlFunctions);
     this.splitContainerControlFunctions.Panel2.Text      = "Panel2";
     this.splitContainerControlFunctions.Size             = new System.Drawing.Size(1294, 433);
     this.splitContainerControlFunctions.SplitterPosition = 308;
     this.splitContainerControlFunctions.TabIndex         = 0;
     //
     // splitContainerControlSamplesAndTest
     //
     this.splitContainerControlSamplesAndTest.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControlSamplesAndTest.Location = new System.Drawing.Point(0, 0);
     this.splitContainerControlSamplesAndTest.Name     = "splitContainerControlSamplesAndTest";
     this.splitContainerControlSamplesAndTest.Panel1.Controls.Add(this.progressPanelSamples);
     this.splitContainerControlSamplesAndTest.Panel1.Controls.Add(this.gridControlSamples);
     this.splitContainerControlSamplesAndTest.Panel1.Text = "Panel1";
     this.splitContainerControlSamplesAndTest.Panel2.Controls.Add(this.progressPanelTests);
     this.splitContainerControlSamplesAndTest.Panel2.Controls.Add(this.gridControlTests);
     this.splitContainerControlSamplesAndTest.Panel2.Controls.Add(this.graphsUserControl);
     this.splitContainerControlSamplesAndTest.Panel2.Text      = "Panel2";
     this.splitContainerControlSamplesAndTest.Size             = new System.Drawing.Size(1294, 308);
     this.splitContainerControlSamplesAndTest.SplitterPosition = 400;
     this.splitContainerControlSamplesAndTest.TabIndex         = 0;
     //
     // progressPanelSamples
     //
     this.progressPanelSamples.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.progressPanelSamples.Appearance.Options.UseBackColor = true;
     this.progressPanelSamples.BarAnimationElementThickness    = 2;
     this.progressPanelSamples.Caption          = "Please Wait";
     this.progressPanelSamples.ContentAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.progressPanelSamples.Description      = "Loading samples ...";
     this.progressPanelSamples.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.progressPanelSamples.Location         = new System.Drawing.Point(0, 0);
     this.progressPanelSamples.Name             = "progressPanelSamples";
     this.progressPanelSamples.Size             = new System.Drawing.Size(400, 308);
     this.progressPanelSamples.TabIndex         = 2;
     //
     // gridControlSamples
     //
     this.gridControlSamples.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControlSamples.Location = new System.Drawing.Point(0, 0);
     this.gridControlSamples.MainView = this.gridViewSamples;
     this.gridControlSamples.Name     = "gridControlSamples";
     this.gridControlSamples.Size     = new System.Drawing.Size(400, 308);
     this.gridControlSamples.TabIndex = 1;
     this.gridControlSamples.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewSamples
     });
     //
     // gridViewSamples
     //
     this.gridViewSamples.GridControl = this.gridControlSamples;
     this.gridViewSamples.Name        = "gridViewSamples";
     this.gridViewSamples.OptionsBehavior.Editable = false;
     //
     // progressPanelTests
     //
     this.progressPanelTests.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.progressPanelTests.Appearance.Options.UseBackColor = true;
     this.progressPanelTests.BarAnimationElementThickness    = 2;
     this.progressPanelTests.Caption          = "Please Wait";
     this.progressPanelTests.ContentAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     this.progressPanelTests.Description      = "Loading tests ...";
     this.progressPanelTests.Dock             = System.Windows.Forms.DockStyle.Fill;
     this.progressPanelTests.Location         = new System.Drawing.Point(0, 0);
     this.progressPanelTests.Name             = "progressPanelTests";
     this.progressPanelTests.Size             = new System.Drawing.Size(889, 308);
     this.progressPanelTests.TabIndex         = 3;
     //
     // gridControlTests
     //
     this.gridControlTests.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.gridControlTests.Location = new System.Drawing.Point(0, 0);
     this.gridControlTests.MainView = this.gridViewTests;
     this.gridControlTests.Name     = "gridControlTests";
     this.gridControlTests.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
         this.repositoryItemLookUpEditCodifiedPhrases
     });
     this.gridControlTests.Size     = new System.Drawing.Size(889, 308);
     this.gridControlTests.TabIndex = 0;
     this.gridControlTests.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
         this.gridViewTests
     });
     //
     // gridViewTests
     //
     this.gridViewTests.GridControl = this.gridControlTests;
     this.gridViewTests.GroupFormat = "{0} [#image]{1} {2}";
     this.gridViewTests.Name        = "gridViewTests";
     this.gridViewTests.OptionsBehavior.AutoExpandAllGroups = true;
     this.gridViewTests.OptionsView.ShowGroupPanel          = false;
     //
     // repositoryItemLookUpEditCodifiedPhrases
     //
     this.repositoryItemLookUpEditCodifiedPhrases.AcceptEditorTextAsNewValue = DevExpress.Utils.DefaultBoolean.True;
     this.repositoryItemLookUpEditCodifiedPhrases.AutoHeight = false;
     this.repositoryItemLookUpEditCodifiedPhrases.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.repositoryItemLookUpEditCodifiedPhrases.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("CodifiedValue", "Codified Values")
     });
     this.repositoryItemLookUpEditCodifiedPhrases.Name          = "repositoryItemLookUpEditCodifiedPhrases";
     this.repositoryItemLookUpEditCodifiedPhrases.NullText      = "";
     this.repositoryItemLookUpEditCodifiedPhrases.ShowHeader    = false;
     this.repositoryItemLookUpEditCodifiedPhrases.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.Standard;
     //
     // graphsUserControl
     //
     this.graphsUserControl.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.graphsUserControl.Location = new System.Drawing.Point(0, 0);
     this.graphsUserControl.Name     = "graphsUserControl";
     this.graphsUserControl.Size     = new System.Drawing.Size(889, 308);
     this.graphsUserControl.TabIndex = 4;
     //
     // groupControlFunctions
     //
     this.groupControlFunctions.Controls.Add(this.separatorControl1);
     this.groupControlFunctions.Controls.Add(this.dateEditLoadWorksheetTo);
     this.groupControlFunctions.Controls.Add(this.simpleButtonPrintBothResultEntryReport);
     this.groupControlFunctions.Controls.Add(this.exportReportOnDefaultTemplate);
     this.groupControlFunctions.Controls.Add(this.simpleButtonNotes);
     this.groupControlFunctions.Controls.Add(this.lookUpEditSampleStatusFilter);
     this.groupControlFunctions.Controls.Add(this.simpleButtonLoadWorksheet);
     this.groupControlFunctions.Controls.Add(this.dateEditLoadWorksheetFrom);
     this.groupControlFunctions.Controls.Add(this.simpleButtonReport);
     this.groupControlFunctions.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupControlFunctions.Location = new System.Drawing.Point(0, 0);
     this.groupControlFunctions.Name     = "groupControlFunctions";
     this.groupControlFunctions.Size     = new System.Drawing.Size(1294, 120);
     this.groupControlFunctions.TabIndex = 1;
     this.groupControlFunctions.Text     = "Functions";
     //
     // separatorControl1
     //
     this.separatorControl1.LineOrientation = System.Windows.Forms.Orientation.Vertical;
     this.separatorControl1.Location        = new System.Drawing.Point(389, 30);
     this.separatorControl1.Name            = "separatorControl1";
     this.separatorControl1.Size            = new System.Drawing.Size(21, 75);
     this.separatorControl1.TabIndex        = 12;
     //
     // dateEditLoadWorksheetTo
     //
     this.dateEditLoadWorksheetTo.EditValue = null;
     this.dateEditLoadWorksheetTo.Location  = new System.Drawing.Point(12, 74);
     this.dateEditLoadWorksheetTo.Name      = "dateEditLoadWorksheetTo";
     this.dateEditLoadWorksheetTo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEditLoadWorksheetTo.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEditLoadWorksheetTo.Properties.NullText        = "Please select start date";
     this.dateEditLoadWorksheetTo.Properties.NullValuePrompt = "Please select start date";
     this.dateEditLoadWorksheetTo.Properties.NullValuePromptShowForEmptyValue = true;
     this.dateEditLoadWorksheetTo.Size     = new System.Drawing.Size(175, 20);
     this.dateEditLoadWorksheetTo.TabIndex = 11;
     //
     // simpleButtonPrintBothResultEntryReport
     //
     this.simpleButtonPrintBothResultEntryReport.Location = new System.Drawing.Point(746, 42);
     this.simpleButtonPrintBothResultEntryReport.Name     = "simpleButtonPrintBothResultEntryReport";
     this.simpleButtonPrintBothResultEntryReport.Size     = new System.Drawing.Size(159, 23);
     this.simpleButtonPrintBothResultEntryReport.TabIndex = 10;
     this.simpleButtonPrintBothResultEntryReport.Tag      = "ResultEntryView.DoAReport";
     this.simpleButtonPrintBothResultEntryReport.Text     = "Report Both DoA Report";
     //
     // exportReportOnDefaultTemplate
     //
     this.exportReportOnDefaultTemplate.Location = new System.Drawing.Point(581, 74);
     this.exportReportOnDefaultTemplate.Name     = "exportReportOnDefaultTemplate";
     this.exportReportOnDefaultTemplate.Size     = new System.Drawing.Size(159, 23);
     this.exportReportOnDefaultTemplate.TabIndex = 9;
     this.exportReportOnDefaultTemplate.Tag      = "ResultEntry.ExportReport";
     this.exportReportOnDefaultTemplate.Text     = "Export Rpt. [ Ctrl+E ]";
     //
     // simpleButtonNotes
     //
     this.simpleButtonNotes.Location = new System.Drawing.Point(416, 74);
     this.simpleButtonNotes.Name     = "simpleButtonNotes";
     this.simpleButtonNotes.Size     = new System.Drawing.Size(159, 23);
     this.simpleButtonNotes.TabIndex = 8;
     this.simpleButtonNotes.Text     = "Notes [ 2 ]";
     //
     // lookUpEditSampleStatusFilter
     //
     this.lookUpEditSampleStatusFilter.Location = new System.Drawing.Point(193, 45);
     this.lookUpEditSampleStatusFilter.Name     = "lookUpEditSampleStatusFilter";
     this.lookUpEditSampleStatusFilter.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lookUpEditSampleStatusFilter.Properties.NullText        = "Please select sample status...";
     this.lookUpEditSampleStatusFilter.Properties.NullValuePrompt = "Please select sample status...";
     this.lookUpEditSampleStatusFilter.Properties.NullValuePromptShowForEmptyValue = true;
     this.lookUpEditSampleStatusFilter.Properties.ShowNullValuePromptWhenFocused   = true;
     this.lookUpEditSampleStatusFilter.Size     = new System.Drawing.Size(190, 20);
     this.lookUpEditSampleStatusFilter.TabIndex = 7;
     //
     // simpleButtonLoadWorksheet
     //
     this.simpleButtonLoadWorksheet.Location = new System.Drawing.Point(416, 43);
     this.simpleButtonLoadWorksheet.Name     = "simpleButtonLoadWorksheet";
     this.simpleButtonLoadWorksheet.Size     = new System.Drawing.Size(159, 23);
     this.simpleButtonLoadWorksheet.TabIndex = 6;
     this.simpleButtonLoadWorksheet.Tag      = "ResultEntryView.LoadWorksheet";
     this.simpleButtonLoadWorksheet.Text     = "Load Worksheet [ Ctrl+L ]";
     //
     // dateEditLoadWorksheetFrom
     //
     this.dateEditLoadWorksheetFrom.EditValue = null;
     this.dateEditLoadWorksheetFrom.Location  = new System.Drawing.Point(12, 45);
     this.dateEditLoadWorksheetFrom.Name      = "dateEditLoadWorksheetFrom";
     this.dateEditLoadWorksheetFrom.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEditLoadWorksheetFrom.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.dateEditLoadWorksheetFrom.Properties.NullText        = "Please select start date";
     this.dateEditLoadWorksheetFrom.Properties.NullValuePrompt = "Please select start date";
     this.dateEditLoadWorksheetFrom.Properties.NullValuePromptShowForEmptyValue = true;
     this.dateEditLoadWorksheetFrom.Size     = new System.Drawing.Size(175, 20);
     this.dateEditLoadWorksheetFrom.TabIndex = 1;
     //
     // simpleButtonReport
     //
     this.simpleButtonReport.Location = new System.Drawing.Point(581, 42);
     this.simpleButtonReport.Name     = "simpleButtonReport";
     this.simpleButtonReport.Size     = new System.Drawing.Size(159, 23);
     this.simpleButtonReport.TabIndex = 0;
     this.simpleButtonReport.Tag      = "ResultEntryView.Report";
     this.simpleButtonReport.Text     = "Report [ Ctrl+P ]";
     //
     // gridColumnSampleStatus
     //
     this.gridColumnSampleStatus.Name = "gridColumnSampleStatus";
     //
     // ResultEntryView
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1294, 528);
     this.Controls.Add(this.splitContainerControlPatient);
     this.KeyPreview = true;
     this.Name       = "ResultEntryView";
     this.Tag        = "ResultEntryView";
     this.Text       = "ResultEntryView";
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlPatient)).EndInit();
     this.splitContainerControlPatient.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.groupControlSelectedPatientRequestClinicalDetailsArea)).EndInit();
     this.groupControlSelectedPatientRequestClinicalDetailsArea.ResumeLayout(false);
     this.groupControlSelectedPatientRequestClinicalDetailsArea.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.listBoxControlClinicalDetails)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlFunctions)).EndInit();
     this.splitContainerControlFunctions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControlSamplesAndTest)).EndInit();
     this.splitContainerControlSamplesAndTest.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlSamples)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewSamples)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlTests)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTests)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEditCodifiedPhrases)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControlFunctions)).EndInit();
     this.groupControlFunctions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.separatorControl1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetTo.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetTo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lookUpEditSampleStatusFilter.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetFrom.Properties.CalendarTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEditLoadWorksheetFrom.Properties)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 36
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQuickCheck));
     this.ucAccountingPicker1 = new AccountingPicker.ucAccountingPicker();
     this.btnPrint            = new DevExpress.XtraEditors.SimpleButton();
     this.txtCheckNo          = new DevExpress.XtraEditors.TextEdit();
     this.deChkDate           = new DevExpress.XtraEditors.DateEdit();
     this.lueBank             = new DevExpress.XtraEditors.LookUpEdit();
     this.dsBank1             = new AP_Unpaid_Invoices.dsBank();
     this.labelControl5       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3       = new DevExpress.XtraEditors.LabelControl();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.daBank            = new System.Data.SqlClient.SqlDataAdapter();
     this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
     this.TR_Conn           = new System.Data.SqlClient.SqlConnection();
     this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
     this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
     this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
     this.chkIncludeHB      = new DevExpress.XtraEditors.CheckEdit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCheckNo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deChkDate.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.deChkDate.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueBank.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBank1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeHB.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ucAccountingPicker1
     //
     this.ucAccountingPicker1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ucAccountingPicker1.Appearance.Options.UseBackColor = true;
     this.ucAccountingPicker1.HasEntryDate   = false;
     this.ucAccountingPicker1.Location       = new System.Drawing.Point(7, 100);
     this.ucAccountingPicker1.Name           = "ucAccountingPicker1";
     this.ucAccountingPicker1.SelectedPeriod = 0;
     this.ucAccountingPicker1.SelectedYear   = 0;
     this.ucAccountingPicker1.Size           = new System.Drawing.Size(184, 63);
     this.ucAccountingPicker1.TabIndex       = 30;
     this.ucAccountingPicker1.UserName       = "";
     //
     // btnPrint
     //
     this.btnPrint.Location = new System.Drawing.Point(127, 205);
     this.btnPrint.Name     = "btnPrint";
     this.btnPrint.Size     = new System.Drawing.Size(75, 23);
     this.btnPrint.TabIndex = 29;
     this.btnPrint.Text     = "Print";
     this.btnPrint.Click   += new System.EventHandler(this.btnPrint_Click);
     //
     // txtCheckNo
     //
     this.txtCheckNo.Location = new System.Drawing.Point(135, 76);
     this.txtCheckNo.Name     = "txtCheckNo";
     this.txtCheckNo.Properties.Mask.EditMask = "g0";
     this.txtCheckNo.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
     this.txtCheckNo.Properties.Mask.UseMaskAsDisplayFormat = true;
     this.txtCheckNo.Size     = new System.Drawing.Size(120, 20);
     this.txtCheckNo.TabIndex = 28;
     //
     // deChkDate
     //
     this.deChkDate.EditValue = null;
     this.deChkDate.Location  = new System.Drawing.Point(95, 44);
     this.deChkDate.Name      = "deChkDate";
     this.deChkDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.deChkDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton()
     });
     this.deChkDate.Size     = new System.Drawing.Size(160, 20);
     this.deChkDate.TabIndex = 27;
     //
     // lueBank
     //
     this.lueBank.Location = new System.Drawing.Point(71, 12);
     this.lueBank.Name     = "lueBank";
     this.lueBank.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
         new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)
     });
     this.lueBank.Properties.Columns.AddRange(new DevExpress.XtraEditors.Controls.LookUpColumnInfo[] {
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BANK_ID", "BANK_ID", 62, DevExpress.Utils.FormatType.Numeric, "", false, DevExpress.Utils.HorzAlignment.Far),
         new DevExpress.XtraEditors.Controls.LookUpColumnInfo("BANK_NAME", "Bank", 66, DevExpress.Utils.FormatType.None, "", true, DevExpress.Utils.HorzAlignment.Near)
     });
     this.lueBank.Properties.DataSource    = this.dsBank1.BANK_MASTER;
     this.lueBank.Properties.DisplayMember = "BANK_NAME";
     this.lueBank.Properties.NullText      = "";
     this.lueBank.Properties.ValueMember   = "BANK_ID";
     this.lueBank.Size              = new System.Drawing.Size(184, 20);
     this.lueBank.TabIndex          = 26;
     this.lueBank.EditValueChanged += new System.EventHandler(this.lueBank_EditValueChanged);
     //
     // dsBank1
     //
     this.dsBank1.DataSetName             = "dsBank";
     this.dsBank1.Locale                  = new System.Globalization.CultureInfo("en-US");
     this.dsBank1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(23, 76);
     this.labelControl5.Name     = "labelControl5";
     this.labelControl5.Size     = new System.Drawing.Size(97, 13);
     this.labelControl5.TabIndex = 25;
     this.labelControl5.Text     = "First Check Number:";
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(23, 44);
     this.labelControl4.Name     = "labelControl4";
     this.labelControl4.Size     = new System.Drawing.Size(59, 13);
     this.labelControl4.TabIndex = 24;
     this.labelControl4.Text     = "Check Date:";
     //
     // labelControl3
     //
     this.labelControl3.Location = new System.Drawing.Point(23, 12);
     this.labelControl3.Name     = "labelControl3";
     this.labelControl3.Size     = new System.Drawing.Size(27, 13);
     this.labelControl3.TabIndex = 23;
     this.labelControl3.Text     = "Bank:";
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(207, 205);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 22;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // daBank
     //
     this.daBank.DeleteCommand = this.sqlDeleteCommand1;
     this.daBank.InsertCommand = this.sqlInsertCommand1;
     this.daBank.SelectCommand = this.sqlSelectCommand1;
     this.daBank.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
         new System.Data.Common.DataTableMapping("Table", "BANK_MASTER", new System.Data.Common.DataColumnMapping[] {
             new System.Data.Common.DataColumnMapping("BANK_ID", "BANK_ID"),
             new System.Data.Common.DataColumnMapping("BANK_NAME", "BANK_NAME")
         })
     });
     this.daBank.UpdateCommand = this.sqlUpdateCommand1;
     //
     // sqlDeleteCommand1
     //
     this.sqlDeleteCommand1.CommandText = "DELETE FROM [BANK_MASTER] WHERE (([BANK_ID] = @Original_BANK_ID) AND ([BANK_NAME]" +
                                          " = @Original_BANK_NAME))";
     this.sqlDeleteCommand1.Connection = this.TR_Conn;
     this.sqlDeleteCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@Original_BANK_ID", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "BANK_ID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_BANK_NAME", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "BANK_NAME", System.Data.DataRowVersion.Original, null)
     });
     //
     // TR_Conn
     //
     this.TR_Conn.ConnectionString = "Data Source=dev1;Initial Catalog=tr_strike_test10;Persist Security Info=True;User" +
                                     " ID=hmsqlsa;Password=hmsqlsa";
     this.TR_Conn.FireInfoMessageEventOnUserErrors = false;
     //
     // sqlInsertCommand1
     //
     this.sqlInsertCommand1.CommandText = "INSERT INTO [BANK_MASTER] ([BANK_ID], [BANK_NAME]) VALUES (@BANK_ID, @BANK_NAME);" +
                                          "\r\nSELECT BANK_ID, BANK_NAME FROM BANK_MASTER WHERE (BANK_NAME = @BANK_NAME) ORDE" +
                                          "R BY BANK_NAME";
     this.sqlInsertCommand1.Connection = this.TR_Conn;
     this.sqlInsertCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@BANK_ID", System.Data.SqlDbType.Int, 0, "BANK_ID"),
         new System.Data.SqlClient.SqlParameter("@BANK_NAME", System.Data.SqlDbType.VarChar, 0, "BANK_NAME")
     });
     //
     // sqlSelectCommand1
     //
     this.sqlSelectCommand1.CommandText = "SELECT BANK_ID, BANK_NAME FROM BANK_MASTER where currency_id=@currency_id ORDER B" +
                                          "Y BANK_NAME";
     this.sqlSelectCommand1.Connection = this.TR_Conn;
     this.sqlSelectCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@currency_id", System.Data.SqlDbType.Int, 4, "CURRENCY_ID")
     });
     //
     // sqlUpdateCommand1
     //
     this.sqlUpdateCommand1.CommandText = resources.GetString("sqlUpdateCommand1.CommandText");
     this.sqlUpdateCommand1.Connection  = this.TR_Conn;
     this.sqlUpdateCommand1.Parameters.AddRange(new System.Data.SqlClient.SqlParameter[] {
         new System.Data.SqlClient.SqlParameter("@BANK_ID", System.Data.SqlDbType.Int, 0, "BANK_ID"),
         new System.Data.SqlClient.SqlParameter("@BANK_NAME", System.Data.SqlDbType.VarChar, 0, "BANK_NAME"),
         new System.Data.SqlClient.SqlParameter("@Original_BANK_ID", System.Data.SqlDbType.Int, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "BANK_ID", System.Data.DataRowVersion.Original, null),
         new System.Data.SqlClient.SqlParameter("@Original_BANK_NAME", System.Data.SqlDbType.VarChar, 0, System.Data.ParameterDirection.Input, false, ((byte)(0)), ((byte)(0)), "BANK_NAME", System.Data.DataRowVersion.Original, null)
     });
     //
     // chkIncludeHB
     //
     this.chkIncludeHB.Location                  = new System.Drawing.Point(21, 169);
     this.chkIncludeHB.Name                      = "chkIncludeHB";
     this.chkIncludeHB.Properties.Caption        = "Include Holdback";
     this.chkIncludeHB.Properties.NullStyle      = DevExpress.XtraEditors.Controls.StyleIndeterminate.Unchecked;
     this.chkIncludeHB.Properties.ValueChecked   = "T";
     this.chkIncludeHB.Properties.ValueUnchecked = "F";
     this.chkIncludeHB.Size                      = new System.Drawing.Size(113, 19);
     this.chkIncludeHB.TabIndex                  = 31;
     //
     // frmQuickCheck
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(288, 234);
     this.Controls.Add(this.chkIncludeHB);
     this.Controls.Add(this.ucAccountingPicker1);
     this.Controls.Add(this.btnPrint);
     this.Controls.Add(this.txtCheckNo);
     this.Controls.Add(this.deChkDate);
     this.Controls.Add(this.lueBank);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.labelControl3);
     this.Controls.Add(this.btnCancel);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmQuickCheck";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Quick Check Print";
     this.Load         += new System.EventHandler(this.frmQuickCheck_Load);
     ((System.ComponentModel.ISupportInitialize)(this.txtCheckNo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deChkDate.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.deChkDate.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lueBank.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dsBank1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkIncludeHB.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 37
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmQuickCheck));
     this.btnOK               = new DevExpress.XtraEditors.SimpleButton();
     this.btnCancel           = new DevExpress.XtraEditors.SimpleButton();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     this.ucAccountingPicker1 = new AccountingPicker.ucAccountingPicker();
     this.SuspendLayout();
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(224, 104);
     this.btnOK.Name     = "btnOK";
     this.btnOK.Size     = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 0;
     this.btnOK.Text     = "OK";
     this.btnOK.Click   += new System.EventHandler(this.btnOK_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(304, 104);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(16, 24);
     this.labelControl1.Name     = "labelControl1";
     this.labelControl1.Size     = new System.Drawing.Size(271, 13);
     this.labelControl1.TabIndex = 2;
     this.labelControl1.Text     = "Invoice will be accrued to this year and period. Proceed?";
     //
     // ucAccountingPicker1
     //
     this.ucAccountingPicker1.Appearance.BackColor            = System.Drawing.Color.Transparent;
     this.ucAccountingPicker1.Appearance.Options.UseBackColor = true;
     this.ucAccountingPicker1.HasEntryDate   = false;
     this.ucAccountingPicker1.LLayout        = AccountingPicker.ucAccountingPicker.enmLayout.Horizontal;
     this.ucAccountingPicker1.Location       = new System.Drawing.Point(16, 48);
     this.ucAccountingPicker1.Name           = "ucAccountingPicker1";
     this.ucAccountingPicker1.ReadOnly       = true;
     this.ucAccountingPicker1.SelectedPeriod = 0;
     this.ucAccountingPicker1.SelectedYear   = 0;
     this.ucAccountingPicker1.Size           = new System.Drawing.Size(352, 32);
     this.ucAccountingPicker1.TabIndex       = 3;
     this.ucAccountingPicker1.UserName       = "";
     //
     // frmQuickCheck
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(384, 134);
     this.Controls.Add(this.ucAccountingPicker1);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "frmQuickCheck";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Quick Check";
     this.Load         += new System.EventHandler(this.frmQuickCheck_Load);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserDataImportFile));
     this.Browse             = new DevExpress.XtraEditors.SimpleButton();
     this.FileName           = new DevExpress.XtraEditors.TextEdit();
     this.Label1             = new DevExpress.XtraEditors.LabelControl();
     this.DeleteExistingData = new DevExpress.XtraEditors.CheckEdit();
     this.Cancel             = new DevExpress.XtraEditors.SimpleButton();
     this.OK                  = new DevExpress.XtraEditors.SimpleButton();
     this.label3              = new DevExpress.XtraEditors.LabelControl();
     this.ImportInBackground  = new DevExpress.XtraEditors.CheckEdit();
     this.CheckForFileUpdates = new DevExpress.XtraEditors.CheckEdit();
     this.Bitmaps16x16        = new System.Windows.Forms.ImageList(this.components);
     this.HeaderLine          = new DevExpress.XtraEditors.CheckEdit();
     this.labelControl2       = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1       = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteExistingData.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImportInBackground.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.CheckForFileUpdates.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLine.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // Browse
     //
     this.Browse.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Browse.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Browse.Appearance.Options.UseFont      = true;
     this.Browse.Appearance.Options.UseForeColor = true;
     this.Browse.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Browse.Location    = new System.Drawing.Point(315, 80);
     this.Browse.Name        = "Browse";
     this.Browse.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Browse.Size        = new System.Drawing.Size(84, 22);
     this.Browse.TabIndex    = 32;
     this.Browse.Text        = "&Browse...";
     this.Browse.Click      += new System.EventHandler(this.Browse_Click);
     //
     // FileName
     //
     this.FileName.Cursor   = System.Windows.Forms.Cursors.IBeam;
     this.FileName.Location = new System.Drawing.Point(75, 82);
     this.FileName.Name     = "FileName";
     this.FileName.Properties.Appearance.BackColor            = System.Drawing.SystemColors.Window;
     this.FileName.Properties.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FileName.Properties.Appearance.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.FileName.Properties.Appearance.Options.UseBackColor = true;
     this.FileName.Properties.Appearance.Options.UseFont      = true;
     this.FileName.Properties.Appearance.Options.UseForeColor = true;
     this.FileName.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.FileName.Size        = new System.Drawing.Size(234, 20);
     this.FileName.TabIndex    = 31;
     this.FileName.Tag         = "Title";
     //
     // Label1
     //
     this.Label1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.Label1.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.Label1.Location = new System.Drawing.Point(11, 84);
     this.Label1.Name     = "Label1";
     this.Label1.Size     = new System.Drawing.Size(50, 13);
     this.Label1.TabIndex = 33;
     this.Label1.Text     = "File Name:";
     //
     // DeleteExistingData
     //
     this.DeleteExistingData.Location             = new System.Drawing.Point(13, 136);
     this.DeleteExistingData.Name                 = "DeleteExistingData";
     this.DeleteExistingData.Properties.AutoWidth = true;
     this.DeleteExistingData.Properties.Caption   = "Delete existing data before importing this file";
     this.DeleteExistingData.Size                 = new System.Drawing.Size(237, 19);
     this.DeleteExistingData.TabIndex             = 36;
     //
     // Cancel
     //
     this.Cancel.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.Cancel.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Cancel.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Cancel.Appearance.Options.UseFont      = true;
     this.Cancel.Appearance.Options.UseForeColor = true;
     this.Cancel.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.Cancel.DialogResult                    = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location                        = new System.Drawing.Point(333, 216);
     this.Cancel.Name        = "Cancel";
     this.Cancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Cancel.Size        = new System.Drawing.Size(68, 24);
     this.Cancel.TabIndex    = 38;
     this.Cancel.Tag         = "Cancel";
     this.Cancel.Text        = "Cancel";
     this.Cancel.Click      += new System.EventHandler(this.Cancel_Click);
     //
     // OK
     //
     this.OK.Anchor                          = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.OK.Appearance.Font                 = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.OK.Appearance.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.OK.Appearance.Options.UseFont      = true;
     this.OK.Appearance.Options.UseForeColor = true;
     this.OK.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.OK.Location                        = new System.Drawing.Point(257, 216);
     this.OK.Name        = "OK";
     this.OK.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.OK.Size        = new System.Drawing.Size(68, 24);
     this.OK.TabIndex    = 37;
     this.OK.Tag         = "OK";
     this.OK.Text        = "OK";
     this.OK.Click      += new System.EventHandler(this.OK_Click);
     //
     // label3
     //
     this.label3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Near;
     this.label3.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Top;
     this.label3.Appearance.TextOptions.WordWrap   = DevExpress.Utils.WordWrap.Wrap;
     this.label3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.label3.Location     = new System.Drawing.Point(5, 5);
     this.label3.Name         = "label3";
     this.label3.Size         = new System.Drawing.Size(394, 58);
     this.label3.TabIndex     = 41;
     this.label3.Text         = resources.GetString("label3.Text");
     //
     // ImportInBackground
     //
     this.ImportInBackground.Location             = new System.Drawing.Point(13, 159);
     this.ImportInBackground.Name                 = "ImportInBackground";
     this.ImportInBackground.Properties.AutoWidth = true;
     this.ImportInBackground.Properties.Caption   = "Import in the background";
     this.ImportInBackground.Size                 = new System.Drawing.Size(143, 19);
     this.ImportInBackground.TabIndex             = 44;
     //
     // CheckForFileUpdates
     //
     this.CheckForFileUpdates.Location             = new System.Drawing.Point(13, 182);
     this.CheckForFileUpdates.Name                 = "CheckForFileUpdates";
     this.CheckForFileUpdates.Properties.AutoWidth = true;
     this.CheckForFileUpdates.Properties.Caption   = "Re-import this file in the future whenever it changes";
     this.CheckForFileUpdates.Size                 = new System.Drawing.Size(272, 19);
     this.CheckForFileUpdates.TabIndex             = 45;
     //
     // Bitmaps16x16
     //
     this.Bitmaps16x16.ImageStream      = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("Bitmaps16x16.ImageStream")));
     this.Bitmaps16x16.TransparentColor = System.Drawing.Color.Cyan;
     this.Bitmaps16x16.Images.SetKeyName(0, "SharePoint.bmp");
     //
     // HeaderLine
     //
     this.HeaderLine.EditValue            = true;
     this.HeaderLine.Location             = new System.Drawing.Point(13, 112);
     this.HeaderLine.Name                 = "HeaderLine";
     this.HeaderLine.Properties.AutoWidth = true;
     this.HeaderLine.Properties.Caption   = "First line of file contains column header labels";
     this.HeaderLine.Size                 = new System.Drawing.Size(238, 19);
     this.HeaderLine.TabIndex             = 49;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl2.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl2.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelControl2.AutoSizeMode         = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.labelControl2.LineVisible = true;
     this.labelControl2.Location    = new System.Drawing.Point(-1, 63);
     this.labelControl2.Name        = "labelControl2";
     this.labelControl2.Size        = new System.Drawing.Size(406, 10);
     this.labelControl2.TabIndex    = 51;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.labelControl1.Appearance.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelControl1.Appearance.ForeColor = System.Drawing.SystemColors.ControlText;
     this.labelControl1.AutoSizeMode         = DevExpress.XtraEditors.LabelAutoSizeMode.None;
     this.labelControl1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.labelControl1.LineVisible = true;
     this.labelControl1.Location    = new System.Drawing.Point(-1, 203);
     this.labelControl1.Name        = "labelControl1";
     this.labelControl1.Size        = new System.Drawing.Size(406, 10);
     this.labelControl1.TabIndex    = 52;
     //
     // UserDataImportFile
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize        = new System.Drawing.Size(405, 245);
     this.Controls.Add(this.HeaderLine);
     this.Controls.Add(this.CheckForFileUpdates);
     this.Controls.Add(this.ImportInBackground);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.Browse);
     this.Controls.Add(this.FileName);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.DeleteExistingData);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl2);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "UserDataImportFile";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Import File";
     this.Activated      += new System.EventHandler(this.AnnotationImport_Activated);
     this.Closing        += new System.ComponentModel.CancelEventHandler(this.AnnotationImport_Closing);
     ((System.ComponentModel.ISupportInitialize)(this.FileName.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DeleteExistingData.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ImportInBackground.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.CheckForFileUpdates.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.HeaderLine.Properties)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 39
0
        //起始位置11、11 |128、8;size 337:21|
        //垂直增加33  
        private void frmSBTZ_Load(object sender, EventArgs e)
        {
            //lable一个字符站12个宽度
            this.xtraTabControl1.TabPages.Clear();
            this.splitContainerControl1.Panel2.Controls.Clear();
            //lable起始位置
            int startlblw = 11;
            int startlblh = 11;
            //textbox起始位置
            int starttextw = 180;
            int starttexth = 8;
            int addh = 33;
            int pageNumber = 1;
            IList<BD_SBTZ_SX> sbsxList = Client.ClientHelper.PlatformSqlMap.GetListByWhere<BD_SBTZ_SX>("where zldm='" + rowData.sbtype + "' order by convert(int,norder)");
            int[] widthArr = new int[sbsxList.Count / 11 + 1];
            for (int i = 0; i < widthArr.Length; i++)
            {
                widthArr[i] = GetMaxLblWidth(i, sbsxList);
            }
                if (sbsxList.Count > 0)
                {
                    DevExpress.XtraTab.XtraTabPage XtraPage = null;
                    int i = 1;
                    foreach (BD_SBTZ_SX sbsx in sbsxList)
                    {
                        if (i > 100 || XtraPage == null)
                        {
                            XtraPage = new DevExpress.XtraTab.XtraTabPage();
                            XtraPage.Name = "xtrpage" + pageNumber;
                            XtraPage.Text = "设备属性";
                            this.xtraTabControl1.TabPages.Add(XtraPage);
                            XtraPage.AutoScroll = true;
                            pageNumber++;
                        }
                        if (i > 100)
                        {
                            i = 1;
                            startlblw = 11;
                            startlblh = 11;
                            starttextw = 180;
                            starttexth = 8;
                        }
                        DevExpress.XtraEditors.LabelControl lbl = new DevExpress.XtraEditors.LabelControl();
                        lbl.Name = lbl + sbsx.sxcol;
                        lbl.Text = sbsx.sxname.Trim();
                        lbl.Location = new Point(startlblw, startlblh);

                        //DevExpress.XtraEditors.TextEdit txtEdit = new DevExpress.XtraEditors.TextEdit();
                        Control txtEdit = createControl(sbsx);
                        txtEdit.Name = sbsx.sxcol;
                        //txtEdit.DataBindings.Add("EditValue", rowData, sbsx.sxcol);
                        txtEdit.Size = new Size(337, 21);
                        //txtEdit.Location = new Point(starttextw, starttexth);
                        txtEdit.Location = new Point(widthArr[pageNumber - 2] + 40, starttexth);
                        
                        XtraPage.Controls.Add(lbl);
                        XtraPage.Controls.Add(txtEdit);
                        startlblh += 33;
                        starttexth += 33;
                        i++;
                    }
                    XtraPage = new DevExpress.XtraTab.XtraTabPage();
                    XtraPage.Name = "xtrPagePicture";
                    XtraPage.Text = "变电设备照片";
                    this.xtraTabControl1.TabPages.Add(XtraPage);
                    GroupBox grpbox = new GroupBox();
                    grpbox.Location = new Point(0, 0);
                    grpbox.Text = "照片";
                    grpbox.Name = "grppicture";
                    //grpbox.Dock = DockStyle.Top;
                    grpbox.Dock = DockStyle.Fill;
                    grpbox.Size = new Size(565, 386);
                    XtraPage.Controls.Add(grpbox);

                    pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
                    pictureEdit1.Dock = DockStyle.Fill;
                    pictureEdit1.Name = "pictureEdit1";
                    pictureEdit1.Properties.SizeMode = DevExpress.XtraEditors.Controls.PictureSizeMode.Zoom;
                    grpbox.Controls.Add(pictureEdit1);
                    pictureEdit1.EditValueChanged += new EventHandler(pictureEdit1_EditValueChanged);


                    DevExpress.XtraEditors.SimpleButton btnOk = new DevExpress.XtraEditors.SimpleButton();
                    btnOk.Name = "btnOk";
                    btnOk.Text = "确定";
                    btnOk.Location = new Point(357, 9);
                    btnOk.Click += new EventHandler(btnOk_Click);
                    btnOk.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

                    DevExpress.XtraEditors.SimpleButton btnCancel = new DevExpress.XtraEditors.SimpleButton();
                    btnCancel.Name = "btnCancel";
                    btnCancel.Text = "取消";
                    btnCancel.Location = new Point(461, 9);
                    btnCancel.Click += new EventHandler(btnCancel_Click);
                    btnCancel.Anchor = AnchorStyles.Bottom | AnchorStyles.Right;

                    this.splitContainerControl1.Panel2.Controls.Add(btnOk);
                    this.splitContainerControl1.Panel2.Controls.Add(btnCancel);

                }
            setImage();

        }