private void CreateControls(IList<QueryGroupItem> groupItems)
        {
            this.layoutControlContainer.BeginUpdate();
            try
            {
                this.layoutControlGroupMain.Clear();
                foreach (var groupItem in groupItems)
                {
                    var combo = new CheckedComboBoxEdit {Name = "checkedCombo" + groupItems.IndexOf(groupItem)};
                    combo.Properties.SelectAllItemVisible = true;
                    combo.Properties.SelectAllItemCaption = "Выбрать все";
                    combo.Properties.DropDownRows = 10;
                    combo.Properties.DisplayMember = "Key";
                    combo.Properties.ValueMember = "Value";
                    combo.Properties.DataSource = groupItem.QueryDictionary.ToList();
                    EventHandler popupHandler = null;
                    popupHandler = (sender, args) =>
                    {
                        var popupContainer = (PopupContainerForm) ((IPopupControl) sender).PopupWindow;
                        _listBoxQueries = popupContainer.Controls[3].Controls[0] as CheckedListBoxControl;

                        if (_listBoxQueries == null) 
                            return;
                        _listBoxQueries.ItemCheck += (o, eventArgs) =>
                        {
                            combo.Text = string.Join("; ",
                                _listBoxQueries.CheckedIndices.OfType<int>().Select(t => _listBoxQueries.GetItemText(t)));
                            ListBoxQueriesOnItemCheck(o, eventArgs);
                        };

                        combo.Popup -= popupHandler;
                    };
                    combo.Popup += popupHandler;

                    combo.Closed += (sender, args) =>
                    {
                        combo.Text = string.Join("; ",
                            _listBoxQueries.CheckedIndices.OfType<int>().Select(t => _listBoxQueries.GetItemText(t)));
                    };
                    var layoutItem = new LayoutControlItem()
                    {
                        Text = groupItem.Head,
                        TextLocation = Locations.Top,
                        Control = combo
                    };
                    layoutItem.AppearanceItemCaption.Font = new Font("Segoe UI", 9);
                    this.layoutControlGroupMain.Add(layoutItem);
                }
                if (_queryListOthers.Any())
                {
                    var checkAllBox = new CheckEdit
                    {
                        CheckState = CheckState.Unchecked,
                        Text = "Выбрать все"
                    };
                    checkAllBox.Properties.AllowGrayed = true;
                    checkAllBox.CheckedChanged += (sender, args) =>
                    {
                        if (checkAllBox.Checked)
                        {
                            _listBoxOtherQueries.CheckAll();
                        }
                        else
                        {
                            _listBoxOtherQueries.UnCheckAll();
                        }
                    };
                    _listBoxOtherQueries = new CheckedListBoxControl
                    {
                        DisplayMember = "title",
                        ValueMember = null,
                        DataSource = _queryListOthers,
                        Name = "listBoxOtherQueries",
                        CheckOnClick = true,
                        AutoSizeInLayoutControl = true
                        //MinimumSize = new Size(0, 200)
                    };
                    
                    _listBoxOtherQueries.ItemCheck += (sender, args) =>
                    {
                        if (_listBoxOtherQueries.CheckedItemsCount < _listBoxOtherQueries.ItemCount)
                            checkAllBox.CheckState = CheckState.Indeterminate;
                        else if (_listBoxOtherQueries.CheckedItemsCount == 0)
                            checkAllBox.CheckState = CheckState.Unchecked;
                        else
                            checkAllBox.CheckState = CheckState.Checked;
                            
                        ListBoxQueriesOnItemCheck(sender, args);
                    };

                    var layoutItem = new LayoutControlItem()
                    {
                        Text = "Остальные запросы",
                        TextLocation = Locations.Top,
                        Control = _listBoxOtherQueries
                    };
                    layoutItem.AppearanceItemCaption.Font = new Font("Segoe UI", 9);
                    this.layoutControlGroupMain.Add(layoutItem);
                    this.layoutControlGroupMain.AddItem(new LayoutControlItem()
                    {
                        TextVisible = false,
                        Control = checkAllBox
                    });
                    
                }
            }
            finally
            {
                this.layoutControlContainer.EndUpdate();
            }
        }
        /// <summary>
        /// 动态加载配置页
        /// </summary>
        /// <param name="tableName">表名</param>
        /// <param name="displayName">显示名称</param>
        /// <returns></returns>
        private ConfigPageData LoadTabPage(ConfigDefine config)
        {
            string tableName   = config.TableName;
            string displayName = config.TableDisplayName;

            //动态创建控件
            CheckedListBoxControl list = new CheckedListBoxControl();

            list.Dock     = System.Windows.Forms.DockStyle.Fill;
            list.Location = new System.Drawing.Point(0, 0);
            list.Name     = "list" + tableName;
            list.Size     = new System.Drawing.Size(293, 270);
            list.Font     = new Font("Courier New", 10);

            //动态创建控件
            ConfigPageData page = new ConfigPageData(tableName, list);

            page.Name = "page" + tableName;
            page.Size = new System.Drawing.Size(293, 270);
            page.Text = displayName;
            page.Controls.Add(list);

            this.xtraTabControl1.TabPages.Add(page);
            return(page);
        }
 private void _statusAllControl(Boolean readOnly)
 {
     foreach (var items in layoutEdit.Controls)
     {
         BaseEdit     item   = items as BaseEdit;
         SimpleButton button = items as SimpleButton;
         if (button != null)
         {
             button.Enabled = !readOnly;
             continue;
         }
         if (item != null)
         {
             item.ReadOnly             = readOnly;
             item.EnterMoveNextControl = true;
         }
         else
         {
             CheckedListBoxControl checkListBox = items as CheckedListBoxControl;
             if (checkListBox != null)
             {
                 checkListBox.Enabled = !readOnly;
             }
         }
     }
     gcGrid.Enabled = readOnly;
 }
Ejemplo n.º 4
0
        public static void SetLogLevel(CheckedListBoxControl chkLstLogLevel)
        {
            chkLstLogLevel.Items.Clear();
            switch (UserSettingsManager.UserSettings.LogLevelSelection)
            {
            case LogLevelSelectionType.Single:
                chkLstLogLevel.CheckMode  = CheckMode.Single;
                chkLstLogLevel.CheckStyle = CheckStyles.Radio;
                CheckedListBoxItem[] radioLevels =
                {
                    new CheckedListBoxItem("Trace"),
                    new CheckedListBoxItem("Error + Critical"),
                    new CheckedListBoxItem("Warning"),
                    new CheckedListBoxItem("Debug"),
                    new CheckedListBoxItem("Verbose")
                };
                chkLstLogLevel.Items.AddRange(radioLevels);
                break;

            case LogLevelSelectionType.Multiple:
                chkLstLogLevel.CheckMode  = CheckMode.Multiple;
                chkLstLogLevel.CheckStyle = CheckStyles.Standard;
                chkLstLogLevel.Items.AddRange(LogLevels.Select(l => new CheckedListBoxItem(l, false)).ToArray());
                break;

            default:
                throw new ArgumentOutOfRangeException();
            }
        }
        private void pictureCarStyle_Click(object sender, EventArgs e)
        {
            using (FormCarStyle dlg = new FormCarStyle())
            {
                dlg.StartPosition = FormStartPosition.CenterParent;
                dlg.Init(ShowNoLogoBrand);
                dlg.SelectImage = pictureCarStyle.Image;
                dlg.TopMost     = true;
                if (ToHidePopup != null)
                {
                    ToHidePopup(this, EventArgs.Empty);
                }
                if (dlg.ShowDialog() == DialogResult.OK)
                {
                    if (pictureCarStyle.Image.Tag == dlg.SelectImage.Tag)
                    {
                        return;
                    }

                    if (dlg.SelectImage != null && dlg.SelectImage.Tag != null)
                    {
                        VehicleBrandInfo brand = dlg.SelectImage.Tag as VehicleBrandInfo;
                        if (pictureCarStyle.Image != null && pictureCarStyle.Image.Tag != null)
                        {
                            if (((VehicleBrandInfo)pictureCarStyle.Image.Tag).ID == brand.ID)
                            {
                                return;
                            }
                        }
                        pictureCarStyle.Image     = new Bitmap(dlg.SelectImage);
                        pictureCarStyle.Image.Tag = brand;
                        m_ViewModel.Brand         = brand;
                        m_listBoxVehicleModel     = null;
                        checkedComboBoxEdit1.Properties.Items.Clear();
                        FillupVehicleModels();
                    }
                    else
                    {
                        pictureCarStyle.Image = new Bitmap(dlg.SelectImage);
                        m_ViewModel.Brand     = null;
                        m_listBoxVehicleModel = null;
                        checkedComboBoxEdit1.Properties.Items.Clear();
                        checkedComboBoxEdit1.Enabled = false;
                    }
                    m_ViewModel.SelectAllVehicleModels = true;
                }
                this.pictureCarStyle.Focus();

                if (ToShowPopup != null)
                {
                    ToShowPopup(this, EventArgs.Empty);
                }
            }

            if (SelectedBrandChanged != null)
            {
                SelectedBrandChanged(this, EventArgs.Empty);
            }
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Add a possibly checked item to the control
 /// </summary>
 /// <param name="item"></param>
 /// <param name="isChecked"></param>
 public void AddItem(object item, bool isChecked)
 {
     Items.Add(item);
     if (isChecked)
     {
         CheckedListBoxControl.SetItemChecked(Items.Count - 1, true);
     }
 }
Ejemplo n.º 7
0
 private void FillWithTypes <T>(CheckedListBoxControl cb) where T : class
 {
     cb.Items.Clear();
     cb.Items.AddRange(typeof(T).Assembly.GetTypes()
                       .Where(t => t.GetBaseType() == typeof(T))
                       .Select(t => (T)Activator.CreateInstance(t))
                       .ToArray());
 }
 public void SetLogLevel(CheckedListBoxControl chkLstLogLevel)
 {
     chkLstLogLevel.Items.Clear();
     chkLstLogLevel.CheckMode  = CheckMode.Multiple;
     chkLstLogLevel.CheckStyle = CheckStyles.Standard;
     chkLstLogLevel.Items.AddRange(LogLevels.Select(l => new CheckedListBoxItem(l,
                                                                                Settings.FilteringExclusion.IsLogLevelExcluded(l))).ToArray());
 }
 private void txtPhongBan_Popup(object sender, EventArgs e)
 {
     if (subscribe) // 1st approach
     {
         CheckedListBoxControl list = (sender as IPopupControl).PopupWindow.Controls.OfType <PopupContainerControl>().First().Controls.OfType <CheckedListBoxControl>().First();
         list.ItemCheck += list_ItemCheck;
         subscribe       = false;
     }
 }
Ejemplo n.º 10
0
 /// <summary>绑定checkboxlist
 /// </summary>
 /// <param name="dt">数据dt</param>
 /// <param name="lst">CheckedListBoxControl的checkboxlist</param>
 /// <param name="description">显示名</param>
 /// <param name="value">值</param>
 public static void BindCheckBoxList(DataTable dt, CheckedListBoxControl lst, string description, string value)
 {
     lst.Items.Clear();
     foreach (DataRow dr in dt.Rows)
     {
         var checkedListBoxItem = new CheckedListBoxItem(dr[value], dr[description].ToString());
         lst.Items.Add(checkedListBoxItem);
     }
 }
Ejemplo n.º 11
0
        string GetDataJsonString()
        {
            List <Control> list = TmoComm.GetChildrenControl(xtraTabControlMain, true);
            Dictionary <string, object> listdata = new Dictionary <string, object>();

            if (_aclb_id != -1)
            {
                listdata.Add("aclb_id", _aclb_id);
            }

            list.ForEach(x =>
            {
                if (x.Tag != null)
                {
                    string key = x.Tag.ToString();
                    if (x is BaseEdit)
                    {
                        BaseEdit be  = (BaseEdit)x;
                        object value = null;
                        if (x is DateEdit)
                        {
                            if (be.EditValue != null)
                            {
                                value = be.EditValue;
                            }
                            else
                            {
                                value = default(DateTime);
                            }
                        }
                        else
                        {
                            value = be.EditValue == null ? "" : be.EditValue;
                        }

                        listdata.Add(key, value);
                    }
                    else if (x is CheckedListBoxControl)
                    {
                        CheckedListBoxControl chkControl = (CheckedListBoxControl)x;
                        string str = GetCheckedListBoxChecked(chkControl);
                        if (!string.IsNullOrEmpty(str))
                        {
                            listdata.Add(key, str);
                        }
                    }
                    else if (x is DateTimePicker)
                    {
                        DateTimePicker dateTimeControl = (DateTimePicker)x;
                        listdata.Add(key, dateTimeControl.Value);
                    }
                }
            });
            return(TmoShare.SetValueToJson(listdata));
        }
        private void checkedComboBoxEdit1_Popup(object sender, EventArgs e)
        {
            PopupContainerForm form = (sender as IPopupControl).PopupWindow as PopupContainerForm;

            (form.Controls[3].Controls[0] as CheckedListBoxControl).SelectedIndexChanged += new EventHandler(Dropdown_SelectedIndexChanged);

            if (m_listBoxVehicleModel == null)
            {
                m_listBoxVehicleModel = ((this.checkedComboBoxEdit1 as IPopupControl).PopupWindow as PopupContainerForm).Controls[3].Controls[0] as CheckedListBoxControl;
            }
        }
        protected override PopupContainerControl CreatePopupCheckListControl()
        {
            PopupContainerControl ctrl    = base.CreatePopupCheckListControl();
            CheckedListBoxControl listBox = GetCheckedListBoxControl(ctrl);

            if (Properties.CanShowImageInDropDown)
            {
                listBox.DrawItem += OnDrawItem;
            }
            return(ctrl);
        }
Ejemplo n.º 14
0
        void SetDataFromJsonString()
        {
            Dictionary <string, object> listdata = new Dictionary <string, object>();

            if (!string.IsNullOrWhiteSpace(_jsonData))
            {
                listdata = TmoShare.GetValueFromJson <Dictionary <string, object> >(_jsonData);
            }

            if (listdata.ContainsKey("aclb_id"))
            {
                int.TryParse(listdata["aclb_id"].ToString(), out _aclb_id);
            }

            List <Control> list = TmoComm.GetChildrenControl(xtraTabControlMain, true);

            list.ForEach(x =>
            {
                if (x is RadioGroup)
                {
                    RadioGroup rg  = (RadioGroup)x;
                    rg.MouseClick += rg_MouseClick; //右键清楚选择
                }

                if (x.Tag != null)
                {
                    string key = x.Tag.ToString();
                    if (listdata.ContainsKey(key))
                    {
                        object value = listdata[key];
                        if (x is BaseEdit)
                        {
                            BaseEdit be = (BaseEdit)x;
                            //if (x is DateEdit)
                            //{
                            //    if (be.EditValue != null)
                            //        value = be.EditValue;
                            //    else
                            //        value = default(DateTime);
                            //}
                            //else
                            {
                                be.EditValue = value;
                            }
                        }
                        else if (x is CheckedListBoxControl)
                        {
                            CheckedListBoxControl chkControl = (CheckedListBoxControl)x;
                            SetCheckedListBoxChecked(chkControl, value.ToString());
                        }
                    }
                }
            });
        }
        void AddColumnFilter(string fieldName, CheckedListBoxControl filterControl)
        {
            string filterString;

            string[] items = new string[filterControl.CheckedItems.Count];
            for (int i = 0; i < filterControl.CheckedItems.Count; i++)
            {
                items[i] = String.Format("[{0}] = '{1}'", fieldName, filterControl.CheckedItems[i]);
            }
            filterString = String.Join(" Or ", items);
            gridView1.Columns[fieldName].FilterInfo = new DevExpress.XtraGrid.Columns.ColumnFilterInfo(filterString);
        }
Ejemplo n.º 16
0
 protected override void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (CheckListBox != null)
         {
             this.checkListBox.Dispose();
             this.checkListBox = null;
         }
     }
     base.Dispose(disposing);
 }
