Ejemplo n.º 1
0
 public static void ChonDoiTuong(PLCombobox Input)
 {
     DataSet ds;
     ds = DABase.getDatabase().LoadDataSet(
         "select id, caption from fw_obj where visible_bit='Y'");
     Input._init(ds.Tables[0], "CAPTION", "ID");
 }
Ejemplo n.º 2
0
 public static void InitChonChuyenMuc(PLCombobox PLChuyenMuc,bool? IsAdd)
 {
     QueryBuilder query = null;
     query = new QueryBuilder("SELECT * FROM CHUYEN_MUC where 1=1 " + (IsAdd == true ? " AND VISIBLE_BIT='Y'" : "") + " and 1=1");
     DataSet ds = HelpDB.getDatabase().LoadDataSet(query);
     PLChuyenMuc._init(ds.Tables[0], "NAME", "ID");
 }
Ejemplo n.º 3
0
 public static void InitChonKhachHang(PLCombobox PLKhachhang)
 {
     QueryBuilder query = null;
     query = new QueryBuilder("SELECT distinct TEN_KHACH_HANG, KH_ID FROM KHACH_HANG where 1=1");
     DataSet ds = DABase.getDatabase().LoadDataSet(query);
     PLKhachhang._init(ds.Tables[0], "TEN_KHACH_HANG", "KH_ID");
 }
Ejemplo n.º 4
0
 public static void ChonPhieu(PLCombobox Input, long obj_id)
 {
     DataSet ds;
     ds = DABase.getDatabase().LoadDataSet("select fp.id, fp.caption from fw_phieu fp " +
         "inner join fw_obj_phieu fo on (fp.id=fo.phieu_id) " +
         "where obj_id='" + obj_id + "'");
     Input._init(ds.Tables[0], "CAPTION", "ID");
 }
Ejemplo n.º 5
0
 public void InitCtrl(PLCombobox Input, bool? IsAdd, bool ReadOnly)
 {
     DataSet ds = new DataSet();
     DataTable dt = I();
     ds.Tables.Add(dt);
     Input._init(ds.Tables[0], "NAME", "ID");
     if (ReadOnly)
         Input._lookUpEdit.Properties.TextEditStyle = TextEditStyles.DisableTextEditor;
 }
Ejemplo n.º 6
0
 public static void InitChonChuyenMuc(PLCombobox PLChuyenMuc, long ID_Dien_Dan)
 {
     QueryBuilder query = null;
     query = new QueryBuilder("SELECT * FROM CHUYEN_MUC where 1=1");
     query.addCondition("VISIBLE_BIT='Y'");
     query.addID("ID_NHOM_DIEN_DAN", ID_Dien_Dan);
     DataSet ds = DienDanPermission.I._LoadDataSetWithResPermission(query, "ID");
     PLChuyenMuc._init(ds.Tables[0], "NAME", "ID");
 }
Ejemplo n.º 7
0
 public static void ChonLoaiCongViec(PLCombobox input)
 {
     string sql = "select NAME, ID from DM_LOAI_CONG_VIECN where VISIBLE_BIT = 'Y'";
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource = ds.Tables[0];
     input.DisplayField = "NAME";
     input.ValueField = "ID";
     input._init();
 }
Ejemplo n.º 8
0
 //PHUOCNC : Tại sao có 2 cái phân biệt thế này.
 public static void ChonNhanVienRPT(PLCombobox input)
 {
     string sql = "select * from DM_NHAN_VIEN";
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource = ds.Tables[0];
     input.DisplayField = "NAME";
     input.ValueField = "ID";
     input._setSelectedID(-1);
     input._init();
 }
Ejemplo n.º 9
0
 public static void ChonNhanVien(PLCombobox input)
 {
     string sql = "Select NV.* from DM_NHAN_VIEN NV inner join USER_CAT US on nv.id=us.employee_id";
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource = ds.Tables[0];
     input.DisplayField = "NAME";
     input.ValueField = "ID";
     input._setSelectedID(-1);
     input._init();
 }
Ejemplo n.º 10
0
 public static void _initVAT(PLCombobox Input)
 {
     DataSet ds = new DataSet();
     DataTable dt = FWControlData.VAL_VAT();
     ds.Tables.Add(dt);
     Input.DataSource = ds.Tables[0]; ;
     Input.DisplayField = "VAT";
     Input.ValueField = "VAT";
     Input._init();
 }
Ejemplo n.º 11
0
 public static void ChonLoaiDuAn(PLCombobox input)
 {
     string sql = "select * from DM_LOAI_DU_AN where VISIBLE_BIT='Y'";
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource=ds.Tables[0];
     input.DisplayField = "NAME";
     input.ValueField = "ID";
     input._setSelectedID(-1);
     input._init();
 }
Ejemplo n.º 12
0
 public void InitCtrl(PLCombobox Input, bool? IsAdd)
 {
     string sql;
     if (IsAdd == true)
         sql = "SELECT ID,NAME FROM DM_LOAI_VAN_DE WHERE VISIBLE_BIT='Y' ORDER BY NAME";
     else
         sql = "SELECT ID,NAME FROM DM_LOAI_VAN_DE ORDER BY NAME";
     DataSet dsNV = HelpDB.getDatabase().LoadDataSet(sql);
     Input._init(dsNV.Tables[0], "NAME", "ID");
 }
Ejemplo n.º 13
0
 public static void loadcongviec(PLCombobox input,long id)
 {
     string sql = "select * from cong_viec where loai_du_an="+id;
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource = ds.Tables[0];
     input.DisplayField = "NAME";
     input.ValueField = "ID";
     input._setSelectedID(-1);
     input._init();
 }
Ejemplo n.º 14
0
 public static void loadduan(PLCombobox input)
 {
     string sql = "select * from DU_AN";
     DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
     input.DataSource = ds.Tables[0];
     input.DisplayField = "name";
     input.ValueField = "ID";
     input._setSelectedID(-1);
     input._init();
 }
Ejemplo n.º 15
0
 public void InitCtrl(PLCombobox Input, bool? IsAdd)
 {
     QueryBuilder query = null;
     if (IsAdd == true)
         query = new QueryBuilder("SELECT * FROM DM_VAN_DE_GOP_Y where VISIBLE_BIT = 'Y' AND 1=1");
     else
         query = new QueryBuilder("SELECT * FROM DM_VAN_DE_GOP_Y where 1=1");
     query.setAscOrderBy("NAME");
     DataSet ds = HelpDB.getDatabase().LoadDataSet(query);
     Input._init(ds.Tables[0], "NAME", "ID");
 }
Ejemplo n.º 16
0
        public static void ChonNhomTin(PLCombobox Input, bool? IsAdd)
        {
            DataSet dsNTT;
            //true:add, false:edit, null:xem
            QueryBuilder query=new QueryBuilder("select ID,NAME from DM_NHOM_TIN_TUC WHERE 1=1");
            if (IsAdd == true)
               query.addCondition("VISIBLE_BIT='Y'");
            query.setAscOrderBy("NAME");
            dsNTT = TinTucPermission.I._LoadDataSetWithResGroupPermission(query, "ID");

            Input._init(dsNTT.Tables[0], "NAME", "ID");
        }
Ejemplo n.º 17
0
        /// <summary>
        /// Lấy DataSource cho Tuyến.
        /// </summary>
        /// <param name="Input">The input.</param>
        /// <param name="IsAdd">The is add.</param>
        public static void ChonTuyen(PLCombobox Input, bool? IsAdd)
        {
            DataSet dt;
            if (IsAdd != null && IsAdd == true)
            {
                dt = DABase.getDatabase().LoadDataSet("select * from DM_TUYEN where VISIBLE_BIT='Y'", "DM_TUYEN");
            }
            else
            {
                dt = DABase.getDatabase().LoadTable("DM_TUYEN");
            }

            Input._init(dt.Tables[0], "NAME", "ID");
        }
