protected override void ShowSettings()
        {
            pnlConfigure.Visible = true;

            txtVisualizationTitle.Text = GetAttributeValue("Title");

            //var allowedEntities = new List<int>
            //{
            //    15, // Person
            //    16, // Group
            //    113, // Workflow
            //    240, // Connection Request
            //    258, // Registration
            //    313 //Registration Registrant
            //};

            etpEntityType.EntityTypes = new EntityTypeService(new RockContext())
                                        .Queryable()
                                        .OrderBy(t => t.FriendlyName).ToList();
            etpEntityType.SelectedEntityTypeId = GetAttributeValue("EntityTypeId").AsInteger();

            tbEntityUrl.Text   = GetAttributeValue("EntityUrl");
            tbDataViewUrl.Text = GetAttributeValue("DataViewUrl");
            tbSummaryLava.Text = GetAttributeValue("SummaryLava");

            dvBucket1.EntityTypeId = GetAttributeValue("EntityTypeId").AsInteger();
            dvBucket2.EntityTypeId = GetAttributeValue("EntityTypeId").AsInteger();
            dvBucket3.EntityTypeId = GetAttributeValue("EntityTypeId").AsInteger();

            // Load Data Views
            Bucket bucket1 = GetAttributeValue("Bucket1").FromJsonOrNull <Bucket>();
            Bucket bucket2 = GetAttributeValue("Bucket2").FromJsonOrNull <Bucket>();
            Bucket bucket3 = GetAttributeValue("Bucket3").FromJsonOrNull <Bucket>();

            if (bucket1 != null)
            {
                dvBucket1.SetValue(bucket1.Id);
                tbBucket1Color.Text = bucket1.Color;
            }
            if (bucket2 != null)
            {
                dvBucket2.SetValue(bucket2.Id);
                tbBucket2Color.Text = bucket2.Color;
            }
            if (bucket3 != null)
            {
                dvBucket3.SetValue(bucket3.Id);
                tbBucket3Color.Text = bucket3.Color;
            }

            mdConfigure.Show();

            FilterControl.EntityTypeId  = GetAttributeValue("EntityTypeId").AsInteger();
            FilterControl.ShowFilterKey = GetAttributeValue("ShowFilterKey").AsBoolean();
            FilterControl.filters       = filters;
            FilterControl.Refresh();

            upnlContent.Update();
        }
示例#2
0
 public TestSceneLoungeFilterControl()
 {
     Child = new FilterControl
     {
         Anchor = Anchor.Centre,
         Origin = Anchor.Centre
     };
 }
 internal FilterColumnCollectionDialog(IServiceProvider provider)
 {
     this.serviceProvider = provider;
     this.InitializeComponent();
     this.filterPrivateCopy = new FilterControl();
     this.columnsPrivateCopy = this.filterPrivateCopy.Columns;
     this.columnsPrivateCopy.CollectionChanged += new CollectionChangeEventHandler(this.columnsPrivateCopy_CollectionChanged);
 }
        static void CheckFilterCriteria(FilterControl filterControl)
        {
            if (CriteriaOperator.Equals(filterControl.ActualFilterCriteria, filterControl.FilterCriteria))
            {
                return;
            }

            filterControl.ApplyFilter();
        }
示例#5
0
        public static Rectangle GetEditorBoundsByElement(FilterLabelInfoTextViewInfo element)
        {
            FilterControl control = element.FilterViewInfo.Owner.OwnerControl;
            Rectangle     bounds  = element.TextElement.Bounds;

            bounds.Y     -= (control.FilterViewInfo.RowHeight - bounds.Height) / 2;
            bounds.Height = control.FilterViewInfo.RowHeight;
            bounds.Width  = GetElementWidth(true, bounds.Width);
            return(bounds);
        }
示例#6
0
 void applicationViewModel_DefinedVariableInUseDeletedEvent(object o)
 {
     if (ApplicationViewModel.Instance.IsDefVarInUseByDF)
     {
         FilterControl.UserDefinedVarInUse(o);
     }
     else
     {
         RefreshDataFilter();
     }
 }
示例#7
0
        /// <summary>
        /// Makes an array of filter controls based on the data stored on this FilterPreset
        /// </summary>
        /// <returns>An array of filter controls based on the data stored on this FilterPreset</returns>
        public FilterControl[] MakeFilterControls()
        {
            FilterControl[] filterControls = new FilterControl[_filters.Length];

            for (int i = 0; i < _filters.Length; i++)
            {
                filterControls[i] = FilterStore.Instance.CreateFilterControl(_filters[i].Name);
                filterControls[i].SetFilter(_filters[i]);
            }

            return(filterControls);
        }
        public PluginTraceViewer()
        {
            InitializeComponent();
            var theme = new VS2015LightTheme();

            dockContainer.Theme = theme;
            gridControl         = new GridControl(this);
            filterControl       = new FilterControl(this);
            statsControl        = new StatsControl(this);
            traceControl        = new TraceControl();
            exceptionControl    = new ExceptionControl();
        }
示例#9
0
        public void SetUp() => Schedule(() =>
        {
            collectionManager.Collections.Clear();

            Child = control = new FilterControl
            {
                Anchor           = Anchor.Centre,
                Origin           = Anchor.Centre,
                RelativeSizeAxes = Axes.X,
                Height           = FilterControl.HEIGHT,
            };
        });
        static void FilterControlPropertyChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
        {
            if (e.NewValue == null)
            {
                return;
            }
            FilterControl filterControl = (FilterControl)e.NewValue;

            filterControl.LayoutUpdated += (s, a) => {
                CheckFilterCriteria(filterControl);
            };
        }
示例#11
0
        void DisplayMenu(FilterControl filterControl)
        {
            var groupNode = filterControl.Model.RootNode;

            if (!groupNode.SubNodes.Any())
            {
                filterControl.SetDefaultColumn(filterControl.FilterColumns[Frame.View.ObjectTypeInfo.DefaultMember.Name]);
                groupNode.AddNode(filterControl.Model.CreateCriteriaByDefaultProperty());
            }
            filterControl.Model.FocusInfo = new FilterControlFocusInfo((Node)groupNode.SubNodes[0], 1);
            System.Windows.Forms.Application.DoEvents();
            filterControl.CallMethod("ShowClauseMenu");
        }
 public FilterAddColumnDialog(FilterColumnCollection columns, FilterControl liveFilterControl)
 {
     this.filterColumns = columns;
     this.liveFilterControl = liveFilterControl;
     Font defaultFont = Control.DefaultFont;
     IUIService service = (IUIService)this.liveFilterControl.Site.GetService(iUIServiceType);
     if (service != null)
     {
         defaultFont = (Font)service.Styles["DialogFont"];
     }
     this.Font = defaultFont;
     this.InitializeComponent();
     this.EnableDataBoundSection();
 }
        protected void etpEntityType_SelectedIndexChanged(object sender, EventArgs e)
        {
            dvBucket1.SetValue(null);
            dvBucket1.EntityTypeId = etpEntityType.SelectedEntityTypeId;
            dvBucket2.SetValue(null);
            dvBucket2.EntityTypeId = etpEntityType.SelectedEntityTypeId;
            dvBucket3.SetValue(null);
            dvBucket3.EntityTypeId = etpEntityType.SelectedEntityTypeId;

            FilterControl.EntityTypeId = etpEntityType.SelectedEntityTypeId ?? 0;
            FilterControl.filters      = filters;
            FilterControl.Refresh();

            persistForm();
        }
        protected void etpEntityType_SelectedIndexChanged(object sender, EventArgs e)
        {
            dvDataViewBucketPicker.ClearSelection();
            dvDataViewBucketPicker.EntityTypeId = etpEntityType.SelectedEntityTypeId;

            buckets = new List <Bucket>();
            filters = new Dictionary <string, Filter>();

            BucketDetailsControl.buckets = buckets;
            BucketDetailsControl.Refresh();
            upnlBuckets.Update();

            FilterControl.EntityTypeId = etpEntityType.SelectedEntityTypeId ?? 0;
            FilterControl.filters      = filters;
            FilterControl.Refresh();
        }
示例#15
0
        private void Clear()
        {
            txtAdvancedFilter.Text = "";

            applicationViewModel.AdvancedDataFilterString = string.Empty;
            applicationViewModel.EwavDatafilters          = new List <EwavDataFilterCondition>();
            FilterControl.GlobalPointer        = 0;
            FilterControl.GlobalRemovedPointer = 0;
            filterCount.Text     = "Data Filter (0)";
            VerticalHeading.Text = "Data Filter (0)";
            FilterControl.Clear();
            FilterControl.CreateFilterConditionRow();
            //SlideIn.Begin();
            rotatearrow1.Begin();
            dataFilterSlideCheck = false;
        }
示例#16
0
        /// <summary>
        /// Called when the user changes a filter
        /// </summary>
        /// <param name="filterControl">What type of filter is being changed</param>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        public void HandleFilterChange(FilterControl filterControl, object sender, EventArgs e)
        {
            HashSet <string> selectedList = null;

            switch (filterControl)
            {
            case FilterControl.BUILDING_BOX:
                selectedList = this.buildingFilters;
                break;

            case FilterControl.ROOM_BOX:
                selectedList = this.roomFilters;
                break;

            case FilterControl.RESOURCE_BOX:
                selectedList = this.resourceFilters;
                break;

            case FilterControl.MIN_CAPACITY_TRACKBAR:
                this.MinCapacity = ((TrackBar)sender).Value;
                break;

            case FilterControl.ON_DATE_DATE_PICKER:
                this.OnDateFilter = ((DateTimePicker)sender).Value;
                break;
            }
            if (filterControl != FilterControl.ON_DATE_DATE_PICKER && filterControl != FilterControl.MIN_CAPACITY_TRACKBAR)
            {
                string selval = (string)((CheckedListBox)sender).SelectedItem;
                if (selval != null)
                {
                    if (((ItemCheckEventArgs)e).NewValue == CheckState.Checked)
                    {
                        selectedList.Add(selval);
                    }
                    else if (((ItemCheckEventArgs)e).NewValue == CheckState.Unchecked)
                    {
                        selectedList.Remove(selval);
                    }
                }
            }
            DAL         dal           = new DAL(this);
            List <Room> filteredRooms = dal.FindRoomsWithOptionalFiltersOnDate(OnDateFilter, buildingFilters, roomFilters, resourceFilters, minCapacity: MinCapacity);

            this.GUIMain.SetRooms(filteredRooms);
        }
示例#17
0
 public static bool EditorItem(FilterControl control, LabelInfoText text)
 {
     if (!control.ShowEditors &&
         control.ActiveEditor != null &&
         control.FocusedItem != null &&
         control.FocusedItemType == ElementType.Value &&
         control.FocusedItem.InfoText.Equals(text))
     {
         return(true);
     }
     if (control.ShowEditors &&
         text.Tag != null &&
         ((NodeElement)text.Tag).Type == ElementType.Value)
     {
         return(true);
     }
     return(false);
 }
        private static void CheckFilterCriteria(FilterControl filterControl)
        {
            if (Equals(filterControl.ActualFilterCriteria, filterControl.FilterCriteria))
            {
                return;
            }

            //HACK: Почему-то периодически одинаковые значения в criteria при сравнении не равны
            if ((!ReferenceEquals(filterControl.ActualFilterCriteria, null)) &&
                (!ReferenceEquals(filterControl.FilterCriteria, null)) &&
                (string.Equals(filterControl.ActualFilterCriteria.LegacyToString(), filterControl.FilterCriteria.LegacyToString())))
            {
                return;
            }

            filterControl.Dispatcher.BeginInvoke((Action)filterControl.ApplyFilter, DispatcherPriority.ApplicationIdle);
            //filterControl.ApplyFilter();
        }
示例#19
0
        public void CreateFromXml(List <EwavDataFilterCondition> Conditions, string advancedFilterString)
        {
            if (advancedFilterString != null &&
                advancedFilterString.Length != 0)
            {
                pnlGuidedMode.Visibility   = System.Windows.Visibility.Collapsed;
                pnlAdvancedMode.Visibility = System.Windows.Visibility.Visible;
                VerticalHeading.Text       = "Data Filters";
                btnAdvMode.Visibility      = System.Windows.Visibility.Collapsed;
                btnGuidedMode.Visibility   = System.Windows.Visibility.Visible;
            }

            if (FilterControl == null)
            {
                FilterControl            = (EwavFilter)Activator.CreateInstance(typeof(EwavFilter));
                FilterControl.FilterType = FilterControlType.DataFilter;
            }

            FilterControl.ConstructStackPanelFromDataFilters(Conditions);
        }