Ejemplo n.º 17
0
 private void SetControl(PopupContainerControl containerControl)
 {
     foreach (Control con in containerControl.Controls)
     {
         if (con.GetType().BaseType == typeof(CheckedListBoxControl))
         {
             listBoxControl           = con as CheckedListBoxControl;
             listBoxControl.DrawItem += CustomCheckedComboBoxEdit_DrawItem;
             return;
         }
     }
 }
Ejemplo n.º 18
0
        private void clbc_workflow_SelectedIndexChanged(object sender, EventArgs e)
        {
            //设置点击一下即打钩
            CheckedListBoxControl clb = sender as CheckedListBoxControl;
            int si = clb.SelectedIndex;

            if (si == -1)
            {
                si = 0;
            }
            clb.SetItemCheckState(si, CheckState.Checked);
        }
Ejemplo n.º 19
0
        /// <summary>
        /// 获取到选中的批次
        /// </summary>
        /// <returns></returns>
        public static string GetBatchsName(CheckedListBoxControl clbc)
        {
            string batchasName = "";

            for (int i = 0; i < clbc.Items.Count; i++)
            {
                if (clbc.Items[i].CheckState == CheckState.Checked)
                {
                    batchasName = batchasName + clbc.Items[i].Value + "-";
                }
            }
            return(batchasName);
        }
Ejemplo n.º 20
0
        public static string GetCheckList(CheckedListBoxControl oCheckedListBoxControl)
        {
            string SelectValues = "";

            for (int i = 0; i < oCheckedListBoxControl.ItemCount; i++)
            {
                if (oCheckedListBoxControl.GetItemChecked(i))
                {
                    SelectValues += oCheckedListBoxControl.GetItemValue(i).ToString() + ",";
                }
            }
            return(SelectValues);
        }
Ejemplo n.º 21
0
        /// <summary>
        /// 绑定CLS
        /// </summary>
        public static void BindCLS(CheckedListBoxControl p_CHK, string p_TableName, string p_FieldName)
        {
            string sql = string.Empty;

            sql  = "SELECT CLSNM FROM Data_CLS WHERE CLSListID IN(SELECT ID FROM Data_CLSList WHERE 1=1 ";
            sql += " AND CLSA=" + SysString.ToDBString(p_TableName) + " AND CLSB=" + SysString.ToDBString(p_FieldName) + ")";
            sql += " ORDER BY CLSIDC,CLSNM";

            p_CHK.DataSource    = SysUtils.Fill(sql);
            p_CHK.DisplayMember = "CLSNM";
            p_CHK.ValueMember   = "CLSNM";
            p_CHK.Show();
        }
Ejemplo n.º 22
0
        /// <summary>
        /// 返回选中的集合
        /// </summary>
        /// <returns></returns>
        public static List <string> ToList(this CheckedListBoxControl control)
        {
            List <string> list = new List <string>();

            foreach (var index in control.CheckedIndices)
            {
                var listItem = control.GetItemValue(index) as CListItem;
                if (listItem != null)
                {
                    list.Add(listItem.Value);
                }
            }
            return(list);
        }
Ejemplo n.º 23
0
        private void FillListBox(CheckedListBoxControl checkedListBoxControl, List <string> list, string checkedValue)
        {
            int counter = 0;

            checkedListBoxControl.Items.BeginUpdate();
            if (checkedListBoxControl != null && list != null)
            {
                foreach (string item in list)
                {
                    checkedListBoxControl.Items.Insert(counter++, new DevExpress.XtraEditors.Controls.CheckedListBoxItem(null, item, item == checkedValue || checkedValue == null? CheckState.Checked: CheckState.Unchecked));
                }
            }
            checkedListBoxControl.Items.EndUpdate();
        }
Ejemplo n.º 24
0
        private string GenerateSelectionFilterForCheckList(CheckedListBoxControl chkList)
        {
            string Filter = "";

            foreach (DataRowView item in chkList.CheckedItems)
            {
                if (item != null)
                {
                    Filter = Filter + item["ID"] + ",";
                }
            }

            return(Filter);
        }
        private void settingSecondaryItemListBoxControl_DrawItem(object sender, ListBoxDrawItemEventArgs e)
        {
            CheckedListBoxControl listBox = sender as CheckedListBoxControl;

            if (listBox.Enabled && e.State != (DrawItemState.Focus & DrawItemState.Selected))
            {
                e.Appearance.BackColor = Color.SlateGray;
            }

            if (e.Index == listBox.ItemCount - 1)
            {
                Font font = new Font(e.Appearance.Font, FontStyle.Bold);
                e.Appearance.Font = font;
            }
        }