Ejemplo n.º 18
0
        public static void InitCtrl(PLCombobox Input, bool? IsAdd)
        {
            string sql = string.Format(@"SELECT *
                           From {0}
                           where 1=1", TABLE_MAP);

            QueryBuilder query = new QueryBuilder(sql);
            if (IsAdd == true)
                query.addCondition("VISIBLE_BIT='Y'");
            query.setAscOrderBy("lower(NAME)");
            DataSet ds = HelpDB.getDatabase().LoadDataSet(query, TABLE_MAP);
            Input.DataSource = ds.Tables[0];
            Input.DisplayField = "NAME";
            Input.ValueField = "ID";
            Input._init();
        }
Ejemplo n.º 19
0
 public static void InitCtrl(PLCombobox Input, bool? IsAdd)
 {
     string sql = string.Format(@"SELECT *
                    From {0}
                    where 1=1", TABLE_MAP);
     QueryBuilder query = new QueryBuilder(sql);
     if (IsAdd == true)
     {
         query.addID("CONG_TY",  FrameworkParams.LoginCompanyID);
         query.addCondition("VISIBLE_BIT='Y'");
     }
     query.setAscOrderBy("lower(NAME)");
     DataSet ds = HelpDB.getDatabase().LoadDataSet(query,TABLE_MAP);
     Input.MainCtrl.Properties.SortColumnIndex = -1;
     Input.DataSource = AppUtil.SortLogicalTable(ds.Tables[0], "NAME");
     Input.DisplayField = "NAME";
     Input.ValueField = "ID";
     Input._init();
 }
Ejemplo n.º 20
0
        public static void InitChonDienDan(PLCombobox PLDien_Dan, bool? IsAdd)
        {
            QueryBuilder query = null;
            string sql = "";
            if (DienDanPermission.I.IsPermission)
            {
                string ndds = DienDanPermission.I._getPermissionResGroupStrIDs(PermissionOfResource.RES_PERMISSION_TYPE.READ);
                if (ndds == "") ndds = "-1";
                string ncms = DienDanPermission.I._getPermissionResStrIDs(PermissionOfResource.RES_PERMISSION_TYPE.READ);
                if (ncms == "") ncms = "-1";
                sql = @"select *
                        from nhom_dien_dan ndd where (ndd.id in (" + ndds + @")
                        or ndd.id in (select cm.id_nhom_dien_dan from chuyen_muc cm where cm.id in(" + ncms + "))) " + (IsAdd == true ? " AND VISIBLE_BIT='Y'" : "") + " and  ID<>ID_ROOT  and 1=1 ";
            }
            else
            {
                sql = "SELECT * FROM NHOM_DIEN_DAN where ID_CHA<>0 " + (IsAdd == true ? " AND VISIBLE_BIT='Y'" : "") + " and 1=1";

            }

            DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);
            PLDien_Dan._init(ds.Tables[0], "NAME", "ID");
        }
Ejemplo n.º 21
0
        //Cần phải có table này FW_OBJECT_DEPARTMENT
        public void InitCtrl(PLCombobox Input, string PhongBan, bool IsVisible)
        {
            string query = "";
            if (PhongBan == null)
            {
                query = @"select NV.* from DM_NHAN_VIEN where 1=1";
            }
            else
            {
                query = @"select NV.* from DM_NHAN_VIEN NV,FW_OBJECT_DEPARTMENT PPB,DEPARTMENT D, FW_DM_OBJECT O
                            where O.CODE in (" + PhongBan + @") and O.id=PPB.object_id and PPB.DEPARTMENT_ID=D.ID
                            and NV.DEPARTMENT_ID=D.ID";
            }
            if (IsVisible) query += " and NV.VISIBLE_BIT = 'Y'";
            query += " order by lower(NV.NAME)";
            DataSet ds = DABase.getDatabase().LoadDataSet(query);

            Input.DataSource = ds.Tables[0];
            Input.DisplayField = "NAME";
            Input.ValueField = "ID";
            Input._TableName = "DM_NHAN_VIEN";
            Input._init();
        }
 /// <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();
     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.Cot_MaHoSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TenUngVien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TTHS = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgayLamViec = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_SoNgayConLai = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_KetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_GhiChu = new DevExpress.XtraGrid.Columns.GridColumn();
     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.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.SoNgayKetThuc = new DevExpress.XtraEditors.CalcEdit();
     this.TinhTrangHoSo = new ProtocolVN.Framework.Win.PLCombobox();
     this.TenUngVien = new ProtocolVN.Framework.Win.PLCombobox();
     this.MaHoSo = new DevExpress.XtraEditors.TextEdit();
     this.DenNgay = new DevExpress.XtraEditors.DateEdit();
     this.TuNgay = new DevExpress.XtraEditors.DateEdit();
     this.label8 = new  System.Windows.Forms.PLLabel ();
     this.label4 = new  System.Windows.Forms.PLLabel ();
     this.label5 = new  System.Windows.Forms.PLLabel ();
     this.label2 = new  System.Windows.Forms.PLLabel ();
     this.label3 = new  System.Windows.Forms.PLLabel ();
     this.label1 = new  System.Windows.Forms.PLLabel ();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.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();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoNgayKetThuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaHoSo.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.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 = 35;
     //
     // 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.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1),
     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 t&rướ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 tìm kiếm";
     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;
     //
     // 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, 87);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     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(804, 410);
     this.splitContainerControl1.SplitterPosition = 175;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // gridControlMaster
     //
     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(804, 175);
     this.gridControlMaster.TabIndex = 0;
     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.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_MaHoSo,
     this.Cot_TenUngVien,
     this.Cot_TTHS,
     this.Cot_SoNgay,
     this.Cot_TuNgay,
     this.Cot_DenNgay,
     this.Cot_SoNgayLamViec,
     this.Cot_SoNgayConLai,
     this.Cot_KetThuc,
     this.Cot_GhiChu});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các phiếu mua hàng thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.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.ShowGroupedColumns = true;
     //
     // Cot_MaHoSo
     //
     this.Cot_MaHoSo.Caption = "Mã hồ sơ";
     this.Cot_MaHoSo.Name = "Cot_MaHoSo";
     this.Cot_MaHoSo.Visible = true;
     this.Cot_MaHoSo.VisibleIndex = 0;
     this.Cot_MaHoSo.Width = 55;
     //
     // Cot_TenUngVien
     //
     this.Cot_TenUngVien.Caption = "Tên ứng viên";
     this.Cot_TenUngVien.Name = "Cot_TenUngVien";
     this.Cot_TenUngVien.Visible = true;
     this.Cot_TenUngVien.VisibleIndex = 1;
     //
     // Cot_TTHS
     //
     this.Cot_TTHS.Caption = "Tình trạng hồ sơ";
     this.Cot_TTHS.Name = "Cot_TTHS";
     this.Cot_TTHS.Visible = true;
     this.Cot_TTHS.VisibleIndex = 3;
     this.Cot_TTHS.Width = 90;
     //
     // Cot_SoNgay
     //
     this.Cot_SoNgay.Caption = "Số ngày";
     this.Cot_SoNgay.Name = "Cot_SoNgay";
     this.Cot_SoNgay.Visible = true;
     this.Cot_SoNgay.VisibleIndex = 2;
     this.Cot_SoNgay.Width = 51;
     //
     // Cot_TuNgay
     //
     this.Cot_TuNgay.Caption = "Ngày bắt đầu";
     this.Cot_TuNgay.Name = "Cot_TuNgay";
     this.Cot_TuNgay.Visible = true;
     this.Cot_TuNgay.VisibleIndex = 4;
     this.Cot_TuNgay.Width = 77;
     //
     // Cot_DenNgay
     //
     this.Cot_DenNgay.Caption = "Ngày kết thúc";
     this.Cot_DenNgay.Name = "Cot_DenNgay";
     this.Cot_DenNgay.Visible = true;
     this.Cot_DenNgay.VisibleIndex = 5;
     this.Cot_DenNgay.Width = 79;
     //
     // Cot_SoNgayLamViec
     //
     this.Cot_SoNgayLamViec.Caption = "Số ngày đi làm";
     this.Cot_SoNgayLamViec.Name = "Cot_SoNgayLamViec";
     this.Cot_SoNgayLamViec.Visible = true;
     this.Cot_SoNgayLamViec.VisibleIndex = 6;
     this.Cot_SoNgayLamViec.Width = 81;
     //
     // Cot_SoNgayConLai
     //
     this.Cot_SoNgayConLai.Caption = "Số ngày còn lại";
     this.Cot_SoNgayConLai.Name = "Cot_SoNgayConLai";
     this.Cot_SoNgayConLai.Visible = true;
     this.Cot_SoNgayConLai.VisibleIndex = 7;
     this.Cot_SoNgayConLai.Width = 84;
     //
     // Cot_KetThuc
     //
     this.Cot_KetThuc.Caption = "Kết thúc";
     this.Cot_KetThuc.Name = "Cot_KetThuc";
     this.Cot_KetThuc.Visible = true;
     this.Cot_KetThuc.VisibleIndex = 8;
     this.Cot_KetThuc.Width = 52;
     //
     // Cot_GhiChu
     //
     this.Cot_GhiChu.Caption = "Ghi chú";
     this.Cot_GhiChu.Name = "Cot_GhiChu";
     this.Cot_GhiChu.Visible = true;
     this.Cot_GhiChu.VisibleIndex = 9;
     this.Cot_GhiChu.Width = 47;
     //
     // 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(804, 229);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail});
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.Size = new System.Drawing.Size(795, 198);
     this.xtraTabPageDetail.Text = "Chi tiết";
     //
     // gridControlDetail
     //
     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.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlDetail.Size = new System.Drawing.Size(795, 198);
     this.gridControlDetail.TabIndex = 0;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.IndicatorWidth = 40;
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewDetail.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail.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;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.SoNgayKetThuc);
     this.popupControlContainerFilter.Controls.Add(this.TinhTrangHoSo);
     this.popupControlContainerFilter.Controls.Add(this.TenUngVien);
     this.popupControlContainerFilter.Controls.Add(this.MaHoSo);
     this.popupControlContainerFilter.Controls.Add(this.DenNgay);
     this.popupControlContainerFilter.Controls.Add(this.TuNgay);
     this.popupControlContainerFilter.Controls.Add(this.label8);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     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(804, 63);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // SoNgayKetThuc
     //
     this.SoNgayKetThuc.Location = new System.Drawing.Point(722, 6);
     this.SoNgayKetThuc.Name = "SoNgayKetThuc";
     this.SoNgayKetThuc.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoNgayKetThuc.Size = new System.Drawing.Size(70, 20);
     this.SoNgayKetThuc.TabIndex = 6;
     //
     // TinhTrangHoSo
     //
     this.TinhTrangHoSo.DataSource = null;
     this.TinhTrangHoSo.DisplayField = null;
     this.TinhTrangHoSo.Location = new System.Drawing.Point(402, 6);
     this.TinhTrangHoSo.Name = "TinhTrangHoSo";
     this.TinhTrangHoSo.Size = new System.Drawing.Size(204, 21);
     this.TinhTrangHoSo.TabIndex = 5;
     this.TinhTrangHoSo.ValueField = null;
     //
     // TenUngVien
     //
     this.TenUngVien.DataSource = null;
     this.TenUngVien.DisplayField = null;
     this.TenUngVien.Location = new System.Drawing.Point(90, 34);
     this.TenUngVien.Name = "TenUngVien";
     this.TenUngVien.Size = new System.Drawing.Size(204, 21);
     this.TenUngVien.TabIndex = 5;
     this.TenUngVien.ValueField = null;
     //
     // MaHoSo
     //
     this.MaHoSo.Location = new System.Drawing.Point(90, 6);
     this.MaHoSo.Name = "MaHoSo";
     this.MaHoSo.Properties.MaxLength = 100;
     this.MaHoSo.Size = new System.Drawing.Size(204, 20);
     this.MaHoSo.TabIndex = 0;
     //
     // DenNgay
     //
     this.DenNgay.EditValue = null;
     this.DenNgay.Location = new System.Drawing.Point(519, 34);
     this.DenNgay.Name = "DenNgay";
     this.DenNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DenNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.DenNgay.Size = new System.Drawing.Size(87, 20);
     this.DenNgay.TabIndex = 3;
     //
     // TuNgay
     //
     this.TuNgay.EditValue = null;
     this.TuNgay.Location = new System.Drawing.Point(402, 34);
     this.TuNgay.Name = "TuNgay";
     this.TuNgay.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.TuNgay.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.TuNgay.Size = new System.Drawing.Size(88, 20);
     this.TuNgay.TabIndex = 2;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(491, 38);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(27, 13);
     this.label8.TabIndex = 3;
     this.label8.Text = "Đến";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(316, 38);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(47, 13);
     this.label4.TabIndex = 2;
     this.label4.Text = "Từ ngày";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(628, 10);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(88, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Số ngày kết thúc";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(316, 10);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(85, 13);
     this.label2.TabIndex = 5;
     this.label2.Text = "Tình trạng hồ sơ";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(4, 10);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(50, 13);
     this.label3.TabIndex = 0;
     this.label3.Text = "Mã hồ sơ";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(4, 38);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(84, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Họ tên ứng viê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;
     //
     // frmTheoDoi_TT_HL_TVQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 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 = "frmTheoDoi_TT_HL_TVQL";
     this.Text = "Quản lý phiếu mua hàng của nhà cung cấp";
     ((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);
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.SoNgayKetThuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaHoSo.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DenNgay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TuNgay.Properties)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 protected void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     DevExpress.XtraScheduler.TimeRuler timeRuler1 = new DevExpress.XtraScheduler.TimeRuler();
     DevExpress.XtraScheduler.TimeRuler timeRuler2 = new DevExpress.XtraScheduler.TimeRuler();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMeetingQL));
     DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = 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.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
     this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
     this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
     this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
     this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
     this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
     this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
     this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
     this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl2 = new System.Windows.Forms.PLLabel();
     this.Tuan = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Ngay = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.Thang = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.labelControl5 = new System.Windows.Forms.PLLabel();
     this.Ngaythuchien = new DevExpress.XtraScheduler.DateNavigator();
     this.schedulerControl = new DevExpress.XtraScheduler.SchedulerControl();
     this.schedulerStorage = new DevExpress.XtraScheduler.SchedulerStorage(this.components);
     this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
     this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
     this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
     this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemDuyet = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemK_Duyet = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageChiTiet = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetail = new DevExpress.XtraGrid.Views.Layout.LayoutView();
     this.ID = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNgay = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioBD = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_2 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotGioKT = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.layoutViewField_layoutViewColumn1_3 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotNoiDung = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repNoiDung = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_4 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.cotDiaDiemHop = new DevExpress.XtraGrid.Columns.LayoutViewColumn();
     this.repDiaDiemHop = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.layoutViewField_layoutViewColumn1_5 = new DevExpress.XtraGrid.Views.Layout.LayoutViewField();
     this.layoutViewCard1 = new DevExpress.XtraGrid.Views.Layout.LayoutViewCard();
     this.item1 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.item2 = new DevExpress.XtraLayout.SimpleLabelItem();
     this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemPictureEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemPictureEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repositoryItemMemoEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoEdit();
     this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemButtonEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemMemoExEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.rep_mofile = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.rep_luu_file = new DevExpress.XtraEditors.Repository.RepositoryItemPictureEdit();
     this.repDiaDiem = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotThoiGianBatDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotThoiGianKetThuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDiaDiem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotNguoiToChuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotTinhChat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotLoaiMeeting = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotKetQua = new DevExpress.XtraGrid.Columns.GridColumn();
     this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
     this.repositoryItemImageComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemImageComboBox();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.rtxVanBan = new System.Windows.Forms.RichTextBox();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.cboNguoiToChuc = new ProtocolVN.Framework.Win.PLCombobox();
     this.txtDiaDiem = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.PLLabel();
     this.cboTinhChat = new ProtocolVN.Framework.Win.PLCombobox();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.cboLoai = new ProtocolVN.Framework.Win.PLCombobox();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.labelControl1 = new System.Windows.Forms.PLLabel();
     this.checkEdit1 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit2 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.checkEdit3 = new ProtocolVN.Framework.Win.PLCheckEdit();
     this.imageList_layout = new System.Windows.Forms.ImageList(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
     this.dockPanel1.SuspendLayout();
     this.dockPanel1_Container.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
     this.panelControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
     this.splitContainerControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
     this.xtraTabControlDetail.SuspendLayout();
     this.xtraTabPageChiTiet.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).BeginInit();
     this.xtraTabPageDetail.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.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.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.barButtonItemDuyet,
     this.barButtonItemK_Duyet});
     this.barManager1.MaxItemId = 37;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(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.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;
     //
     // 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;
     this.barButtonItemSearch.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // 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 tìm kiếm";
     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, 579);
     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, 555);
     //
     // 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, 555);
     //
     // dockManager1
     //
     this.dockManager1.Form = this;
     this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
     this.dockPanel1});
     this.dockManager1.TopZIndexControls.AddRange(new string[] {
     "DevExpress.XtraBars.BarDockControl",
     "DevExpress.XtraBars.StandaloneBarDockControl",
     "System.Windows.Forms.StatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
     "DevExpress.XtraBars.Ribbon.RibbonControl"});
     //
     // dockPanel1
     //
     this.dockPanel1.Controls.Add(this.dockPanel1_Container);
     this.dockPanel1.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
     this.dockPanel1.ID = new System.Guid("b41cff86-da37-41cb-9b0d-062fa10996a9");
     this.dockPanel1.Location = new System.Drawing.Point(0, 24);
     this.dockPanel1.Name = "dockPanel1";
     this.dockPanel1.Options.ShowCloseButton = false;
     this.dockPanel1.OriginalSize = new System.Drawing.Size(200, 200);
     this.dockPanel1.Size = new System.Drawing.Size(200, 555);
     this.dockPanel1.Text = "Tùy chọn";
     //
     // dockPanel1_Container
     //
     this.dockPanel1_Container.Controls.Add(this.panelControl2);
     this.dockPanel1_Container.Controls.Add(this.labelControl5);
     this.dockPanel1_Container.Controls.Add(this.Ngaythuchien);
     this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
     this.dockPanel1_Container.Name = "dockPanel1_Container";
     this.dockPanel1_Container.Size = new System.Drawing.Size(194, 527);
     this.dockPanel1_Container.TabIndex = 0;
     //
     // panelControl2
     //
     this.panelControl2.Controls.Add(this.labelControl2);
     this.panelControl2.Controls.Add(this.Tuan);
     this.panelControl2.Controls.Add(this.Ngay);
     this.panelControl2.Controls.Add(this.Thang);
     this.panelControl2.Location = new System.Drawing.Point(8, 196);
     this.panelControl2.Name = "panelControl2";
     this.panelControl2.Size = new System.Drawing.Size(178, 96);
     this.panelControl2.TabIndex = 99;
     //
     // labelControl2
     //
     this.labelControl2.Location = new System.Drawing.Point(5, 5);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(82, 13);
     this.labelControl2.TabIndex = 22;
     this.labelControl2.Text = "Tùy chọn hiển thị";
     this.labelControl2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Tuan
     //
     this.Tuan.Location = new System.Drawing.Point(18, 49);
     this.Tuan.Name = "Tuan";
     this.Tuan.Properties.Caption = "Theo tuần";
     this.Tuan.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Tuan.Properties.RadioGroupIndex = 1;
     this.Tuan.Size = new System.Drawing.Size(83, 19);
     this.Tuan.TabIndex = 21;
     this.Tuan.TabStop = false;
     this.Tuan.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Tuan.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Tuan.CheckedChanged += new System.EventHandler(this.Tuan_CheckedChanged);
     //
     // Ngay
     //
     this.Ngay.Location = new System.Drawing.Point(18, 24);
     this.Ngay.Name = "Ngay";
     this.Ngay.Properties.Caption = "Theo ngày";
     this.Ngay.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Ngay.Properties.RadioGroupIndex = 1;
     this.Ngay.Size = new System.Drawing.Size(83, 19);
     this.Ngay.TabIndex = 17;
     this.Ngay.TabStop = false;
     this.Ngay.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Ngay.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Ngay.CheckedChanged += new System.EventHandler(this.Ngay_CheckedChanged);
     //
     // Thang
     //
     this.Thang.Location = new System.Drawing.Point(18, 74);
     this.Thang.Name = "Thang";
     this.Thang.Properties.Caption = "Theo tháng";
     this.Thang.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.Thang.Properties.RadioGroupIndex = 1;
     this.Thang.Size = new System.Drawing.Size(83, 19);
     this.Thang.TabIndex = 18;
     this.Thang.TabStop = false;
     this.Thang.ToolTip = "Dữ liệu bắt buộc nhập";
     this.Thang.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     this.Thang.CheckedChanged += new System.EventHandler(this.Thang_CheckedChanged);
     //
     // labelControl5
     //
     this.labelControl5.Location = new System.Drawing.Point(13, 3);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(43, 13);
     this.labelControl5.TabIndex = 84;
     this.labelControl5.Text = "Thời gian";
     this.labelControl5.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl5.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // Ngaythuchien
     //
     this.Ngaythuchien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.Ngaythuchien.HotDate = null;
     this.Ngaythuchien.Location = new System.Drawing.Point(8, 22);
     this.Ngaythuchien.Name = "Ngaythuchien";
     this.Ngaythuchien.SchedulerControl = this.schedulerControl;
     this.Ngaythuchien.Size = new System.Drawing.Size(178, 168);
     this.Ngaythuchien.TabIndex = 82;
     //
     // schedulerControl
     //
     this.schedulerControl.Dock = System.Windows.Forms.DockStyle.Fill;
     this.schedulerControl.Location = new System.Drawing.Point(0, 0);
     this.schedulerControl.MenuManager = this.barManager1;
     this.schedulerControl.Name = "schedulerControl";
     this.schedulerControl.OptionsCustomization.AllowAppointmentCopy = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentCreate = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDelete = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDrag = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentDragBetweenResources = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowAppointmentMultiSelect = false;
     this.schedulerControl.OptionsCustomization.AllowAppointmentResize = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsCustomization.AllowInplaceEditor = DevExpress.XtraScheduler.UsedAppointmentType.None;
     this.schedulerControl.OptionsView.NavigationButtons.NextCaption = "Sự kiện tiếp theo";
     this.schedulerControl.OptionsView.NavigationButtons.PrevCaption = "Sự kiện trước";
     this.schedulerControl.OptionsView.NavigationButtons.Visibility = DevExpress.XtraScheduler.NavigationButtonVisibility.Never;
     this.schedulerControl.Size = new System.Drawing.Size(743, 489);
     this.schedulerControl.Start = new System.DateTime(2009, 2, 14, 0, 0, 0, 0);
     this.schedulerControl.Storage = this.schedulerStorage;
     this.schedulerControl.TabIndex = 12;
     this.schedulerControl.Text = "schedulerControl1";
     this.schedulerControl.Views.DayView.AllDayAreaScrollBarVisible = true;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.DayView.TimeRulers.Add(timeRuler1);
     this.schedulerControl.Views.DayView.WorkTime.End = System.TimeSpan.Parse("17:00:00");
     this.schedulerControl.Views.DayView.WorkTime.Start = System.TimeSpan.Parse("08:00:00");
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.MonthView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.EndTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WeekView.AppointmentDisplayOptions.StartTimeVisibility = DevExpress.XtraScheduler.AppointmentTimeVisibility.Never;
     this.schedulerControl.Views.WorkWeekView.TimeRulers.Add(timeRuler2);
     this.schedulerControl.PreparePopupMenu += new DevExpress.XtraScheduler.PreparePopupMenuEventHandler(this.schedulerControl_PreparePopupMenu);
     this.schedulerControl.EditAppointmentFormShowing += new DevExpress.XtraScheduler.AppointmentFormEventHandler(this.schedulerControl_EditAppointmentFormShowing);
     //
     // 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";
     //
     // barStaticItem1
     //
     this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
     this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.barStaticItem1.Id = 13;
     this.barStaticItem1.Name = "barStaticItem1";
     this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
     this.barStaticItem1.Width = 100;
     //
     // barButtonItem1
     //
     this.barButtonItem1.Caption = "barButtonItem1";
     this.barButtonItem1.Id = 14;
     this.barButtonItem1.Name = "barButtonItem1";
     //
     // barButtonItem2
     //
     this.barButtonItem2.Caption = "barButtonItem2";
     this.barButtonItem2.Id = 15;
     this.barButtonItem2.Name = "barButtonItem2";
     //
     // barButtonItemCommit
     //
     this.barButtonItemCommit.Caption = "&Duyệt";
     this.barButtonItemCommit.Id = 17;
     this.barButtonItemCommit.Name = "barButtonItemCommit";
     this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItem3
     //
     this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItem3.Caption = "In";
     this.barButtonItem3.Id = 30;
     this.barButtonItem3.Name = "barButtonItem3";
     //
     // barButtonItemDuyet
     //
     this.barButtonItemDuyet.Caption = "&Duyệt";
     this.barButtonItemDuyet.Enabled = false;
     this.barButtonItemDuyet.Id = 35;
     this.barButtonItemDuyet.Name = "barButtonItemDuyet";
     this.barButtonItemDuyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemK_Duyet
     //
     this.barButtonItemK_Duyet.Caption = "&Không duyệt";
     this.barButtonItemK_Duyet.Enabled = false;
     this.barButtonItemK_Duyet.Id = 36;
     this.barButtonItemK_Duyet.Name = "barButtonItemK_Duyet";
     this.barButtonItemK_Duyet.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(200, 90);
     this.splitContainerControl1.Name = "splitContainerControl1";
     this.splitContainerControl1.Panel1.Controls.Add(this.schedulerControl);
     this.splitContainerControl1.Panel1.MinSize = 200;
     this.splitContainerControl1.Panel1.Text = "splitContainerControl1_Panel1";
     this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
     this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
     this.splitContainerControl1.Panel2.MinSize = 150;
     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(743, 489);
     this.splitContainerControl1.SplitterPosition = 240;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // 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.xtraTabPageChiTiet;
     this.xtraTabControlDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabControlDetail.TabIndex = 0;
     this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPageDetail,
     this.xtraTabPageChiTiet,
     this.xtraTabPage2});
     //
     // xtraTabPageChiTiet
     //
     this.xtraTabPageChiTiet.Controls.Add(this.gridControlDetail);
     this.xtraTabPageChiTiet.Name = "xtraTabPageChiTiet";
     this.xtraTabPageChiTiet.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageChiTiet.Text = "Chi tiết";
     //
     // 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.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit3,
     this.repositoryItemPictureEdit1,
     this.repositoryItemPictureEdit2,
     this.repositoryItemMemoEdit1,
     this.repDiaDiemHop,
     this.repositoryItemButtonEdit4,
     this.repositoryItemButtonEdit5,
     this.repositoryItemMemoExEdit2,
     this.rep_mofile,
     this.rep_luu_file,
     this.repNoiDung,
     this.repDiaDiem});
     this.gridControlDetail.Size = new System.Drawing.Size(0, 0);
     this.gridControlDetail.TabIndex = 191;
     this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetail});
     //
     // gridViewDetail
     //
     this.gridViewDetail.CardCaptionFormat = "Ngày họp: {3}, từ: {4} - {5}";
     this.gridViewDetail.CardHorzInterval = 13;
     this.gridViewDetail.CardMinSize = new System.Drawing.Size(270, 151);
     this.gridViewDetail.Columns.AddRange(new DevExpress.XtraGrid.Columns.LayoutViewColumn[] {
     this.ID,
     this.cotNgay,
     this.cotGioBD,
     this.cotGioKT,
     this.cotNoiDung,
     this.cotDiaDiemHop});
     this.gridViewDetail.GridControl = this.gridControlDetail;
     this.gridViewDetail.HiddenItems.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1,
     this.layoutViewField_layoutViewColumn1_1,
     this.layoutViewField_layoutViewColumn1_2,
     this.layoutViewField_layoutViewColumn1_3});
     this.gridViewDetail.Name = "gridViewDetail";
     this.gridViewDetail.OptionsBehavior.AllowAddRows = DevExpress.Utils.DefaultBoolean.False;
     this.gridViewDetail.OptionsBehavior.ScrollVisibility = DevExpress.XtraGrid.Views.Base.ScrollVisibility.Auto;
     this.gridViewDetail.OptionsCustomization.AllowFilter = false;
     this.gridViewDetail.OptionsCustomization.AllowSort = false;
     this.gridViewDetail.OptionsHeaderPanel.EnableCustomizeButton = false;
     this.gridViewDetail.OptionsItemText.AlignMode = DevExpress.XtraGrid.Views.Layout.FieldTextAlignMode.CustomSize;
     this.gridViewDetail.OptionsItemText.TextToControlDistance = 0;
     this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail.OptionsView.AllowHotTrackFields = false;
     this.gridViewDetail.OptionsView.ViewMode = DevExpress.XtraGrid.Views.Layout.LayoutViewMode.MultiRow;
     this.gridViewDetail.TemplateCard = this.layoutViewCard1;
     //
     // ID
     //
     this.ID.Caption = "id";
     this.ID.LayoutViewField = this.layoutViewField_layoutViewColumn1;
     this.ID.Name = "ID";
     //
     // layoutViewField_layoutViewColumn1
     //
     this.layoutViewField_layoutViewColumn1.EditorPreferredWidth = 10;
     this.layoutViewField_layoutViewColumn1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1.Name = "layoutViewField_layoutViewColumn1";
     this.layoutViewField_layoutViewColumn1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1.TextSize = new System.Drawing.Size(97, 13);
     this.layoutViewField_layoutViewColumn1.TextToControlDistance = 5;
     //
     // cotNgay
     //
     this.cotNgay.Caption = "Ngày họp";
     this.cotNgay.LayoutViewField = this.layoutViewField_layoutViewColumn1_1;
     this.cotNgay.Name = "cotNgay";
     this.cotNgay.OptionsColumn.AllowEdit = false;
     this.cotNgay.OptionsColumn.AllowFocus = false;
     this.cotNgay.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_1
     //
     this.layoutViewField_layoutViewColumn1_1.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_1.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_1.Name = "layoutViewField_layoutViewColumn1_1";
     this.layoutViewField_layoutViewColumn1_1.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_1.TextSize = new System.Drawing.Size(50, 13);
     this.layoutViewField_layoutViewColumn1_1.TextToControlDistance = 5;
     //
     // cotGioBD
     //
     this.cotGioBD.Caption = "Từ";
     this.cotGioBD.CustomizationCaption = "Từ";
     this.cotGioBD.LayoutViewField = this.layoutViewField_layoutViewColumn1_2;
     this.cotGioBD.Name = "cotGioBD";
     this.cotGioBD.OptionsColumn.AllowEdit = false;
     this.cotGioBD.OptionsColumn.AllowFocus = false;
     this.cotGioBD.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_2
     //
     this.layoutViewField_layoutViewColumn1_2.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_2.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_2.Name = "layoutViewField_layoutViewColumn1_2";
     this.layoutViewField_layoutViewColumn1_2.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_2.TextSize = new System.Drawing.Size(17, 13);
     this.layoutViewField_layoutViewColumn1_2.TextToControlDistance = 5;
     //
     // cotGioKT
     //
     this.cotGioKT.Caption = "đến";
     this.cotGioKT.LayoutViewField = this.layoutViewField_layoutViewColumn1_3;
     this.cotGioKT.Name = "cotGioKT";
     this.cotGioKT.OptionsColumn.AllowEdit = false;
     this.cotGioKT.OptionsColumn.AllowFocus = false;
     this.cotGioKT.OptionsColumn.ReadOnly = true;
     //
     // layoutViewField_layoutViewColumn1_3
     //
     this.layoutViewField_layoutViewColumn1_3.EditorPreferredWidth = 20;
     this.layoutViewField_layoutViewColumn1_3.Location = new System.Drawing.Point(0, 0);
     this.layoutViewField_layoutViewColumn1_3.Name = "layoutViewField_layoutViewColumn1_3";
     this.layoutViewField_layoutViewColumn1_3.Size = new System.Drawing.Size(264, 125);
     this.layoutViewField_layoutViewColumn1_3.TextSize = new System.Drawing.Size(22, 13);
     this.layoutViewField_layoutViewColumn1_3.TextToControlDistance = 5;
     //
     // cotNoiDung
     //
     this.cotNoiDung.ColumnEdit = this.repNoiDung;
     this.cotNoiDung.LayoutViewField = this.layoutViewField_layoutViewColumn1_4;
     this.cotNoiDung.Name = "cotNoiDung";
     this.cotNoiDung.OptionsColumn.ReadOnly = true;
     //
     // repNoiDung
     //
     this.repNoiDung.Name = "repNoiDung";
     //
     // layoutViewField_layoutViewColumn1_4
     //
     this.layoutViewField_layoutViewColumn1_4.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_4.Location = new System.Drawing.Point(0, 17);
     this.layoutViewField_layoutViewColumn1_4.MaxSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.MinSize = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.Name = "layoutViewField_layoutViewColumn1_4";
     this.layoutViewField_layoutViewColumn1_4.Size = new System.Drawing.Size(264, 45);
     this.layoutViewField_layoutViewColumn1_4.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_4.TextSize = new System.Drawing.Size(0, 13);
     //
     // cotDiaDiemHop
     //
     this.cotDiaDiemHop.ColumnEdit = this.repDiaDiemHop;
     this.cotDiaDiemHop.LayoutViewField = this.layoutViewField_layoutViewColumn1_5;
     this.cotDiaDiemHop.Name = "cotDiaDiemHop";
     this.cotDiaDiemHop.OptionsColumn.ReadOnly = true;
     //
     // repDiaDiemHop
     //
     this.repDiaDiemHop.Name = "repDiaDiemHop";
     //
     // layoutViewField_layoutViewColumn1_5
     //
     this.layoutViewField_layoutViewColumn1_5.EditorPreferredWidth = 260;
     this.layoutViewField_layoutViewColumn1_5.Location = new System.Drawing.Point(0, 79);
     this.layoutViewField_layoutViewColumn1_5.MaxSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.MinSize = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.Name = "layoutViewField_layoutViewColumn1_5";
     this.layoutViewField_layoutViewColumn1_5.Size = new System.Drawing.Size(264, 46);
     this.layoutViewField_layoutViewColumn1_5.SizeConstraintsType = DevExpress.XtraLayout.SizeConstraintsType.Custom;
     this.layoutViewField_layoutViewColumn1_5.TextSize = new System.Drawing.Size(0, 13);
     //
     // layoutViewCard1
     //
     this.layoutViewCard1.CustomizationFormText = "layoutViewCard1";
     this.layoutViewCard1.ExpandButtonLocation = DevExpress.Utils.GroupElementLocation.AfterText;
     this.layoutViewCard1.Items.AddRange(new DevExpress.XtraLayout.BaseLayoutItem[] {
     this.layoutViewField_layoutViewColumn1_4,
     this.layoutViewField_layoutViewColumn1_5,
     this.item1,
     this.item2});
     this.layoutViewCard1.Name = "layoutViewCard1";
     this.layoutViewCard1.OptionsItemText.TextToControlDistance = 0;
     this.layoutViewCard1.Padding = new DevExpress.XtraLayout.Utils.Padding(2, 2, 2, 2);
     this.layoutViewCard1.Text = "TemplateCard";
     //
     // item1
     //
     this.item1.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item1.AppearanceItemCaption.Options.UseFont = true;
     this.item1.CustomizationFormText = "Nội dung:";
     this.item1.Location = new System.Drawing.Point(0, 0);
     this.item1.Name = "item1";
     this.item1.Size = new System.Drawing.Size(264, 17);
     this.item1.Text = "Nội dung:";
     this.item1.TextSize = new System.Drawing.Size(46, 13);
     //
     // item2
     //
     this.item2.AppearanceItemCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic);
     this.item2.AppearanceItemCaption.Options.UseFont = true;
     this.item2.CustomizationFormText = "Địa điểm:";
     this.item2.Location = new System.Drawing.Point(0, 62);
     this.item2.Name = "item2";
     this.item2.Size = new System.Drawing.Size(264, 17);
     this.item2.Text = "Địa điểm:";
     this.item2.TextSize = new System.Drawing.Size(45, 13);
     //
     // repositoryItemButtonEdit3
     //
     this.repositoryItemButtonEdit3.AutoHeight = false;
     this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
     this.repositoryItemButtonEdit3.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemPictureEdit1
     //
     this.repositoryItemPictureEdit1.Name = "repositoryItemPictureEdit1";
     //
     // repositoryItemPictureEdit2
     //
     this.repositoryItemPictureEdit2.Name = "repositoryItemPictureEdit2";
     //
     // repositoryItemMemoEdit1
     //
     this.repositoryItemMemoEdit1.Name = "repositoryItemMemoEdit1";
     //
     // repositoryItemButtonEdit4
     //
     this.repositoryItemButtonEdit4.AutoHeight = false;
     this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete)});
     this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
     this.repositoryItemButtonEdit4.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemButtonEdit5
     //
     this.repositoryItemButtonEdit5.AutoHeight = false;
     this.repositoryItemButtonEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "Mở file", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)});
     this.repositoryItemButtonEdit5.Name = "repositoryItemButtonEdit5";
     this.repositoryItemButtonEdit5.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor;
     //
     // repositoryItemMemoExEdit2
     //
     this.repositoryItemMemoExEdit2.AutoHeight = false;
     this.repositoryItemMemoExEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemMemoExEdit2.Name = "repositoryItemMemoExEdit2";
     //
     // rep_mofile
     //
     this.rep_mofile.AppearanceFocused.Options.UseImage = true;
     this.rep_mofile.Name = "rep_mofile";
     //
     // rep_luu_file
     //
     this.rep_luu_file.Name = "rep_luu_file";
     //
     // repDiaDiem
     //
     this.repDiaDiem.AutoHeight = false;
     this.repDiaDiem.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repDiaDiem.Name = "repDiaDiem";
     //
     // xtraTabPageDetail
     //
     this.xtraTabPageDetail.Controls.Add(this.gridControlMaster);
     this.xtraTabPageDetail.Name = "xtraTabPageDetail";
     this.xtraTabPageDetail.PageVisible = false;
     this.xtraTabPageDetail.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPageDetail.Text = "Chi tiết ";
     //
     // gridControlMaster
     //
     this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
     this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
     this.repositoryItemButtonEdit1,
     this.repositoryItemImageComboBox1});
     this.gridControlMaster.Size = new System.Drawing.Size(0, 0);
     this.gridControlMaster.TabIndex = 0;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotThoiGianBatDau,
     this.CotThoiGianKetThuc,
     this.CotDiaDiem,
     this.CotNguoiToChuc,
     this.CotTinhChat,
     this.CotLoaiMeeting,
     this.CotKetQua});
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.NewItemRowText = "Nhập dữ liệu mới tại đây";
     this.gridViewMaster.OptionsFilter.UseNewCustomFilterDialog = true;
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // CotThoiGianBatDau
     //
     this.CotThoiGianBatDau.Caption = "Giờ bắt đầu";
     this.CotThoiGianBatDau.Name = "CotThoiGianBatDau";
     this.CotThoiGianBatDau.OptionsColumn.AllowEdit = false;
     this.CotThoiGianBatDau.OptionsColumn.AllowFocus = false;
     this.CotThoiGianBatDau.Visible = true;
     this.CotThoiGianBatDau.VisibleIndex = 2;
     this.CotThoiGianBatDau.Width = 67;
     //
     // CotThoiGianKetThuc
     //
     this.CotThoiGianKetThuc.Caption = "Giờ kết thúc";
     this.CotThoiGianKetThuc.Name = "CotThoiGianKetThuc";
     this.CotThoiGianKetThuc.OptionsColumn.AllowEdit = false;
     this.CotThoiGianKetThuc.OptionsColumn.AllowFocus = false;
     this.CotThoiGianKetThuc.Visible = true;
     this.CotThoiGianKetThuc.VisibleIndex = 3;
     this.CotThoiGianKetThuc.Width = 69;
     //
     // CotDiaDiem
     //
     this.CotDiaDiem.Caption = "Địa điểm";
     this.CotDiaDiem.Name = "CotDiaDiem";
     this.CotDiaDiem.OptionsColumn.AllowEdit = false;
     this.CotDiaDiem.OptionsColumn.AllowFocus = false;
     this.CotDiaDiem.OptionsColumn.ReadOnly = true;
     this.CotDiaDiem.Visible = true;
     this.CotDiaDiem.VisibleIndex = 0;
     this.CotDiaDiem.Width = 53;
     //
     // CotNguoiToChuc
     //
     this.CotNguoiToChuc.Caption = "Người tổ chức";
     this.CotNguoiToChuc.Name = "CotNguoiToChuc";
     this.CotNguoiToChuc.OptionsColumn.AllowEdit = false;
     this.CotNguoiToChuc.OptionsColumn.AllowFocus = false;
     this.CotNguoiToChuc.Visible = true;
     this.CotNguoiToChuc.VisibleIndex = 1;
     this.CotNguoiToChuc.Width = 79;
     //
     // CotTinhChat
     //
     this.CotTinhChat.Caption = "Tính chất";
     this.CotTinhChat.Name = "CotTinhChat";
     this.CotTinhChat.OptionsColumn.AllowEdit = false;
     this.CotTinhChat.OptionsColumn.AllowFocus = false;
     this.CotTinhChat.Visible = true;
     this.CotTinhChat.VisibleIndex = 4;
     this.CotTinhChat.Width = 56;
     //
     // CotLoaiMeeting
     //
     this.CotLoaiMeeting.Caption = "Loại";
     this.CotLoaiMeeting.Name = "CotLoaiMeeting";
     this.CotLoaiMeeting.OptionsColumn.AllowEdit = false;
     this.CotLoaiMeeting.OptionsColumn.AllowFocus = false;
     this.CotLoaiMeeting.Visible = true;
     this.CotLoaiMeeting.VisibleIndex = 5;
     this.CotLoaiMeeting.Width = 31;
     //
     // CotKetQua
     //
     this.CotKetQua.Caption = "Kết quả";
     this.CotKetQua.Name = "CotKetQua";
     this.CotKetQua.OptionsColumn.AllowEdit = false;
     this.CotKetQua.OptionsColumn.AllowFocus = false;
     this.CotKetQua.OptionsColumn.ReadOnly = true;
     this.CotKetQua.Visible = true;
     this.CotKetQua.VisibleIndex = 6;
     this.CotKetQua.Width = 49;
     //
     // repositoryItemButtonEdit1
     //
     this.repositoryItemButtonEdit1.AutoHeight = false;
     this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
     //
     // repositoryItemImageComboBox1
     //
     this.repositoryItemImageComboBox1.AutoHeight = false;
     this.repositoryItemImageComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.repositoryItemImageComboBox1.Name = "repositoryItemImageComboBox1";
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.rtxVanBan);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.PageVisible = false;
     this.xtraTabPage2.Size = new System.Drawing.Size(0, 0);
     this.xtraTabPage2.Text = "Văn bản họp";
     //
     // rtxVanBan
     //
     this.rtxVanBan.Dock = System.Windows.Forms.DockStyle.Fill;
     this.rtxVanBan.Location = new System.Drawing.Point(0, 0);
     this.rtxVanBan.MaxLength = 200;
     this.rtxVanBan.Name = "rtxVanBan";
     this.rtxVanBan.ReadOnly = true;
     this.rtxVanBan.Size = new System.Drawing.Size(0, 0);
     this.rtxVanBan.TabIndex = 4;
     this.rtxVanBan.Text = "";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.cboNguoiToChuc);
     this.popupControlContainerFilter.Controls.Add(this.txtDiaDiem);
     this.popupControlContainerFilter.Controls.Add(this.label4);
     this.popupControlContainerFilter.Controls.Add(this.cboTinhChat);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.cboLoai);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Top;
     this.popupControlContainerFilter.Location = new System.Drawing.Point(200, 24);
     this.popupControlContainerFilter.Manager = this.barManager1;
     this.popupControlContainerFilter.Name = "popupControlContainerFilter";
     this.popupControlContainerFilter.Size = new System.Drawing.Size(743, 66);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // cboNguoiToChuc
     //
     this.cboNguoiToChuc.DataSource = null;
     this.cboNguoiToChuc.DisplayField = null;
     this.cboNguoiToChuc.Location = new System.Drawing.Point(87, 5);
     this.cboNguoiToChuc.Name = "cboNguoiToChuc";
     this.cboNguoiToChuc.Size = new System.Drawing.Size(162, 21);
     this.cboNguoiToChuc.TabIndex = 221;
     this.cboNguoiToChuc.ValueField = null;
     //
     // txtDiaDiem
     //
     this.txtDiaDiem.Location = new System.Drawing.Point(343, 34);
     this.txtDiaDiem.Name = "txtDiaDiem";
     this.txtDiaDiem.Size = new System.Drawing.Size(380, 20);
     this.txtDiaDiem.TabIndex = 220;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(265, 37);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(41, 13);
     this.label4.TabIndex = 10;
     this.label4.Text = "Địa điểm";
     this.label4.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label4.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboTinhChat
     //
     this.cboTinhChat.DataSource = null;
     this.cboTinhChat.DisplayField = null;
     this.cboTinhChat.Location = new System.Drawing.Point(87, 32);
     this.cboTinhChat.Name = "cboTinhChat";
     this.cboTinhChat.Size = new System.Drawing.Size(162, 21);
     this.cboTinhChat.TabIndex = 9;
     this.cboTinhChat.ValueField = null;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(9, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Tính chất";
     this.label3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(265, 9);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(65, 13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Loại cuộc họp";
     this.label2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // cboLoai
     //
     this.cboLoai.DataSource = null;
     this.cboLoai.DisplayField = null;
     this.cboLoai.Location = new System.Drawing.Point(343, 5);
     this.cboLoai.Name = "cboLoai";
     this.cboLoai.Size = new System.Drawing.Size(156, 21);
     this.cboLoai.TabIndex = 5;
     this.cboLoai.ValueField = null;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(9, 9);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(67, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Người tổ chức";
     this.label1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // gridColumn8
     //
     this.gridColumn8.Caption = "VAT";
     this.gridColumn8.Name = "gridColumn8";
     this.gridColumn8.Visible = true;
     this.gridColumn8.VisibleIndex = 5;
     //
     // gridColumn6
     //
     this.gridColumn6.Caption = "VAT";
     this.gridColumn6.Name = "gridColumn6";
     this.gridColumn6.Visible = true;
     this.gridColumn6.VisibleIndex = 5;
     this.gridColumn6.Width = 96;
     //
     // labelControl1
     //
     this.labelControl1.Location = new System.Drawing.Point(5, 5);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(96, 13);
     this.labelControl1.TabIndex = 22;
     this.labelControl1.Text = "Tùy chọn hiển thị";
     this.labelControl1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.labelControl1.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // checkEdit1
     //
     this.checkEdit1.Location = new System.Drawing.Point(18, 49);
     this.checkEdit1.Name = "checkEdit1";
     this.checkEdit1.Properties.Caption = "Theo tuần";
     this.checkEdit1.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit1.Properties.RadioGroupIndex = 1;
     this.checkEdit1.Size = new System.Drawing.Size(83, 19);
     this.checkEdit1.TabIndex = 21;
     this.checkEdit1.TabStop = false;
     this.checkEdit1.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit1.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit2
     //
     this.checkEdit2.EditValue = true;
     this.checkEdit2.Location = new System.Drawing.Point(18, 24);
     this.checkEdit2.Name = "checkEdit2";
     this.checkEdit2.Properties.Caption = "Theo ngày";
     this.checkEdit2.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit2.Properties.RadioGroupIndex = 1;
     this.checkEdit2.Size = new System.Drawing.Size(83, 19);
     this.checkEdit2.TabIndex = 17;
     this.checkEdit2.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit2.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // checkEdit3
     //
     this.checkEdit3.Location = new System.Drawing.Point(18, 74);
     this.checkEdit3.Name = "checkEdit3";
     this.checkEdit3.Properties.Caption = "Theo tháng";
     this.checkEdit3.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Radio;
     this.checkEdit3.Properties.RadioGroupIndex = 1;
     this.checkEdit3.Size = new System.Drawing.Size(83, 19);
     this.checkEdit3.TabIndex = 18;
     this.checkEdit3.TabStop = false;
     this.checkEdit3.ToolTip = "Dữ liệu bắt buộc nhập";
     this.checkEdit3.ZZZType = ProtocolVN.Framework.Win.CaptionType.REQUIRED;
     //
     // imageList_layout
     //
     this.imageList_layout.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList_layout.ImageStream")));
     this.imageList_layout.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList_layout.Images.SetKeyName(0, "pl-xuatkho.png");
     this.imageList_layout.Images.SetKeyName(1, "fwSave.png");
     this.imageList_layout.Images.SetKeyName(2, "Delete.png");
     //
     // frmMeetingQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(943, 579);
     this.Controls.Add(this.splitContainerControl1);
     this.Controls.Add(this.popupControlContainerFilter);
     this.Controls.Add(this.dockPanel1);
     this.Controls.Add(this.barDockControlLeft);
     this.Controls.Add(this.barDockControlRight);
     this.Controls.Add(this.barDockControlBottom);
     this.Controls.Add(this.barDockControlTop);
     this.Name = "frmMeetingQL";
     this.Text = "Cuộc họp";
     this.Load += new System.EventHandler(this.frmMeetingQL_Load);
     ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
     this.dockPanel1.ResumeLayout(false);
     this.dockPanel1_Container.ResumeLayout(false);
     this.dockPanel1_Container.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
     this.panelControl2.ResumeLayout(false);
     this.panelControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Tuan.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngay.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Thang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Ngaythuchien)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerControl)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.schedulerStorage)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
     this.splitContainerControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
     this.xtraTabControlDetail.ResumeLayout(false);
     this.xtraTabPageChiTiet.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repNoiDung)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiemHop)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewField_layoutViewColumn1_5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.layoutViewCard1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.item2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemPictureEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemMemoExEdit2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_mofile)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.rep_luu_file)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repDiaDiem)).EndInit();
     this.xtraTabPageDetail.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.repositoryItemImageComboBox1)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.txtDiaDiem.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.checkEdit3.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);
        }
 /// <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(frmTKBectacamBienMuc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridViewDetail_1 = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotDetail_1_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_TietMuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_SoTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_LoaiBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_ThongSoLoaiBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_FileDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_TuKhoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_KHPL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_KHXK = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_SoLanDaPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_PhatLanDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_ThoiHanBanQuyen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_DonViSoHuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_DonViCungCap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Nuoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_DoiTuongKhanGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Rating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_TimeCodeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_TimeCodeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDetail_1_Duration = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotMasterBetacam = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotMatserSoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     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.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
     this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.SoDangKyCaBietHD = new ProtocolVN.Framework.Win.PLCombobox();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.label29 = new System.Windows.Forms.Label();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.CotDeatail_1_SODKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail_1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((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.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     this.SuspendLayout();
     //
     // gridViewDetail_1
     //
     this.gridViewDetail_1.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetail_1.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetail_1.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotDetail_1_MaBang,
     this.CotDetail_1_TietMuc,
     this.CotDetail_1_NoiDung,
     this.CotDetail_1_SoTap,
     this.CotDetail_1_ThoiLuong,
     this.CotDetail_1_LoaiBang,
     this.CotDetail_1_ThongSoLoaiBang,
     this.CotDetail_1_PostMaster,
     this.CotDetail_1_PopUp,
     this.CotDetail_1_FileDinhKem,
     this.CotDetail_1_TuKhoa,
     this.CotDetail_1_KHPL,
     this.CotDetail_1_KHXK,
     this.CotDetail_1_Ke,
     this.CotDetail_1_Ngan,
     this.CotDetail_1_Tang,
     this.CotDetail_1_SoLanDaPhat,
     this.CotDetail_1_PhatLanDau,
     this.CotDetail_1_ThoiHanBanQuyen,
     this.CotDetail_1_DonViSoHuu,
     this.CotDetail_1_DonViCungCap,
     this.CotDetail_1_Nuoc,
     this.CotDetail_1_DoiTuongKhanGia,
     this.CotDetail_1_Rating,
     this.CotDetail_1_TimeCodeIn,
     this.CotDetail_1_TimeCodeOut,
     this.CotDetail_1_Duration,
     this.CotDeatail_1_SODKCBHD});
     this.gridViewDetail_1.CustomizationFormBounds = new System.Drawing.Rectangle(734, 488, 208, 168);
     this.gridViewDetail_1.GridControl = this.gridControlMaster;
     this.gridViewDetail_1.IndicatorWidth = 40;
     this.gridViewDetail_1.Name = "gridViewDetail_1";
     this.gridViewDetail_1.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetail_1.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetail_1.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetail_1.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetail_1.OptionsView.ColumnAutoWidth = false;
     this.gridViewDetail_1.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetail_1.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetail_1.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetail_1.OptionsView.ShowGroupedColumns = true;
     //
     // CotDetail_1_MaBang
     //
     this.CotDetail_1_MaBang.Caption = "Mã băng";
     this.CotDetail_1_MaBang.Name = "CotDetail_1_MaBang";
     this.CotDetail_1_MaBang.Visible = true;
     this.CotDetail_1_MaBang.VisibleIndex = 0;
     this.CotDetail_1_MaBang.Width = 53;
     //
     // CotDetail_1_TietMuc
     //
     this.CotDetail_1_TietMuc.Caption = "Tiết mục";
     this.CotDetail_1_TietMuc.Name = "CotDetail_1_TietMuc";
     this.CotDetail_1_TietMuc.Visible = true;
     this.CotDetail_1_TietMuc.VisibleIndex = 1;
     this.CotDetail_1_TietMuc.Width = 52;
     //
     // CotDetail_1_NoiDung
     //
     this.CotDetail_1_NoiDung.Caption = "Nội dung";
     this.CotDetail_1_NoiDung.Name = "CotDetail_1_NoiDung";
     this.CotDetail_1_NoiDung.Visible = true;
     this.CotDetail_1_NoiDung.VisibleIndex = 2;
     this.CotDetail_1_NoiDung.Width = 54;
     //
     // CotDetail_1_SoTap
     //
     this.CotDetail_1_SoTap.Caption = "Tập số";
     this.CotDetail_1_SoTap.Name = "CotDetail_1_SoTap";
     this.CotDetail_1_SoTap.Visible = true;
     this.CotDetail_1_SoTap.VisibleIndex = 3;
     this.CotDetail_1_SoTap.Width = 43;
     //
     // CotDetail_1_ThoiLuong
     //
     this.CotDetail_1_ThoiLuong.Caption = "Thời lượng";
     this.CotDetail_1_ThoiLuong.Name = "CotDetail_1_ThoiLuong";
     this.CotDetail_1_ThoiLuong.Visible = true;
     this.CotDetail_1_ThoiLuong.VisibleIndex = 4;
     this.CotDetail_1_ThoiLuong.Width = 62;
     //
     // CotDetail_1_LoaiBang
     //
     this.CotDetail_1_LoaiBang.Caption = "Loại lưu trữ";
     this.CotDetail_1_LoaiBang.Name = "CotDetail_1_LoaiBang";
     this.CotDetail_1_LoaiBang.Visible = true;
     this.CotDetail_1_LoaiBang.VisibleIndex = 5;
     this.CotDetail_1_LoaiBang.Width = 58;
     //
     // CotDetail_1_ThongSoLoaiBang
     //
     this.CotDetail_1_ThongSoLoaiBang.Caption = "Thông số loại băng";
     this.CotDetail_1_ThongSoLoaiBang.Name = "CotDetail_1_ThongSoLoaiBang";
     this.CotDetail_1_ThongSoLoaiBang.Visible = true;
     this.CotDetail_1_ThongSoLoaiBang.VisibleIndex = 6;
     this.CotDetail_1_ThongSoLoaiBang.Width = 102;
     //
     // CotDetail_1_PostMaster
     //
     this.CotDetail_1_PostMaster.Caption = "Post/Master";
     this.CotDetail_1_PostMaster.Name = "CotDetail_1_PostMaster";
     this.CotDetail_1_PostMaster.Visible = true;
     this.CotDetail_1_PostMaster.VisibleIndex = 7;
     this.CotDetail_1_PostMaster.Width = 70;
     //
     // CotDetail_1_PopUp
     //
     this.CotDetail_1_PopUp.Caption = "Pop Up";
     this.CotDetail_1_PopUp.Name = "CotDetail_1_PopUp";
     this.CotDetail_1_PopUp.Visible = true;
     this.CotDetail_1_PopUp.VisibleIndex = 8;
     this.CotDetail_1_PopUp.Width = 46;
     //
     // CotDetail_1_FileDinhKem
     //
     this.CotDetail_1_FileDinhKem.Caption = "File đính kèm";
     this.CotDetail_1_FileDinhKem.Name = "CotDetail_1_FileDinhKem";
     this.CotDetail_1_FileDinhKem.Visible = true;
     this.CotDetail_1_FileDinhKem.VisibleIndex = 9;
     this.CotDetail_1_FileDinhKem.Width = 73;
     //
     // CotDetail_1_TuKhoa
     //
     this.CotDetail_1_TuKhoa.Caption = "Từ khóa";
     this.CotDetail_1_TuKhoa.Name = "CotDetail_1_TuKhoa";
     this.CotDetail_1_TuKhoa.Visible = true;
     this.CotDetail_1_TuKhoa.VisibleIndex = 10;
     this.CotDetail_1_TuKhoa.Width = 51;
     //
     // CotDetail_1_KHPL
     //
     this.CotDetail_1_KHPL.Caption = "KHPL";
     this.CotDetail_1_KHPL.Name = "CotDetail_1_KHPL";
     this.CotDetail_1_KHPL.Visible = true;
     this.CotDetail_1_KHPL.VisibleIndex = 11;
     this.CotDetail_1_KHPL.Width = 36;
     //
     // CotDetail_1_KHXK
     //
     this.CotDetail_1_KHXK.Caption = "KHXK";
     this.CotDetail_1_KHXK.Name = "CotDetail_1_KHXK";
     this.CotDetail_1_KHXK.Visible = true;
     this.CotDetail_1_KHXK.VisibleIndex = 12;
     this.CotDetail_1_KHXK.Width = 37;
     //
     // CotDetail_1_Ke
     //
     this.CotDetail_1_Ke.Caption = "Kệ";
     this.CotDetail_1_Ke.Name = "CotDetail_1_Ke";
     this.CotDetail_1_Ke.Visible = true;
     this.CotDetail_1_Ke.VisibleIndex = 13;
     this.CotDetail_1_Ke.Width = 24;
     //
     // CotDetail_1_Ngan
     //
     this.CotDetail_1_Ngan.Caption = "Ngăn";
     this.CotDetail_1_Ngan.Name = "CotDetail_1_Ngan";
     this.CotDetail_1_Ngan.Visible = true;
     this.CotDetail_1_Ngan.VisibleIndex = 14;
     this.CotDetail_1_Ngan.Width = 37;
     //
     // CotDetail_1_Tang
     //
     this.CotDetail_1_Tang.Caption = "Tầng";
     this.CotDetail_1_Tang.Name = "CotDetail_1_Tang";
     this.CotDetail_1_Tang.Visible = true;
     this.CotDetail_1_Tang.VisibleIndex = 15;
     this.CotDetail_1_Tang.Width = 36;
     //
     // CotDetail_1_SoLanDaPhat
     //
     this.CotDetail_1_SoLanDaPhat.Caption = "Số lần đã phát trên HTV2";
     this.CotDetail_1_SoLanDaPhat.Name = "CotDetail_1_SoLanDaPhat";
     this.CotDetail_1_SoLanDaPhat.Width = 132;
     //
     // CotDetail_1_PhatLanDau
     //
     this.CotDetail_1_PhatLanDau.Caption = "Phát lần đầu trên HTV2";
     this.CotDetail_1_PhatLanDau.Name = "CotDetail_1_PhatLanDau";
     this.CotDetail_1_PhatLanDau.Width = 123;
     //
     // CotDetail_1_ThoiHanBanQuyen
     //
     this.CotDetail_1_ThoiHanBanQuyen.Caption = "Thời hạn bản quyền";
     this.CotDetail_1_ThoiHanBanQuyen.Name = "CotDetail_1_ThoiHanBanQuyen";
     this.CotDetail_1_ThoiHanBanQuyen.Width = 107;
     //
     // CotDetail_1_DonViSoHuu
     //
     this.CotDetail_1_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.CotDetail_1_DonViSoHuu.Name = "CotDetail_1_DonViSoHuu";
     this.CotDetail_1_DonViSoHuu.Width = 79;
     //
     // CotDetail_1_DonViCungCap
     //
     this.CotDetail_1_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.CotDetail_1_DonViCungCap.Name = "CotDetail_1_DonViCungCap";
     this.CotDetail_1_DonViCungCap.Width = 89;
     //
     // CotDetail_1_Nuoc
     //
     this.CotDetail_1_Nuoc.Caption = "Nước SX";
     this.CotDetail_1_Nuoc.Name = "CotDetail_1_Nuoc";
     this.CotDetail_1_Nuoc.Visible = true;
     this.CotDetail_1_Nuoc.VisibleIndex = 16;
     this.CotDetail_1_Nuoc.Width = 37;
     //
     // CotDetail_1_DoiTuongKhanGia
     //
     this.CotDetail_1_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.CotDetail_1_DoiTuongKhanGia.Name = "CotDetail_1_DoiTuongKhanGia";
     this.CotDetail_1_DoiTuongKhanGia.Width = 103;
     //
     // CotDetail_1_Rating
     //
     this.CotDetail_1_Rating.Caption = "Rating trung bình (%)";
     this.CotDetail_1_Rating.Name = "CotDetail_1_Rating";
     this.CotDetail_1_Rating.Width = 95;
     //
     // CotDetail_1_TimeCodeIn
     //
     this.CotDetail_1_TimeCodeIn.Caption = "Time code in";
     this.CotDetail_1_TimeCodeIn.Name = "CotDetail_1_TimeCodeIn";
     this.CotDetail_1_TimeCodeIn.Visible = true;
     this.CotDetail_1_TimeCodeIn.VisibleIndex = 17;
     this.CotDetail_1_TimeCodeIn.Width = 71;
     //
     // CotDetail_1_TimeCodeOut
     //
     this.CotDetail_1_TimeCodeOut.Caption = "Time code out";
     this.CotDetail_1_TimeCodeOut.Name = "CotDetail_1_TimeCodeOut";
     this.CotDetail_1_TimeCodeOut.Visible = true;
     this.CotDetail_1_TimeCodeOut.VisibleIndex = 18;
     this.CotDetail_1_TimeCodeOut.Width = 79;
     //
     // CotDetail_1_Duration
     //
     this.CotDetail_1_Duration.Caption = "Duration";
     this.CotDetail_1_Duration.Name = "CotDetail_1_Duration";
     this.CotDetail_1_Duration.Visible = true;
     this.CotDetail_1_Duration.VisibleIndex = 19;
     this.CotDetail_1_Duration.Width = 53;
     //
     // 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.LevelTemplate = this.gridViewDetail_1;
     gridLevelNode1.RelationName = "Biên mục";
     this.gridControlMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1});
     this.gridControlMaster.Location = new System.Drawing.Point(0, 51);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(896, 446);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster,
     this.gridViewDetail_1});
     //
     // 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.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.CotMasterBetacam,
     this.CotMatserSoLuong});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(423, 322, 208, 168);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các biên mục 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.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.OptionsView.ShowGroupedColumns = true;
     //
     // CotMasterBetacam
     //
     this.CotMasterBetacam.Caption = "Betacam";
     this.CotMasterBetacam.Name = "CotMasterBetacam";
     this.CotMasterBetacam.Visible = true;
     this.CotMasterBetacam.VisibleIndex = 0;
     this.CotMasterBetacam.Width = 117;
     //
     // CotMatserSoLuong
     //
     this.CotMatserSoLuong.Caption = "Số lượng biên mục";
     this.CotMatserSoLuong.Name = "CotMatserSoLuong";
     this.CotMatserSoLuong.Visible = true;
     this.CotMatserSoLuong.VisibleIndex = 1;
     this.CotMatserSoLuong.Width = 99;
     //
     // 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.barButtonItem5});
     this.barManager1.MaxItemId = 36;
     //
     // 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", false, true, false, 0),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemAdd.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "X&em";
     this.barButtonItemXem.Id = 24;
     this.barButtonItemXem.Name = "barButtonItemXem";
     this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemXem.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemDelete
     //
     this.barButtonItemDelete.Caption = "&Xóa";
     this.barButtonItemDelete.Id = 1;
     this.barButtonItemDelete.Name = "barButtonItemDelete";
     this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemDelete.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemUpdate
     //
     this.barButtonItemUpdate.Caption = "&Sửa";
     this.barButtonItemUpdate.Id = 2;
     this.barButtonItemUpdate.Name = "barButtonItemUpdate";
     this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemUpdate.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemPrint
     //
     this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
     this.barButtonItemPrint.Caption = "&In";
     this.barButtonItemPrint.DropDownControl = this.popupMenu1;
     this.barButtonItemPrint.Id = 3;
     this.barButtonItemPrint.Name = "barButtonItemPrint";
     this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // popupMenu1
     //
     this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
     this.popupMenu1.Manager = this.barManager1;
     this.popupMenu1.Name = "popupMenu1";
     //
     // barButtonItem4
     //
     this.barButtonItem4.Caption = "Xem t&rướ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;
     this.barButtonItemCommit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barButtonItemNoCommit
     //
     this.barButtonItemNoCommit.Caption = "&Không duyệt";
     this.barButtonItemNoCommit.Id = 18;
     this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
     this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barButtonItemNoCommit.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // barSubItem1
     //
     this.barSubItem1.Caption = "&Nghiệp vụ";
     this.barSubItem1.Id = 20;
     this.barSubItem1.Name = "barSubItem1";
     this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     this.barSubItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
     //
     // 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 tìm kiếm";
     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(896, 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(896, 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(896, 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";
     //
     // barButtonItem5
     //
     this.barButtonItem5.Caption = "barButtonItem5";
     this.barButtonItem5.Id = 34;
     this.barButtonItem5.Name = "barButtonItem5";
     //
     // splitContainerControl1
     //
     this.splitContainerControl1.Horizontal = false;
     this.splitContainerControl1.Location = new System.Drawing.Point(879, 263);
     this.splitContainerControl1.Name = "splitContainerControl1";
     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.Size = new System.Drawing.Size(41, 38);
     this.splitContainerControl1.SplitterPosition = 76;
     this.splitContainerControl1.TabIndex = 4;
     this.splitContainerControl1.Text = "splitContainerControl1";
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.SoDangKyCaBietHD);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     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(896, 27);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // SoDangKyCaBietHD
     //
     this.SoDangKyCaBietHD.DataSource = null;
     this.SoDangKyCaBietHD.DisplayField = null;
     this.SoDangKyCaBietHD.Location = new System.Drawing.Point(80, 4);
     this.SoDangKyCaBietHD.Name = "SoDangKyCaBietHD";
     this.SoDangKyCaBietHD.Size = new System.Drawing.Size(138, 22);
     this.SoDangKyCaBietHD.TabIndex = 199;
     this.SoDangKyCaBietHD.ValueField = null;
     //
     // plTreeSelectItem1
     //
     this.plTreeSelectItem1.Location = new System.Drawing.Point(605, -20);
     this.plTreeSelectItem1.Name = "plTreeSelectItem1";
     this.plTreeSelectItem1.Size = new System.Drawing.Size(167, 20);
     this.plTreeSelectItem1.TabIndex = 193;
     this.plTreeSelectItem1.ZZZWidthFactor = 2F;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(7, 8);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(48, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Betacam";
     //
     // 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;
     //
     // CotDeatail_1_SODKCBHD
     //
     this.CotDeatail_1_SODKCBHD.Caption = "Số ĐKCB HD";
     this.CotDeatail_1_SODKCBHD.Name = "CotDeatail_1_SODKCBHD";
     this.CotDeatail_1_SODKCBHD.Visible = true;
     this.CotDeatail_1_SODKCBHD.VisibleIndex = 20;
     //
     // frmTKBectacamBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(896, 497);
     this.Controls.Add(this.gridControlMaster);
     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 = "frmTKBectacamBienMuc";
     this.Text = "Thống kê biên mục theo betacam";
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail_1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((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.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     this.ResumeLayout(false);
 }
Ejemplo n.º 26
0
        /// <summary>
        /// Lấy danh sách tất cả các câu truy vấn đã lưu
        /// </summary>
        /// <param name="Input"></param>
        public static void InitCombobox(PLCombobox Input, FilterCase filter)
        {
            DataSet ds = new DataSet();
            DatabaseFB db = DABase.getDatabase();
            System.Data.Common.DbCommand cmd = db.GetSQLStringCommand("select * from FW_QUERY_STORE where USERID = @USERID and DATASETID = @DATASETID");
            db.AddInParameter(cmd, "@USERID", DbType.Int64, filter.USERID);
            db.AddInParameter(cmd, "@DATASETID", DbType.String, filter.DATASETID);
            db.LoadDataSet(cmd, ds, "FW_QUERY_STORE");

            if (ds.Tables.Count == 0 || (ds.Tables.Count == 1 && ds.Tables[0] == null))
                PLException.AddException(new Exception("Thiếu bảng FW_QUERY_STORE"));

            //Tùy chọn nguồn dữ liệu
            Input.DataSource = ds.Tables[0];
            //Giá trị hiển thị khi chọn
            Input.DisplayField = "TITLE";
            //Giá trị nhận được khi lấy giá trị
            Input.ValueField = "ID";

            Input._init();
        }
Ejemplo n.º 27
0
        public static void InitCtrlBudgetPlanState(PLCombobox input)
        {
            var dt = new DataTable();
            dt.Columns.Add("ID", typeof(Int64));
            dt.Columns.Add("NAME");
            var ds = new DataSet();
            ds.Tables.Add(dt);
            dt.Rows.Add(BudgetPlanStatus.GENERAL, "Tổng quát");
            dt.Rows.Add(BudgetPlanStatus.DETAIL, "Chi tiết");
            dt.Rows.Add(BudgetPlanStatus.COMPLETE, "Hoàn thành");
            input.ValueField = "ID";
            input.DisplayField = "NAME";
            input.DataSource = dt;
            input.MainCtrl.Properties.SortColumnIndex = -1;
            input._init();

            dt.Rows.RemoveAt(0);
        }
Ejemplo n.º 28
0
        public void InitKeNgangTang(PLCombobox combo, string control)
        {
            control = control.ToUpper();
            string sql = string.Format(@"SELECT  DISTINCT iif({0} is not null,{0},-2) ID, iif({0} is not null,{0}, '<Rỗng>') NAME
                FROM CHUONG_TRINH_POST_MASTER WHERE IS_DELETE ='N' OR IS_DELETE IS NULL", control);
            DataSet ds = HelpDB.getDatabase().LoadDataSet(sql);

            combo.DataSource = ds.Tables[0];
            combo.DisplayField = "NAME";
            combo.ValueField = "ID";
            combo._init();
            combo.MainCtrl.Properties.SortColumnIndex = -1;
            combo._setSelectedID(-1);
        }
Ejemplo n.º 29
0
 public static void InitCtrl(PLCombobox combo)
 {
     combo._init(TABLE_MAP, "NAME", "ID");
 }
 /// <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.Grid.PLGridView();
     this.colMaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTietMuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTapSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTongTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colKe = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colTang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colNgayNhap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.colThongSo = new DevExpress.XtraGrid.Columns.GridColumn();
     this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
     this.gridDetailChiTietSanPham = new DevExpress.XtraGrid.GridControl();
     this.gridViewDetailChiTietSanPham = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_gridDetailChiTietSanPham_TenSanPham = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_gridDetailChiTietSanPham_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_gridDetailChiTietSanPham_VAT = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_gridDetailChiTietSanPham_ThanhTien = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_gridDetailChiTietSanPham_MaSanPham = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_gridDetailChiTietSanPham_DonGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     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 System.Windows.Forms.PLLabel();
     this.plLabel4 = new System.Windows.Forms.PLLabel();
     this.labelControl4 = new System.Windows.Forms.PLLabel();
     this.plLabel2 = new System.Windows.Forms.PLLabel();
     this.plLabel1 = new System.Windows.Forms.PLLabel();
     this.plComboboxAuto2 = new ProtocolVN.Framework.Win.PLComboboxAuto();
     this.plComboboxAuto1 = new ProtocolVN.Framework.Win.PLComboboxAuto();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridView2 = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((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.gridDetailChiTietSanPham)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetailChiTietSanPham)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).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(785, 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(785, 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(785, 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, 91);
     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.Controls.Add(this.gridDetailChiTietSanPham);
     this.splitContainerControl1.Panel2.ShowCaption = true;
     this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
     this.splitContainerControl1.Size = new System.Drawing.Size(785, 406);
     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(785, 400);
     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.colMaBang,
     this.colTietMuc,
     this.colNoiDung,
     this.colTapSo,
     this.colTongTap,
     this.colNgan,
     this.colKe,
     this.colTang,
     this.colNgayNhap,
     this.colThongSo});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(623, 505, 208, 168);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupCount = 1;
     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.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colNoiDung, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.colTapSo, DevExpress.Data.ColumnSortOrder.Ascending)});
     this.gridViewMaster.ViewCaption = "DANH SÁCH CÁC BIÊN MỤC";
     //
     // colMaBang
     //
     this.colMaBang.Caption = "Mã băng";
     this.colMaBang.Name = "colMaBang";
     this.colMaBang.Visible = true;
     this.colMaBang.VisibleIndex = 2;
     this.colMaBang.Width = 53;
     //
     // colTietMuc
     //
     this.colTietMuc.Caption = "Tiết mục";
     this.colTietMuc.Name = "colTietMuc";
     this.colTietMuc.Visible = true;
     this.colTietMuc.VisibleIndex = 1;
     this.colTietMuc.Width = 65;
     //
     // colNoiDung
     //
     this.colNoiDung.Caption = "Nội dung";
     this.colNoiDung.Name = "colNoiDung";
     this.colNoiDung.Visible = true;
     this.colNoiDung.VisibleIndex = 0;
     this.colNoiDung.Width = 54;
     //
     // colTapSo
     //
     this.colTapSo.Caption = "Tập số";
     this.colTapSo.Name = "colTapSo";
     this.colTapSo.Visible = true;
     this.colTapSo.VisibleIndex = 3;
     this.colTapSo.Width = 44;
     //
     // colTongTap
     //
     this.colTongTap.Caption = "Tổng tập";
     this.colTongTap.Name = "colTongTap";
     this.colTongTap.Visible = true;
     this.colTongTap.VisibleIndex = 4;
     this.colTongTap.Width = 55;
     //
     // colNgan
     //
     this.colNgan.Caption = "Ngăn";
     this.colNgan.Name = "colNgan";
     this.colNgan.Visible = true;
     this.colNgan.VisibleIndex = 6;
     this.colNgan.Width = 37;
     //
     // colKe
     //
     this.colKe.Caption = "Kệ";
     this.colKe.Name = "colKe";
     this.colKe.Visible = true;
     this.colKe.VisibleIndex = 5;
     this.colKe.Width = 24;
     //
     // colTang
     //
     this.colTang.Caption = "Tầng";
     this.colTang.Name = "colTang";
     this.colTang.Visible = true;
     this.colTang.VisibleIndex = 7;
     this.colTang.Width = 36;
     //
     // colNgayNhap
     //
     this.colNgayNhap.Caption = "Ngày nhập";
     this.colNgayNhap.Name = "colNgayNhap";
     this.colNgayNhap.Visible = true;
     this.colNgayNhap.VisibleIndex = 8;
     this.colNgayNhap.Width = 77;
     //
     // colThongSo
     //
     this.colThongSo.Caption = "Thông số";
     this.colThongSo.Name = "colThongSo";
     this.colThongSo.Width = 69;
     //
     // 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";
     //
     // gridDetailChiTietSanPham
     //
     this.gridDetailChiTietSanPham.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridDetailChiTietSanPham.BackgroundImage")));
     this.gridDetailChiTietSanPham.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
     this.gridDetailChiTietSanPham.Dock = System.Windows.Forms.DockStyle.Fill;
     this.gridDetailChiTietSanPham.Location = new System.Drawing.Point(0, 0);
     this.gridDetailChiTietSanPham.MainView = this.gridViewDetailChiTietSanPham;
     this.gridDetailChiTietSanPham.Name = "gridDetailChiTietSanPham";
     this.gridDetailChiTietSanPham.Size = new System.Drawing.Size(0, 0);
     this.gridDetailChiTietSanPham.TabIndex = 11;
     this.gridDetailChiTietSanPham.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewDetailChiTietSanPham});
     //
     // gridViewDetailChiTietSanPham
     //
     this.gridViewDetailChiTietSanPham.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewDetailChiTietSanPham.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewDetailChiTietSanPham.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_gridDetailChiTietSanPham_TenSanPham,
     this.Cot_gridDetailChiTietSanPham_SoLuong,
     this.Cot_gridDetailChiTietSanPham_VAT,
     this.Cot_gridDetailChiTietSanPham_ThanhTien,
     this.Cot_gridDetailChiTietSanPham_MaSanPham,
     this.Cot_gridDetailChiTietSanPham_DonGia});
     this.gridViewDetailChiTietSanPham.GridControl = this.gridDetailChiTietSanPham;
     this.gridViewDetailChiTietSanPham.IndicatorWidth = 40;
     this.gridViewDetailChiTietSanPham.Name = "gridViewDetailChiTietSanPham";
     this.gridViewDetailChiTietSanPham.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewDetailChiTietSanPham.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewDetailChiTietSanPham.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewDetailChiTietSanPham.OptionsPrint.UsePrintStyles = true;
     this.gridViewDetailChiTietSanPham.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewDetailChiTietSanPham.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewDetailChiTietSanPham.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewDetailChiTietSanPham.OptionsView.ShowGroupedColumns = true;
     this.gridViewDetailChiTietSanPham.OptionsView.ShowGroupPanel = false;
     //
     // Cot_gridDetailChiTietSanPham_TenSanPham
     //
     this.Cot_gridDetailChiTietSanPham_TenSanPham.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.Caption = "Tên sản phẩm";
     this.Cot_gridDetailChiTietSanPham_TenSanPham.Name = "Cot_gridDetailChiTietSanPham_TenSanPham";
     this.Cot_gridDetailChiTietSanPham_TenSanPham.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.Visible = true;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.VisibleIndex = 1;
     this.Cot_gridDetailChiTietSanPham_TenSanPham.Width = 79;
     //
     // Cot_gridDetailChiTietSanPham_SoLuong
     //
     this.Cot_gridDetailChiTietSanPham_SoLuong.AppearanceCell.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_SoLuong.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Cot_gridDetailChiTietSanPham_SoLuong.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_SoLuong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_SoLuong.Caption = "Số lượng";
     this.Cot_gridDetailChiTietSanPham_SoLuong.Name = "Cot_gridDetailChiTietSanPham_SoLuong";
     this.Cot_gridDetailChiTietSanPham_SoLuong.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_SoLuong.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_SoLuong.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_SoLuong.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.Cot_gridDetailChiTietSanPham_SoLuong.Visible = true;
     this.Cot_gridDetailChiTietSanPham_SoLuong.VisibleIndex = 3;
     this.Cot_gridDetailChiTietSanPham_SoLuong.Width = 54;
     //
     // Cot_gridDetailChiTietSanPham_VAT
     //
     this.Cot_gridDetailChiTietSanPham_VAT.AppearanceCell.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_VAT.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Cot_gridDetailChiTietSanPham_VAT.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_VAT.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_VAT.Caption = "VAT(%)";
     this.Cot_gridDetailChiTietSanPham_VAT.Name = "Cot_gridDetailChiTietSanPham_VAT";
     this.Cot_gridDetailChiTietSanPham_VAT.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_VAT.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_VAT.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_VAT.Visible = true;
     this.Cot_gridDetailChiTietSanPham_VAT.VisibleIndex = 4;
     this.Cot_gridDetailChiTietSanPham_VAT.Width = 50;
     //
     // Cot_gridDetailChiTietSanPham_ThanhTien
     //
     this.Cot_gridDetailChiTietSanPham_ThanhTien.AppearanceCell.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.Caption = "Thành tiền";
     this.Cot_gridDetailChiTietSanPham_ThanhTien.Name = "Cot_gridDetailChiTietSanPham_ThanhTien";
     this.Cot_gridDetailChiTietSanPham_ThanhTien.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.Visible = true;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.VisibleIndex = 5;
     this.Cot_gridDetailChiTietSanPham_ThanhTien.Width = 63;
     //
     // Cot_gridDetailChiTietSanPham_MaSanPham
     //
     this.Cot_gridDetailChiTietSanPham_MaSanPham.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.Caption = "Mã sản phẩm";
     this.Cot_gridDetailChiTietSanPham_MaSanPham.Name = "Cot_gridDetailChiTietSanPham_MaSanPham";
     this.Cot_gridDetailChiTietSanPham_MaSanPham.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.Visible = true;
     this.Cot_gridDetailChiTietSanPham_MaSanPham.VisibleIndex = 0;
     //
     // Cot_gridDetailChiTietSanPham_DonGia
     //
     this.Cot_gridDetailChiTietSanPham_DonGia.AppearanceCell.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_DonGia.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.Cot_gridDetailChiTietSanPham_DonGia.AppearanceHeader.Options.UseTextOptions = true;
     this.Cot_gridDetailChiTietSanPham_DonGia.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.Cot_gridDetailChiTietSanPham_DonGia.Caption = "Đơn giá";
     this.Cot_gridDetailChiTietSanPham_DonGia.Name = "Cot_gridDetailChiTietSanPham_DonGia";
     this.Cot_gridDetailChiTietSanPham_DonGia.OptionsColumn.AllowEdit = false;
     this.Cot_gridDetailChiTietSanPham_DonGia.OptionsColumn.AllowFocus = false;
     this.Cot_gridDetailChiTietSanPham_DonGia.OptionsColumn.ReadOnly = true;
     this.Cot_gridDetailChiTietSanPham_DonGia.Visible = true;
     this.Cot_gridDetailChiTietSanPham_DonGia.VisibleIndex = 2;
     this.Cot_gridDetailChiTietSanPham_DonGia.Width = 49;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     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(785, 67);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(71, 11);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(171, 20);
     this.NoiDung.TabIndex = 245;
     //
     // cboTang
     //
     this.cboTang.DataSource = null;
     this.cboTang.DisplayField = null;
     this.cboTang.Location = new System.Drawing.Point(523, 11);
     this.cboTang.Name = "cboTang";
     this.cboTang.Size = new System.Drawing.Size(92, 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(395, 11);
     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(266, 11);
     this.cboKe.Name = "cboKe";
     this.cboKe.Size = new System.Drawing.Size(92, 20);
     this.cboKe.TabIndex = 242;
     this.cboKe.ValueField = null;
     //
     // ngay
     //
     this.ngay.Caption = "Từ ngày 10/22/2010 đến ngày 10/29/2010";
     this.ngay.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngay.FirstFrom = new System.DateTime(2010, 10, 22, 15, 59, 31, 665);
     this.ngay.FirstTo = new System.DateTime(2010, 10, 29, 15, 59, 31, 665);
     this.ngay.FromDate = new System.DateTime(2010, 10, 22, 15, 59, 31, 665);
     this.ngay.Location = new System.Drawing.Point(71, 37);
     this.ngay.Name = "ngay";
     this.ngay.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngay.SecondFrom = new System.DateTime(2010, 10, 22, 15, 59, 31, 665);
     this.ngay.SecondTo = new System.DateTime(2010, 10, 29, 15, 59, 31, 665);
     this.ngay.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.ngay.Size = new System.Drawing.Size(285, 20);
     this.ngay.TabIndex = 196;
     this.ngay.ToDate = new System.DateTime(2010, 10, 29, 15, 59, 31, 665);
     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(493, 15);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(24, 13);
     this.plLabel3.TabIndex = 195;
     this.plLabel3.Text = "Tầng";
     this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(12, 42);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(52, 13);
     this.plLabel4.TabIndex = 188;
     this.plLabel4.Text = "Ngày nhập";
     this.plLabel4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // labelControl4
     //
     this.labelControl4.Location = new System.Drawing.Point(12, 14);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(42, 13);
     this.labelControl4.TabIndex = 188;
     this.labelControl4.Text = "Nội dung";
     this.labelControl4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(364, 14);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(25, 13);
     this.plLabel2.TabIndex = 193;
     this.plLabel2.Text = "Ngăn";
     this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(248, 15);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(12, 13);
     this.plLabel1.TabIndex = 192;
     this.plLabel1.Text = "Kệ";
     this.plLabel1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plComboboxAuto2
     //
     this.plComboboxAuto2.IDField = null;
     this.plComboboxAuto2.Location = new System.Drawing.Point(74, 36);
     this.plComboboxAuto2.MemberField = null;
     this.plComboboxAuto2.Name = "plComboboxAuto2";
     this.plComboboxAuto2.Size = new System.Drawing.Size(182, 19);
     this.plComboboxAuto2.StartWith = false;
     this.plComboboxAuto2.TabIndex = 24;
     this.plComboboxAuto2.ViewName = null;
     //
     // plComboboxAuto1
     //
     this.plComboboxAuto1.IDField = null;
     this.plComboboxAuto1.Location = new System.Drawing.Point(366, 36);
     this.plComboboxAuto1.MemberField = null;
     this.plComboboxAuto1.Name = "plComboboxAuto1";
     this.plComboboxAuto1.Size = new System.Drawing.Size(182, 19);
     this.plComboboxAuto1.StartWith = false;
     this.plComboboxAuto1.TabIndex = 22;
     this.plComboboxAuto1.ViewName = null;
     //
     // 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;
     //
     // gridView2
     //
     this.gridView2.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridView2.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridView2.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.gridColumn4,
     this.gridColumn5,
     this.gridColumn7,
     this.gridColumn9,
     this.gridColumn10,
     this.gridColumn11});
     this.gridView2.IndicatorWidth = 40;
     this.gridView2.Name = "gridView2";
     this.gridView2.OptionsLayout.Columns.AddNewColumns = false;
     this.gridView2.OptionsNavigation.AutoFocusNewRow = true;
     this.gridView2.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridView2.OptionsPrint.UsePrintStyles = true;
     this.gridView2.OptionsView.EnableAppearanceEvenRow = true;
     this.gridView2.OptionsView.EnableAppearanceOddRow = true;
     this.gridView2.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridView2.OptionsView.ShowGroupedColumns = true;
     this.gridView2.OptionsView.ShowGroupPanel = false;
     //
     // gridColumn4
     //
     this.gridColumn4.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn4.Caption = "Tên sản phẩm";
     this.gridColumn4.Name = "gridColumn4";
     this.gridColumn4.OptionsColumn.AllowEdit = false;
     this.gridColumn4.OptionsColumn.AllowFocus = false;
     this.gridColumn4.OptionsColumn.ReadOnly = true;
     this.gridColumn4.Visible = true;
     this.gridColumn4.VisibleIndex = 1;
     //
     // gridColumn5
     //
     this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn5.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn5.Caption = "Số lượng";
     this.gridColumn5.Name = "gridColumn5";
     this.gridColumn5.OptionsColumn.AllowEdit = false;
     this.gridColumn5.OptionsColumn.AllowFocus = false;
     this.gridColumn5.OptionsColumn.ReadOnly = true;
     this.gridColumn5.UnboundType = DevExpress.Data.UnboundColumnType.Integer;
     this.gridColumn5.Visible = true;
     this.gridColumn5.VisibleIndex = 3;
     //
     // gridColumn7
     //
     this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn7.Caption = "VAT(%)";
     this.gridColumn7.Name = "gridColumn7";
     this.gridColumn7.OptionsColumn.AllowEdit = false;
     this.gridColumn7.OptionsColumn.AllowFocus = false;
     this.gridColumn7.OptionsColumn.ReadOnly = true;
     this.gridColumn7.Visible = true;
     this.gridColumn7.VisibleIndex = 4;
     //
     // gridColumn9
     //
     this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn9.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn9.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn9.Caption = "Thành tiền";
     this.gridColumn9.Name = "gridColumn9";
     this.gridColumn9.OptionsColumn.AllowEdit = false;
     this.gridColumn9.OptionsColumn.AllowFocus = false;
     this.gridColumn9.OptionsColumn.ReadOnly = true;
     this.gridColumn9.UnboundType = DevExpress.Data.UnboundColumnType.Decimal;
     this.gridColumn9.Visible = true;
     this.gridColumn9.VisibleIndex = 5;
     //
     // gridColumn10
     //
     this.gridColumn10.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn10.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn10.Caption = "Mã sản phẩm";
     this.gridColumn10.Name = "gridColumn10";
     this.gridColumn10.OptionsColumn.AllowEdit = false;
     this.gridColumn10.OptionsColumn.AllowFocus = false;
     this.gridColumn10.OptionsColumn.ReadOnly = true;
     this.gridColumn10.Visible = true;
     this.gridColumn10.VisibleIndex = 0;
     //
     // gridColumn11
     //
     this.gridColumn11.AppearanceCell.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.gridColumn11.AppearanceHeader.Options.UseTextOptions = true;
     this.gridColumn11.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridColumn11.Caption = "Đơn giá";
     this.gridColumn11.Name = "gridColumn11";
     this.gridColumn11.OptionsColumn.AllowEdit = false;
     this.gridColumn11.OptionsColumn.AllowFocus = false;
     this.gridColumn11.OptionsColumn.ReadOnly = true;
     this.gridColumn11.Visible = true;
     this.gridColumn11.VisibleIndex = 2;
     //
     // frmQLKhoLuuBetaCam
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(785, 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.gridDetailChiTietSanPham)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewDetailChiTietSanPham)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridView2)).EndInit();
     this.ResumeLayout(false);
 }