示例#20
0
        /// <summary>
        /// Creates the FilterControl for a specified filter
        /// </summary>
        /// <param name="filterName">The name of the filter to create the FilterControl out of</param>
        /// <returns>The created FilterControl, or null if the filter does not exists</returns>
        public FilterControl CreateFilterControl(string filterName)
        {
            FilterControl filterControl = null;

            foreach (FilterItem item in _filterItems)
            {
                if (item.FilterName == filterName)
                {
                    var constructorInfo = item.FilterControlType.GetConstructor(Type.EmptyTypes);
                    if (constructorInfo != null)
                    {
                        filterControl = constructorInfo.Invoke(null) as FilterControl;
                    }

                    break;
                }
            }

            return(filterControl);
        }
        protected override void ShowSettings()
        {
            pnlConfigure.Visible = true;

            txtVisualizationTitle.Text = GetAttributeValue("Title");

            etpEntityType.EntityTypes = new EntityTypeService(new RockContext())
                                        .Queryable()
                                        .OrderBy(t => t.FriendlyName).ToList();
            etpEntityType.SelectedEntityTypeId  = GetAttributeValue("EntityTypeId").AsInteger();
            dvDataViewBucketPicker.EntityTypeId = GetAttributeValue("EntityTypeId").AsInteger();

            // Load Data Views
            List <Bucket> buckets          = GetAttributeValue("Buckets").FromJsonOrNull <List <Bucket> >() ?? new List <Bucket>();
            var           dataViewsOptions = from ListItem li in dvDataViewBucketPicker.Items
                                             where buckets.Any((bucket) => { return(bucket.Id == li.Value.AsInteger()); })
                                             select li;

            foreach (ListItem li in dataViewsOptions)
            {
                li.Selected = true;
            }

            tbSummaryLava.Text            = GetAttributeValue("SummaryLava");
            ddlDefaultStyle.SelectedValue = GetAttributeValue("Style");
            tbEntityUrl.Text   = GetAttributeValue("EntityUrl");
            tbDataViewUrl.Text = GetAttributeValue("DataViewUrl");

            mdConfigure.Show();

            BucketDetailsControl.buckets = buckets;
            BucketDetailsControl.Refresh();
            upnlBuckets.Update();

            FilterControl.EntityTypeId  = GetAttributeValue("EntityTypeId").AsInteger();
            FilterControl.ShowFilterKey = GetAttributeValue("ShowFilterKey").AsBoolean();
            FilterControl.filters       = filters;
            FilterControl.Refresh();

            upnlContent.Update();
        }
示例#22
0
        public void DoDataFilter()
        {
            if (applicationViewModel.UseAdvancedFilter)
            {
                applicationViewModel.AdvancedDataFilterString = txtAdvancedFilter.Text;
                VerticalHeading.Text = "Data Filters";
            }
            else
            {
                List <EwavDataFilterCondition> DFilters = FilterControl.CreateDataFilters();
                if (DFilters == null)
                {
                    return;
                }
                applicationViewModel.EwavDatafilters = DFilters;
            }

            SlideIn.Begin();
            rotatearrow1.Begin();
            dataFilterSlideCheck = false;
        }
示例#23
0
        /// <summary>
        /// Adds a given FilterControl on this BaseFilterView
        /// </summary>
        /// <param name="filterControl">The filter control to load on this BaseFilterView</param>
        /// <param name="updateVisualization">Whether to update the filter visualization at the end of the method</param>
        public void AddFilterControl(FilterControl filterControl, bool updateVisualization = true)
        {
            filterControl.Initialize(_bitmapOriginal);

            FilterContainer filterContainer = new FilterContainer(this, filterControl);

            _filterContainers.Add(filterContainer);

            filterControl.FilterUpdated        += _filterUpdatedHandler;
            filterContainer.ContainerDragStart += _containerDraggedHandler;
            filterContainer.ContainerDragEnd   += _containerDroppedHandler;

            UpdateLayout();
            UpdateFilterPresetButtons();

            pnl_container.VerticalScroll.Value = pnl_container.VerticalScroll.Maximum;
            pnl_container.PerformLayout();

            if (updateVisualization)
            {
                UpdateVisualization();
            }
        }
示例#24
0
        private void OnFilterLoaded(object sender, RoutedEventArgs e)
        {
            _control = (FilterControl)sender;

            int objectsCount = 0;
            Dictionary <UserTag, int> existsTags = new Dictionary <UserTag, int>();

            foreach (IUserTagsHandler obj in _taggedObjects)
            {
                foreach (UserTag tag in obj.Tags)
                {
                    int count;
                    existsTags.TryGetValue(tag, out count);
                    existsTags[tag] = count + 1;
                }
                objectsCount++;
            }

            _control.AvalibleTags = _avalibleTags;
            _control.SetCheckedTags(existsTags.SelectWhere(p => p.Value == objectsCount, p => p.Key));
            _control.SetUncheckedTags(_avalibleTags.Where(t => !existsTags.ContainsKey(t)));
            _control.IsShownTags = true;
        }
示例#25
0
        public void RefreshDataFilter()
        {
            //FillSelectionComboboxes();


            ////((ComboBox)FindControlInRow(rowNumber, "field"))


            //for (int i = 0; i <= this.globalPointer; i++)
            //{
            //    if (FindControlInRow(i, "field") != null)
            //    {
            //        string selectedValue = ((EwavColumn)((ComboBox)FindControlInRow(i, "field")).SelectedItem).Name;
            //        loadingCombos = true;
            //        ComboBox cmb = ((ComboBox)FindControlInRow(i, "field"));
            //        cmb.ItemsSource = null;
            //        cmb.ItemsSource = colsList; // extractedList;
            //        SetSelectedIndex(cmb, selectedValue);
            //        loadingCombos = false;
            //    }

            //}
            FilterControl.RefreshDataFilter();
        }
示例#26
0
        /// <summary>
        /// Обязательный метод для поддержки конструктора - не изменяйте
        /// содержимое данного метода при помощи редактора кода.
        /// </summary>
        private void InitializeComponent()
        {
            mainMenu            = new MainMenu();
            menuItemBack        = new MenuItem();
            menuItemSelect      = new MenuItem();
            header              = new GraphicsImage();
            logo                = new GraphicsImage();
            filter              = new FilterControl(195, 25);
            this.klvFriendsList = new FriendsListKineticListView();

            this.SuspendLayout();

            //
            // header
            //
            this.header.Name     = "Head";
            this.header.Location = new Point(0, 0);
            this.header.Stretch  = true;
            this.header.Anchor   = AnchorStyles.Left | AnchorStyles.Top | AnchorStyles.Right;

            //
            // logo
            //
            this.logo.Name     = "Logo";
            this.logo.Location = new Point(6, 7);
            this.logo.Stretch  = false;
            this.logo.Anchor   = AnchorStyles.Left | AnchorStyles.Top;

            //
            // this
            //
            this.Size = new Size(240, 268);
            this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
            this.AutoScroll          = true;
            this.Resize += new EventHandler(FriendsListView_Resize);
            this.Name    = "FriendsListView";

            //
            //klvFriendsList
            //
            klvFriendsList.Anchor = System.Windows.Forms.AnchorStyles.Left
                                    | System.Windows.Forms.AnchorStyles.Right
                                    | System.Windows.Forms.AnchorStyles.Top
                                    | System.Windows.Forms.AnchorStyles.Bottom;
            klvFriendsList.Location           = new System.Drawing.Point(0, 36);
            klvFriendsList.BackColor          = Color.White;
            klvFriendsList.BackgroundIImage   = MasterForm.SkinManager.GetImage("List-background");
            klvFriendsList.ContentUpShadow    = MasterForm.SkinManager.GetImage("ContentUpShadow");
            klvFriendsList.ContentDownShadow  = MasterForm.SkinManager.GetImage("ContentDownShadow");
            klvFriendsList.ShowContentShadows = true;
            klvFriendsList.OutsideUpShadow    = MasterForm.SkinManager.GetImage("ContentDownShadow");
            klvFriendsList.OutsideDownShadow  = MasterForm.SkinManager.GetImage("ContentUpShadow");
            klvFriendsList.ShowInnerShadows   = true;
            klvFriendsList.ScrollAction       = KineticControlBase.KineticControlScrollAction.ScrollingForTime;
            klvFriendsList.Name     = "klvStatusUpdatesList";
            klvFriendsList.Size     = new System.Drawing.Size(240, 232);
            klvFriendsList.MouseUp += new MouseEventHandler(KlvFriendsListClick);

            //
            // filter
            //
            filter.Location = new Point(39, 5);
            filter._filter.TextBox.TextChanged += new EventHandler(TextChange);
            filter._filter.TextBox.GotFocus    += new EventHandler(TextBoxGotFocus);
            filter._filter.TextBox.LostFocus   += new EventHandler(TextBoxLostFocus);

            //
            // mainMenu
            //
            mainMenu.MenuItems.Add(menuItemBack);
            mainMenu.MenuItems.Add(menuItemSelect);

            //
            // menuItemBack
            //
            menuItemBack.Text   = Resources.FriendsSearchListViewMenuItemBack;
            menuItemBack.Click += new EventHandler(MenuItemBackClick);

            //
            // menuItemSelect
            //
            menuItemSelect.Text   = Resources.FriendsSearchListViewMenuItemSelect;
            menuItemSelect.Click += new EventHandler(MenuItemSelectClick);

            this.Canvas.Children.Add(header);
            this.Canvas.Children.Add(logo);
            this.Controls.Add(klvFriendsList);
            this.Controls.Add(filter);

            this.Canvas.RecalcDPIScaling();

            this.ResumeLayout(false);
            this.header.AlphaChannelImage = MasterForm.SkinManager.GetImage("Header");
            this.logo.AlphaChannelImage   = MasterForm.SkinManager.GetImage("HeaderLogo");
        }
示例#27
0
 void DisplayMenu(FilterControl filterControl){
     var groupNode = filterControl.Model.RootNode;
     if (!groupNode.SubNodes.Any()){
         filterControl.SetDefaultColumn(filterControl.FilterColumns[Frame.View.ObjectTypeInfo.DefaultMember.Name]);
         groupNode.AddNode(filterControl.Model.CreateCriteriaByDefaultProperty());
     }
     filterControl.Model.FocusInfo = new FilterControlFocusInfo((Node) groupNode.SubNodes[0], 1);
     System.Windows.Forms.Application.DoEvents();
     filterControl.CallMethod("ShowClauseMenu");
     System.Windows.Forms.Application.DoEvents();
 }
 public FilterWindow(FilterControl filterControl)
 {
     InitializeComponent();
     this.filterControl = filterControl;
 }