Ejemplo n.º 26
0
 /// <summary>
 /// 初始化器
 /// </summary>
 private void Init()
 {
     try
     {
         PopupContainerControl popupContainerControl1 = new PopupContainerControl();
         CheckedListBoxControl chkListBoxControlDX    = new CheckedListBoxControl();
         popupContainerControl1.Controls.Add(chkListBoxControlDX);
         chkListBoxControlDX.Dock     = DockStyle.Fill;
         this.Properties.PopupControl = popupContainerControl1;
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 27
0
 public GridViewQuickColumnCustomizationPopup(BlobBaseEdit ownerEdit, GridView view) : base(ownerEdit)
 {
     this.view                     = view;
     this.checkListBox             = new CheckedListBoxControl();
     this.checkListBox.BorderStyle = BorderStyles.Simple;
     this.checkListBox.Appearance.Assign(ownerEdit.Properties.AppearanceDropDown);
     this.checkListBox.LookAndFeel.ParentLookAndFeel = OwnerEdit.LookAndFeel;
     this.checkListBox.Visible      = false;
     this.checkListBox.CheckOnClick = true;
     this.checkListBox.ItemCheck   += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(OnCheckListBoxItemCheck);
     this.Controls.Add(checkListBox);
     UpdateCheckListBox();
     FillList();
     OkButton.Enabled = true;
 }
Ejemplo n.º 28
0
        public static StringCollection GetCheckedItems(CheckedListBoxControl listBox)
        {
            StringCollection collection = null;

            foreach (int checkedIndex in listBox.CheckedIndices)
            {
                if (collection == null)
                {
                    collection = new StringCollection();
                }
                object item = listBox.Items[checkedIndex];
                collection.Add(item.ToString());
            }
            return(collection);
        }
        private void settingSecondaryItemListBoxControl_MouseMove(object sender, MouseEventArgs e)
        {
            CheckedListBoxControl listBoxControl = sender as CheckedListBoxControl;
            int index = listBoxControl.IndexFromPoint(new Point(e.X, e.Y));

            if (index != -1)
            {
                string item = listBoxControl.GetItem(index) as string;
                toolTipController1.ShowHint(item, listBoxControl.PointToScreen(new Point(e.X, e.Y)));
            }
            else
            {
                toolTipController1.HideHint();
            }
        }
Ejemplo n.º 30
0
 void CustomCheckedComboBoxEdit_DrawItem(object sender, ListBoxDrawItemEventArgs e)
 {
     if (listBoxControl != null && Properties.CheckStyle != DevExpress.XtraEditors.Controls.CheckStyles.Standard)
     {
         CheckedListBoxControl  lbControl = sender as CheckedListBoxControl;
         CheckedListBoxViewInfo vi        = lbControl.GetViewInfo() as CheckedListBoxViewInfo;
         CheckedListBoxViewInfo.CheckedItemInfo checkItemInfo = vi.GetItemByIndex(e.Index) as CheckedListBoxViewInfo.CheckedItemInfo;
         checkItemInfo.CheckArgs.CheckStyle = Properties.CheckStyle;
         if (Properties.CheckStyle == DevExpress.XtraEditors.Controls.CheckStyles.Radio)
         {
             return;
         }
         SetProperties(checkItemInfo);
     }
 }
Ejemplo n.º 31
0
        public void AddCheckedListBoxEdit(CheckedListBoxControl imgCombo, string DepartmentCode)
        {
            DataTable dataTable = new DataTable();

            foreach (DataRow row in this.GetListByDepartment(DepartmentCode).Rows)
            {
                CheckedListBoxItem checkedListBoxItem = new CheckedListBoxItem()
                {
                    Description = string.Concat(row["GroupName"].ToString(), " (", row["GroupCode"].ToString(), ")"),
                    CheckState  = CheckState.Checked,
                    Value       = row["GroupCode"].ToString()
                };
                imgCombo.Items.Add(checkedListBoxItem);
            }
        }
		public static void PersistSettings(
			CheckedListBoxControl c,
			IPersistentPairStorage storage,
			string key )
		{
			var indexes = new List<string>();

			for ( var i = 0; i < c.Items.Count; ++i )
			{
				if ( c.GetItemChecked( i ) )
				{
					indexes.Add( i.ToString() );
				}
			}

			PersistanceHelper.SaveValue( storage, key, string.Join( @";", indexes.ToArray() ) );
		}
Ejemplo n.º 33
0
      private void CheckUncheckListboxItems(CheckedListBoxControl AListBox, bool ACheckState)
      {
         try
         {

            for (int i = 0; i < AListBox.ItemCount; i++)
            {
               DataRowView row = AListBox.GetItem(i) as DataRowView;
               AListBox.SetItemChecked(i, ACheckState);
            }
         }
         catch (Exception error)
         {
            XtraMessageBox.Show("An error occurred while setting selected preferences to checked/unchecked." + Environment.NewLine +
                   "Error CNF-323 in " + FORM_NAME + ".CheckUncheckListboxItems(): " + error.Message,
                 FORM_ERROR_CAPTION, MessageBoxButtons.OK, MessageBoxIcon.Error);
         }
      }
		public static void RestoreSettings(
			CheckedListBoxControl c,
			IPersistentPairStorage storage,
			string key )
		{
			var indexes = new List<string>();

			for ( var i = 0; i < c.Items.Count; ++i )
			{
				if ( c.GetItemChecked( i ) )
				{
					indexes.Add( i.ToString() );
				}
			}

			var def = string.Join( @";", indexes.ToArray() );

			// --

			var s = PersistanceHelper.RestoreValue(
				storage,
				key,
				def ) as string;

			if ( string.IsNullOrEmpty( s ) )
			{
				for ( var i = 0; i < c.Items.Count; ++i )
				{
					c.SetItemChecked( i, false );
				}
			}
			else
			{
				var splitted = new List<string>( s.Split( ';' ) );

				var ris = new List<int>();
				splitted.ForEach( x => ris.Add( int.Parse( x ) ) );

				for ( var i = 0; i < c.Items.Count; ++i )
				{
					c.SetItemChecked( i, ris.Contains( i ) );
				}
			}
		}
		private void Init()
		{
			ListBox = new CheckedListBoxControl();
			ListBox.Appearance.Font = new Font("Arial", 9.75F, FontStyle.Regular);
			ListBox.Appearance.Options.UseFont = true;
			ListBox.CheckOnClick = true;
			ListBox.ItemHeight = 30;
			ListBox.SelectionMode = SelectionMode.None;
			ListBox.Dock = DockStyle.Fill;
			ListBox.Items.AddRange(DataSource.Tags.Select(t => new CheckedListBoxItem(t, t.Name, false)).ToArray());

			ToggleButton = new ButtonX();
			ToggleButton.AccessibleRole = AccessibleRole.PushButton;
			ToggleButton.ColorTable = eButtonColor.OrangeWithBackground;
			ToggleButton.Size = new Size(250, 30);
			ToggleButton.Style = eDotNetBarStyle.StyleManagerControlled;
			ToggleButton.Text = DataSource.Description.Replace("&", "&&");
			ToggleButton.TextColor = Color.Black;
			ToggleButton.TextAlignment = eButtonTextAlignment.Left;
			ToggleButton.Tag = ListBox;
		}
Ejemplo n.º 36
0
 private void GetIEWebsite()
 {
     IEHelper ieWeb = new IEHelper();
     List<WebSiteModel> iesites = ieWeb.MonitorIE();
     if (iesites != null && iesites.Count > 0)
     {
         if (_ieChkListBox == null)
         {
             _ieChkListBox = new CheckedListBoxControl();
             grpIE.Controls.Add(_ieChkListBox);
             _ieChkListBox.Dock = DockStyle.Fill;
         }
         
         foreach (var item in iesites)
         {
             if (Regex.Match(item.url, "http://item.jd.com/(\\d{1,14}).html", RegexOptions.IgnoreCase).Success)
             {
                 if (_ieChkListBox.Items.IndexOf(item.url.TrimEnd()) >= 0)
                 {
                     continue;
                 }
                 _ieChkListBox.Items.Add(item.url.TrimEnd(), true);
             }
         }
         if (_ieChkListBox.CheckedItemsCount > 0)
         {
             IEPage.AllowNext = true;
         }
     }
 }
Ejemplo n.º 37
0
 public static string[] GetCheckedValues(CheckedListBoxControl checks)
 {
     return GetCheckedValues(checks, false);
 }
Ejemplo n.º 38
0
 public static string[] GetCheckedValues(CheckedListBoxControl checks, bool isString)
 {
     string[] values = new string[checks.CheckedItems.Count];
     if (isString)
     {
         for (int i = 0; i < checks.CheckedItems.Count; i++)
         {
             values[i] = "'" + checks.CheckedItems[i].ToString() + "'";
         }
     }
     else
     {
         for (int i = 0; i < checks.CheckedItems.Count; i++)
         {
             values[i] = checks.CheckedItems[i].ToString();
         }
     }
     return values;
 }
 public CustomCheckedListBoxViewInfo(CheckedListBoxControl listBox)
     : base(listBox)
 {
 }
 /// <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(frmTKThuocTinhBienMuc));
     DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode2 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode3 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode4 = new DevExpress.XtraGrid.GridLevelNode();
     DevExpress.XtraGrid.GridLevelNode gridLevelNode5 = new DevExpress.XtraGrid.GridLevelNode();
     this.gridDetail_LoaiBang = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.gridDetail_TietMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_TietMuc_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.cot_TietMuc_SoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_TietMuc_BienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_TietMuc_BienMuc_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_TietMuc_BienMuc_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.CotMatserSoLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_LoaiBang_ThongSo_BienMuc = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridDetail_LoaiBang_ThongSo = new DevExpress.XtraGrid.Views.Grid.PLGridView();
     this.Cot_LoaiBang_ThongSo_Ten = new DevExpress.XtraGrid.Columns.GridColumn();
     this.Cot_LoaiBang_ThongSo_SoLuong = 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.groupControl2 = new DevExpress.XtraEditors.GroupControl();
     this.checkedListBoxControl2 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.label3 = new System.Windows.Forms.Label();
     this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid();
     this.label9 = new System.Windows.Forms.Label();
     this.plCombobox3 = new ProtocolVN.Framework.Win.PLCombobox();
     this.NguoiXuat = new ProtocolVN.Framework.Win.PLCombobox();
     this.label2 = new System.Windows.Forms.Label();
     this.textEdit2 = new DevExpress.XtraEditors.TextEdit();
     this.textEdit1 = new DevExpress.XtraEditors.TextEdit();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.dateEdit2 = new DevExpress.XtraEditors.DateEdit();
     this.dateEdit1 = new DevExpress.XtraEditors.DateEdit();
     this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
     this.checkedListBoxControl1 = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
     this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc_BienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo_BienMuc)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo)).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();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit();
     this.groupControl2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit();
     this.groupControl1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).BeginInit();
     this.SuspendLayout();
     //
     // gridDetail_LoaiBang
     //
     this.gridDetail_LoaiBang.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_Ten,
     this.Cot_LoaiBang_SoLuong});
     this.gridDetail_LoaiBang.CustomizationFormBounds = new System.Drawing.Rectangle(816, 401, 208, 168);
     this.gridDetail_LoaiBang.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang.IndicatorWidth = 40;
     this.gridDetail_LoaiBang.Name = "gridDetail_LoaiBang";
     this.gridDetail_LoaiBang.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_Ten
     //
     this.Cot_LoaiBang_Ten.Caption = "Tên loại băng";
     this.Cot_LoaiBang_Ten.Name = "Cot_LoaiBang_Ten";
     this.Cot_LoaiBang_Ten.Visible = true;
     this.Cot_LoaiBang_Ten.VisibleIndex = 0;
     this.Cot_LoaiBang_Ten.Width = 76;
     //
     // Cot_LoaiBang_SoLuong
     //
     this.Cot_LoaiBang_SoLuong.Caption = "Số lượng";
     this.Cot_LoaiBang_SoLuong.Name = "Cot_LoaiBang_SoLuong";
     this.Cot_LoaiBang_SoLuong.Visible = true;
     this.Cot_LoaiBang_SoLuong.VisibleIndex = 1;
     this.Cot_LoaiBang_SoLuong.Width = 54;
     //
     // 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.gridDetail_LoaiBang;
     gridLevelNode2.LevelTemplate = this.gridDetail_LoaiBang_ThongSo;
     gridLevelNode3.LevelTemplate = this.gridDetail_LoaiBang_ThongSo_BienMuc;
     gridLevelNode3.RelationName = "Biên mục theo thông số";
     gridLevelNode2.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode3});
     gridLevelNode2.RelationName = "Thông số loại băng";
     gridLevelNode1.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode2});
     gridLevelNode1.RelationName = "Thống kê theo loại băng";
     gridLevelNode4.LevelTemplate = this.gridDetail_TietMuc;
     gridLevelNode5.LevelTemplate = this.gridDetail_TietMuc_BienMuc;
     gridLevelNode5.RelationName = "Biên mục theo tiết mục";
     gridLevelNode4.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode5});
     gridLevelNode4.RelationName = "Thống kê theo tiết mục";
     this.gridControlMaster.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
     gridLevelNode1,
     gridLevelNode4});
     this.gridControlMaster.Location = new System.Drawing.Point(0, 141);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1006, 356);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridDetail_TietMuc,
     this.gridDetail_TietMuc_BienMuc,
     this.gridViewMaster,
     this.gridDetail_LoaiBang_ThongSo_BienMuc,
     this.gridDetail_LoaiBang_ThongSo,
     this.gridDetail_LoaiBang});
     //
     // gridDetail_TietMuc
     //
     this.gridDetail_TietMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_TietMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_TietMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_TietMuc_Ten,
     this.cot_TietMuc_SoLuong});
     this.gridDetail_TietMuc.GridControl = this.gridControlMaster;
     this.gridDetail_TietMuc.IndicatorWidth = 40;
     this.gridDetail_TietMuc.Name = "gridDetail_TietMuc";
     this.gridDetail_TietMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_TietMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_TietMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_TietMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_TietMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_TietMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_TietMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_TietMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_TietMuc_Ten
     //
     this.Cot_TietMuc_Ten.Caption = "Tên tiết mục";
     this.Cot_TietMuc_Ten.Name = "Cot_TietMuc_Ten";
     this.Cot_TietMuc_Ten.Visible = true;
     this.Cot_TietMuc_Ten.VisibleIndex = 0;
     this.Cot_TietMuc_Ten.Width = 71;
     //
     // cot_TietMuc_SoLuong
     //
     this.cot_TietMuc_SoLuong.Caption = "Số lượng";
     this.cot_TietMuc_SoLuong.Name = "cot_TietMuc_SoLuong";
     this.cot_TietMuc_SoLuong.Visible = true;
     this.cot_TietMuc_SoLuong.VisibleIndex = 1;
     this.cot_TietMuc_SoLuong.Width = 54;
     //
     // gridDetail_TietMuc_BienMuc
     //
     this.gridDetail_TietMuc_BienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_TietMuc_BienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_TietMuc_BienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_TietMuc_BienMuc_MaBang,
     this.Cot_TietMuc_BienMuc_NoiDung});
     this.gridDetail_TietMuc_BienMuc.GridControl = this.gridControlMaster;
     this.gridDetail_TietMuc_BienMuc.IndicatorWidth = 40;
     this.gridDetail_TietMuc_BienMuc.Name = "gridDetail_TietMuc_BienMuc";
     this.gridDetail_TietMuc_BienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_TietMuc_BienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_TietMuc_BienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_TietMuc_BienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_TietMuc_BienMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_TietMuc_BienMuc_MaBang
     //
     this.Cot_TietMuc_BienMuc_MaBang.Caption = "Mã băng";
     this.Cot_TietMuc_BienMuc_MaBang.Name = "Cot_TietMuc_BienMuc_MaBang";
     this.Cot_TietMuc_BienMuc_MaBang.Visible = true;
     this.Cot_TietMuc_BienMuc_MaBang.VisibleIndex = 1;
     this.Cot_TietMuc_BienMuc_MaBang.Width = 53;
     //
     // Cot_TietMuc_BienMuc_NoiDung
     //
     this.Cot_TietMuc_BienMuc_NoiDung.Caption = "Nội dung";
     this.Cot_TietMuc_BienMuc_NoiDung.Name = "Cot_TietMuc_BienMuc_NoiDung";
     this.Cot_TietMuc_BienMuc_NoiDung.Visible = true;
     this.Cot_TietMuc_BienMuc_NoiDung.VisibleIndex = 0;
     this.Cot_TietMuc_BienMuc_NoiDung.Width = 54;
     //
     // 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.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;
     this.gridViewMaster.OptionsView.ShowGroupPanel = false;
     //
     // CotMatserSoLuong
     //
     this.CotMatserSoLuong.Caption = "Tổng số lượng biên mục";
     this.CotMatserSoLuong.Name = "CotMatserSoLuong";
     this.CotMatserSoLuong.Visible = true;
     this.CotMatserSoLuong.VisibleIndex = 0;
     this.CotMatserSoLuong.Width = 125;
     //
     // gridDetail_LoaiBang_ThongSo_BienMuc
     //
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang,
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc,
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung,
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap,
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong,
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster,
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp,
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD,
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem,
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa,
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL,
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK,
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke,
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan,
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang,
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat,
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau,
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen,
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu,
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap,
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc,
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia,
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating,
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn,
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut,
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration});
     this.gridDetail_LoaiBang_ThongSo_BienMuc.CustomizationFormBounds = new System.Drawing.Rectangle(734, 488, 208, 168);
     this.gridDetail_LoaiBang_ThongSo_BienMuc.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.IndicatorWidth = 40;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.Name = "gridDetail_LoaiBang_ThongSo_BienMuc";
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.ColumnAutoWidth = false;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang_ThongSo_BienMuc.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_MaBang
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Caption = "Mã băng";
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Name = "Cot_LoaiBang_ThongSo_BienMuc_MaBang";
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.VisibleIndex = 0;
     this.Cot_LoaiBang_ThongSo_BienMuc_MaBang.Width = 53;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Caption = "Tiết mục";
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Name = "Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc";
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.VisibleIndex = 1;
     this.Cot_LoaiBang_ThongSo_BienMuc_BienMuc__TietMuc.Width = 52;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_NoiDung
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Caption = "Nội dung";
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Name = "Cot_LoaiBang_ThongSo_BienMuc_NoiDung";
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.VisibleIndex = 2;
     this.Cot_LoaiBang_ThongSo_BienMuc_NoiDung.Width = 54;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SoTap
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Caption = "Tập số";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Name = "Cot_LoaiBang_ThongSo_BienMuc_SoTap";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.VisibleIndex = 3;
     this.Cot_LoaiBang_ThongSo_BienMuc_SoTap.Width = 43;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Caption = "Thời lượng";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Name = "Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.VisibleIndex = 4;
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiLuong.Width = 62;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PostMaster
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Caption = "Tình trạng";
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Name = "Cot_LoaiBang_ThongSo_BienMuc_PostMaster";
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.VisibleIndex = 5;
     this.Cot_LoaiBang_ThongSo_BienMuc_PostMaster.Width = 70;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PopUp
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Caption = "Pop Up";
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Name = "Cot_LoaiBang_ThongSo_BienMuc_PopUp";
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.VisibleIndex = 6;
     this.Cot_LoaiBang_ThongSo_BienMuc_PopUp.Width = 46;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Caption = "Số ĐKCB HD";
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Name = "Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD";
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.VisibleIndex = 7;
     this.Cot_LoaiBang_ThongSo_BienMuc_SDKCBHD.Width = 71;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Caption = "File đính kèm";
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Name = "Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem";
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.VisibleIndex = 8;
     this.Cot_LoaiBang_ThongSo_BienMuc_FileDinhKem.Width = 73;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TuKhoa
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Caption = "Từ khóa";
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Name = "Cot_LoaiBang_ThongSo_BienMuc_TuKhoa";
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.VisibleIndex = 9;
     this.Cot_LoaiBang_ThongSo_BienMuc_TuKhoa.Width = 51;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_KHPL
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Caption = "KHPL";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Name = "Cot_LoaiBang_ThongSo_BienMuc_KHPL";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.VisibleIndex = 10;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHPL.Width = 36;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_KHXK
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Caption = "KHXK";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Name = "Cot_LoaiBang_ThongSo_BienMuc_KHXK";
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.VisibleIndex = 11;
     this.Cot_LoaiBang_ThongSo_BienMuc_KHXK.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Ke
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Caption = "Kệ";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Name = "Cot_LoaiBang_ThongSo_BienMuc_Ke";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.VisibleIndex = 12;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ke.Width = 24;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Ngan
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Caption = "Ngăn";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Name = "Cot_LoaiBang_ThongSo_BienMuc_Ngan";
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.VisibleIndex = 13;
     this.Cot_LoaiBang_ThongSo_BienMuc_Ngan.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Tang
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Caption = "Tầng";
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Name = "Cot_LoaiBang_ThongSo_BienMuc_Tang";
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.VisibleIndex = 14;
     this.Cot_LoaiBang_ThongSo_BienMuc_Tang.Width = 36;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Caption = "Số lần đã phát trên HTV2";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Name = "Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat";
     this.Cot_LoaiBang_ThongSo_BienMuc_SoLanDaPhat.Width = 132;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Caption = "Phát lần đầu trên HTV2";
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Name = "Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau";
     this.Cot_LoaiBang_ThongSo_BienMuc_PhatLanDau.Width = 123;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Caption = "Thời hạn bản quyền";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Name = "Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen";
     this.Cot_LoaiBang_ThongSo_BienMuc_ThoiHanBanQuyen.Width = 107;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Caption = "Đơn vị sở hữu";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Name = "Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViSoHuu.Width = 79;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Caption = "Đơn vị cung cấp";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Name = "Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap";
     this.Cot_LoaiBang_ThongSo_BienMuc_DonViCungCap.Width = 89;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Nuoc
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Caption = "Nước SX";
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Name = "Cot_LoaiBang_ThongSo_BienMuc_Nuoc";
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.VisibleIndex = 15;
     this.Cot_LoaiBang_ThongSo_BienMuc_Nuoc.Width = 37;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Name = "Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia";
     this.Cot_LoaiBang_ThongSo_BienMuc_DoiTuongKhanGia.Width = 103;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Rating
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Caption = "Rating trung bình (%)";
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Name = "Cot_LoaiBang_ThongSo_BienMuc_Rating";
     this.Cot_LoaiBang_ThongSo_BienMuc_Rating.Width = 95;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Caption = "Time code in";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Name = "Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.VisibleIndex = 16;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeIn.Width = 71;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Caption = "Time code out";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Name = "Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut";
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.VisibleIndex = 17;
     this.Cot_LoaiBang_ThongSo_BienMuc_TimeCodeOut.Width = 79;
     //
     // Cot_LoaiBang_ThongSo_BienMuc_Duration
     //
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Caption = "Duration";
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Name = "Cot_LoaiBang_ThongSo_BienMuc_Duration";
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Visible = true;
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.VisibleIndex = 18;
     this.Cot_LoaiBang_ThongSo_BienMuc_Duration.Width = 53;
     //
     // gridDetail_LoaiBang_ThongSo
     //
     this.gridDetail_LoaiBang_ThongSo.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridDetail_LoaiBang_ThongSo.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridDetail_LoaiBang_ThongSo.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.Cot_LoaiBang_ThongSo_Ten,
     this.Cot_LoaiBang_ThongSo_SoLuong});
     this.gridDetail_LoaiBang_ThongSo.GridControl = this.gridControlMaster;
     this.gridDetail_LoaiBang_ThongSo.IndicatorWidth = 40;
     this.gridDetail_LoaiBang_ThongSo.Name = "gridDetail_LoaiBang_ThongSo";
     this.gridDetail_LoaiBang_ThongSo.OptionsLayout.Columns.AddNewColumns = false;
     this.gridDetail_LoaiBang_ThongSo.OptionsNavigation.AutoFocusNewRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsPrint.UsePrintStyles = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.EnableAppearanceEvenRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.EnableAppearanceOddRow = true;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridDetail_LoaiBang_ThongSo.OptionsView.ShowGroupedColumns = true;
     //
     // Cot_LoaiBang_ThongSo_Ten
     //
     this.Cot_LoaiBang_ThongSo_Ten.Caption = "Thông số";
     this.Cot_LoaiBang_ThongSo_Ten.Name = "Cot_LoaiBang_ThongSo_Ten";
     this.Cot_LoaiBang_ThongSo_Ten.Visible = true;
     this.Cot_LoaiBang_ThongSo_Ten.VisibleIndex = 0;
     this.Cot_LoaiBang_ThongSo_Ten.Width = 56;
     //
     // Cot_LoaiBang_ThongSo_SoLuong
     //
     this.Cot_LoaiBang_ThongSo_SoLuong.Caption = "Số lượng";
     this.Cot_LoaiBang_ThongSo_SoLuong.Name = "Cot_LoaiBang_ThongSo_SoLuong";
     this.Cot_LoaiBang_ThongSo_SoLuong.Visible = true;
     this.Cot_LoaiBang_ThongSo_SoLuong.VisibleIndex = 1;
     this.Cot_LoaiBang_ThongSo_SoLuong.Width = 54;
     //
     // 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(1006, 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(1006, 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(1006, 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.groupControl2);
     this.popupControlContainerFilter.Controls.Add(this.groupControl1);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     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(1006, 117);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // groupControl2
     //
     this.groupControl2.Controls.Add(this.checkedListBoxControl2);
     this.groupControl2.Controls.Add(this.label3);
     this.groupControl2.Controls.Add(this.ThongSoLoaiBang);
     this.groupControl2.Controls.Add(this.label9);
     this.groupControl2.Controls.Add(this.plCombobox3);
     this.groupControl2.Controls.Add(this.NguoiXuat);
     this.groupControl2.Controls.Add(this.label2);
     this.groupControl2.Controls.Add(this.textEdit2);
     this.groupControl2.Controls.Add(this.textEdit1);
     this.groupControl2.Controls.Add(this.label4);
     this.groupControl2.Controls.Add(this.label1);
     this.groupControl2.Controls.Add(this.label29);
     this.groupControl2.Controls.Add(this.label31);
     this.groupControl2.Controls.Add(this.dateEdit2);
     this.groupControl2.Controls.Add(this.dateEdit1);
     this.groupControl2.Location = new System.Drawing.Point(3, 6);
     this.groupControl2.Name = "groupControl2";
     this.groupControl2.Size = new System.Drawing.Size(524, 105);
     this.groupControl2.TabIndex = 199;
     this.groupControl2.Text = "Tiêu chí tìm kiếm";
     //
     // checkedListBoxControl2
     //
     this.checkedListBoxControl2.CheckOnClick = true;
     this.checkedListBoxControl2.ColumnWidth = 80;
     this.checkedListBoxControl2.ItemHeight = 20;
     this.checkedListBoxControl2.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked)});
     this.checkedListBoxControl2.Location = new System.Drawing.Point(346, 74);
     this.checkedListBoxControl2.MultiColumn = true;
     this.checkedListBoxControl2.Name = "checkedListBoxControl2";
     this.checkedListBoxControl2.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.checkedListBoxControl2.Size = new System.Drawing.Size(166, 21);
     this.checkedListBoxControl2.TabIndex = 245;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(268, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(56, 13);
     this.label3.TabIndex = 246;
     this.label3.Text = "Tình trạng";
     //
     // ThongSoLoaiBang
     //
     this.ThongSoLoaiBang.Location = new System.Drawing.Point(461, 49);
     this.ThongSoLoaiBang.Name = "ThongSoLoaiBang";
     this.ThongSoLoaiBang.Size = new System.Drawing.Size(51, 21);
     this.ThongSoLoaiBang.TabIndex = 244;
     this.ThongSoLoaiBang.ZZZWidthFactor = 2F;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(268, 53);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(53, 13);
     this.label9.TabIndex = 243;
     this.label9.Text = "Loại lưu trữ";
     //
     // plCombobox3
     //
     this.plCombobox3.DataSource = null;
     this.plCombobox3.DisplayField = null;
     this.plCombobox3.Location = new System.Drawing.Point(346, 49);
     this.plCombobox3.Name = "plCombobox3";
     this.plCombobox3.Size = new System.Drawing.Size(109, 21);
     this.plCombobox3.TabIndex = 240;
     this.plCombobox3.ValueField = null;
     //
     // NguoiXuat
     //
     this.NguoiXuat.DataSource = null;
     this.NguoiXuat.DisplayField = null;
     this.NguoiXuat.Location = new System.Drawing.Point(346, 25);
     this.NguoiXuat.Name = "NguoiXuat";
     this.NguoiXuat.Size = new System.Drawing.Size(166, 21);
     this.NguoiXuat.TabIndex = 242;
     this.NguoiXuat.ValueField = null;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(268, 28);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(47, 13);
     this.label2.TabIndex = 241;
     this.label2.Text = "Tiết mục";
     //
     // textEdit2
     //
     this.textEdit2.Location = new System.Drawing.Point(80, 71);
     this.textEdit2.Name = "textEdit2";
     this.textEdit2.Size = new System.Drawing.Size(176, 20);
     this.textEdit2.TabIndex = 232;
     //
     // textEdit1
     //
     this.textEdit1.Location = new System.Drawing.Point(80, 23);
     this.textEdit1.Name = "textEdit1";
     this.textEdit1.Size = new System.Drawing.Size(176, 20);
     this.textEdit1.TabIndex = 232;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(5, 74);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(49, 13);
     this.label4.TabIndex = 230;
     this.label4.Text = "Nội dung";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(5, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(48, 13);
     this.label1.TabIndex = 230;
     this.label1.Text = "Mã băng";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(5, 50);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Ngày nhập từ";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Location = new System.Drawing.Point(155, 51);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(25, 13);
     this.label31.TabIndex = 5;
     this.label31.Text = "đến";
     //
     // dateEdit2
     //
     this.dateEdit2.EditValue = null;
     this.dateEdit2.Location = new System.Drawing.Point(186, 47);
     this.dateEdit2.Name = "dateEdit2";
     this.dateEdit2.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit2.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit2.Size = new System.Drawing.Size(70, 20);
     this.dateEdit2.TabIndex = 198;
     //
     // dateEdit1
     //
     this.dateEdit1.EditValue = null;
     this.dateEdit1.Location = new System.Drawing.Point(80, 47);
     this.dateEdit1.MenuManager = this.barManager1;
     this.dateEdit1.Name = "dateEdit1";
     this.dateEdit1.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.dateEdit1.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.dateEdit1.Size = new System.Drawing.Size(71, 20);
     this.dateEdit1.TabIndex = 198;
     //
     // groupControl1
     //
     this.groupControl1.Controls.Add(this.checkedListBoxControl1);
     this.groupControl1.Location = new System.Drawing.Point(533, 6);
     this.groupControl1.Name = "groupControl1";
     this.groupControl1.Size = new System.Drawing.Size(439, 108);
     this.groupControl1.TabIndex = 199;
     this.groupControl1.Text = "Tiêu chí thống kê";
     //
     // checkedListBoxControl1
     //
     this.checkedListBoxControl1.CheckOnClick = true;
     this.checkedListBoxControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.checkedListBoxControl1.ItemHeight = 25;
     this.checkedListBoxControl1.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("0", "Loại lưu trữ", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("1", "Tiết mục", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("2", "Thời lượng"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("3", "Rating"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("4", "Số lần đã phát"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("5", "Tình trạng", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("6", "Pop up", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("7", "Tổng tập"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("8", "Ký hiệu phân loại"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("9", "Vị trí", System.Windows.Forms.CheckState.Checked)});
     this.checkedListBoxControl1.Location = new System.Drawing.Point(2, 22);
     this.checkedListBoxControl1.MultiColumn = true;
     this.checkedListBoxControl1.Name = "checkedListBoxControl1";
     this.checkedListBoxControl1.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.checkedListBoxControl1.Size = new System.Drawing.Size(435, 84);
     this.checkedListBoxControl1.TabIndex = 0;
     //
     // 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;
     //
     // 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;
     //
     // frmTKThuocTinhBienMuc
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1006, 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 = "frmTKThuocTinhBienMuc";
     this.Text = "Thống kê biên mục theo ngày nhập";
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_TietMuc_BienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo_BienMuc)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridDetail_LoaiBang_ThongSo)).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);
     ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit();
     this.groupControl2.ResumeLayout(false);
     this.groupControl2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit2.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties.VistaTimeProperties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dateEdit1.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit();
     this.groupControl1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.checkedListBoxControl1)).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(frmChuongTrinhQL));
     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.barButtonItemViewAll = 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.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotNoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTapCuoi = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotLoaiBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKe = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotNgan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotKHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotTuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinMuonTra = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotNamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotDonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotNuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotThoiHanBangQuyen = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotSoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.CotPhatLanDau = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.gridBandThongTinBetacam = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.gridBandThongTinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
     this.CotSDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
     this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.label15 = new System.Windows.Forms.PLLabel();
     this.label35 = new System.Windows.Forms.PLLabel();
     this.label11 = new System.Windows.Forms.PLLabel();
     this.plLabel3 = new System.Windows.Forms.PLLabel();
     this.plLabel2 = new System.Windows.Forms.PLLabel();
     this.label34 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.label9 = new System.Windows.Forms.PLLabel();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiBang = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.SoDKHDCB = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.label10 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.label29 = new System.Windows.Forms.PLLabel();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label5 = new System.Windows.Forms.PLLabel();
     this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
     this.TinhTrang = new DevExpress.XtraEditors.CheckedListBoxControl();
     ((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.popupControlContainerFilter)).BeginInit();
     this.popupControlContainerFilter.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).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.barButtonItem5,
     this.barButtonItemViewAll});
     this.barManager1.MaxItemId = 40;
     //
     // MainBar
     //
     this.MainBar.BarName = "MainBar";
     this.MainBar.DockCol = 0;
     this.MainBar.DockRow = 0;
     this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
     this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
     this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
     this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch),
     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 tập tiếp theo";
     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;
     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;
     //
     // 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.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(1016, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 734);
     this.barDockControlBottom.Size = new System.Drawing.Size(1016, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 710);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1016, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 710);
     //
     // 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";
     //
     // barButtonItemViewAll
     //
     this.barButtonItemViewAll.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.barButtonItemViewAll.Appearance.ForeColor = System.Drawing.Color.Red;
     this.barButtonItemViewAll.Appearance.Options.UseFont = true;
     this.barButtonItemViewAll.Appearance.Options.UseForeColor = true;
     this.barButtonItemViewAll.Caption = "Xem tất c&ả";
     this.barButtonItemViewAll.Id = 39;
     this.barButtonItemViewAll.Name = "barButtonItemViewAll";
     this.barButtonItemViewAll.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // 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";
     //
     // 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, 132);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1016, 602);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // gridViewMaster
     //
     this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
     this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
     this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
     this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
     this.gridBandThongTinChinh,
     this.gridBandThongTinMuonTra,
     this.gridBandNguonGoc,
     this.gridBandThongTinPhatSong,
     this.gridBandThongTinBetacam,
     this.gridBandThongTinHD});
     this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
     this.CotNoiDung,
     this.CotTietMuc,
     this.CotTenGoc,
     this.CotTongTap,
     this.CotTapCuoi,
     this.CotLoaiBang,
     this.CotPostMaster,
     this.CotPopUp,
     this.CotSDKCBHD,
     this.CotTuKhoa,
     this.CotKHPL,
     this.CotKHXK,
     this.CotKe,
     this.CotNgan,
     this.CotTang,
     this.CotSoLanPhat,
     this.CotPhatLanDau,
     this.CotThoiHanBangQuyen,
     this.CotDonViSoHuu,
     this.CotDonViCungCap,
     this.CotNamSX,
     this.CotNuoc,
     this.CotDoiTuongKhanGia});
     this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     this.gridViewMaster.GridControl = this.gridControlMaster;
     this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
     this.gridViewMaster.IndicatorWidth = 40;
     this.gridViewMaster.Name = "gridViewMaster";
     this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
     this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
     this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
     this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
     this.gridViewMaster.OptionsSelection.MultiSelect = true;
     this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
     this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
     this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
     this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] {
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotNoiDung, DevExpress.Data.ColumnSortOrder.Ascending),
     new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotTietMuc, DevExpress.Data.ColumnSortOrder.Ascending)});
     //
     // gridBandThongTinChinh
     //
     this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinChinh.Caption = "Thông tin chính";
     this.gridBandThongTinChinh.Columns.Add(this.CotNoiDung);
     this.gridBandThongTinChinh.Columns.Add(this.CotTenGoc);
     this.gridBandThongTinChinh.Columns.Add(this.CotTietMuc);
     this.gridBandThongTinChinh.Columns.Add(this.CotTongTap);
     this.gridBandThongTinChinh.Columns.Add(this.CotTapCuoi);
     this.gridBandThongTinChinh.Columns.Add(this.CotLoaiBang);
     this.gridBandThongTinChinh.Columns.Add(this.CotPostMaster);
     this.gridBandThongTinChinh.Columns.Add(this.CotPopUp);
     this.gridBandThongTinChinh.Columns.Add(this.CotKe);
     this.gridBandThongTinChinh.Columns.Add(this.CotNgan);
     this.gridBandThongTinChinh.Columns.Add(this.CotTang);
     this.gridBandThongTinChinh.Columns.Add(this.CotKHPL);
     this.gridBandThongTinChinh.Columns.Add(this.CotKHXK);
     this.gridBandThongTinChinh.Columns.Add(this.CotTuKhoa);
     this.gridBandThongTinChinh.Columns.Add(this.CotDoiTuongKhanGia);
     this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
     this.gridBandThongTinChinh.Width = 75;
     //
     // CotNoiDung
     //
     this.CotNoiDung.Caption = "Nội dung";
     this.CotNoiDung.Name = "CotNoiDung";
     this.CotNoiDung.Width = 67;
     //
     // CotTenGoc
     //
     this.CotTenGoc.Caption = "Tên gốc";
     this.CotTenGoc.Name = "CotTenGoc";
     this.CotTenGoc.Width = 50;
     //
     // CotTietMuc
     //
     this.CotTietMuc.Caption = "Tiết mục";
     this.CotTietMuc.Name = "CotTietMuc";
     this.CotTietMuc.Width = 65;
     //
     // CotTongTap
     //
     this.CotTongTap.Caption = "Tổng tập";
     this.CotTongTap.Name = "CotTongTap";
     this.CotTongTap.Width = 55;
     //
     // CotTapCuoi
     //
     this.CotTapCuoi.Caption = "Tập cuối";
     this.CotTapCuoi.Name = "CotTapCuoi";
     this.CotTapCuoi.Width = 52;
     //
     // CotLoaiBang
     //
     this.CotLoaiBang.Caption = "Loại lưu trữ";
     this.CotLoaiBang.Name = "CotLoaiBang";
     this.CotLoaiBang.Width = 67;
     //
     // CotPostMaster
     //
     this.CotPostMaster.Caption = "Tình trạng";
     this.CotPostMaster.Name = "CotPostMaster";
     this.CotPostMaster.Width = 61;
     //
     // CotPopUp
     //
     this.CotPopUp.Caption = "Pop Up";
     this.CotPopUp.Name = "CotPopUp";
     this.CotPopUp.Width = 46;
     //
     // CotKe
     //
     this.CotKe.Caption = "Kệ";
     this.CotKe.Name = "CotKe";
     this.CotKe.Width = 24;
     //
     // CotNgan
     //
     this.CotNgan.Caption = "Ngăn";
     this.CotNgan.Name = "CotNgan";
     this.CotNgan.Width = 37;
     //
     // CotTang
     //
     this.CotTang.Caption = "Tầng";
     this.CotTang.Name = "CotTang";
     this.CotTang.Width = 36;
     //
     // CotKHPL
     //
     this.CotKHPL.Caption = "KHPL";
     this.CotKHPL.Name = "CotKHPL";
     this.CotKHPL.ToolTip = "Ký hiệu phân loại";
     this.CotKHPL.Width = 36;
     //
     // CotKHXK
     //
     this.CotKHXK.Caption = "KHXK";
     this.CotKHXK.Name = "CotKHXK";
     this.CotKHXK.ToolTip = "Ký hiệu xếp kho";
     this.CotKHXK.Width = 37;
     //
     // CotTuKhoa
     //
     this.CotTuKhoa.Caption = "Từ khóa";
     this.CotTuKhoa.Name = "CotTuKhoa";
     this.CotTuKhoa.Width = 51;
     //
     // CotDoiTuongKhanGia
     //
     this.CotDoiTuongKhanGia.Caption = "Đối tượng khán giả";
     this.CotDoiTuongKhanGia.Name = "CotDoiTuongKhanGia";
     this.CotDoiTuongKhanGia.Width = 103;
     //
     // gridBandThongTinMuonTra
     //
     this.gridBandThongTinMuonTra.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinMuonTra.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinMuonTra.Caption = "Thông tin mượn trả";
     this.gridBandThongTinMuonTra.Name = "gridBandThongTinMuonTra";
     this.gridBandThongTinMuonTra.Width = 87;
     //
     // gridBandNguonGoc
     //
     this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandNguonGoc.Caption = "Nguồn gốc";
     this.gridBandNguonGoc.Columns.Add(this.CotNamSX);
     this.gridBandNguonGoc.Columns.Add(this.CotDonViCungCap);
     this.gridBandNguonGoc.Columns.Add(this.CotDonViSoHuu);
     this.gridBandNguonGoc.Columns.Add(this.CotNuoc);
     this.gridBandNguonGoc.Columns.Add(this.CotThoiHanBangQuyen);
     this.gridBandNguonGoc.Name = "gridBandNguonGoc";
     this.gridBandNguonGoc.Width = 52;
     //
     // CotNamSX
     //
     this.CotNamSX.Caption = "Năm SX";
     this.CotNamSX.Name = "CotNamSX";
     this.CotNamSX.Width = 48;
     //
     // CotDonViCungCap
     //
     this.CotDonViCungCap.Caption = "Đơn vị cung cấp";
     this.CotDonViCungCap.Name = "CotDonViCungCap";
     this.CotDonViCungCap.Width = 89;
     //
     // CotDonViSoHuu
     //
     this.CotDonViSoHuu.Caption = "Đơn vị sở hữu";
     this.CotDonViSoHuu.Name = "CotDonViSoHuu";
     this.CotDonViSoHuu.Width = 79;
     //
     // CotNuoc
     //
     this.CotNuoc.Caption = "Nước SX";
     this.CotNuoc.Name = "CotNuoc";
     this.CotNuoc.ToolTip = "Nước sản xuất";
     this.CotNuoc.Width = 52;
     //
     // CotThoiHanBangQuyen
     //
     this.CotThoiHanBangQuyen.Caption = "Thời hạn bản quyền";
     this.CotThoiHanBangQuyen.Name = "CotThoiHanBangQuyen";
     this.CotThoiHanBangQuyen.Width = 107;
     //
     // gridBandThongTinPhatSong
     //
     this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
     this.gridBandThongTinPhatSong.Columns.Add(this.CotSoLanPhat);
     this.gridBandThongTinPhatSong.Columns.Add(this.CotPhatLanDau);
     this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
     this.gridBandThongTinPhatSong.Width = 104;
     //
     // CotSoLanPhat
     //
     this.CotSoLanPhat.Caption = "Tồng số lần đã phát";
     this.CotSoLanPhat.Name = "CotSoLanPhat";
     this.CotSoLanPhat.Width = 107;
     //
     // CotPhatLanDau
     //
     this.CotPhatLanDau.Caption = "Ngày phát đầu tiên";
     this.CotPhatLanDau.Name = "CotPhatLanDau";
     this.CotPhatLanDau.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
     this.CotPhatLanDau.Width = 104;
     //
     // gridBandThongTinBetacam
     //
     this.gridBandThongTinBetacam.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinBetacam.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinBetacam.Caption = "Thông tin Timecode";
     this.gridBandThongTinBetacam.Name = "gridBandThongTinBetacam";
     this.gridBandThongTinBetacam.Width = 95;
     //
     // gridBandThongTinHD
     //
     this.gridBandThongTinHD.AppearanceHeader.Options.UseTextOptions = true;
     this.gridBandThongTinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
     this.gridBandThongTinHD.Caption = "Thông tin HD (File)";
     this.gridBandThongTinHD.Columns.Add(this.CotSDKCBHD);
     this.gridBandThongTinHD.Name = "gridBandThongTinHD";
     this.gridBandThongTinHD.Width = 63;
     //
     // CotSDKCBHD
     //
     this.CotSDKCBHD.Caption = "Số ĐKCB HD";
     this.CotSDKCBHD.Name = "CotSDKCBHD";
     this.CotSDKCBHD.ToolTip = "Số đăng ký cá biệt ổ cứng";
     this.CotSDKCBHD.Width = 71;
     //
     // popupControlContainerFilter
     //
     this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.popupControlContainerFilter.Controls.Add(this.TinhTrang);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
     this.popupControlContainerFilter.Controls.Add(this.label15);
     this.popupControlContainerFilter.Controls.Add(this.label35);
     this.popupControlContainerFilter.Controls.Add(this.label11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.label9);
     this.popupControlContainerFilter.Controls.Add(this.MaBang);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiBang);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.SoDKHDCB);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.DonViSoHuu);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     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(1016, 108);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(679, 34);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(79, 20);
     this.NamSXDen.TabIndex = 213;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(569, 34);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(80, 20);
     this.NamSXTu.TabIndex = 213;
     //
     // ngayNhap
     //
     this.ngayNhap.Caption = "Năm 2010";
     this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter;
     this.ngayNhap.FirstFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.FirstTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.FromDate = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.Location = new System.Drawing.Point(75, 84);
     this.ngayNhap.Name = "ngayNhap";
     this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.ngayNhap.SecondFrom = new System.DateTime(2010, 1, 1, 0, 0, 0, 0);
     this.ngayNhap.SecondTo = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter;
     this.ngayNhap.Size = new System.Drawing.Size(351, 21);
     this.ngayNhap.TabIndex = 212;
     this.ngayNhap.ToDate = new System.DateTime(2010, 12, 31, 0, 0, 0, 0);
     this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(764, 37);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(50, 13);
     this.label15.TabIndex = 210;
     this.label15.Text = "ĐV sở hữu";
     this.label15.ToolTip = "Đơn vị sở hữu";
     this.label15.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label35
     //
     this.label35.Location = new System.Drawing.Point(24, -83);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(77, 13);
     this.label35.TabIndex = 206;
     this.label35.Text = "Đơn vị cung cấp";
     this.label35.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label35.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(3, 63);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(59, 13);
     this.label11.TabIndex = 206;
     this.label11.Text = "Số ĐKCB HD";
     this.label11.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(655, 37);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(18, 13);
     this.plLabel3.TabIndex = 201;
     this.plLabel3.Text = "đến";
     this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(507, 37);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(50, 13);
     this.plLabel2.TabIndex = 201;
     this.plLabel2.Text = "Năm SX từ";
     this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(764, 9);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 206;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp";
     this.label34.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(507, 11);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(49, 13);
     this.label2.TabIndex = 201;
     this.label2.Text = "Tình trạng";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(262, 37);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 13);
     this.label9.TabIndex = 195;
     this.label9.Text = "Loại lưu trữ";
     this.label9.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(75, 8);
     this.MaBang.Name = "MaBang";
     this.MaBang.Size = new System.Drawing.Size(181, 20);
     this.MaBang.TabIndex = 194;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(75, 34);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(181, 20);
     this.NoiDung.TabIndex = 194;
     //
     // LoaiBang
     //
     this.LoaiBang.DataSource = null;
     this.LoaiBang.DisplayField = null;
     this.LoaiBang.Location = new System.Drawing.Point(336, 32);
     this.LoaiBang.Name = "LoaiBang";
     this.LoaiBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiBang.Size = new System.Drawing.Size(165, 20);
     this.LoaiBang.TabIndex = 5;
     this.LoaiBang.ValueField = null;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(336, 58);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(165, 20);
     this.QuocGia.TabIndex = 5;
     this.QuocGia.ValueField = null;
     //
     // SoDKHDCB
     //
     this.SoDKHDCB.DataSource = null;
     this.SoDKHDCB.DisplayField = null;
     this.SoDKHDCB.Location = new System.Drawing.Point(75, 60);
     this.SoDKHDCB.Name = "SoDKHDCB";
     this.SoDKHDCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKHDCB.Size = new System.Drawing.Size(181, 20);
     this.SoDKHDCB.TabIndex = 5;
     this.SoDKHDCB.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(832, 6);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(181, 20);
     this.DonViCungCap.TabIndex = 5;
     this.DonViCungCap.ValueField = null;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.DataSource = null;
     this.DonViSoHuu.DisplayField = null;
     this.DonViSoHuu.Location = new System.Drawing.Point(832, 30);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViSoHuu.Size = new System.Drawing.Size(181, 20);
     this.DonViSoHuu.TabIndex = 5;
     this.DonViSoHuu.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(336, 6);
     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(165, 20);
     this.TietMuc.TabIndex = 5;
     this.TietMuc.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;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(262, 63);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 0;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất";
     this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Mã băng";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(4, 89);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Ngày nhập";
     this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(42, 13);
     this.label3.TabIndex = 5;
     this.label3.Text = "Nội dung";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(262, 11);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Tiết mục";
     this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // popupMenu2
     //
     this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAdd),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate)});
     this.popupMenu2.Manager = this.barManager1;
     this.popupMenu2.Name = "popupMenu2";
     //
     // TinhTrang
     //
     this.TinhTrang.CheckOnClick = true;
     this.TinhTrang.HorzScrollStep = 1;
     this.TinhTrang.ItemHeight = 20;
     this.TinhTrang.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("A", "BOTH", System.Windows.Forms.CheckState.Checked)});
     this.TinhTrang.Location = new System.Drawing.Point(569, 5);
     this.TinhTrang.MultiColumn = true;
     this.TinhTrang.Name = "TinhTrang";
     this.TinhTrang.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TinhTrang.Size = new System.Drawing.Size(189, 21);
     this.TinhTrang.TabIndex = 214;
     //
     // frmChuongTrinhQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1016, 734);
     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 = "frmChuongTrinhQL";
     this.Text = "Quản lý chương trình";
     ((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.popupControlContainerFilter)).EndInit();
     this.popupControlContainerFilter.ResumeLayout(false);
     this.popupControlContainerFilter.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).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(frmBienMucDeletedQL));
     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.barButtonItemDeleteRealy = new DevExpress.XtraBars.BarButtonItem();
     this.barButtonItemRestore = 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.ThanhLy = new DevExpress.XtraEditors.CheckedListBoxControl();
     this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
     this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
     this.NgayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.NgayXoa = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
     this.label15 = new System.Windows.Forms.PLLabel();
     this.label35 = new System.Windows.Forms.PLLabel();
     this.label11 = new System.Windows.Forms.PLLabel();
     this.plLabel4 = new System.Windows.Forms.PLLabel();
     this.plLabel3 = new System.Windows.Forms.PLLabel();
     this.plLabel2 = new System.Windows.Forms.PLLabel();
     this.label34 = new System.Windows.Forms.PLLabel();
     this.label2 = new System.Windows.Forms.PLLabel();
     this.label9 = new System.Windows.Forms.PLLabel();
     this.MaBang = new DevExpress.XtraEditors.TextEdit();
     this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
     this.LoaiBang = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.SoDKHDCB = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.DonViSoHuu = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
     this.plTreeSelectItem1 = new ProtocolVN.Framework.Win.PLDMTreeGroupElement();
     this.label10 = new System.Windows.Forms.PLLabel();
     this.label1 = new System.Windows.Forms.PLLabel();
     this.plLabel1 = new System.Windows.Forms.PLLabel();
     this.label29 = new System.Windows.Forms.PLLabel();
     this.label3 = new System.Windows.Forms.PLLabel();
     this.label5 = new System.Windows.Forms.PLLabel();
     this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
     this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
     this.TinhTrang = new DevExpress.XtraEditors.CheckedListBoxControl();
     ((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();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).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.barButtonItem5,
     this.barButtonItemRestore,
     this.barButtonItemDeleteRealy});
     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(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.barButtonItemDeleteRealy),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemRestore),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
     new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
     new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true)});
     this.MainBar.OptionsBar.AllowQuickCustomization = false;
     this.MainBar.OptionsBar.DrawDragBorder = false;
     this.MainBar.OptionsBar.RotateWhenVertical = false;
     this.MainBar.OptionsBar.UseWholeRow = true;
     this.MainBar.Text = "Custom 1";
     //
     // barButtonItemAdd
     //
     this.barButtonItemAdd.Caption = "Thêm";
     this.barButtonItemAdd.Id = 0;
     this.barButtonItemAdd.Name = "barButtonItemAdd";
     this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemXem
     //
     this.barButtonItemXem.Caption = "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;
     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;
     //
     // barButtonItemDeleteRealy
     //
     this.barButtonItemDeleteRealy.Caption = "&Xóa hẳn";
     this.barButtonItemDeleteRealy.Id = 37;
     this.barButtonItemDeleteRealy.Name = "barButtonItemDeleteRealy";
     this.barButtonItemDeleteRealy.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
     //
     // barButtonItemRestore
     //
     this.barButtonItemRestore.Caption = "&Phục hồi";
     this.barButtonItemRestore.Id = 36;
     this.barButtonItemRestore.Name = "barButtonItemRestore";
     this.barButtonItemRestore.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.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(1016, 24);
     //
     // barDockControlBottom
     //
     this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.barDockControlBottom.Location = new System.Drawing.Point(0, 734);
     this.barDockControlBottom.Size = new System.Drawing.Size(1016, 0);
     //
     // barDockControlLeft
     //
     this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
     this.barDockControlLeft.Size = new System.Drawing.Size(0, 710);
     //
     // barDockControlRight
     //
     this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.barDockControlRight.Location = new System.Drawing.Point(1016, 24);
     this.barDockControlRight.Size = new System.Drawing.Size(0, 710);
     //
     // 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.TinhTrang);
     this.popupControlContainerFilter.Controls.Add(this.ThanhLy);
     this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
     this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
     this.popupControlContainerFilter.Controls.Add(this.NgayNhap);
     this.popupControlContainerFilter.Controls.Add(this.NgayXoa);
     this.popupControlContainerFilter.Controls.Add(this.label15);
     this.popupControlContainerFilter.Controls.Add(this.label35);
     this.popupControlContainerFilter.Controls.Add(this.label11);
     this.popupControlContainerFilter.Controls.Add(this.plLabel4);
     this.popupControlContainerFilter.Controls.Add(this.plLabel3);
     this.popupControlContainerFilter.Controls.Add(this.plLabel2);
     this.popupControlContainerFilter.Controls.Add(this.label34);
     this.popupControlContainerFilter.Controls.Add(this.label2);
     this.popupControlContainerFilter.Controls.Add(this.splitContainerControl1);
     this.popupControlContainerFilter.Controls.Add(this.label9);
     this.popupControlContainerFilter.Controls.Add(this.MaBang);
     this.popupControlContainerFilter.Controls.Add(this.NoiDung);
     this.popupControlContainerFilter.Controls.Add(this.LoaiBang);
     this.popupControlContainerFilter.Controls.Add(this.QuocGia);
     this.popupControlContainerFilter.Controls.Add(this.SoDKHDCB);
     this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
     this.popupControlContainerFilter.Controls.Add(this.DonViSoHuu);
     this.popupControlContainerFilter.Controls.Add(this.TietMuc);
     this.popupControlContainerFilter.Controls.Add(this.plTreeSelectItem1);
     this.popupControlContainerFilter.Controls.Add(this.label10);
     this.popupControlContainerFilter.Controls.Add(this.label1);
     this.popupControlContainerFilter.Controls.Add(this.plLabel1);
     this.popupControlContainerFilter.Controls.Add(this.label29);
     this.popupControlContainerFilter.Controls.Add(this.label3);
     this.popupControlContainerFilter.Controls.Add(this.label5);
     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(1016, 108);
     this.popupControlContainerFilter.TabIndex = 0;
     this.popupControlContainerFilter.Visible = false;
     //
     // ThanhLy
     //
     this.ThanhLy.CheckOnClick = true;
     this.ThanhLy.ColumnWidth = 65;
     this.ThanhLy.ItemHeight = 20;
     this.ThanhLy.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "CÓ"),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "KHÔNG", System.Windows.Forms.CheckState.Checked)});
     this.ThanhLy.Location = new System.Drawing.Point(331, 33);
     this.ThanhLy.MultiColumn = true;
     this.ThanhLy.Name = "ThanhLy";
     this.ThanhLy.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.ThanhLy.Size = new System.Drawing.Size(189, 21);
     this.ThanhLy.TabIndex = 214;
     //
     // NamSXDen
     //
     this.NamSXDen.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXDen.Location = new System.Drawing.Point(437, 59);
     this.NamSXDen.Name = "NamSXDen";
     this.NamSXDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXDen.Size = new System.Drawing.Size(66, 20);
     this.NamSXDen.TabIndex = 213;
     //
     // NamSXTu
     //
     this.NamSXTu.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.NamSXTu.Location = new System.Drawing.Point(331, 58);
     this.NamSXTu.MenuManager = this.barManager1;
     this.NamSXTu.Name = "NamSXTu";
     this.NamSXTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton()});
     this.NamSXTu.Size = new System.Drawing.Size(66, 20);
     this.NamSXTu.TabIndex = 213;
     //
     // NgayNhap
     //
     this.NgayNhap.Caption = "Từ ngày 11/29/2010 đến ngày 12/6/2010";
     this.NgayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayNhap.FirstFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 57);
     this.NgayNhap.FirstTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 57);
     this.NgayNhap.FromDate = new System.DateTime(2010, 11, 29, 8, 50, 46, 57);
     this.NgayNhap.Location = new System.Drawing.Point(581, 57);
     this.NgayNhap.Name = "NgayNhap";
     this.NgayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.NgayNhap.SecondFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 57);
     this.NgayNhap.SecondTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 57);
     this.NgayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayNhap.Size = new System.Drawing.Size(285, 21);
     this.NgayNhap.TabIndex = 212;
     this.NgayNhap.ToDate = new System.DateTime(2010, 12, 6, 8, 50, 46, 57);
     this.NgayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                 | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
     //
     // NgayXoa
     //
     this.NgayXoa.Caption = "Từ ngày 11/29/2010 đến ngày 12/6/2010";
     this.NgayXoa.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayXoa.FirstFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 72);
     this.NgayXoa.FirstTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 72);
     this.NgayXoa.FromDate = new System.DateTime(2010, 11, 29, 8, 50, 46, 72);
     this.NgayXoa.Location = new System.Drawing.Point(331, 84);
     this.NgayXoa.Name = "NgayXoa";
     this.NgayXoa.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
     this.NgayXoa.SecondFrom = new System.DateTime(2010, 11, 29, 8, 50, 46, 72);
     this.NgayXoa.SecondTo = new System.DateTime(2010, 12, 6, 8, 50, 46, 72);
     this.NgayXoa.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
     this.NgayXoa.Size = new System.Drawing.Size(285, 21);
     this.NgayXoa.TabIndex = 212;
     this.NgayXoa.ToDate = new System.DateTime(2010, 12, 6, 8, 50, 46, 72);
     this.NgayXoa.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)));
     //
     // label15
     //
     this.label15.Location = new System.Drawing.Point(532, 34);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(50, 13);
     this.label15.TabIndex = 210;
     this.label15.Text = "ĐV sở hữu";
     this.label15.ToolTip = "Đơn vị sở hữu";
     this.label15.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label35
     //
     this.label35.Location = new System.Drawing.Point(24, -83);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(77, 13);
     this.label35.TabIndex = 206;
     this.label35.Text = "Đơn vị cung cấp";
     this.label35.ToolTip = "Dữ liệu bắt buộc nhập";
     this.label35.ZZZType = System.Windows.Forms.PLLabel.LabelType.REQUIRED;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(780, 11);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(59, 13);
     this.label11.TabIndex = 206;
     this.label11.Text = "Số ĐKCB HD";
     this.label11.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel4
     //
     this.plLabel4.Location = new System.Drawing.Point(410, 61);
     this.plLabel4.Name = "plLabel4";
     this.plLabel4.Size = new System.Drawing.Size(18, 13);
     this.plLabel4.TabIndex = 201;
     this.plLabel4.Text = "đến";
     this.plLabel4.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel3
     //
     this.plLabel3.Location = new System.Drawing.Point(270, 63);
     this.plLabel3.Name = "plLabel3";
     this.plLabel3.Size = new System.Drawing.Size(50, 13);
     this.plLabel3.TabIndex = 201;
     this.plLabel3.Text = "Năm SX từ";
     this.plLabel3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel2
     //
     this.plLabel2.Location = new System.Drawing.Point(270, 37);
     this.plLabel2.Name = "plLabel2";
     this.plLabel2.Size = new System.Drawing.Size(41, 13);
     this.plLabel2.TabIndex = 201;
     this.plLabel2.Text = "Thanh lý";
     this.plLabel2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label34
     //
     this.label34.Location = new System.Drawing.Point(532, 11);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(60, 13);
     this.label34.TabIndex = 206;
     this.label34.Text = "ĐV cung cấp";
     this.label34.ToolTip = "Đơn vị cung cấp";
     this.label34.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(270, 11);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(49, 13);
     this.label2.TabIndex = 201;
     this.label2.Text = "Tình trạng";
     this.label2.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(3, 89);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(55, 13);
     this.label9.TabIndex = 195;
     this.label9.Text = "Loại lưu trữ";
     this.label9.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // MaBang
     //
     this.MaBang.Location = new System.Drawing.Point(75, 8);
     this.MaBang.Name = "MaBang";
     this.MaBang.Size = new System.Drawing.Size(181, 20);
     this.MaBang.TabIndex = 194;
     //
     // NoiDung
     //
     this.NoiDung._DataSource = null;
     this.NoiDung._GetField = null;
     this.NoiDung.Location = new System.Drawing.Point(75, 34);
     this.NoiDung.Name = "NoiDung";
     this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None);
     this.NoiDung.Size = new System.Drawing.Size(181, 20);
     this.NoiDung.TabIndex = 194;
     //
     // LoaiBang
     //
     this.LoaiBang.DataSource = null;
     this.LoaiBang.DisplayField = null;
     this.LoaiBang.Location = new System.Drawing.Point(75, 85);
     this.LoaiBang.Name = "LoaiBang";
     this.LoaiBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.LoaiBang.Size = new System.Drawing.Size(181, 20);
     this.LoaiBang.TabIndex = 5;
     this.LoaiBang.ValueField = null;
     //
     // QuocGia
     //
     this.QuocGia.DataSource = null;
     this.QuocGia.DisplayField = null;
     this.QuocGia.Location = new System.Drawing.Point(845, 31);
     this.QuocGia.Name = "QuocGia";
     this.QuocGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.QuocGia.Size = new System.Drawing.Size(168, 20);
     this.QuocGia.TabIndex = 5;
     this.QuocGia.ValueField = null;
     //
     // SoDKHDCB
     //
     this.SoDKHDCB.DataSource = null;
     this.SoDKHDCB.DisplayField = null;
     this.SoDKHDCB.Location = new System.Drawing.Point(845, 6);
     this.SoDKHDCB.Name = "SoDKHDCB";
     this.SoDKHDCB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.SoDKHDCB.Size = new System.Drawing.Size(168, 20);
     this.SoDKHDCB.TabIndex = 5;
     this.SoDKHDCB.ValueField = null;
     //
     // DonViCungCap
     //
     this.DonViCungCap.DataSource = null;
     this.DonViCungCap.DisplayField = null;
     this.DonViCungCap.Location = new System.Drawing.Point(598, 8);
     this.DonViCungCap.Name = "DonViCungCap";
     this.DonViCungCap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViCungCap.Size = new System.Drawing.Size(165, 20);
     this.DonViCungCap.TabIndex = 5;
     this.DonViCungCap.ValueField = null;
     //
     // DonViSoHuu
     //
     this.DonViSoHuu.DataSource = null;
     this.DonViSoHuu.DisplayField = null;
     this.DonViSoHuu.Location = new System.Drawing.Point(598, 31);
     this.DonViSoHuu.Name = "DonViSoHuu";
     this.DonViSoHuu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.DonViSoHuu.Size = new System.Drawing.Size(165, 20);
     this.DonViSoHuu.TabIndex = 5;
     this.DonViSoHuu.ValueField = null;
     //
     // TietMuc
     //
     this.TietMuc.DataSource = null;
     this.TietMuc.DisplayField = null;
     this.TietMuc.Location = new System.Drawing.Point(75, 60);
     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(181, 20);
     this.TietMuc.TabIndex = 5;
     this.TietMuc.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;
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(780, 33);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(40, 13);
     this.label10.TabIndex = 0;
     this.label10.Text = "Nước SX";
     this.label10.ToolTip = "Nước sản xuất";
     this.label10.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(4, 11);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(41, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Mã băng";
     this.label1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // plLabel1
     //
     this.plLabel1.Location = new System.Drawing.Point(270, 87);
     this.plLabel1.Name = "plLabel1";
     this.plLabel1.Size = new System.Drawing.Size(46, 13);
     this.plLabel1.TabIndex = 5;
     this.plLabel1.Text = "Ngày xóa";
     this.plLabel1.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label29
     //
     this.label29.Location = new System.Drawing.Point(509, 60);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(52, 13);
     this.label29.TabIndex = 5;
     this.label29.Text = "Ngày nhập";
     this.label29.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(3, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(42, 13);
     this.label3.TabIndex = 5;
     this.label3.Text = "Nội dung";
     this.label3.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(2, 63);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(40, 13);
     this.label5.TabIndex = 5;
     this.label5.Text = "Tiết mục";
     this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL;
     //
     // 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.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
     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;
     //
     // 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, 132);
     this.gridControlMaster.MainView = this.gridViewMaster;
     this.gridControlMaster.Name = "gridControlMaster";
     this.gridControlMaster.Size = new System.Drawing.Size(1016, 602);
     this.gridControlMaster.TabIndex = 7;
     this.gridControlMaster.TabStop = false;
     this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.gridViewMaster});
     //
     // TinhTrang
     //
     this.TinhTrang.CheckOnClick = true;
     this.TinhTrang.HorzScrollStep = 1;
     this.TinhTrang.ItemHeight = 20;
     this.TinhTrang.Items.AddRange(new DevExpress.XtraEditors.Controls.CheckedListBoxItem[] {
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("Y", "POST", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("N", "MASTER", System.Windows.Forms.CheckState.Checked),
     new DevExpress.XtraEditors.Controls.CheckedListBoxItem("A", "BOTH", System.Windows.Forms.CheckState.Checked)});
     this.TinhTrang.Location = new System.Drawing.Point(331, 7);
     this.TinhTrang.MultiColumn = true;
     this.TinhTrang.Name = "TinhTrang";
     this.TinhTrang.SelectionMode = System.Windows.Forms.SelectionMode.None;
     this.TinhTrang.Size = new System.Drawing.Size(189, 21);
     this.TinhTrang.TabIndex = 215;
     //
     // frmBienMucDeletedQL
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1016, 734);
     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 = "frmBienMucDeletedQL";
     this.Text = "Quản lý biên mục đã xóa";
     ((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();
     ((System.ComponentModel.ISupportInitialize)(this.ThanhLy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.LoaiBang.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SoDKHDCB.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.DonViSoHuu.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.TinhTrang)).EndInit();
     this.ResumeLayout(false);
 }
Ejemplo n.º 43
0
 public GridViewQuickColumnCustomizationPopup(BlobBaseEdit ownerEdit, GridView view)
     : base(ownerEdit)
 {
     this.view = view;
     this.checkListBox = new CheckedListBoxControl();
     this.checkListBox.BorderStyle = BorderStyles.Simple;
     this.checkListBox.Appearance.Assign(ownerEdit.Properties.AppearanceDropDown);
     this.checkListBox.LookAndFeel.ParentLookAndFeel = OwnerEdit.LookAndFeel;
     this.checkListBox.Visible = false;
     this.checkListBox.CheckOnClick = true;
     this.checkListBox.ItemCheck += new DevExpress.XtraEditors.Controls.ItemCheckEventHandler(OnCheckListBoxItemCheck);
     this.Controls.Add(checkListBox);
     UpdateCheckListBox();
     FillList();
     OkButton.Enabled = true;
 }
Ejemplo n.º 44
0
 protected override void Dispose(bool disposing)
 {
     if(disposing) {
         if(CheckListBox != null) {
             this.checkListBox.Dispose();
             this.checkListBox = null;
         }
     }
     base.Dispose(disposing);
 }
Ejemplo n.º 45
0
        /// <summary>
        /// 初始化关注导入进度条
        /// </summary>
        /// <param name="iMax"></param>
        private void InitProcess2(int iMax)
        {
            if (this.InvokeRequired)
            {
                this.Invoke(new Action<int>(InitProcess2), iMax);
            }
            else
            {
                //设置一个最小值
                progressBarControl2.Properties.Minimum = 0;
                //设置一个最大值
                progressBarControl2.Properties.Maximum = iMax;
                //设置步长,即每次增加的数
                progressBarControl2.Properties.Step = 1;
                //当前位置
                progressBarControl2.Position = 0;
                //设置进度条的样式
                progressBarControl2.Properties.ProgressViewStyle = DevExpress.XtraEditors.Controls.ProgressViewStyle.Solid;
                progressBarControl2.Visible = true;
                progressBarControl2.BringToFront();

                memoGetMsg.Text = "";
                memoGetMsg.Visible = true;
                memoGetMsg.Dock = DockStyle.Fill;
                if (_jdChkListBox == null)
                {
                    _jdChkListBox = new CheckedListBoxControl();
                    grpWatch.Controls.Add(_jdChkListBox);
                    _jdChkListBox.Dock = DockStyle.Fill;
                    _jdChkListBox.Visible = false;
                }

                grpWatch.Text = "商品列表";
                _isProcessing = true;
            }
        }
        private string GenerateSelectionFilterForCheckList(CheckedListBoxControl chkList)
        {
            string Filter = "";
            foreach (DataRowView item in chkList.CheckedItems)
            {
               if(item != null)
                Filter = Filter + item["ID"] + ",";
            }

            return Filter;
        }
		public static void RestoreSettingsByName(
			CheckedListBoxControl c,
			IPersistentPairStorage storage,
			string key )
		{
			var names = new List<string>();

			for ( var i = 0; i < c.Items.Count; ++i )
			{
				if ( c.GetItemChecked( i ) )
				{
					names.Add(c.GetItem(i).ToString());
				}
			}

			var def = string.Join(@"###{{{}}}###", names.ToArray());

			// --

			var s = PersistanceHelper.RestoreValue(
				storage,
				key,
				def ) as string;

			if ( string.IsNullOrEmpty( s ) )
			{
				for ( var i = 0; i < c.Items.Count; ++i )
				{
					c.SetItemChecked( i, false );
				}
			}
			else
			{
				var splitted = new List<string>(s.Split(new[] {@"###{{{}}}###"}, StringSplitOptions.RemoveEmptyEntries));

				var ris = new List<string>(splitted);

				for ( var i = 0; i < c.Items.Count; ++i )
				{
					c.SetItemChecked(i, ris.Contains(c.GetItem(i).ToString()));
				}
			}
		}