示例#29
0
 public static void Apply(FilterControl filterControl)
 {
     filterControl.PopupMenuShowing += filterControl_PopupMenuShowing;
 }
 private void ClearFilterControl_Click(object sender, RoutedEventArgs e)
 {
     FilterControl.Clear();
 }
 private static void MakeSureColumnsAreSited(FilterControl filter)
 {
     IContainer container = (filter.Site != null) ? filter.Site.Container : null;
     for (int i = 0; i < filter.Columns.Count; i++)
     {
         FilterColumn component = filter.Columns[i];
         IContainer container2 = (component.Site != null) ? component.Site.Container : null;
         if (container != container2)
         {
             if (container2 != null)
             {
                 container2.Remove(component);
             }
             if (container != null)
             {
                 container.Add(component);
             }
         }
     }
 }
 private bool ProcessSimilarSchema(FilterControl dataGridView)
 {
     PropertyDescriptorCollection itemProperties = null;
     if (this.cm != null)
     {
         try
         {
             itemProperties = this.cm.GetItemProperties();
         }
         catch (ArgumentException exception)
         {
             throw new InvalidOperationException("DataSourceNoLongerValid", exception);
         }
     }
     IContainer container = (dataGridView.Site != null) ? dataGridView.Site.Container : null;
     bool flag = false;
     for (int i = 0; i < dataGridView.Columns.Count; i++)
     {
         FilterColumn component = dataGridView.Columns[i];
         if (component.DataPropertyName.IsNotEmpty())
         {
             PropertyDescriptor descriptor = TypeDescriptor.GetProperties(component)["UserAddedColumn"];
             if ((descriptor == null) || !((bool)descriptor.GetValue(component)))
             {
                 PropertyDescriptor descriptor2 = (itemProperties != null) ? itemProperties[component.DataPropertyName] : null;
                 bool flag2 = false;
                 if (descriptor2 == null)
                 {
                     flag2 = true;
                 }
                 else if (typeofIList.IsAssignableFrom(descriptor2.PropertyType) && !TypeDescriptor.GetConverter(typeof(Image)).CanConvertFrom(descriptor2.PropertyType))
                 {
                     flag2 = true;
                 }
                 flag = !flag2;
                 if (flag)
                 {
                     break;
                 }
             }
         }
     }
     if (flag)
     {
         IComponentChangeService service = base.Component.Site.GetService(typeof(IComponentChangeService)) as IComponentChangeService;
         PropertyDescriptor member = TypeDescriptor.GetProperties(base.Component)["Columns"];
         try
         {
             service.OnComponentChanging(base.Component, member);
         }
         catch (InvalidOperationException)
         {
             return flag;
         }
         int num2 = 0;
         while (num2 < dataGridView.Columns.Count)
         {
             FilterColumn column2 = dataGridView.Columns[num2];
             if (string.IsNullOrEmpty(column2.DataPropertyName))
             {
                 num2++;
             }
             else
             {
                 PropertyDescriptor descriptor4 = TypeDescriptor.GetProperties(column2)["UserAddedColumn"];
                 if ((descriptor4 != null) && ((bool)descriptor4.GetValue(column2)))
                 {
                     num2++;
                     continue;
                 }
                 PropertyDescriptor descriptor5 = (itemProperties != null) ? itemProperties[column2.DataPropertyName] : null;
                 bool flag3 = false;
                 if (descriptor5 == null)
                 {
                     flag3 = true;
                 }
                 else if (typeofIList.IsAssignableFrom(descriptor5.PropertyType) && !TypeDescriptor.GetConverter(typeof(Image)).CanConvertFrom(descriptor5.PropertyType))
                 {
                     flag3 = true;
                 }
                 if (flag3)
                 {
                     dataGridView.Columns.Remove(column2);
                     if (container != null)
                     {
                         container.Remove(column2);
                     }
                 }
                 else
                 {
                     num2++;
                 }
             }
         }
         service.OnComponentChanged(base.Component, member, null, null);
     }
     return flag;
 }
 internal void SetLiveFilterControl(FilterControl filter)
 {
     IComponentChangeService service = null;
     if (filter.Site != null)
     {
         service = (IComponentChangeService)filter.Site.GetService(iComponentChangeServiceType);
     }
     if (service != this.compChangeService)
     {
         this.UnhookComponentChangedEventHandler(this.compChangeService);
         this.compChangeService = service;
         this.HookComponentChangedEventHandler(this.compChangeService);
     }
     this.liveFilterControl = filter;
     this.filterPrivateCopy.Site = filter.Site;
     this.filterPrivateCopy.DataSource = filter.DataSource;
     this.filterPrivateCopy.DataMember = filter.DataMember;
     this.columnsNames = new Hashtable(this.columnsPrivateCopy.Count);
     this.columnsPrivateCopy.Clear();
     this.userAddedColumns = new Hashtable(this.liveFilterControl.Columns.Count);
     this.columnCollectionChanging = true;
     try
     {
         for (int i = 0; i < this.liveFilterControl.Columns.Count; i++)
         {
             FilterColumn column = this.liveFilterControl.Columns[i];
             FilterColumn dataGridViewColumn = (FilterColumn)column.Clone();
             this.columnsPrivateCopy.Add(dataGridViewColumn);
             if (column.Site != null)
             {
                 this.columnsNames[dataGridViewColumn] = column.Site.Name;
             }
             this.userAddedColumns[dataGridViewColumn] = IsColumnAddedByUser(this.liveFilterControl.Columns[i]);
         }
     }
     finally
     {
         this.columnCollectionChanging = false;
     }
     this.PopulateSelectedColumns();
     this.propertyGrid1.Site = new FilterControlComponentPropertyGridSite(this.liveFilterControl.Site, this.liveFilterControl);
     this.propertyGrid1.SelectedObject = this.selectedColumns.SelectedItem;
 }
示例#34
0
 public XpandFilterTreeNodeModel(FilterControl control) : base(control){
     OnNotifyControl+=OnOnNotifyControl;
 }
示例#35
0
 public MyWinFilterTreeNodeModel(FilterControl control) : base(control)
 {
 }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        protected void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMucSearchQL));
            this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
            this.MainBar = new DevExpress.XtraBars.Bar();
            this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu2 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItemAddNext = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu3 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItemSuaGiuMB = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItemInNhan = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemInBeatcamTrong = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemInBeatacamNgoai = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
            this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
            this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
            this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
            this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItemNangCao = new DevExpress.XtraBars.BarCheckItem();
            this.barCheckItemDonGian = new DevExpress.XtraBars.BarCheckItem();
            this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
            this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
            this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
            this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
            this.dockPanelAdvance = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel2_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.filterControl1 = new DevExpress.XtraEditors.FilterControl();
            this.dockPanelSimple = new DevExpress.XtraBars.Docking.DockPanel();
            this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
            this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
            this.ngayNhap = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
            this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
            this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel21 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel22 = new DevExpress.XtraEditors.LabelControl();
            this.TenTap = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.SoDKCBHD = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel20 = new DevExpress.XtraEditors.LabelControl();
            this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel19 = new DevExpress.XtraEditors.LabelControl();
            this.TimeslotDen = new DevExpress.XtraEditors.TimeEdit();
            this.TimeslotTu = new DevExpress.XtraEditors.TimeEdit();
            this.SoRunConLaiTu = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunDaDungTu = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunConLaiDen = new DevExpress.XtraEditors.SpinEdit();
            this.SoRunDaDungDen = new DevExpress.XtraEditors.SpinEdit();
            this.TongSoRunDen = new DevExpress.XtraEditors.SpinEdit();
            this.TongSoRunTu = new DevExpress.XtraEditors.SpinEdit();
            this.BQDTTNEndDen = new DevExpress.XtraEditors.DateEdit();
            this.BQDTNNEndDen = new DevExpress.XtraEditors.DateEdit();
            this.BQDTNNEndTu = new DevExpress.XtraEditors.DateEdit();
            this.BQDTTNEndTu = new DevExpress.XtraEditors.DateEdit();
            this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
            this.NamSXDen = new DevExpress.XtraEditors.SpinEdit();
            this.NamSXTu = new DevExpress.XtraEditors.SpinEdit();
            this.plLabel11 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel17 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel16 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel9 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel14 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel13 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
            this.label34 = new DevExpress.XtraEditors.LabelControl();
            this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.DonViCungCap = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
            this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
            this.plLabel18 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
            this.label10 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel23 = new DevExpress.XtraEditors.LabelControl();
            this.label29 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
            this.label3 = new DevExpress.XtraEditors.LabelControl();
            this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
            this.label5 = new DevExpress.XtraEditors.LabelControl();
            this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
            this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
            this.barButtonItem5 = new DevExpress.XtraBars.BarButtonItem();
            this.Col_PM_PostMaster = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_LoaiLuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TongTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ke = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Ngan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_Tang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_PopUp = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTDinhKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_NgayNhapKho = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_DVDNgayHoanTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TTHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_ThoiLuongChung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
            this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
            this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
            this.gridBandThongTinChinh = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand5 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_BM_TapSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_TenTap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_SoBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_MaBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThoiLuong = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThongSo = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand4 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_PM_NoiDungDuyet = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_PM_TraierPost = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand3 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MaCT = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayAWB = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NgayLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NguoiLap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Category = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_NoiDung = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TenGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TietMuc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DaoDien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DienVien = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TomTat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DoiTuongKhanGia = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHPL = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KHXK = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TinhTrangBang = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TuKhoa = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThanhLy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_GhiChu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Photos = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Ranking = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Script = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TrailerGoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandNguonGoc = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand1 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_NamSX = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Nuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViCungCap = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_DonViSoHuu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_KenhHanCheBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_ThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand2 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_BanQuyenThuoc = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDIDEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNStart = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenDTNNEnd = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_BanQuyenHTV = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinPhatSong = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_CT_MuaKem = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongChinh = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_PhatSongKhac = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_TongSoRun = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoLanPhat = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_SoRunConLai = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_CT_Release = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBandThongTinBan = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.ThôngtinHD = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.gridBand7 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.Col_BM_SoDKCBHD = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.Col_BM_NoiLuuTru = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
            this.gridBand6 = new DevExpress.XtraGrid.Views.BandedGrid.GridBand();
            this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
            this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
            this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
            this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
            this.barButtonItemThongKe = new DevExpress.XtraBars.BarButtonItem();
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).BeginInit();
            this.dockPanelAdvance.SuspendLayout();
            this.dockPanel2_Container.SuspendLayout();
            this.dockPanelSimple.SuspendLayout();
            this.dockPanel1_Container.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).BeginInit();
            this.popupControlContainerFilter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
            this.splitContainerControl1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).BeginInit();
            this.xtraTabControlDetail.SuspendLayout();
            this.xtraTabPageDetail.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).BeginInit();
            this.SuspendLayout();
            //
            // barManager1
            //
            this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] {
            this.MainBar});
            this.barManager1.DockControls.Add(this.barDockControlTop);
            this.barManager1.DockControls.Add(this.barDockControlBottom);
            this.barManager1.DockControls.Add(this.barDockControlLeft);
            this.barManager1.DockControls.Add(this.barDockControlRight);
            this.barManager1.DockManager = this.dockManager1;
            this.barManager1.Form = this;
            this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] {
            this.barButtonItemAdd,
            this.barButtonItemDelete,
            this.barButtonItemUpdate,
            this.barButtonItemPrint,
            this.barStaticItem1,
            this.barButtonItem1,
            this.barButtonItem2,
            this.barButtonItemCommit,
            this.barButtonItemNoCommit,
            this.barSubItem1,
            this.barButtonItemXem,
            this.barButtonItemSearch,
            this.barButtonItemClose,
            this.barCheckItemFilter,
            this.barButtonItem3,
            this.barButtonItem4,
            this.barButtonItem5,
            this.barSubItemInNhan,
            this.barButtonItemInBeatcamTrong,
            this.barButtonItemInBeatacamNgoai,
            this.barButtonItemAddNext,
            this.barButtonItemSuaGiuMB,
            this.barCheckItemNangCao,
            this.barCheckItemDonGian,
            this.barButtonItemThongKe});
            this.barManager1.MaxItemId = 44;
            //
            // MainBar
            //
            this.MainBar.BarName = "MainBar";
            this.MainBar.DockCol = 0;
            this.MainBar.DockRow = 0;
            this.MainBar.DockStyle = DevExpress.XtraBars.BarDockStyle.Top;
            this.MainBar.FloatLocation = new System.Drawing.Point(39, 133);
            this.MainBar.FloatSize = new System.Drawing.Size(72, 73);
            this.MainBar.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(DevExpress.XtraBars.BarLinkUserDefines.Caption, this.barButtonItemAdd, "&Thêm"),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXem),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemDelete),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemUpdate),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItemInNhan),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCommit, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemNoCommit),
            new DevExpress.XtraBars.LinkPersistInfo(this.barSubItem1, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSearch, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemClose, true),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemThongKe, true)});
            this.MainBar.OptionsBar.AllowQuickCustomization = false;
            this.MainBar.OptionsBar.DrawDragBorder = false;
            this.MainBar.OptionsBar.RotateWhenVertical = false;
            this.MainBar.OptionsBar.UseWholeRow = true;
            this.MainBar.Text = "Custom 1";
            //
            // barButtonItemAdd
            //
            this.barButtonItemAdd.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemAdd.Caption = "Thêm";
            this.barButtonItemAdd.DropDownControl = this.popupMenu2;
            this.barButtonItemAdd.Id = 0;
            this.barButtonItemAdd.Name = "barButtonItemAdd";
            this.barButtonItemAdd.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu2
            //
            this.popupMenu2.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemAddNext)});
            this.popupMenu2.Manager = this.barManager1;
            this.popupMenu2.Name = "popupMenu2";
            //
            // barButtonItemAddNext
            //
            this.barButtonItemAddNext.Caption = "Thêm tậ&p tiếp theo";
            this.barButtonItemAddNext.Id = 39;
            this.barButtonItemAddNext.Name = "barButtonItemAddNext";
            this.barButtonItemAddNext.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemAddNext_ItemClick);
            //
            // barButtonItemXem
            //
            this.barButtonItemXem.Caption = "X&em";
            this.barButtonItemXem.Id = 24;
            this.barButtonItemXem.Name = "barButtonItemXem";
            this.barButtonItemXem.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemDelete
            //
            this.barButtonItemDelete.Caption = "&Xóa";
            this.barButtonItemDelete.Id = 1;
            this.barButtonItemDelete.Name = "barButtonItemDelete";
            this.barButtonItemDelete.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemUpdate
            //
            this.barButtonItemUpdate.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemUpdate.Caption = "&Sửa";
            this.barButtonItemUpdate.DropDownControl = this.popupMenu3;
            this.barButtonItemUpdate.Id = 2;
            this.barButtonItemUpdate.Name = "barButtonItemUpdate";
            this.barButtonItemUpdate.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu3
            //
            this.popupMenu3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemSuaGiuMB)});
            this.popupMenu3.Manager = this.barManager1;
            this.popupMenu3.Name = "popupMenu3";
            //
            // barButtonItemSuaGiuMB
            //
            this.barButtonItemSuaGiuMB.Caption = "Sửa &vẫn giữ phần số của mã băng";
            this.barButtonItemSuaGiuMB.Id = 40;
            this.barButtonItemSuaGiuMB.Name = "barButtonItemSuaGiuMB";
            this.barButtonItemSuaGiuMB.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemSuaGiuMB_ItemClick);
            //
            // barButtonItemPrint
            //
            this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemPrint.Caption = "&In";
            this.barButtonItemPrint.DropDownControl = this.popupMenu1;
            this.barButtonItemPrint.Id = 3;
            this.barButtonItemPrint.Name = "barButtonItemPrint";
            this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenu1
            //
            this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItem4)});
            this.popupMenu1.Manager = this.barManager1;
            this.popupMenu1.Name = "popupMenu1";
            //
            // barButtonItem4
            //
            this.barButtonItem4.Caption = "Xem t&rước";
            this.barButtonItem4.Id = 33;
            this.barButtonItem4.Name = "barButtonItem4";
            //
            // barSubItemInNhan
            //
            this.barSubItemInNhan.Caption = "In n&hãn";
            this.barSubItemInNhan.Id = 36;
            this.barSubItemInNhan.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatcamTrong),
            new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemInBeatacamNgoai)});
            this.barSubItemInNhan.Name = "barSubItemInNhan";
            this.barSubItemInNhan.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemInBeatcamTrong
            //
            this.barButtonItemInBeatcamTrong.Caption = "In betatcam t&rong";
            this.barButtonItemInBeatcamTrong.Id = 37;
            this.barButtonItemInBeatcamTrong.Name = "barButtonItemInBeatcamTrong";
            this.barButtonItemInBeatcamTrong.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemInBeatcamTrong.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatcamTrong_ItemClick);
            //
            // barButtonItemInBeatacamNgoai
            //
            this.barButtonItemInBeatacamNgoai.Caption = "In beatacam n&goài";
            this.barButtonItemInBeatacamNgoai.Id = 38;
            this.barButtonItemInBeatacamNgoai.Name = "barButtonItemInBeatacamNgoai";
            this.barButtonItemInBeatacamNgoai.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barButtonItemInBeatacamNgoai.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemInBeatacamNgoai_ItemClick);
            //
            // barButtonItemCommit
            //
            this.barButtonItemCommit.Caption = "&Duyệt";
            this.barButtonItemCommit.Id = 17;
            this.barButtonItemCommit.Name = "barButtonItemCommit";
            this.barButtonItemCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemNoCommit
            //
            this.barButtonItemNoCommit.Caption = "&Không duyệt";
            this.barButtonItemNoCommit.Id = 18;
            this.barButtonItemNoCommit.Name = "barButtonItemNoCommit";
            this.barButtonItemNoCommit.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barSubItem1
            //
            this.barSubItem1.Caption = "&Nghiệp vụ";
            this.barSubItem1.Id = 20;
            this.barSubItem1.Name = "barSubItem1";
            this.barSubItem1.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barButtonItemSearch
            //
            this.barButtonItemSearch.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItemSearch.Caption = "Tì&m kiếm";
            this.barButtonItemSearch.DropDownControl = this.popupMenuFilter;
            this.barButtonItemSearch.Id = 27;
            this.barButtonItemSearch.Name = "barButtonItemSearch";
            this.barButtonItemSearch.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // popupMenuFilter
            //
            this.popupMenuFilter.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] {
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemFilter),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemNangCao),
            new DevExpress.XtraBars.LinkPersistInfo(this.barCheckItemDonGian)});
            this.popupMenuFilter.Manager = this.barManager1;
            this.popupMenuFilter.Name = "popupMenuFilter";
            //
            // barCheckItemFilter
            //
            this.barCheckItemFilter.Caption = "Điề&u kiện lọc";
            this.barCheckItemFilter.Id = 29;
            this.barCheckItemFilter.Name = "barCheckItemFilter";
            this.barCheckItemFilter.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            this.barCheckItemFilter.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
            //
            // barCheckItemNangCao
            //
            this.barCheckItemNangCao.Caption = "Tìm kiếm nâng cao";
            this.barCheckItemNangCao.Id = 41;
            this.barCheckItemNangCao.Name = "barCheckItemNangCao";
            //
            // barCheckItemDonGian
            //
            this.barCheckItemDonGian.Caption = "Tìm kiếm đơn giản";
            this.barCheckItemDonGian.Id = 42;
            this.barCheckItemDonGian.Name = "barCheckItemDonGian";
            //
            // barButtonItemClose
            //
            this.barButtonItemClose.Caption = "Đón&g";
            this.barButtonItemClose.Id = 28;
            this.barButtonItemClose.Name = "barButtonItemClose";
            this.barButtonItemClose.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // barDockControlTop
            //
            this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.barDockControlTop.Location = new System.Drawing.Point(0, 0);
            this.barDockControlTop.Size = new System.Drawing.Size(1028, 24);
            //
            // barDockControlBottom
            //
            this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
            this.barDockControlBottom.Location = new System.Drawing.Point(0, 734);
            this.barDockControlBottom.Size = new System.Drawing.Size(1028, 0);
            //
            // barDockControlLeft
            //
            this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left;
            this.barDockControlLeft.Location = new System.Drawing.Point(0, 24);
            this.barDockControlLeft.Size = new System.Drawing.Size(0, 710);
            //
            // barDockControlRight
            //
            this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right;
            this.barDockControlRight.Location = new System.Drawing.Point(1028, 24);
            this.barDockControlRight.Size = new System.Drawing.Size(0, 710);
            //
            // dockManager1
            //
            this.dockManager1.Form = this;
            this.dockManager1.RootPanels.AddRange(new DevExpress.XtraBars.Docking.DockPanel[] {
            this.dockPanelAdvance,
            this.dockPanelSimple});
            this.dockManager1.TopZIndexControls.AddRange(new string[] {
            "DevExpress.XtraBars.BarDockControl",
            "DevExpress.XtraBars.StandaloneBarDockControl",
            "System.Windows.Forms.StatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonStatusBar",
            "DevExpress.XtraBars.Ribbon.RibbonControl"});
            //
            // dockPanelAdvance
            //
            this.dockPanelAdvance.Controls.Add(this.dockPanel2_Container);
            this.dockPanelAdvance.Dock = DevExpress.XtraBars.Docking.DockingStyle.Left;
            this.dockPanelAdvance.ID = new System.Guid("4dfe076a-bb5a-4480-b941-f391f02697b8");
            this.dockPanelAdvance.Location = new System.Drawing.Point(0, 24);
            this.dockPanelAdvance.Name = "dockPanelAdvance";
            this.dockPanelAdvance.OriginalSize = new System.Drawing.Size(200, 200);
            this.dockPanelAdvance.Size = new System.Drawing.Size(200, 710);
            this.dockPanelAdvance.Text = "Điều kiện tìm kiếm nâng cao";
            //
            // dockPanel2_Container
            //
            this.dockPanel2_Container.Controls.Add(this.filterControl1);
            this.dockPanel2_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel2_Container.Name = "dockPanel2_Container";
            this.dockPanel2_Container.Size = new System.Drawing.Size(194, 682);
            this.dockPanel2_Container.TabIndex = 0;
            //
            // filterControl1
            //
            this.filterControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.filterControl1.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.filterControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.filterControl1.Location = new System.Drawing.Point(0, 0);
            this.filterControl1.Name = "filterControl1";
            this.filterControl1.Size = new System.Drawing.Size(194, 682);
            this.filterControl1.TabIndex = 11;
            this.filterControl1.Text = "filterControl1";
            //
            // dockPanelSimple
            //
            this.dockPanelSimple.Controls.Add(this.dockPanel1_Container);
            this.dockPanelSimple.Dock = DevExpress.XtraBars.Docking.DockingStyle.Top;
            this.dockPanelSimple.FloatVertical = true;
            this.dockPanelSimple.ID = new System.Guid("2345a568-0c89-4a76-a607-0aff4b702676");
            this.dockPanelSimple.Location = new System.Drawing.Point(200, 24);
            this.dockPanelSimple.Name = "dockPanelSimple";
            this.dockPanelSimple.OriginalSize = new System.Drawing.Size(200, 161);
            this.dockPanelSimple.Size = new System.Drawing.Size(828, 161);
            this.dockPanelSimple.Text = "Điều kiện tìm kiếm đơn giản";
            //
            // dockPanel1_Container
            //
            this.dockPanel1_Container.Controls.Add(this.popupControlContainerFilter);
            this.dockPanel1_Container.Location = new System.Drawing.Point(3, 25);
            this.dockPanel1_Container.Name = "dockPanel1_Container";
            this.dockPanel1_Container.Size = new System.Drawing.Size(822, 133);
            this.dockPanel1_Container.TabIndex = 0;
            //
            // popupControlContainerFilter
            //
            this.popupControlContainerFilter.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.popupControlContainerFilter.Controls.Add(this.ngayNhap);
            this.popupControlContainerFilter.Controls.Add(this.TapSoDen);
            this.popupControlContainerFilter.Controls.Add(this.TapSoTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel21);
            this.popupControlContainerFilter.Controls.Add(this.plLabel22);
            this.popupControlContainerFilter.Controls.Add(this.TenTap);
            this.popupControlContainerFilter.Controls.Add(this.SoDKCBHD);
            this.popupControlContainerFilter.Controls.Add(this.plLabel20);
            this.popupControlContainerFilter.Controls.Add(this.LoaiLuuTru);
            this.popupControlContainerFilter.Controls.Add(this.plLabel19);
            this.popupControlContainerFilter.Controls.Add(this.TimeslotDen);
            this.popupControlContainerFilter.Controls.Add(this.TimeslotTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungTu);
            this.popupControlContainerFilter.Controls.Add(this.SoRunConLaiDen);
            this.popupControlContainerFilter.Controls.Add(this.SoRunDaDungDen);
            this.popupControlContainerFilter.Controls.Add(this.TongSoRunDen);
            this.popupControlContainerFilter.Controls.Add(this.TongSoRunTu);
            this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndDen);
            this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndDen);
            this.popupControlContainerFilter.Controls.Add(this.BQDTNNEndTu);
            this.popupControlContainerFilter.Controls.Add(this.BQDTTNEndTu);
            this.popupControlContainerFilter.Controls.Add(this.PhongBan);
            this.popupControlContainerFilter.Controls.Add(this.NamSXDen);
            this.popupControlContainerFilter.Controls.Add(this.NamSXTu);
            this.popupControlContainerFilter.Controls.Add(this.plLabel11);
            this.popupControlContainerFilter.Controls.Add(this.plLabel17);
            this.popupControlContainerFilter.Controls.Add(this.plLabel16);
            this.popupControlContainerFilter.Controls.Add(this.plLabel15);
            this.popupControlContainerFilter.Controls.Add(this.plLabel9);
            this.popupControlContainerFilter.Controls.Add(this.plLabel3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel2);
            this.popupControlContainerFilter.Controls.Add(this.plLabel10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel8);
            this.popupControlContainerFilter.Controls.Add(this.plLabel14);
            this.popupControlContainerFilter.Controls.Add(this.plLabel13);
            this.popupControlContainerFilter.Controls.Add(this.plLabel12);
            this.popupControlContainerFilter.Controls.Add(this.plLabel7);
            this.popupControlContainerFilter.Controls.Add(this.label34);
            this.popupControlContainerFilter.Controls.Add(this.BanQuyenThuoc);
            this.popupControlContainerFilter.Controls.Add(this.DonViCungCap);
            this.popupControlContainerFilter.Controls.Add(this.Category);
            this.popupControlContainerFilter.Controls.Add(this.TenGoc);
            this.popupControlContainerFilter.Controls.Add(this.NoiDung);
            this.popupControlContainerFilter.Controls.Add(this.QuocGia);
            this.popupControlContainerFilter.Controls.Add(this.TietMuc);
            this.popupControlContainerFilter.Controls.Add(this.plLabel18);
            this.popupControlContainerFilter.Controls.Add(this.plLabel5);
            this.popupControlContainerFilter.Controls.Add(this.label10);
            this.popupControlContainerFilter.Controls.Add(this.plLabel1);
            this.popupControlContainerFilter.Controls.Add(this.plLabel23);
            this.popupControlContainerFilter.Controls.Add(this.label29);
            this.popupControlContainerFilter.Controls.Add(this.plLabel6);
            this.popupControlContainerFilter.Controls.Add(this.label3);
            this.popupControlContainerFilter.Controls.Add(this.plLabel4);
            this.popupControlContainerFilter.Controls.Add(this.label5);
            this.popupControlContainerFilter.Dock = System.Windows.Forms.DockStyle.Fill;
            this.popupControlContainerFilter.Location = new System.Drawing.Point(0, 0);
            this.popupControlContainerFilter.Manager = this.barManager1;
            this.popupControlContainerFilter.Name = "popupControlContainerFilter";
            this.popupControlContainerFilter.Size = new System.Drawing.Size(822, 133);
            this.popupControlContainerFilter.TabIndex = 12;
            this.popupControlContainerFilter.Visible = false;
            //
            // ngayNhap
            //
            this.ngayNhap.Caption = "Từ ngày 25/02/2012 đến ngày 03/03/2012";
            this.ngayNhap.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.FirstFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.FirstTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.FromDate = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.Location = new System.Drawing.Point(583, 78);
            this.ngayNhap.Name = "ngayNhap";
            this.ngayNhap.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date;
            this.ngayNhap.SecondFrom = new System.DateTime(2012, 2, 25, 5, 9, 33, 890);
            this.ngayNhap.SecondTo = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate;
            this.ngayNhap.Size = new System.Drawing.Size(291, 21);
            this.ngayNhap.TabIndex = 247;
            this.ngayNhap.ToDate = new System.DateTime(2012, 3, 3, 5, 9, 33, 890);
            this.ngayNhap.Types = ((ProtocolVN.Framework.Win.Trial.SelectionTypes)(((((((((ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.OneYear)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.SixMonths)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromDateToDate)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromMonthToMonth)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromQuarterToQuarter)
                        | ProtocolVN.Framework.Win.Trial.SelectionTypes.FromYearToYear)));
            //
            // TapSoDen
            //
            this.TapSoDen.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoDen.Location = new System.Drawing.Point(687, 106);
            this.TapSoDen.Name = "TapSoDen";
            this.TapSoDen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoDen.Size = new System.Drawing.Size(75, 20);
            this.TapSoDen.TabIndex = 245;
            //
            // TapSoTu
            //
            this.TapSoTu.EditValue = new decimal(new int[] {
            0,
            0,
            0,
            0});
            this.TapSoTu.Location = new System.Drawing.Point(585, 105);
            this.TapSoTu.Name = "TapSoTu";
            this.TapSoTu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton()});
            this.TapSoTu.Size = new System.Drawing.Size(67, 20);
            this.TapSoTu.TabIndex = 246;
            //
            // plLabel21
            //
            this.plLabel21.Location = new System.Drawing.Point(657, 109);
            this.plLabel21.Name = "plLabel21";
            this.plLabel21.Size = new System.Drawing.Size(18, 13);
            this.plLabel21.TabIndex = 243;
            this.plLabel21.Text = "đến";

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

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

            //
            // LoaiLuuTru
            //
            this.LoaiLuuTru.DataSource = null;
            this.LoaiLuuTru.DisplayField = null;
            this.LoaiLuuTru.Location = new System.Drawing.Point(75, 105);
            this.LoaiLuuTru.Name = "LoaiLuuTru";
            this.LoaiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
            this.LoaiLuuTru.Size = new System.Drawing.Size(185, 20);
            this.LoaiLuuTru.TabIndex = 241;
            this.LoaiLuuTru.ValueField = null;
            //
            // plLabel19
            //
            this.plLabel19.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.plLabel19.Appearance.Options.UseFont = true;
            this.plLabel19.Location = new System.Drawing.Point(4, 108);
            this.plLabel19.Name = "plLabel19";
            this.plLabel19.Size = new System.Drawing.Size(65, 13);
            this.plLabel19.TabIndex = 240;
            this.plLabel19.Text = "Loại lưu trữ";
            this.plLabel19.ToolTip = "Loại lưu trữ (cấp 2)";

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            //
            // barStaticItem1
            //
            this.barStaticItem1.AutoSize = DevExpress.XtraBars.BarStaticItemSize.None;
            this.barStaticItem1.Border = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.barStaticItem1.Id = 13;
            this.barStaticItem1.Name = "barStaticItem1";
            this.barStaticItem1.TextAlignment = System.Drawing.StringAlignment.Near;
            this.barStaticItem1.Width = 100;
            //
            // barButtonItem1
            //
            this.barButtonItem1.Caption = "barButtonItem1";
            this.barButtonItem1.Id = 14;
            this.barButtonItem1.Name = "barButtonItem1";
            //
            // barButtonItem2
            //
            this.barButtonItem2.Caption = "barButtonItem2";
            this.barButtonItem2.Id = 15;
            this.barButtonItem2.Name = "barButtonItem2";
            //
            // barButtonItem3
            //
            this.barButtonItem3.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown;
            this.barButtonItem3.Caption = "In";
            this.barButtonItem3.Id = 30;
            this.barButtonItem3.Name = "barButtonItem3";
            //
            // barButtonItem5
            //
            this.barButtonItem5.Caption = "barButtonItem5";
            this.barButtonItem5.Id = 34;
            this.barButtonItem5.Name = "barButtonItem5";
            //
            // Col_PM_PostMaster
            //
            this.Col_PM_PostMaster.Caption = "Post/Master";
            this.Col_PM_PostMaster.Name = "Col_PM_PostMaster";
            this.Col_PM_PostMaster.Visible = true;
            this.Col_PM_PostMaster.Width = 70;
            //
            // Col_PM_ThanhLy
            //
            this.Col_PM_ThanhLy.Caption = "Thanh lý (Cấp 2)";
            this.Col_PM_ThanhLy.Name = "Col_PM_ThanhLy";
            this.Col_PM_ThanhLy.Visible = true;
            this.Col_PM_ThanhLy.Width = 92;
            //
            // Col_PM_LoaiLuu
            //
            this.Col_PM_LoaiLuu.Caption = "Loại lưu trữ";
            this.Col_PM_LoaiLuu.Name = "Col_PM_LoaiLuu";
            this.Col_PM_LoaiLuu.Visible = true;
            this.Col_PM_LoaiLuu.Width = 67;
            //
            // Col_PM_TongTap
            //
            this.Col_PM_TongTap.Caption = "Số tập gốc/cắt";
            this.Col_PM_TongTap.Name = "Col_PM_TongTap";
            this.Col_PM_TongTap.Visible = true;
            this.Col_PM_TongTap.Width = 82;
            //
            // Col_PM_Ke
            //
            this.Col_PM_Ke.Caption = "Kệ";
            this.Col_PM_Ke.Name = "Col_PM_Ke";
            this.Col_PM_Ke.Visible = true;
            this.Col_PM_Ke.Width = 24;
            //
            // Col_PM_Ngan
            //
            this.Col_PM_Ngan.Caption = "Ngăn";
            this.Col_PM_Ngan.Name = "Col_PM_Ngan";
            this.Col_PM_Ngan.Visible = true;
            this.Col_PM_Ngan.Width = 37;
            //
            // Col_PM_Tang
            //
            this.Col_PM_Tang.Caption = "Tầng";
            this.Col_PM_Tang.Name = "Col_PM_Tang";
            this.Col_PM_Tang.Visible = true;
            this.Col_PM_Tang.Width = 36;
            //
            // Col_PM_PopUp
            //
            this.Col_PM_PopUp.Caption = "Pop Up";
            this.Col_PM_PopUp.Name = "Col_PM_PopUp";
            this.Col_PM_PopUp.Visible = true;
            this.Col_PM_PopUp.Width = 46;
            //
            // Col_PM_TTDinhKem
            //
            this.Col_PM_TTDinhKem.Caption = "TT Đính kèm";
            this.Col_PM_TTDinhKem.Name = "Col_PM_TTDinhKem";
            this.Col_PM_TTDinhKem.Visible = true;
            this.Col_PM_TTDinhKem.Width = 71;
            //
            // Col_PM_NgayNhapKho
            //
            this.Col_PM_NgayNhapKho.Caption = "Ngày nhập kho";
            this.Col_PM_NgayNhapKho.Name = "Col_PM_NgayNhapKho";
            this.Col_PM_NgayNhapKho.Visible = true;
            this.Col_PM_NgayNhapKho.Width = 84;
            //
            // Col_PM_DVDNgayDuyet
            //
            this.Col_PM_DVDNgayDuyet.Caption = "DVD ngày duyệt";
            this.Col_PM_DVDNgayDuyet.Name = "Col_PM_DVDNgayDuyet";
            this.Col_PM_DVDNgayDuyet.Visible = true;
            this.Col_PM_DVDNgayDuyet.Width = 90;
            //
            // Col_PM_DVDNgayHoanTat
            //
            this.Col_PM_DVDNgayHoanTat.Caption = "DVD Ngày hoàn tất";
            this.Col_PM_DVDNgayHoanTat.Name = "Col_PM_DVDNgayHoanTat";
            this.Col_PM_DVDNgayHoanTat.Visible = true;
            this.Col_PM_DVDNgayHoanTat.Width = 104;
            //
            // Col_PM_TTHD
            //
            this.Col_PM_TTHD.Caption = "Thông tin HD";
            this.Col_PM_TTHD.Name = "Col_PM_TTHD";
            this.Col_PM_TTHD.Visible = true;
            this.Col_PM_TTHD.Width = 74;
            //
            // Col_PM_ThoiLuongChung
            //
            this.Col_PM_ThoiLuongChung.Caption = "Thời lượng chung";
            this.Col_PM_ThoiLuongChung.Name = "Col_PM_ThoiLuongChung";
            this.Col_PM_ThoiLuongChung.Visible = true;
            this.Col_PM_ThoiLuongChung.Width = 94;
            //
            // splitContainerControl1
            //
            this.splitContainerControl1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainerControl1.Horizontal = false;
            this.splitContainerControl1.Location = new System.Drawing.Point(200, 185);
            this.splitContainerControl1.Name = "splitContainerControl1";
            this.splitContainerControl1.Panel1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseFont = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.Options.UseTextOptions = true;
            this.splitContainerControl1.Panel1.AppearanceCaption.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.splitContainerControl1.Panel1.Controls.Add(this.gridControlMaster);
            this.splitContainerControl1.Panel1.Text = "Chương trình";
            this.splitContainerControl1.Panel2.CaptionLocation = DevExpress.Utils.Locations.Left;
            this.splitContainerControl1.Panel2.Controls.Add(this.xtraTabControlDetail);
            this.splitContainerControl1.Panel2.Text = "splitContainerControl1_Panel2";
            this.splitContainerControl1.Size = new System.Drawing.Size(828, 549);
            this.splitContainerControl1.SplitterPosition = 503;
            this.splitContainerControl1.TabIndex = 5;
            this.splitContainerControl1.Text = "splitContainerControl1";
            //
            // gridControlMaster
            //
            this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage")));
            this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlMaster.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlMaster.Location = new System.Drawing.Point(0, 0);
            this.gridControlMaster.LookAndFeel.Style = DevExpress.LookAndFeel.LookAndFeelStyle.UltraFlat;
            this.gridControlMaster.MainView = this.gridViewMaster;
            this.gridControlMaster.Name = "gridControlMaster";
            this.gridControlMaster.Size = new System.Drawing.Size(828, 503);
            this.gridControlMaster.TabIndex = 9;
            this.gridControlMaster.TabStop = false;
            this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewMaster});
            //
            // gridViewMaster
            //
            this.gridViewMaster.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Inch);
            this.gridViewMaster.Appearance.GroupPanel.Options.UseFont = true;
            this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewMaster.Appearance.ViewCaption.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
            this.gridViewMaster.Appearance.ViewCaption.Options.UseBackColor = true;
            this.gridViewMaster.Bands.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBandThongTinChinh,
            this.gridBandNguonGoc,
            this.gridBandThongTinPhatSong,
            this.gridBandThongTinBan,
            this.ThôngtinHD});
            this.gridViewMaster.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn[] {
            this.Col_CT_MaCT,
            this.Col_CT_NgayAWB,
            this.Col_CT_NgayLap,
            this.Col_CT_NguoiLap,
            this.Col_CT_PhongBan,
            this.Col_CT_NoiDung,
            this.Col_CT_TietMuc,
            this.Col_CT_TenGoc,
            this.Col_CT_DaoDien,
            this.Col_CT_DienVien,
            this.Col_CT_KHPL,
            this.Col_CT_DoiTuongKhanGia,
            this.Col_CT_TuKhoa,
            this.Col_CT_KHXK,
            this.Col_CT_TinhTrangBang,
            this.Col_CT_TomTat,
            this.Col_CT_ThanhLy,
            this.Col_CT_GhiChu,
            this.Col_CT_ThongTinBan,
            this.Col_CT_NamSX,
            this.Col_CT_Nuoc,
            this.Col_CT_DonViCungCap,
            this.Col_CT_DonViSoHuu,
            this.Col_CT_KenhHanCheBan,
            this.Col_CT_PhatSongChinh,
            this.Col_CT_TongSoRun,
            this.Col_CT_SoLanPhat,
            this.Col_CT_SoRunConLai,
            this.Col_CT_Release,
            this.Col_CT_Category,
            this.Col_CT_Ranking,
            this.Col_CT_Script,
            this.Col_CT_Photos,
            this.Col_CT_TrailerGoc,
            this.Col_CT_BanQuyenThuoc,
            this.Col_CT_BanQuyenDIDStart,
            this.Col_CT_BanQuyenDIDEnd,
            this.Col_CT_BanQuyenDTNNStart,
            this.Col_CT_BanQuyenDTNNEnd,
            this.Col_CT_BanQuyenHTV,
            this.Col_CT_MuaKem,
            this.Col_CT_PhatSongKhac,
            this.Col_CT_PhatSongLai,
            this.Col_PM_PostMaster,
            this.Col_PM_ThanhLy,
            this.Col_PM_LoaiLuu,
            this.Col_PM_TongTap,
            this.Col_PM_Ke,
            this.Col_PM_Ngan,
            this.Col_PM_Tang,
            this.Col_PM_PopUp,
            this.Col_PM_TTDinhKem,
            this.Col_PM_TraierPost,
            this.Col_PM_NgayNhapKho,
            this.Col_PM_DVDNgayDuyet,
            this.Col_PM_DVDNgayHoanTat,
            this.Col_PM_NoiDungDuyet,
            this.Col_PM_TTHD,
            this.Col_PM_ThoiLuongChung,
            this.Col_BM_ThanhLy,
            this.Col_BM_MaBang,
            this.Col_BM_TapSo,
            this.Col_BM_TenTap,
            this.Col_BM_SoBang,
            this.Col_BM_ThongSo,
            this.Col_BM_ThoiLuong,
            this.Col_BM_SoDKCBHD,
            this.Col_BM_NoiLuuTru});
            this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(747, 292, 215, 205);
            this.gridViewMaster.GridControl = this.gridControlMaster;
            this.gridViewMaster.GroupPanelText = "Các chương trình thỏa điều kiện tìm kiếm";
            this.gridViewMaster.IndicatorWidth = 40;
            this.gridViewMaster.Name = "gridViewMaster";
            this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewMaster.OptionsPrint.UsePrintStyles = true;
            this.gridViewMaster.OptionsSelection.MultiSelect = true;
            this.gridViewMaster.OptionsView.ColumnAutoWidth = false;
            this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewMaster.OptionsView.ShowGroupPanel = false;
            this.gridViewMaster.OptionsView.ShowViewCaption = true;
            this.gridViewMaster.ViewCaption = "Danh sách biên mục (Cấp 3)";
            //
            // gridBandThongTinChinh
            //
            this.gridBandThongTinChinh.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandThongTinChinh.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseFont = true;
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseForeColor = true;
            this.gridBandThongTinChinh.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinChinh.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinChinh.Caption = "Thông tin chính";
            this.gridBandThongTinChinh.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand5,
            this.gridBand4,
            this.gridBand3});
            this.gridBandThongTinChinh.Name = "gridBandThongTinChinh";
            this.gridBandThongTinChinh.Width = 2750;
            //
            // gridBand5
            //
            this.gridBand5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand5.AppearanceHeader.Options.UseFont = true;
            this.gridBand5.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand5.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand5.Caption = "Biên mục (Cấp 3)";
            this.gridBand5.Columns.Add(this.Col_BM_TapSo);
            this.gridBand5.Columns.Add(this.Col_BM_TenTap);
            this.gridBand5.Columns.Add(this.Col_BM_SoBang);
            this.gridBand5.Columns.Add(this.Col_BM_MaBang);
            this.gridBand5.Columns.Add(this.Col_BM_ThoiLuong);
            this.gridBand5.Columns.Add(this.Col_BM_ThongSo);
            this.gridBand5.Columns.Add(this.Col_PM_ThanhLy);
            this.gridBand5.Name = "gridBand5";
            this.gridBand5.Width = 407;
            //
            // Col_BM_TapSo
            //
            this.Col_BM_TapSo.Caption = "Tập số";
            this.Col_BM_TapSo.Name = "Col_BM_TapSo";
            this.Col_BM_TapSo.Visible = true;
            this.Col_BM_TapSo.Width = 44;
            //
            // Col_BM_TenTap
            //
            this.Col_BM_TenTap.Caption = "Tên tập";
            this.Col_BM_TenTap.Name = "Col_BM_TenTap";
            this.Col_BM_TenTap.Visible = true;
            this.Col_BM_TenTap.Width = 49;
            //
            // Col_BM_SoBang
            //
            this.Col_BM_SoBang.Caption = "Số băng";
            this.Col_BM_SoBang.Name = "Col_BM_SoBang";
            this.Col_BM_SoBang.Visible = true;
            this.Col_BM_SoBang.Width = 51;
            //
            // Col_BM_MaBang
            //
            this.Col_BM_MaBang.Caption = "Mã băng";
            this.Col_BM_MaBang.Name = "Col_BM_MaBang";
            this.Col_BM_MaBang.Visible = true;
            this.Col_BM_MaBang.Width = 53;
            //
            // Col_BM_ThoiLuong
            //
            this.Col_BM_ThoiLuong.Caption = "Thời lượng";
            this.Col_BM_ThoiLuong.Name = "Col_BM_ThoiLuong";
            this.Col_BM_ThoiLuong.Visible = true;
            this.Col_BM_ThoiLuong.Width = 62;
            //
            // Col_BM_ThongSo
            //
            this.Col_BM_ThongSo.Caption = "Thông số";
            this.Col_BM_ThongSo.Name = "Col_BM_ThongSo";
            this.Col_BM_ThongSo.Visible = true;
            this.Col_BM_ThongSo.Width = 56;
            //
            // gridBand4
            //
            this.gridBand4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand4.AppearanceHeader.Options.UseFont = true;
            this.gridBand4.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand4.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand4.Caption = "Post/Master (Cấp 2)";
            this.gridBand4.Columns.Add(this.Col_PM_PostMaster);
            this.gridBand4.Columns.Add(this.Col_PM_LoaiLuu);
            this.gridBand4.Columns.Add(this.Col_PM_NoiDungDuyet);
            this.gridBand4.Columns.Add(this.Col_PM_TongTap);
            this.gridBand4.Columns.Add(this.Col_PM_ThoiLuongChung);
            this.gridBand4.Columns.Add(this.Col_PM_PopUp);
            this.gridBand4.Columns.Add(this.Col_PM_TraierPost);
            this.gridBand4.Columns.Add(this.Col_PM_Ke);
            this.gridBand4.Columns.Add(this.Col_PM_Ngan);
            this.gridBand4.Columns.Add(this.Col_PM_Tang);
            this.gridBand4.Columns.Add(this.Col_PM_TTDinhKem);
            this.gridBand4.Columns.Add(this.Col_PM_DVDNgayDuyet);
            this.gridBand4.Columns.Add(this.Col_PM_DVDNgayHoanTat);
            this.gridBand4.Columns.Add(this.Col_BM_ThanhLy);
            this.gridBand4.Name = "gridBand4";
            this.gridBand4.Width = 964;
            //
            // Col_PM_NoiDungDuyet
            //
            this.Col_PM_NoiDungDuyet.Caption = "Nội dung duyệt";
            this.Col_PM_NoiDungDuyet.Name = "Col_PM_NoiDungDuyet";
            this.Col_PM_NoiDungDuyet.Visible = true;
            this.Col_PM_NoiDungDuyet.Width = 85;
            //
            // Col_PM_TraierPost
            //
            this.Col_PM_TraierPost.Caption = "Trailer Post";
            this.Col_PM_TraierPost.Name = "Col_PM_TraierPost";
            this.Col_PM_TraierPost.Visible = true;
            this.Col_PM_TraierPost.Width = 66;
            //
            // Col_BM_ThanhLy
            //
            this.Col_BM_ThanhLy.Caption = "Thanh lý (Cấp 3)";
            this.Col_BM_ThanhLy.Name = "Col_BM_ThanhLy";
            this.Col_BM_ThanhLy.Visible = true;
            this.Col_BM_ThanhLy.Width = 92;
            //
            // gridBand3
            //
            this.gridBand3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand3.AppearanceHeader.Options.UseFont = true;
            this.gridBand3.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand3.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand3.Caption = "Chương trình (Cấp 1)";
            this.gridBand3.Columns.Add(this.Col_CT_MaCT);
            this.gridBand3.Columns.Add(this.Col_CT_NgayAWB);
            this.gridBand3.Columns.Add(this.Col_CT_NgayLap);
            this.gridBand3.Columns.Add(this.Col_CT_NguoiLap);
            this.gridBand3.Columns.Add(this.Col_CT_PhongBan);
            this.gridBand3.Columns.Add(this.Col_CT_Category);
            this.gridBand3.Columns.Add(this.Col_CT_NoiDung);
            this.gridBand3.Columns.Add(this.Col_CT_TenGoc);
            this.gridBand3.Columns.Add(this.Col_CT_TietMuc);
            this.gridBand3.Columns.Add(this.Col_CT_DaoDien);
            this.gridBand3.Columns.Add(this.Col_CT_DienVien);
            this.gridBand3.Columns.Add(this.Col_CT_TomTat);
            this.gridBand3.Columns.Add(this.Col_CT_DoiTuongKhanGia);
            this.gridBand3.Columns.Add(this.Col_CT_KHPL);
            this.gridBand3.Columns.Add(this.Col_CT_KHXK);
            this.gridBand3.Columns.Add(this.Col_CT_TinhTrangBang);
            this.gridBand3.Columns.Add(this.Col_CT_TuKhoa);
            this.gridBand3.Columns.Add(this.Col_CT_ThanhLy);
            this.gridBand3.Columns.Add(this.Col_CT_GhiChu);
            this.gridBand3.Columns.Add(this.Col_CT_Photos);
            this.gridBand3.Columns.Add(this.Col_CT_Ranking);
            this.gridBand3.Columns.Add(this.Col_CT_Script);
            this.gridBand3.Columns.Add(this.Col_CT_TrailerGoc);
            this.gridBand3.Name = "gridBand3";
            this.gridBand3.Width = 1379;
            //
            // Col_CT_MaCT
            //
            this.Col_CT_MaCT.Caption = "Mã chương trình";
            this.Col_CT_MaCT.Name = "Col_CT_MaCT";
            this.Col_CT_MaCT.Visible = true;
            this.Col_CT_MaCT.Width = 90;
            //
            // Col_CT_NgayAWB
            //
            this.Col_CT_NgayAWB.Caption = "Ngày AWB";
            this.Col_CT_NgayAWB.Name = "Col_CT_NgayAWB";
            this.Col_CT_NgayAWB.Visible = true;
            this.Col_CT_NgayAWB.Width = 63;
            //
            // Col_CT_NgayLap
            //
            this.Col_CT_NgayLap.Caption = "Ngày lập";
            this.Col_CT_NgayLap.Name = "Col_CT_NgayLap";
            this.Col_CT_NgayLap.Visible = true;
            this.Col_CT_NgayLap.Width = 54;
            //
            // Col_CT_NguoiLap
            //
            this.Col_CT_NguoiLap.Caption = "Người lập";
            this.Col_CT_NguoiLap.Name = "Col_CT_NguoiLap";
            this.Col_CT_NguoiLap.Visible = true;
            this.Col_CT_NguoiLap.Width = 57;
            //
            // Col_CT_PhongBan
            //
            this.Col_CT_PhongBan.Caption = "Phòng ban";
            this.Col_CT_PhongBan.Name = "Col_CT_PhongBan";
            this.Col_CT_PhongBan.Visible = true;
            this.Col_CT_PhongBan.Width = 63;
            //
            // Col_CT_Category
            //
            this.Col_CT_Category.Caption = "Category";
            this.Col_CT_Category.Name = "Col_CT_Category";
            this.Col_CT_Category.Visible = true;
            this.Col_CT_Category.Width = 57;
            //
            // Col_CT_NoiDung
            //
            this.Col_CT_NoiDung.Caption = "Tên chương trình";
            this.Col_CT_NoiDung.Name = "Col_CT_NoiDung";
            this.Col_CT_NoiDung.Visible = true;
            this.Col_CT_NoiDung.Width = 94;
            //
            // Col_CT_TenGoc
            //
            this.Col_CT_TenGoc.Caption = "Tên gốc";
            this.Col_CT_TenGoc.Name = "Col_CT_TenGoc";
            this.Col_CT_TenGoc.Visible = true;
            this.Col_CT_TenGoc.Width = 50;
            //
            // Col_CT_TietMuc
            //
            this.Col_CT_TietMuc.Caption = "Tiết mục";
            this.Col_CT_TietMuc.Name = "Col_CT_TietMuc";
            this.Col_CT_TietMuc.Visible = true;
            this.Col_CT_TietMuc.Width = 52;
            //
            // Col_CT_DaoDien
            //
            this.Col_CT_DaoDien.Caption = "Đạo diễn";
            this.Col_CT_DaoDien.Name = "Col_CT_DaoDien";
            this.Col_CT_DaoDien.Visible = true;
            this.Col_CT_DaoDien.Width = 55;
            //
            // Col_CT_DienVien
            //
            this.Col_CT_DienVien.Caption = "Diễn viên";
            this.Col_CT_DienVien.Name = "Col_CT_DienVien";
            this.Col_CT_DienVien.Visible = true;
            this.Col_CT_DienVien.Width = 56;
            //
            // Col_CT_TomTat
            //
            this.Col_CT_TomTat.Caption = "Tóm tắt";
            this.Col_CT_TomTat.Name = "Col_CT_TomTat";
            this.Col_CT_TomTat.Visible = true;
            this.Col_CT_TomTat.Width = 49;
            //
            // Col_CT_DoiTuongKhanGia
            //
            this.Col_CT_DoiTuongKhanGia.Caption = "Đối tượng khán giả";
            this.Col_CT_DoiTuongKhanGia.Name = "Col_CT_DoiTuongKhanGia";
            this.Col_CT_DoiTuongKhanGia.Visible = true;
            this.Col_CT_DoiTuongKhanGia.Width = 103;
            //
            // Col_CT_KHPL
            //
            this.Col_CT_KHPL.Caption = "KHPL";
            this.Col_CT_KHPL.Name = "Col_CT_KHPL";
            this.Col_CT_KHPL.ToolTip = "Ký hiệu phân loại";
            this.Col_CT_KHPL.Visible = true;
            this.Col_CT_KHPL.Width = 36;
            //
            // Col_CT_KHXK
            //
            this.Col_CT_KHXK.Caption = "KHXK";
            this.Col_CT_KHXK.Name = "Col_CT_KHXK";
            this.Col_CT_KHXK.ToolTip = "Ký hiệu xếp kho";
            this.Col_CT_KHXK.Visible = true;
            this.Col_CT_KHXK.Width = 37;
            //
            // Col_CT_TinhTrangBang
            //
            this.Col_CT_TinhTrangBang.Caption = "Tình trạng CT";
            this.Col_CT_TinhTrangBang.Name = "Col_CT_TinhTrangBang";
            this.Col_CT_TinhTrangBang.Visible = true;
            this.Col_CT_TinhTrangBang.Width = 77;
            //
            // Col_CT_TuKhoa
            //
            this.Col_CT_TuKhoa.Caption = "Từ khóa";
            this.Col_CT_TuKhoa.Name = "Col_CT_TuKhoa";
            this.Col_CT_TuKhoa.Visible = true;
            this.Col_CT_TuKhoa.Width = 51;
            //
            // Col_CT_ThanhLy
            //
            this.Col_CT_ThanhLy.Caption = "Thanh lý (Cấp 1)";
            this.Col_CT_ThanhLy.Name = "Col_CT_ThanhLy";
            this.Col_CT_ThanhLy.Visible = true;
            this.Col_CT_ThanhLy.Width = 92;
            //
            // Col_CT_GhiChu
            //
            this.Col_CT_GhiChu.Caption = "Ghi chú";
            this.Col_CT_GhiChu.Name = "Col_CT_GhiChu";
            this.Col_CT_GhiChu.Visible = true;
            this.Col_CT_GhiChu.Width = 47;
            //
            // Col_CT_Photos
            //
            this.Col_CT_Photos.Caption = "Photos";
            this.Col_CT_Photos.Name = "Col_CT_Photos";
            this.Col_CT_Photos.Visible = true;
            this.Col_CT_Photos.Width = 45;
            //
            // Col_CT_Ranking
            //
            this.Col_CT_Ranking.Caption = "Ranking";
            this.Col_CT_Ranking.Name = "Col_CT_Ranking";
            this.Col_CT_Ranking.Visible = true;
            this.Col_CT_Ranking.Width = 50;
            //
            // Col_CT_Script
            //
            this.Col_CT_Script.Caption = "Script";
            this.Col_CT_Script.Name = "Col_CT_Script";
            this.Col_CT_Script.Visible = true;
            this.Col_CT_Script.Width = 39;
            //
            // Col_CT_TrailerGoc
            //
            this.Col_CT_TrailerGoc.Caption = "Trailer gốc";
            this.Col_CT_TrailerGoc.Name = "Col_CT_TrailerGoc";
            this.Col_CT_TrailerGoc.Visible = true;
            this.Col_CT_TrailerGoc.Width = 62;
            //
            // gridBandNguonGoc
            //
            this.gridBandNguonGoc.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandNguonGoc.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandNguonGoc.AppearanceHeader.Options.UseFont = true;
            this.gridBandNguonGoc.AppearanceHeader.Options.UseForeColor = true;
            this.gridBandNguonGoc.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandNguonGoc.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandNguonGoc.Caption = "Nguồn gốc";
            this.gridBandNguonGoc.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand1,
            this.gridBand2});
            this.gridBandNguonGoc.Name = "gridBandNguonGoc";
            this.gridBandNguonGoc.Width = 1174;
            //
            // gridBand1
            //
            this.gridBand1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand1.AppearanceHeader.Options.UseFont = true;
            this.gridBand1.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand1.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand1.Caption = "Thông tin sở hữu";
            this.gridBand1.Columns.Add(this.Col_CT_NamSX);
            this.gridBand1.Columns.Add(this.Col_CT_Nuoc);
            this.gridBand1.Columns.Add(this.Col_CT_DonViCungCap);
            this.gridBand1.Columns.Add(this.Col_CT_DonViSoHuu);
            this.gridBand1.Columns.Add(this.Col_CT_KenhHanCheBan);
            this.gridBand1.Columns.Add(this.Col_CT_ThongTinBan);
            this.gridBand1.Name = "gridBand1";
            this.gridBand1.Width = 444;
            //
            // Col_CT_NamSX
            //
            this.Col_CT_NamSX.Caption = "Năm SX";
            this.Col_CT_NamSX.Name = "Col_CT_NamSX";
            this.Col_CT_NamSX.Visible = true;
            this.Col_CT_NamSX.Width = 48;
            //
            // Col_CT_Nuoc
            //
            this.Col_CT_Nuoc.Caption = "Nước SX";
            this.Col_CT_Nuoc.Name = "Col_CT_Nuoc";
            this.Col_CT_Nuoc.ToolTip = "Nước sản xuất";
            this.Col_CT_Nuoc.Visible = true;
            this.Col_CT_Nuoc.Width = 52;
            //
            // Col_CT_DonViCungCap
            //
            this.Col_CT_DonViCungCap.Caption = "Đơn vị cung cấp";
            this.Col_CT_DonViCungCap.Name = "Col_CT_DonViCungCap";
            this.Col_CT_DonViCungCap.Visible = true;
            this.Col_CT_DonViCungCap.Width = 89;
            //
            // Col_CT_DonViSoHuu
            //
            this.Col_CT_DonViSoHuu.Caption = "Đơn vị sở hữu";
            this.Col_CT_DonViSoHuu.Name = "Col_CT_DonViSoHuu";
            this.Col_CT_DonViSoHuu.Visible = true;
            this.Col_CT_DonViSoHuu.Width = 79;
            //
            // Col_CT_KenhHanCheBan
            //
            this.Col_CT_KenhHanCheBan.Caption = "Kênh hạn chế bán";
            this.Col_CT_KenhHanCheBan.Name = "Col_CT_KenhHanCheBan";
            this.Col_CT_KenhHanCheBan.Visible = true;
            this.Col_CT_KenhHanCheBan.Width = 98;
            //
            // Col_CT_ThongTinBan
            //
            this.Col_CT_ThongTinBan.Caption = "Thông tin bán";
            this.Col_CT_ThongTinBan.Name = "Col_CT_ThongTinBan";
            this.Col_CT_ThongTinBan.Visible = true;
            this.Col_CT_ThongTinBan.Width = 78;
            //
            // gridBand2
            //
            this.gridBand2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand2.AppearanceHeader.Options.UseFont = true;
            this.gridBand2.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand2.Caption = "Thời hạn bản quyền";
            this.gridBand2.Columns.Add(this.Col_PM_NgayNhapKho);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenThuoc);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDIDEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNStart);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenDTNNEnd);
            this.gridBand2.Columns.Add(this.Col_CT_BanQuyenHTV);
            this.gridBand2.Name = "gridBand2";
            this.gridBand2.Width = 730;
            //
            // Col_CT_BanQuyenThuoc
            //
            this.Col_CT_BanQuyenThuoc.Caption = "Bản quyền thuộc";
            this.Col_CT_BanQuyenThuoc.Name = "Col_CT_BanQuyenThuoc";
            this.Col_CT_BanQuyenThuoc.Visible = true;
            this.Col_CT_BanQuyenThuoc.Width = 93;
            //
            // Col_CT_BanQuyenDIDStart
            //
            this.Col_CT_BanQuyenDIDStart.Caption = "Bản quyền DTTN Start";
            this.Col_CT_BanQuyenDIDStart.Name = "Col_CT_BanQuyenDIDStart";
            this.Col_CT_BanQuyenDIDStart.ToolTip = "Bản quyền đối tác trong nước Start";
            this.Col_CT_BanQuyenDIDStart.Visible = true;
            this.Col_CT_BanQuyenDIDStart.Width = 119;
            //
            // Col_CT_BanQuyenDIDEnd
            //
            this.Col_CT_BanQuyenDIDEnd.Caption = "Bản quyền DTTN End";
            this.Col_CT_BanQuyenDIDEnd.Name = "Col_CT_BanQuyenDIDEnd";
            this.Col_CT_BanQuyenDIDEnd.ToolTip = "Bản quyền đối tác trong nước End";
            this.Col_CT_BanQuyenDIDEnd.Visible = true;
            this.Col_CT_BanQuyenDIDEnd.Width = 113;
            //
            // Col_CT_BanQuyenDTNNStart
            //
            this.Col_CT_BanQuyenDTNNStart.Caption = "Bản quyền ĐTNN Start";
            this.Col_CT_BanQuyenDTNNStart.Name = "Col_CT_BanQuyenDTNNStart";
            this.Col_CT_BanQuyenDTNNStart.ToolTip = "Bản quyền  đối tác nước ngoài Start";
            this.Col_CT_BanQuyenDTNNStart.Visible = true;
            this.Col_CT_BanQuyenDTNNStart.Width = 121;
            //
            // Col_CT_BanQuyenDTNNEnd
            //
            this.Col_CT_BanQuyenDTNNEnd.Caption = "Bản quyền ĐTNN End";
            this.Col_CT_BanQuyenDTNNEnd.Name = "Col_CT_BanQuyenDTNNEnd";
            this.Col_CT_BanQuyenDTNNEnd.ToolTip = "Bản quyền đối tác nước ngoài End";
            this.Col_CT_BanQuyenDTNNEnd.Visible = true;
            this.Col_CT_BanQuyenDTNNEnd.Width = 115;
            //
            // Col_CT_BanQuyenHTV
            //
            this.Col_CT_BanQuyenHTV.Caption = "Bản quyền HTV";
            this.Col_CT_BanQuyenHTV.Name = "Col_CT_BanQuyenHTV";
            this.Col_CT_BanQuyenHTV.Visible = true;
            this.Col_CT_BanQuyenHTV.Width = 85;
            //
            // gridBandThongTinPhatSong
            //
            this.gridBandThongTinPhatSong.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBandThongTinPhatSong.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseFont = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseForeColor = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinPhatSong.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinPhatSong.Caption = "Thông tin phát sóng";
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_MuaKem);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongChinh);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_PhatSongKhac);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_TongSoRun);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoLanPhat);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_SoRunConLai);
            this.gridBandThongTinPhatSong.Columns.Add(this.Col_CT_Release);
            this.gridBandThongTinPhatSong.Name = "gridBandThongTinPhatSong";
            this.gridBandThongTinPhatSong.Width = 794;
            //
            // Col_CT_MuaKem
            //
            this.Col_CT_MuaKem.Caption = "Mua kèm";
            this.Col_CT_MuaKem.Name = "Col_CT_MuaKem";
            this.Col_CT_MuaKem.Visible = true;
            this.Col_CT_MuaKem.Width = 54;
            //
            // Col_CT_PhatSongChinh
            //
            this.Col_CT_PhatSongChinh.Caption = "Thời gian P/S chính";
            this.Col_CT_PhatSongChinh.Name = "Col_CT_PhatSongChinh";
            this.Col_CT_PhatSongChinh.ToolTip = "Những ngày phát lần đầu tương ứng trên các đài";
            this.Col_CT_PhatSongChinh.Visible = true;
            this.Col_CT_PhatSongChinh.Width = 102;
            //
            // Col_CT_PhatSongLai
            //
            this.Col_CT_PhatSongLai.Caption = "Thời gian P/S lại";
            this.Col_CT_PhatSongLai.Name = "Col_CT_PhatSongLai";
            this.Col_CT_PhatSongLai.ToolTip = "Những ngày phát lần đầu (nhưng phát lại) tương ứng trên các đài";
            this.Col_CT_PhatSongLai.Visible = true;
            this.Col_CT_PhatSongLai.Width = 87;
            //
            // Col_CT_PhatSongKhac
            //
            this.Col_CT_PhatSongKhac.Caption = "Thời gian P/S trên kênh khác";
            this.Col_CT_PhatSongKhac.Name = "Col_CT_PhatSongKhac";
            this.Col_CT_PhatSongKhac.ToolTip = "Thời gian phát sóng trên kênh khác";
            this.Col_CT_PhatSongKhac.Visible = true;
            this.Col_CT_PhatSongKhac.Width = 148;
            //
            // Col_CT_TongSoRun
            //
            this.Col_CT_TongSoRun.Caption = "Tổng số Run";
            this.Col_CT_TongSoRun.Name = "Col_CT_TongSoRun";
            this.Col_CT_TongSoRun.Visible = true;
            this.Col_CT_TongSoRun.Width = 72;
            //
            // Col_CT_SoLanPhat
            //
            this.Col_CT_SoLanPhat.Caption = "Tồng số lần đã phát (đã Run)";
            this.Col_CT_SoLanPhat.Name = "Col_CT_SoLanPhat";
            this.Col_CT_SoLanPhat.Visible = true;
            this.Col_CT_SoLanPhat.Width = 152;
            //
            // Col_CT_SoRunConLai
            //
            this.Col_CT_SoRunConLai.Caption = "Số Run còn lại";
            this.Col_CT_SoRunConLai.Name = "Col_CT_SoRunConLai";
            this.Col_CT_SoRunConLai.Visible = true;
            this.Col_CT_SoRunConLai.Width = 79;
            //
            // Col_CT_Release
            //
            this.Col_CT_Release.Caption = "Release (Số ngày)";
            this.Col_CT_Release.Name = "Col_CT_Release";
            this.Col_CT_Release.Visible = true;
            this.Col_CT_Release.Width = 100;
            //
            // gridBandThongTinBan
            //
            this.gridBandThongTinBan.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBandThongTinBan.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBandThongTinBan.Caption = "Thông tin bán";
            this.gridBandThongTinBan.Name = "gridBandThongTinBan";
            this.gridBandThongTinBan.OptionsBand.ShowInCustomizationForm = false;
            this.gridBandThongTinBan.Visible = false;
            this.gridBandThongTinBan.Width = 67;
            //
            // ThôngtinHD
            //
            this.ThôngtinHD.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.ThôngtinHD.AppearanceHeader.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(192)))));
            this.ThôngtinHD.AppearanceHeader.Options.UseFont = true;
            this.ThôngtinHD.AppearanceHeader.Options.UseForeColor = true;
            this.ThôngtinHD.AppearanceHeader.Options.UseTextOptions = true;
            this.ThôngtinHD.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.ThôngtinHD.Caption = "Thông tin HD";
            this.ThôngtinHD.Children.AddRange(new DevExpress.XtraGrid.Views.BandedGrid.GridBand[] {
            this.gridBand7,
            this.gridBand6});
            this.ThôngtinHD.Name = "ThôngtinHD";
            this.ThôngtinHD.Width = 286;
            //
            // gridBand7
            //
            this.gridBand7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand7.AppearanceHeader.Options.UseFont = true;
            this.gridBand7.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand7.Caption = "Biên mục (Cấp 3)";
            this.gridBand7.Columns.Add(this.Col_BM_SoDKCBHD);
            this.gridBand7.Columns.Add(this.Col_BM_NoiLuuTru);
            this.gridBand7.Name = "gridBand7";
            this.gridBand7.Width = 212;
            //
            // Col_BM_SoDKCBHD
            //
            this.Col_BM_SoDKCBHD.Caption = "Số ĐKCB HD (Cấp 3)";
            this.Col_BM_SoDKCBHD.Name = "Col_BM_SoDKCBHD";
            this.Col_BM_SoDKCBHD.Visible = true;
            this.Col_BM_SoDKCBHD.Width = 110;
            //
            // Col_BM_NoiLuuTru
            //
            this.Col_BM_NoiLuuTru.Caption = "Nơi lưu trữ (Cấp 3)";
            this.Col_BM_NoiLuuTru.Name = "Col_BM_NoiLuuTru";
            this.Col_BM_NoiLuuTru.Visible = true;
            this.Col_BM_NoiLuuTru.Width = 102;
            //
            // gridBand6
            //
            this.gridBand6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
            this.gridBand6.AppearanceHeader.Options.UseFont = true;
            this.gridBand6.AppearanceHeader.Options.UseTextOptions = true;
            this.gridBand6.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridBand6.Caption = "Post/Master (Cấp 2)";
            this.gridBand6.Columns.Add(this.Col_PM_TTHD);
            this.gridBand6.Name = "gridBand6";
            this.gridBand6.Width = 74;
            //
            // xtraTabControlDetail
            //
            this.xtraTabControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.xtraTabControlDetail.Location = new System.Drawing.Point(0, 0);
            this.xtraTabControlDetail.Name = "xtraTabControlDetail";
            this.xtraTabControlDetail.SelectedTabPage = this.xtraTabPageDetail;
            this.xtraTabControlDetail.Size = new System.Drawing.Size(828, 40);
            this.xtraTabControlDetail.TabIndex = 11;
            this.xtraTabControlDetail.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
            this.xtraTabPageDetail});
            this.xtraTabControlDetail.Visible = false;
            //
            // xtraTabPageDetail
            //
            this.xtraTabPageDetail.Controls.Add(this.gridControlDetail);
            this.xtraTabPageDetail.Name = "xtraTabPageDetail";
            this.xtraTabPageDetail.Size = new System.Drawing.Size(821, 11);
            this.xtraTabPageDetail.Text = "Post/Master";
            //
            // gridControlDetail
            //
            this.gridControlDetail.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlDetail.BackgroundImage")));
            this.gridControlDetail.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
            this.gridControlDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.gridControlDetail.Location = new System.Drawing.Point(0, 0);
            this.gridControlDetail.MainView = this.gridViewDetail;
            this.gridControlDetail.Name = "gridControlDetail";
            this.gridControlDetail.Size = new System.Drawing.Size(821, 11);
            this.gridControlDetail.TabIndex = 9;
            this.gridControlDetail.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
            this.gridViewDetail});
            //
            // gridViewDetail
            //
            this.gridViewDetail.Appearance.HeaderPanel.Options.UseTextOptions = true;
            this.gridViewDetail.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
            this.gridViewDetail.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
            this.gridViewDetail.GridControl = this.gridControlDetail;
            this.gridViewDetail.IndicatorWidth = 40;
            this.gridViewDetail.Name = "gridViewDetail";
            this.gridViewDetail.OptionsLayout.Columns.AddNewColumns = false;
            this.gridViewDetail.OptionsNavigation.AutoFocusNewRow = true;
            this.gridViewDetail.OptionsNavigation.EnterMoveNextColumn = true;
            this.gridViewDetail.OptionsPrint.UsePrintStyles = true;
            this.gridViewDetail.OptionsView.EnableAppearanceEvenRow = true;
            this.gridViewDetail.OptionsView.EnableAppearanceOddRow = true;
            this.gridViewDetail.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom;
            this.gridViewDetail.OptionsView.ShowGroupedColumns = true;
            this.gridViewDetail.OptionsView.ShowGroupPanel = false;
            this.gridViewDetail.OptionsView.ShowViewCaption = true;
            this.gridViewDetail.ViewCaption = "Post/Master (Cấp 2)";
            //
            // barButtonItemThongKe
            //
            this.barButtonItemThongKe.Caption = "&Thống kê";
            this.barButtonItemThongKe.Id = 43;
            this.barButtonItemThongKe.Name = "barButtonItemThongKe";
            this.barButtonItemThongKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph;
            //
            // frmBienMucSearchQL
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1028, 734);
            this.Controls.Add(this.splitContainerControl1);
            this.Controls.Add(this.dockPanelSimple);
            this.Controls.Add(this.dockPanelAdvance);
            this.Controls.Add(this.barDockControlLeft);
            this.Controls.Add(this.barDockControlRight);
            this.Controls.Add(this.barDockControlBottom);
            this.Controls.Add(this.barDockControlTop);
            this.Name = "frmBienMucSearchQL";
            this.Text = "Tra cứu biên mục";
            ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu2)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu3)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.popupMenuFilter)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dockManager1)).EndInit();
            this.dockPanelAdvance.ResumeLayout(false);
            this.dockPanel2_Container.ResumeLayout(false);
            this.dockPanelSimple.ResumeLayout(false);
            this.dockPanel1_Container.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.popupControlContainerFilter)).EndInit();
            this.popupControlContainerFilter.ResumeLayout(false);
            this.popupControlContainerFilter.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TapSoTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenTap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoDKCBHD.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.LoaiLuuTru.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TimeslotTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunConLaiDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.SoRunDaDungDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TongSoRunTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTNNEndTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties.VistaTimeProperties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BQDTTNEndTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXDen.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NamSXTu.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.BanQuyenThuoc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.DonViCungCap.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.TietMuc.Properties)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).EndInit();
            this.splitContainerControl1.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlDetail)).EndInit();
            this.xtraTabControlDetail.ResumeLayout(false);
            this.xtraTabPageDetail.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.gridControlDetail)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.gridViewDetail)).EndInit();
            this.ResumeLayout(false);
        }
 private void setCriteriaFromView(FilterControl filter)
 {
     var criteriaWrapper = new CriteriaWrapper(View.ObjectTypeInfo.Type, View.Info.GetAttributeValue(GridListEditor.ActiveFilterString), false);
     new FilterWithObjectsProcessor(ObjectSpace).Process(criteriaWrapper.CriteriaOperator,
                                                         FilterWithObjectsProcessorMode.StringToObject);
     filter.FilterCriteria =criteriaWrapper.CriteriaOperator;
 }
示例#38
0
 public XpandFilterTreeNodeModel(FilterControl control) : base(control)
 {
     OnNotifyControl += OnOnNotifyControl;
 }
        private void tvDefinitionNodeMouseClick(object sender, TreeNodeMouseClickEventArgs e)
        {
            TreeNode selectedNode = e.Node;

            selectedNode.TreeView.SelectedNode = selectedNode;
            var collec = (Dictionary <string, string>)selectedNode.Tag;

            TreeNodeHelper.AddContextMenu(e.Node, this);
            Control existingControl = panelContainer.Controls.Count > 0 ? panelContainer.Controls[0] : null;

            this.deleteToolStripMenuItem.Text = "Delete " + selectedNode.Text;

            UserControl ctrl = null;

            switch (selectedNode.Text.Split(' ')[0])
            {
            case "ShuffleDefinition":
                ctrl = new ShuffleDefinitionControl(collec, this);
                break;

            case "DataBlock":
                ctrl = new DataBlockControl(collec, this);
                break;

            case "SolutionBlock":
                ctrl = new SolutionBlockControl(collec, this);
                break;

            case "Export":
                if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("DataBlock"))
                {
                    ctrl = new DataBlockExportControl(collec, this);
                }
                else if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("SolutionBlock"))
                {
                    ctrl = new SolutionBlockExportControl(collec, this);
                }
                break;

            case "Import":
                if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("DataBlock"))
                {
                    ctrl = new DataBlockImportControl(collec, this);
                }
                else if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("SolutionBlock"))
                {
                    ctrl = new SolutionBlockImportControl(collec, this);
                }
                break;

            case "Relation":
                ctrl = new RelationControl(collec, selectedNode, this);
                break;

            case "Attribute":
                if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("Attributes"))
                {
                    ctrl = new ExportAttributeControl(collec, this);
                }
                else if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("Match"))
                {
                    ctrl = new ImportAttributeControl(collec, this);
                }
                break;

            case "Filter":
                ctrl = new FilterControl(collec, this);
                break;

            case "Sort":
                ctrl = new SortControl(collec, this);
                break;

            case "Match":
                ctrl = new ImportMatchControl(collec, this);
                break;

            case "Settings":
                ctrl = new SettingsControl(collec, this);
                break;

            case "Solution":
                if (selectedNode.Parent != null && selectedNode.Parent.Text.StartsWith("PreRequisites"))
                {
                    ctrl = new PreReqSolutionControl(collec, this);
                }
                break;

            default:
            {
                panelContainer.Controls.Clear();
                tsbItemSave.Visible = false;
            }
            break;
            }
            if (ctrl != null)
            {
                panelContainer.Controls.Add(ctrl);
                ctrl.BringToFront();
                if (existingControl != null)
                {
                    panelContainer.Controls.Remove(existingControl);
                }
                tsbItemSave.Visible = true;
            }

            ManageMenuDisplay();
        }