/// <summary> /// Khởi tạo định dạng lỗi trên Grid /// </summary> /// <param name="grid">Grid cần khởi tạo định dạng lỗi</param> public void AddFormatCond(PLGridView grid) { DataSet ds = ((DataTable)grid.GridControl.DataSource).DataSet; //Khởi tạo cột Check GridColumn colCheck = new GridColumn(); colCheck.FieldName = "CHECK"; colCheck.Visible = false; if (!ds.Tables[0].Columns.Contains("CHECK")) ds.Tables[0].Columns.Add("CHECK"); if (!grid.Columns.Contains(colCheck)) grid.Columns.Add(colCheck); //Khởi tạo cột thông báo vi phạm GridColumn colVipham = new GridColumn(); colVipham.FieldName = "VI_PHAM"; colVipham.Visible = false; if (!ds.Tables[0].Columns.Contains("VI_PHAM")) ds.Tables[0].Columns.Add("VI_PHAM"); if (!grid.Columns.Contains(colVipham)) grid.Columns.Add(colVipham); StyleFormatCondition styleFormatCond = new StyleFormatCondition(); styleFormatCond.Appearance.BackColor = System.Drawing.Color.Red; styleFormatCond.Appearance.Options.UseBackColor = true; styleFormatCond.ApplyToRow = true; styleFormatCond.Column = colCheck; styleFormatCond.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal; styleFormatCond.Value1 = 0; grid.FormatConditions.AddRange(new StyleFormatCondition[] { styleFormatCond }); }
/// <summary> /// /// </summary> /// <param name="dsPhieuNguon">Là 1 DataSet phải có các cột HH_ID,SO_LUONG và DataSet này gồm /// \n các mã hàng hóa với số lượng còn lại chưa tạo ra phiếu khác</param> /// <param name="gridDich">Là Lưới chứa các mã hàng hóa của phiếu đích</param> public static bool KiemTraRangBuoc(DataSet dsPhieuNguon, PLGridView gridDich) { // thuc hien doi mau dong vi pham rang buoc ve so luong TaoDieuKienLoc(gridDich); bool ViPhamRangBuoc = false; for (int i = 0; i < gridDich.RowCount; i++) { for (int k = 0; k < dsPhieuNguon.Tables[0].Rows.Count; k++) { DataRow rowNguon= dsPhieuNguon.Tables[0].Rows[k]; DataRow rowDich=gridDich.GetDataRow(i); if (HelpNumber.ParseInt64(rowDich["HH_ID"]) == HelpNumber.ParseInt64(rowNguon["HH_ID"])) { if (HelpNumber.ParseDecimal(rowDich["SO_LUONG"]) > HelpNumber.ParseDecimal(rowNguon["SO_LUONG"])) { gridDich.SetRowCellValue(i, gridDich.Columns["CHECK"], 0); ViPhamRangBuoc = true; } else gridDich.SetRowCellValue(i, gridDich.Columns["CHECK"], 1); } } } return ViPhamRangBuoc; }
//Chú ý tên table trong DataTable phải giống như tên table mà mình cần thao tác thêm xóa public static PLGridViewUpdate ToPLGridViewUpdate(GridControl grid, PLGridView gridView, DataTable DataSource, string IDField, string[] NameFields, string[] Subjects, InitGridColumns InitGridCol, GetRule Rule, DelegationLib.DefinePermission permission, PLDelegation.ProcessDataRow InsertFunc, PLDelegation.ProcessDataRow DeleteFunc, PLDelegation.ProcessDataRow UpdateFunc, int RowPerPage) { PLGridViewUpdate update = new PLGridViewUpdate(); for (int i = 0; i < gridView.Columns.Count; i++) { update.gridView.Columns.Add(gridView.Columns[i]); } update._init(DataSource, IDField, NameFields, Subjects, InitGridCol, Rule, permission, InsertFunc, DeleteFunc, UpdateFunc); PLGridViewUpdateHelp page = new PLGridViewUpdateHelp(update.gridControl, RowPerPage, update); page.AddFunction = update.AddAction; page.DeleteFunction = update.DeleteAction; page.EditFunction = update.EditAction; page.NoSaveFunction = update.NoSaveAction; page.PrintFunction = update.PrintAction; page.SaveFunction = update.SaveAction; update.Dock = grid.Dock; update.Location = grid.Location; return update; }
public static bool Check(RangBuocSoLgTrLgExt rule, PhieuType Src, long SrcID, PhieuType Des, long DesID, Object DesObj, PLGridView DesGrid) { //Lay danh sach cac phieu thuoc nhom phieu des duoc tao tu (Src, SrcID) //Duoc xay dung tu PhieuLienQuan List (TYPE_ID, ID) List<object[]> LObj = DAPhieuLienQuan.GetListPhieuLienQuan(SrcID, Src, Des); return rule.Check(Src, SrcID, LObj, Des, DesID, DesObj, DesGrid); }
public RangBuocSoLgTrLgExt(PhieuType Src, long SrcID, PhieuType Des, long DesID, object DesObj, PLGridView DesGrid) { this.Src = Src; this.SrcID = SrcID; this.Des = Des; this.DesID = DesID; this.DesObj = DesObj; this.DesGrid = DesGrid; }
//NumPerPage -- So dong tren 1 trang public PagerGrid(GridControl gridCtrl,PLGridView gridViewPL, int NumPerPage) { InitializeComponent(); this.gridControl = gridCtrl; this.gridView = gridViewPL; this.Name = gridCtrl.Name + "pager"; if (this.gridControl.Controls.ContainsKey(this.Name)) { this.gridControl.Controls.RemoveByKey(this.Name); } this.gridControl.Controls.Add(this); this.BringToFront(); this.Dock = DockStyle.Bottom; if (!this.DesignMode) { InitPager(NumPerPage); } }
public static DataTable ViPhamRangBuoc(long ID_PhieuNguon, PhieuType LoaiPhieuNguon,PLGridView gridDich) { DataSet dsNguon = Get_SoLuongConLai(ID_PhieuNguon, LoaiPhieuNguon); DataTable dtViPham = new DataTable(); dtViPham.Columns.Add("HH_ID", Type.GetType("Int64")); dtViPham.Columns.Add("VI_PHAM"); if (dsNguon == null || dsNguon.Tables[0].Rows.Count == 0) return dtViPham; for (int i = 0; i < gridDich.RowCount; i++) { DataRow rowDich = gridDich.GetDataRow(i); DataRow rowViPham = dtViPham.NewRow(); bool exists = false; for (int k = 0; k < dsNguon.Tables[0].Rows.Count; k++) { DataRow rowNguon = dsNguon.Tables[0].Rows[k]; if (HelpNumber.ParseInt64(rowDich["HH_ID"]) == HelpNumber.ParseInt64(rowNguon["HH_ID"])) { // HH_ID co ton tai trong phieu nguon exists = true; if (HelpNumber.ParseDecimal(rowDich["SO_LUONG"]) > HelpNumber.ParseDecimal(rowNguon["SO_LUONG"])) { rowViPham["HH_ID"] = rowDich["HH_ID"]; rowViPham["VI_PHAM"] = "Vi phạm về ràng buộc số lượng"; dtViPham.Rows.Add(rowViPham); } } } if (!exists) { rowViPham["HH_ID"] = rowDich["HH_ID"]; rowViPham["VI_PHAM"] = "Mã hàng này không có trong phiếu nguồn"; dtViPham.Rows.Add(rowViPham); } } return dtViPham; }
public RangBuocTonKho(PLGridView DesGrid, DataSet DetailDataSet, DataSet GridDataSetSrc, PhieuType Des, long Kho_Id, bool? IsAdd) { this.DesGrid = DesGrid; if (DetailDataSet != null && DetailDataSet.Tables.Count > 0) { if (IsAdd == true) this.DetailDataTable = DetailDataSet.Tables[0]; else { foreach (DataRow rowLast in DetailDataSet.Tables[0].Rows) { foreach (DataRow rowFirst in GridDataSetSrc.Tables[0].Rows) { if (rowLast.RowState != DataRowState.Deleted) { if ((HelpNumber.ParseInt64(rowLast["HH_ID"]) == HelpNumber.ParseInt64(rowFirst["HH_ID"])) && (HelpNumber.ParseInt64(rowLast[Des.GetSTTField()]) == HelpNumber.ParseInt64(rowFirst[Des.GetSTTField()]))) { rowLast[Des.GetSOLGField()] = HelpNumber.ParseDecimal(rowLast[Des.GetSOLGField()]) - HelpNumber.ParseDecimal(rowFirst[Des.GetSOLGField()]); rowLast[Des.GetTRLGField()] = HelpNumber.ParseDecimal(rowLast[Des.GetTRLGField()]) - HelpNumber.ParseDecimal(rowFirst[Des.GetTRLGField()]); } } } } this.DetailDataTable = DetailDataSet.Tables[0]; } } this.Des = Des; this.Kho_Id = Kho_Id; }
private bool IsShowCheckForUnCheckAllItem(PLGridView gridView, GridColumn column) { DataTable source = (DataTable)gridView.GridControl.DataSource; foreach (DataRow row in source.Rows) if (row[column.FieldName].ToString() == "Y") return false; return true; }
private object DMNhanVien(PLGridView pLGridView) { throw new NotImplementedException(); }
private void SetCheckAllColumnStatus(PLGridView gridView, CellValueChangedEventArgs e) { DataRow row = gridView.GetDataRow(e.RowHandle); if (e.Column.FieldName == "ISFULL_BIT") { string bit_str = e.Value.ToString(); row["ISFULL_BIT"] = bit_str; row["ISCREATE_BIT"] = bit_str; row["ISREAD_BIT"] = bit_str; row["ISUPDATE_BIT"] = bit_str; row["ISDELETE_BIT"] = bit_str; } else { string bit_str = e.Value.ToString(); row[e.Column.FieldName] = bit_str; row["ISFULL_BIT"] = (row["ISCREATE_BIT"].ToString() == "N" || row["ISREAD_BIT"].ToString() == "N" || row["ISUPDATE_BIT"].ToString() == "N" || row["ISDELETE_BIT"].ToString() == "N") ? "N" : "Y"; gridView.UpdateCurrentRow(); } }
void Allow(bool flag, PLGridView gridView) { if (flag == false) { Duyet.Enabled = false; gridView.OptionsView.NewItemRowPosition = NewItemRowPosition.None; gridView.OptionsBehavior.Editable = false; btnSave.Enabled = false; } else { Duyet.Enabled = false; gridView.OptionsView.NewItemRowPosition = NewItemRowPosition.Top; gridView.OptionsBehavior.Editable = true; btnSave.Enabled = true; } }
//Trả về số lượng, trọng lượng còn lại có thể chấp nhận private bool Check(PhieuType Src, long SrcID, List<object[]> LObj, PhieuType Des, long DesID, object DesObj, PLGridView DesGrid) { ISoLgTrLg data = (ISoLgTrLg)DesObj; //Tạo DataTable(HH_ID, SO_LUONG, TRONG_LUONG, TINH_TRANG) DataTable dt_lienquan = RangBuocSoLgTrLgExtHelp.CreateDTHangHoa(LObj, DesID); DataTable dt_sum = new DataTable(); dt_sum = RangBuocSoLgTrLgExtHelp.GetData_Standard(Src, SrcID).Tables[0]; //Lấy HH_ID, SO_LUONG, TRONG_LUONG, TINH_TRANG cua DesObj nếu tồn tại if (data != null) { DataTable dt_des = data.GetSoLgTrLg().Copy(); if (RangBuocSoLgTrLgExtHelp.DieuChinhTenCot(dt_des, Des)) { //Merge thêm vào dt_lienquan từ dt_des RangBuocSoLgTrLgExtHelp.MergeAddHangHoaExt(ref dt_lienquan, dt_des); } } //Kiểm tra ràng buộc về số lượng và trọng lượng //Kết quả trả về DataTable miêu tả các dòng vi phạm DataTable dt_vipham = RangBuocSoLgTrLgExtHelp.KiemTraRangBuocExt(dt_sum, dt_lienquan); if (dt_vipham.Rows.Count != 0 && DesGrid != null) RangBuocSoLgTrLgExtHelp.ShowErrorOnGridExt(DesGrid, dt_vipham, Des); //Merge giảm vào dt_sum từ dt_lienquan RangBuocSoLgTrLgExtHelp.MergeMinusHangHoaExt(ref dt_sum, dt_lienquan); //Set số lượng còn lại ConLai = dt_sum; //Nếu dt_vipham không tồn tại dòng vi phạm và phiếu nguồn chưa tạo hết phiếu liên quan bool flag = false; if (data != null) { if (dt_vipham.Rows.Count == 0) flag = true; } else { if (RangBuocSoLgTrLgHelp.KiemTraTaoPhieu(ConLai)) flag = true; } return flag; }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPCTXemLichPhatSong)); this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components); this.xemTrướcToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components); this.gridControlMaster = new DevExpress.XtraGrid.GridControl(); this.gridViewMaster = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.CotKenhPhat = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotNgayPhatSong = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotGioPhatSong = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotThoiLuong = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotTietMuc = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotNoiDung = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotTapSo = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotMaBang = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotSoLanDaPhat = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotNgayPhatLanDau = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotDonViSoHuu = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotDonViCungCap = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotNuocSanXuat = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotDoiTuongKhanGia = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotRating = new DevExpress.XtraGrid.Columns.GridColumn(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.ngayPhatSong = new ProtocolVN.Framework.Win.Trial.PLDateSelection(); this.MainBar = new DevExpress.XtraBars.Bar(); this.bar2 = new DevExpress.XtraBars.Bar(); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); this.bar3 = new DevExpress.XtraBars.Bar(); this.barButtonItemLietKe = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem(); this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItemXemTruoc = new DevExpress.XtraBars.BarButtonItem(); this.barButtonItemCapNhat = 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.kenhPhat = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.label5 = new System.Windows.Forms.PLLabel(); this.ctMnuInPhieu.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.kenhPhat.Properties)).BeginInit(); this.SuspendLayout(); // // ctMnuInPhieu // this.ctMnuInPhieu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.xemTrướcToolStripMenuItem}); this.ctMnuInPhieu.Name = "contextMenuStrip2"; this.ctMnuInPhieu.Size = new System.Drawing.Size(135, 26); // // xemTrướcToolStripMenuItem // this.xemTrướcToolStripMenuItem.Name = "xemTrướcToolStripMenuItem"; this.xemTrướcToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.xemTrướcToolStripMenuItem.Text = "Xem trước"; // // ctMnuNghiepVu // this.ctMnuNghiepVu.Name = "contextMenuStrip3"; this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4); // // gridControlMaster // this.gridControlMaster.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.gridControlMaster.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlMaster.BackgroundImage"))); this.gridControlMaster.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlMaster.Location = new System.Drawing.Point(6, 66); this.gridControlMaster.MainView = this.gridViewMaster; this.gridControlMaster.Name = "gridControlMaster"; this.gridControlMaster.Size = new System.Drawing.Size(726, 458); this.gridControlMaster.TabIndex = 28; this.gridControlMaster.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewMaster}); // // gridViewMaster // this.gridViewMaster.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewMaster.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewMaster.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.CotKenhPhat, this.CotNgayPhatSong, this.CotGioPhatSong, this.CotThoiLuong, this.CotTietMuc, this.CotNoiDung, this.CotTapSo, this.CotMaBang, this.CotSoLanDaPhat, this.CotNgayPhatLanDau, this.CotDonViSoHuu, this.CotDonViCungCap, this.CotNuocSanXuat, this.CotDoiTuongKhanGia, this.CotRating}); this.gridViewMaster.CustomizationFormBounds = new System.Drawing.Rectangle(264, 408, 208, 168); this.gridViewMaster.GridControl = this.gridControlMaster; this.gridViewMaster.GroupPanelText = "Di chuyển tiêu đề vào đây để gom nhóm theo cột tiêu đề"; this.gridViewMaster.IndicatorWidth = 40; this.gridViewMaster.Name = "gridViewMaster"; this.gridViewMaster.OptionsBehavior.AutoExpandAllGroups = true; this.gridViewMaster.OptionsBehavior.Editable = false; this.gridViewMaster.OptionsLayout.Columns.AddNewColumns = false; this.gridViewMaster.OptionsNavigation.AutoFocusNewRow = true; this.gridViewMaster.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewMaster.OptionsPrint.UsePrintStyles = true; this.gridViewMaster.OptionsView.ColumnAutoWidth = false; this.gridViewMaster.OptionsView.EnableAppearanceEvenRow = true; this.gridViewMaster.OptionsView.EnableAppearanceOddRow = true; this.gridViewMaster.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Bottom; this.gridViewMaster.OptionsView.ShowGroupedColumns = true; this.gridViewMaster.OptionsView.ShowViewCaption = true; this.gridViewMaster.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotNgayPhatSong, DevExpress.Data.ColumnSortOrder.Descending), new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotGioPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridViewMaster.ViewCaption = "PCT XEM THÔNG TIN LỊCH PHÁT SÓNG"; // // CotKenhPhat // this.CotKenhPhat.Caption = "Kênh phát"; this.CotKenhPhat.Name = "CotKenhPhat"; this.CotKenhPhat.OptionsColumn.AllowEdit = false; this.CotKenhPhat.OptionsColumn.AllowFocus = false; this.CotKenhPhat.OptionsColumn.ReadOnly = true; // // CotNgayPhatSong // this.CotNgayPhatSong.Caption = "Ngày"; this.CotNgayPhatSong.Name = "CotNgayPhatSong"; this.CotNgayPhatSong.OptionsColumn.AllowEdit = false; this.CotNgayPhatSong.OptionsColumn.AllowFocus = false; this.CotNgayPhatSong.OptionsColumn.ReadOnly = true; this.CotNgayPhatSong.Width = 101; // // CotGioPhatSong // this.CotGioPhatSong.Caption = "Giờ"; this.CotGioPhatSong.MinWidth = 79; this.CotGioPhatSong.Name = "CotGioPhatSong"; this.CotGioPhatSong.Width = 78; // // CotThoiLuong // this.CotThoiLuong.Caption = "Thời lượng"; this.CotThoiLuong.Name = "CotThoiLuong"; this.CotThoiLuong.Width = 62; // // CotTietMuc // this.CotTietMuc.Caption = "Tiết mục"; this.CotTietMuc.Name = "CotTietMuc"; this.CotTietMuc.OptionsColumn.AllowEdit = false; this.CotTietMuc.OptionsColumn.AllowFocus = false; this.CotTietMuc.OptionsColumn.ReadOnly = true; this.CotTietMuc.Width = 65; // // CotNoiDung // this.CotNoiDung.Caption = "Nội dung"; this.CotNoiDung.Name = "CotNoiDung"; this.CotNoiDung.Width = 54; // // CotTapSo // this.CotTapSo.Caption = "Tập số"; this.CotTapSo.Name = "CotTapSo"; this.CotTapSo.Width = 44; // // CotMaBang // this.CotMaBang.Caption = "Mã băng"; this.CotMaBang.FieldName = "CotMaBang"; this.CotMaBang.Name = "CotMaBang"; this.CotMaBang.Width = 53; // // CotSoLanDaPhat // this.CotSoLanDaPhat.Caption = "Số lần đã phát"; this.CotSoLanDaPhat.Name = "CotSoLanDaPhat"; this.CotSoLanDaPhat.Width = 132; // // CotNgayPhatLanDau // this.CotNgayPhatLanDau.Caption = "Ngày phát đầu tiên"; this.CotNgayPhatLanDau.Name = "CotNgayPhatLanDau"; this.CotNgayPhatLanDau.Width = 151; // // CotDonViSoHuu // this.CotDonViSoHuu.Caption = "Đơn vị sở hữu"; this.CotDonViSoHuu.Name = "CotDonViSoHuu"; this.CotDonViSoHuu.Width = 79; // // CotDonViCungCap // this.CotDonViCungCap.Caption = "Đơn vị cung cấp"; this.CotDonViCungCap.Name = "CotDonViCungCap"; this.CotDonViCungCap.Width = 89; // // CotNuocSanXuat // this.CotNuocSanXuat.Caption = "Nước SX"; this.CotNuocSanXuat.Name = "CotNuocSanXuat"; this.CotNuocSanXuat.Width = 52; // // CotDoiTuongKhanGia // this.CotDoiTuongKhanGia.Caption = "Đối tượng khán giả"; this.CotDoiTuongKhanGia.Name = "CotDoiTuongKhanGia"; this.CotDoiTuongKhanGia.Width = 103; // // CotRating // this.CotRating.Caption = "Rating trung bình (%)"; this.CotRating.Name = "CotRating"; this.CotRating.Width = 95; // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(230, 40); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(76, 13); this.labelControl3.TabIndex = 30; this.labelControl3.Text = "Ngày phát sóng"; // // ngayPhatSong // this.ngayPhatSong.Caption = "Ngày 11/1/2010"; this.ngayPhatSong.Default = ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate; this.ngayPhatSong.FirstFrom = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.FirstTo = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.FromDate = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.Location = new System.Drawing.Point(312, 37); this.ngayPhatSong.Name = "ngayPhatSong"; this.ngayPhatSong.ReturnType = ProtocolVN.Framework.Win.Trial.TimeType.Date; this.ngayPhatSong.SecondFrom = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.SecondTo = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.SelectedType = ProtocolVN.Framework.Win.Trial.SelectionTypes.OneDate; this.ngayPhatSong.Size = new System.Drawing.Size(154, 20); this.ngayPhatSong.TabIndex = 35; this.ngayPhatSong.ToDate = new System.DateTime(2010, 11, 1, 11, 39, 31, 298); this.ngayPhatSong.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))); // // MainBar // this.MainBar.BarName = "MainBar"; this.MainBar.CanDockStyle = DevExpress.XtraBars.BarCanDockStyle.Top; 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.OptionsBar.AllowQuickCustomization = false; this.MainBar.OptionsBar.DrawDragBorder = false; this.MainBar.OptionsBar.RotateWhenVertical = false; this.MainBar.OptionsBar.UseWholeRow = true; this.MainBar.Text = "Chức năng"; // // bar2 // this.bar2.BarName = "MainBar"; this.bar2.DockCol = 0; this.bar2.DockRow = 0; this.bar2.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.bar2.FloatLocation = new System.Drawing.Point(39, 133); this.bar2.FloatSize = new System.Drawing.Size(72, 73); this.bar2.OptionsBar.AllowQuickCustomization = false; this.bar2.OptionsBar.DrawDragBorder = false; this.bar2.OptionsBar.RotateWhenVertical = false; this.bar2.OptionsBar.UseWholeRow = true; this.bar2.Text = "Custom 1"; // // barManager1 // this.barManager1.AllowCustomization = false; this.barManager1.AllowMoveBarOnToolbar = false; this.barManager1.AllowQuickCustomization = false; this.barManager1.Bars.AddRange(new DevExpress.XtraBars.Bar[] { this.bar3}); this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.Items.AddRange(new DevExpress.XtraBars.BarItem[] { this.barButtonItemLietKe, this.barButtonItemPrint, this.barButtonItemCapNhat, this.barButtonItemXemTruoc}); this.barManager1.MaxItemId = 5; // // bar3 // this.bar3.BarName = "Mainmenu"; this.bar3.DockCol = 0; this.bar3.DockRow = 0; this.bar3.DockStyle = DevExpress.XtraBars.BarDockStyle.Top; this.bar3.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemLietKe), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemPrint, true), new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemCapNhat, true)}); this.bar3.OptionsBar.AllowQuickCustomization = false; this.bar3.OptionsBar.DisableCustomization = true; this.bar3.OptionsBar.DrawDragBorder = false; this.bar3.OptionsBar.Hidden = true; this.bar3.OptionsBar.UseWholeRow = true; this.bar3.Text = "Main menu"; // // barButtonItemLietKe // this.barButtonItemLietKe.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.barButtonItemLietKe.Appearance.ForeColor = System.Drawing.Color.Blue; this.barButtonItemLietKe.Appearance.Options.UseFont = true; this.barButtonItemLietKe.Appearance.Options.UseForeColor = true; this.barButtonItemLietKe.Caption = "&Liệt kê"; this.barButtonItemLietKe.Id = 0; this.barButtonItemLietKe.Name = "barButtonItemLietKe"; this.barButtonItemLietKe.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemLietKe.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemLietKe_ItemClick); // // barButtonItemPrint // this.barButtonItemPrint.ButtonStyle = DevExpress.XtraBars.BarButtonStyle.DropDown; this.barButtonItemPrint.Caption = "&In"; this.barButtonItemPrint.DropDownControl = this.popupMenu1; this.barButtonItemPrint.Id = 1; this.barButtonItemPrint.Name = "barButtonItemPrint"; this.barButtonItemPrint.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemPrint.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemPrint_ItemClick); // // popupMenu1 // this.popupMenu1.LinksPersistInfo.AddRange(new DevExpress.XtraBars.LinkPersistInfo[] { new DevExpress.XtraBars.LinkPersistInfo(this.barButtonItemXemTruoc)}); this.popupMenu1.Manager = this.barManager1; this.popupMenu1.Name = "popupMenu1"; // // barButtonItemXemTruoc // this.barButtonItemXemTruoc.Caption = "&Xem trước"; this.barButtonItemXemTruoc.Id = 4; this.barButtonItemXemTruoc.Name = "barButtonItemXemTruoc"; this.barButtonItemXemTruoc.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemXemTruoc.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemXem_ItemClick); // // barButtonItemCapNhat // this.barButtonItemCapNhat.Caption = "&Cập nhật"; this.barButtonItemCapNhat.Id = 2; this.barButtonItemCapNhat.Name = "barButtonItemCapNhat"; this.barButtonItemCapNhat.PaintStyle = DevExpress.XtraBars.BarItemPaintStyle.CaptionGlyph; this.barButtonItemCapNhat.ItemClick += new DevExpress.XtraBars.ItemClickEventHandler(this.barButtonItemCapNhat_ItemClick); // // barDockControlTop // this.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top; this.barDockControlTop.Location = new System.Drawing.Point(0, 0); this.barDockControlTop.Size = new System.Drawing.Size(740, 24); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 530); this.barDockControlBottom.Size = new System.Drawing.Size(740, 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, 506); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(740, 24); this.barDockControlRight.Size = new System.Drawing.Size(0, 506); // // kenhPhat // this.kenhPhat.DataSource = null; this.kenhPhat.DisplayField = null; this.kenhPhat.Location = new System.Drawing.Point(67, 37); this.kenhPhat.Name = "kenhPhat"; this.kenhPhat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.kenhPhat.Size = new System.Drawing.Size(140, 20); this.kenhPhat.TabIndex = 197; this.kenhPhat.ValueField = null; // // label5 // this.label5.Location = new System.Drawing.Point(12, 40); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(49, 13); this.label5.TabIndex = 196; this.label5.Text = "Kênh phát"; this.label5.ZZZType = System.Windows.Forms.PLLabel.LabelType.NORMAL; // // frmPCTXemLichPhatSong // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(740, 530); this.Controls.Add(this.kenhPhat); this.Controls.Add(this.label5); this.Controls.Add(this.gridControlMaster); this.Controls.Add(this.labelControl3); this.Controls.Add(this.ngayPhatSong); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Name = "frmPCTXemLichPhatSong"; this.Text = "PCT xem lịch phát sóng"; this.Load += new System.EventHandler(this.frmPCTViewThongTinHangNgay_Load); this.ctMnuInPhieu.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewMaster)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.popupMenu1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.kenhPhat.Properties)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Thể hiện lỗi trên Grid dựa vào DataTable chứa các dòng lỗi /// </summary> /// <param name="gridDich">Grid cần thể hiện lỗi</param> /// <param name="dt_error">DataTable các dòng lỗi</param> public static void ShowErrorOnGridExt(PLGridView gridDich, DataTable dt_error, PhieuType Des) { RangBuocSoLgTrLgHelp.AddFormatCond(gridDich); for (int i = 0; i < gridDich.RowCount; i++) { gridDich.SetRowCellValue(i, gridDich.Columns["CHECK"], 1); gridDich.SetRowCellValue(i, gridDich.Columns["VI_PHAM"], ""); foreach (DataRow dr_error in dt_error.Rows) { DataRow rowDich = gridDich.GetDataRow(i); if ((HelpNumber.ParseInt64(rowDich["HH_ID"]) == HelpNumber.ParseInt64(dr_error["HH_ID"])) && (HelpNumber.ParseInt64(rowDich[Des.GetSTTField()]) == HelpNumber.ParseInt64(dr_error["TINH_TRANG"]))) { gridDich.SetRowCellValue(i, gridDich.Columns["CHECK"], 0); gridDich.SetRowCellValue(i, gridDich.Columns["VI_PHAM"], dr_error["VI_PHAM"]); gridDich.UpdateCurrentRow(); gridDich.OptionsView.ShowPreview = true; gridDich.OptionsView.AutoCalcPreviewLineCount = true; gridDich.PreviewFieldName = "VI_PHAM"; gridDich.CustomDrawRowPreview += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler( RangBuocSoLgTrLgHelp.gridDich_CustomDrawRowPreview); } } } }
private bool Check(PhieuType Src, long SrcID, List<object[]> LObj, PhieuType Des, long DesID, object DesObj, PLGridView DesGrid) { ISoTien data = (ISoTien)DesObj; DataTable dt_lienquan = RangBuocThanhTienHelp.CreateSoTien(LObj,SrcID, DesID); DataTable dt_sum = RangBuocThanhTienHelp.CreateSoTien(Src, SrcID); if (data != null) { if (dt_lienquan.Rows.Count == 0) { dt_lienquan.Rows.Add(dt_lienquan.NewRow()); dt_lienquan.Rows[0]["SO_TIEN"] = 0; } dt_lienquan.Rows[0]["SO_TIEN"] = data.GetSoTienThu()+ HelpNumber.ParseDecimal(dt_lienquan.Rows[0]["SO_TIEN"]); } bool chapnhan = RangBuocThanhTienHelp.KiemTraRangBuoc(dt_sum, dt_lienquan); ConLai=dt_sum.Clone(); if(data!=null) { if (!chapnhan) { decimal tong_tien=HelpNumber.ParseDecimal(dt_sum.Rows[0][0]); decimal so_tien_lienquan=HelpNumber.ParseDecimal(dt_lienquan.Rows[0][0]); string vi_pham="Vi phạm ràng buộc về Số tiền. Số tiền cho phép: <=" + (tong_tien - (so_tien_lienquan-data.GetSoTienThu())) + " !"; RangBuocThanhTienHelp.ShowErrorOnGrid( DesGrid,vi_pham); return false; } } else { if (chapnhan) { if (dt_lienquan == null || dt_lienquan.Rows.Count == 0) ConLai = dt_sum; else { dt_sum.Rows[0]["SO_TIEN"] = HelpNumber.ParseDecimal(dt_sum.Rows[0]["SO_TIEN"]) - HelpNumber.ParseDecimal(dt_lienquan.Rows[0]["SO_TIEN"]); ConLai = dt_sum; } if (HelpNumber.ParseDecimal(ConLai.Rows[0][0]) == 0) return false; } else return false; } return true; }
private void init(GridControl gridCtrl, DataSet dataset, PLGridView gridview, bool isUpdate, string[] ListCaption) { this.gridCtrl = gridCtrl; if (dataset!=null) this.ds = dataset; if (gridview != null) this.gv = gridview; else this.gv = new PLGridView(); this.gv.OptionsBehavior.Editable = isUpdate; this.LoadColumnFromDataSet(isUpdate); if (ListCaption != null) setCaption(ListCaption); //XtraGridSupport.BitCBBToCheckImageCombo(this.gv); }
public static List<DataRow> GetSelectedDataRow(PLGridView gridView) { List<DataRow> rowList = new List<DataRow>(); if (gridView.GetSelectedRows() != null) { foreach (int index in gridView.GetSelectedRows()) { if (index > -1) rowList.Add(gridView.GetDataRow(index)); } } return rowList; }
public PLDynamicGrid(GridControl gridCtrl, DataSet dataset, bool isUpdate, PLGridView gv) { init(gridCtrl, dataset, gv, isUpdate, null); DisplayData(); }
private void ProcessUnCheckAll(PLGridView gridView, GridColumn column) { DataTable source = (DataTable)gridView.GridControl.DataSource; foreach (DataRow row in source.Rows) { if (column.FieldName == "ISFULL_BIT") { row["ISFULL_BIT"] = "N"; row["ISCREATE_BIT"] = "N"; row["ISREAD_BIT"] = "N"; row["ISUPDATE_BIT"] = "N"; row["ISDELETE_BIT"] = "N"; } else { row[column.FieldName] = "N"; row["ISFULL_BIT"] = "N"; } } }
/// <summary> /// Tạo ra một PL Grid với số field trong dataset tương ứng với các phần tử trong mảng listCaption /// isUpdate : true -> Cho phép cập nhật trên lưới /// : false -> Không cho phép cập nhật trên lưới /// Không tạo mới GridView /// </summary> public PLDynamicGrid(GridControl gridCtrl, DataSet dataset, bool isUpdate, string[] listCaption, PLGridView gridview) { init(gridCtrl, dataset, gridview, isUpdate, listCaption); DisplayData(); }
private static void TaoDieuKienLoc(PLGridView grid) { GridColumn colDK= new GridColumn(); colDK.FieldName="CHECK"; colDK.Visible = false; DataSet ds = ((DataTable)grid.GridControl.DataSource).DataSet; ds.Tables[0].Columns.Add("CHECK"); grid.Columns.Add(colDK); /////////// styleFormatCondition1.Appearance.BackColor = System.Drawing.Color.Red;//FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); styleFormatCondition1.Appearance.ForeColor = System.Drawing.Color.Blue; styleFormatCondition1.Appearance.Options.UseBackColor = true; styleFormatCondition1.Appearance.Options.UseForeColor = true; styleFormatCondition1.ApplyToRow = true; styleFormatCondition1.Column = colDK; styleFormatCondition1.Condition = DevExpress.XtraGrid.FormatConditionEnum.Equal; styleFormatCondition1.Value1 = 0; grid.FormatConditions.AddRange(new StyleFormatCondition[] { styleFormatCondition1 }); }
/// <summary> /// Tạo ra một PL Grid với dữ liệu là trong tableName /// Các field trong table phải map với tên caption trong mảng ListCaption /// Không Tạo GridView mới /// </summary> public PLDynamicGrid(GridControl gridCtrl, String tableName, bool isUpdate, string[] ListCaption, PLGridView gridview) { this.ds = DABase.getDatabase().LoadTable(tableName); init(gridCtrl, null, gridview, isUpdate, ListCaption); DisplayData(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmBienMuc)); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.btnClose = new DevExpress.XtraEditors.SimpleButton(); this.btnDelete = new DevExpress.XtraEditors.SimpleButton(); this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton(); this.btnRestore = new DevExpress.XtraEditors.SimpleButton(); this.btnSave = new DevExpress.XtraEditors.SimpleButton(); this.InPhieu = new DevExpress.XtraEditors.DropDownButton(); this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components); this.NghiepVu = new DevExpress.XtraEditors.DropDownButton(); this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components); this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox(); this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel(); this.label3 = new DevExpress.XtraEditors.LabelControl(); this.MaBang = new DevExpress.XtraEditors.TextEdit(); this.label7 = new DevExpress.XtraEditors.LabelControl(); this.label8 = new DevExpress.XtraEditors.LabelControl(); this.label11 = new DevExpress.XtraEditors.LabelControl(); this.LoaiBang = new ProtocolVN.Framework.Win.PLDMGrid(); this.label13 = new DevExpress.XtraEditors.LabelControl(); this.ThongSoLoaiBang = new ProtocolVN.Framework.Win.PLDMGrid(); this.label16 = new DevExpress.XtraEditors.LabelControl(); this.label18 = new DevExpress.XtraEditors.LabelControl(); this.label19 = new DevExpress.XtraEditors.LabelControl(); this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit(); this.label21 = new DevExpress.XtraEditors.LabelControl(); this.label22 = new DevExpress.XtraEditors.LabelControl(); this.label23 = new DevExpress.XtraEditors.LabelControl(); this.label2 = new DevExpress.XtraEditors.LabelControl(); this.label4 = new DevExpress.XtraEditors.LabelControl(); this.label5 = new DevExpress.XtraEditors.LabelControl(); this.label15 = new DevExpress.XtraEditors.LabelControl(); this.lblTitle = new DevExpress.XtraEditors.LabelControl(); this.SODKHD = new ProtocolVN.Framework.Win.PLCombobox(); this.PostMaster = new DevExpress.XtraEditors.RadioGroup(); this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.NoiLuuTru = new DevExpress.XtraEditors.ButtonEdit(); this.label38 = new DevExpress.XtraEditors.LabelControl(); this.label34 = new DevExpress.XtraEditors.LabelControl(); this.label27 = new DevExpress.XtraEditors.LabelControl(); this.label32 = new DevExpress.XtraEditors.LabelControl(); this.groupControl2 = new DevExpress.XtraEditors.GroupControl(); this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl(); this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.CotDaiTruyenHinh = new DevExpress.XtraGrid.Columns.GridColumn(); this.CotNgayPhat = new DevExpress.XtraGrid.Columns.GridColumn(); this.Rating = new DevExpress.XtraEditors.CalcEdit(); this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.label14 = new DevExpress.XtraEditors.LabelControl(); this.groupControl3 = new DevExpress.XtraEditors.GroupControl(); this.ThoiHanBanQuyen = new DevExpress.XtraEditors.DateEdit(); this.BanQuyen_Other = new DevExpress.XtraEditors.TextEdit(); this.BanQuyen = new DevExpress.XtraEditors.ComboBoxEdit(); this.label1 = new DevExpress.XtraEditors.LabelControl(); this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid(); this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid(); this.label25 = new DevExpress.XtraEditors.LabelControl(); this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit(); this.groupControl4 = new DevExpress.XtraEditors.GroupControl(); this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.ThanhLy = new DevExpress.XtraEditors.CheckEdit(); this.groupControl8 = new DevExpress.XtraEditors.GroupControl(); this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit(); this.textEdit1 = new DevExpress.XtraEditors.TextEdit(); this.Tang = new DevExpress.XtraEditors.SpinEdit(); this.label24 = new DevExpress.XtraEditors.LabelControl(); this.Ngan = new DevExpress.XtraEditors.SpinEdit(); this.SoBang = new DevExpress.XtraEditors.SpinEdit(); this.ThoiLuong = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.Ke = new DevExpress.XtraEditors.SpinEdit(); this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.label12 = new DevExpress.XtraEditors.LabelControl(); this.NgayNhap = new DevExpress.XtraEditors.DateEdit(); this.TongTap = new DevExpress.XtraEditors.PLSpinEdit(); this.label30 = new DevExpress.XtraEditors.LabelControl(); this.GhiChu = new DevExpress.XtraEditors.MemoEdit(); this.DinhKem = new DevExpress.XtraEditors.MemoEdit(); this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit(); this.label31 = new DevExpress.XtraEditors.LabelControl(); this.label20 = new DevExpress.XtraEditors.LabelControl(); this.label9 = new DevExpress.XtraEditors.LabelControl(); this.label10 = new DevExpress.XtraEditors.LabelControl(); this.SoTap = new DevExpress.XtraEditors.PLSpinEdit(); this.PopUp = new DevExpress.XtraEditors.RadioGroup(); this.label33 = new DevExpress.XtraEditors.LabelControl(); this.label36 = new DevExpress.XtraEditors.LabelControl(); this.label17 = new DevExpress.XtraEditors.LabelControl(); this.Info = new ProtocolVN.Framework.Win.PLInfoBox(); this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid(); this.TenGoc = new DevExpress.XtraEditors.TextEdit(); this.label42 = new DevExpress.XtraEditors.LabelControl(); this.NgayMuon = new DevExpress.XtraEditors.DateEdit(); this.label28 = new DevExpress.XtraEditors.LabelControl(); this.label29 = new DevExpress.XtraEditors.LabelControl(); this.groupControl6 = new DevExpress.XtraEditors.GroupControl(); this.btnNhapTimeCode = new DevExpress.XtraEditors.SimpleButton(); this.groupControl5 = new DevExpress.XtraEditors.GroupControl(); this.TimeCode_Betacam_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.TimeCode_Betacam_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.label37 = new DevExpress.XtraEditors.LabelControl(); this.TimeCode_Betacam_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.groupControl7 = new DevExpress.XtraEditors.GroupControl(); this.TimeCode_File_Duration = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.TimeCode_File_In = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.TimeCode_File_Out = new ProtocolVN.App.VideoLibrary.TimeCodeCtrl(); this.DoiTuongMuon = new DevExpress.XtraEditors.TextEdit(); this.ThongTinMuon = new DevExpress.XtraEditors.MemoEdit(); this.label41 = new DevExpress.XtraEditors.LabelControl(); this.label40 = new DevExpress.XtraEditors.LabelControl(); this.label39 = new DevExpress.XtraEditors.LabelControl(); this.groupControl10 = new DevExpress.XtraEditors.GroupControl(); this.flowLayoutPanel1.SuspendLayout(); this.flowLayoutPanel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).BeginInit(); this.groupControl2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).BeginInit(); this.groupControl3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).BeginInit(); this.groupControl4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit(); this.groupControl8.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).BeginInit(); this.groupControl6.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).BeginInit(); this.groupControl5.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit(); this.groupControl7.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).BeginInit(); this.groupControl10.SuspendLayout(); this.SuspendLayout(); // // flowLayoutPanel1 // this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.flowLayoutPanel1.Controls.Add(this.btnClose); this.flowLayoutPanel1.Controls.Add(this.btnDelete); this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy); this.flowLayoutPanel1.Controls.Add(this.btnRestore); this.flowLayoutPanel1.Controls.Add(this.btnSave); this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft; this.flowLayoutPanel1.Location = new System.Drawing.Point(443, 614); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31); this.flowLayoutPanel1.TabIndex = 26; // // btnClose // this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnClose.Location = new System.Drawing.Point(337, 3); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(75, 23); this.btnClose.TabIndex = 2; this.btnClose.Text = "Đ&óng"; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // btnDelete // this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDelete.Location = new System.Drawing.Point(256, 3); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(75, 23); this.btnDelete.TabIndex = 1; this.btnDelete.Text = "&Xóa"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnDeleteRealy // this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3); this.btnDeleteRealy.Name = "btnDeleteRealy"; this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23); this.btnDeleteRealy.TabIndex = 1; this.btnDeleteRealy.Text = "&Xóa hẳn"; this.btnDeleteRealy.Visible = false; this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click); // // btnRestore // this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRestore.Location = new System.Drawing.Point(94, 3); this.btnRestore.Name = "btnRestore"; this.btnRestore.Size = new System.Drawing.Size(75, 23); this.btnRestore.TabIndex = 1; this.btnRestore.Text = "&Phục hồi"; this.btnRestore.Visible = false; this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click); // // btnSave // this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnSave.Location = new System.Drawing.Point(13, 3); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(75, 23); this.btnSave.TabIndex = 0; this.btnSave.Text = "&Lưu"; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // InPhieu // this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.InPhieu.Location = new System.Drawing.Point(151, 3); this.InPhieu.Name = "InPhieu"; this.InPhieu.Size = new System.Drawing.Size(81, 23); this.InPhieu.TabIndex = 1; this.InPhieu.Text = "&In nhãn"; // // ctMnuInPhieu // this.ctMnuInPhieu.Name = "contextMenuStrip2"; this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4); // // NghiepVu // this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.NghiepVu.Location = new System.Drawing.Point(238, 3); this.NghiepVu.Name = "NghiepVu"; this.NghiepVu.Size = new System.Drawing.Size(81, 23); this.NghiepVu.TabIndex = 2; this.NghiepVu.Text = "Nghiệp vụ"; this.NghiepVu.Visible = false; // // ctMnuNghiepVu // this.ctMnuNghiepVu.Name = "contextMenuStrip3"; this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4); // // Duyet // this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.Duyet.Enabled = false; this.Duyet.Location = new System.Drawing.Point(3, 6); this.Duyet.Name = "Duyet"; this.Duyet.Size = new System.Drawing.Size(142, 20); this.Duyet.TabIndex = 0; this.Duyet.Visible = false; // // flowLayoutPanel2 // this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.flowLayoutPanel2.Controls.Add(this.Duyet); this.flowLayoutPanel2.Controls.Add(this.InPhieu); this.flowLayoutPanel2.Controls.Add(this.NghiepVu); this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 614); this.flowLayoutPanel2.Name = "flowLayoutPanel2"; this.flowLayoutPanel2.Size = new System.Drawing.Size(335, 31); this.flowLayoutPanel2.TabIndex = 25; // // label3 // this.label3.Appearance.ForeColor = System.Drawing.Color.Blue; this.label3.Appearance.Options.UseForeColor = true; this.label3.Location = new System.Drawing.Point(9, 52); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(41, 13); this.label3.TabIndex = 0; this.label3.Text = "Mã băng"; // // MaBang // this.MaBang.Location = new System.Drawing.Point(85, 48); this.MaBang.Name = "MaBang"; this.MaBang.Properties.MaxLength = 100; this.MaBang.Properties.ReadOnly = true; this.MaBang.Size = new System.Drawing.Size(124, 20); this.MaBang.TabIndex = 0; this.MaBang.TabStop = false; // // label7 // this.label7.Location = new System.Drawing.Point(8, 128); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(40, 13); this.label7.TabIndex = 0; this.label7.Text = "Tiết mục"; // // label8 // this.label8.Location = new System.Drawing.Point(9, 77); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(42, 13); this.label8.TabIndex = 0; this.label8.Text = "Nội dung"; // // label11 // this.label11.Location = new System.Drawing.Point(293, 128); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(39, 13); this.label11.TabIndex = 0; this.label11.Text = "Số băng"; // // LoaiBang // this.LoaiBang.Location = new System.Drawing.Point(85, 150); this.LoaiBang.Name = "LoaiBang"; this.LoaiBang.Size = new System.Drawing.Size(199, 20); this.LoaiBang.TabIndex = 120; this.LoaiBang.ZZZWidthFactor = 2F; // // label13 // this.label13.Location = new System.Drawing.Point(9, 154); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(55, 13); this.label13.TabIndex = 0; this.label13.Text = "Loại lưu trữ"; // // ThongSoLoaiBang // this.ThongSoLoaiBang.Location = new System.Drawing.Point(352, 150); this.ThongSoLoaiBang.Name = "ThongSoLoaiBang"; this.ThongSoLoaiBang.Size = new System.Drawing.Size(145, 20); this.ThongSoLoaiBang.TabIndex = 120; this.ThongSoLoaiBang.ZZZWidthFactor = 2F; // // label16 // this.label16.Appearance.ForeColor = System.Drawing.Color.Red; this.label16.Appearance.Options.UseForeColor = true; this.label16.Location = new System.Drawing.Point(8, 202); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(49, 13); this.label16.TabIndex = 0; this.label16.Text = "Tình trạng"; // // label18 // this.label18.Location = new System.Drawing.Point(8, 32); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(59, 13); this.label18.TabIndex = 0; this.label18.Text = "Số ĐKCB HD"; // // label19 // this.label19.Location = new System.Drawing.Point(9, 59); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(51, 13); this.label19.TabIndex = 0; this.label19.Text = "Nơi lưu trữ"; // // KyHieuPhanLoai // this.KyHieuPhanLoai.Location = new System.Drawing.Point(85, 253); this.KyHieuPhanLoai.Name = "KyHieuPhanLoai"; this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true; this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuPhanLoai.Size = new System.Drawing.Size(199, 20); this.KyHieuPhanLoai.TabIndex = 5; this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // label21 // this.label21.Location = new System.Drawing.Point(9, 253); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(24, 13); this.label21.TabIndex = 0; this.label21.Text = "KHPL"; this.label21.ToolTip = "Ký hiệu phân loại"; // // label22 // this.label22.Appearance.ForeColor = System.Drawing.Color.Blue; this.label22.Appearance.Options.UseForeColor = true; this.label22.Location = new System.Drawing.Point(293, 254); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(25, 13); this.label22.TabIndex = 0; this.label22.Text = "KHXK"; this.label22.ToolTip = "Ký hiệu xếp kho"; // // label23 // this.label23.Location = new System.Drawing.Point(8, 229); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(66, 13); this.label23.TabIndex = 0; this.label23.Text = "Kệ,ngăn,tầng"; // // label2 // this.label2.Location = new System.Drawing.Point(9, 54); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(67, 13); this.label2.TabIndex = 0; this.label2.Text = "Đơn vị sở hữu"; // // label4 // this.label4.Location = new System.Drawing.Point(8, 28); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(77, 13); this.label4.TabIndex = 0; this.label4.Text = "Đơn vị cung cấp"; // // label5 // this.label5.Location = new System.Drawing.Point(8, 79); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(70, 13); this.label5.TabIndex = 0; this.label5.Text = "Nước sản xuất"; // // label15 // this.label15.Location = new System.Drawing.Point(293, 229); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(46, 13); this.label15.TabIndex = 0; this.label15.Text = "Rating TB"; this.label15.ToolTip = "Rating trung bình"; // // lblTitle // this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTitle.Appearance.Options.UseFont = true; this.lblTitle.Appearance.Options.UseTextOptions = true; this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top; this.lblTitle.Location = new System.Drawing.Point(0, 0); this.lblTitle.Name = "lblTitle"; this.lblTitle.Size = new System.Drawing.Size(866, 29); this.lblTitle.TabIndex = 0; this.lblTitle.Text = "BIÊN MỤC"; // // SODKHD // this.SODKHD.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.SODKHD.DataSource = null; this.SODKHD.DisplayField = null; this.SODKHD.Location = new System.Drawing.Point(112, 28); this.SODKHD.Name = "SODKHD"; this.SODKHD.Size = new System.Drawing.Size(218, 22); this.SODKHD.TabIndex = 12; this.SODKHD.ValueField = null; this.SODKHD.SelectedIndexChanged += new System.EventHandler(this.SODKHD_SelectedIndexChanged); // // PostMaster // this.PostMaster.EditValue = "Y"; this.PostMaster.Location = new System.Drawing.Point(85, 202); this.PostMaster.Name = "PostMaster"; this.PostMaster.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] { new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "POST"), new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "MASTER"), new DevExpress.XtraEditors.Controls.RadioGroupItem("A", "BOTH")}); this.PostMaster.Size = new System.Drawing.Size(199, 20); this.PostMaster.TabIndex = 125; // // KyHieuXepKho_KHPL // this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(2, 2); this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL"; this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.KyHieuXepKho_KHPL.Properties.ReadOnly = true; this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(137, 18); this.KyHieuXepKho_KHPL.TabIndex = 5; this.KyHieuXepKho_KHPL.TabStop = false; // // groupControl1 // this.groupControl1.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl1.AppearanceCaption.Options.UseFont = true; this.groupControl1.Controls.Add(this.NoiLuuTru); this.groupControl1.Controls.Add(this.label38); this.groupControl1.Controls.Add(this.label19); this.groupControl1.Controls.Add(this.label18); this.groupControl1.Controls.Add(this.SODKHD); this.groupControl1.Location = new System.Drawing.Point(523, 512); this.groupControl1.Name = "groupControl1"; this.groupControl1.Size = new System.Drawing.Size(335, 96); this.groupControl1.TabIndex = 126; this.groupControl1.Text = "Thông tin HD"; // // NoiLuuTru // this.NoiLuuTru.Location = new System.Drawing.Point(112, 52); this.NoiLuuTru.Name = "NoiLuuTru"; this.NoiLuuTru.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Delete), new DevExpress.XtraEditors.Controls.EditorButton()}); this.NoiLuuTru.Properties.ReadOnly = true; this.NoiLuuTru.Size = new System.Drawing.Size(218, 20); this.NoiLuuTru.TabIndex = 196; this.NoiLuuTru.ButtonClick += new DevExpress.XtraEditors.Controls.ButtonPressedEventHandler(this.buttonEdit1_ButtonClick); // // label38 // this.label38.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Italic); this.label38.Appearance.Options.UseFont = true; this.label38.Location = new System.Drawing.Point(109, 74); this.label38.Name = "label38"; this.label38.Size = new System.Drawing.Size(139, 13); this.label38.TabIndex = 0; this.label38.Text = "(Đường dẫn đầy đủ trên HD)"; // // label34 // this.label34.Appearance.ForeColor = System.Drawing.Color.Blue; this.label34.Appearance.Options.UseForeColor = true; this.label34.Location = new System.Drawing.Point(4, 81); this.label34.Name = "label34"; this.label34.Size = new System.Drawing.Size(17, 13); this.label34.TabIndex = 0; this.label34.Text = "Dur"; // // label27 // this.label27.Appearance.ForeColor = System.Drawing.Color.Blue; this.label27.Appearance.Options.UseForeColor = true; this.label27.Location = new System.Drawing.Point(4, 58); this.label27.Name = "label27"; this.label27.Size = new System.Drawing.Size(69, 13); this.label27.TabIndex = 130; this.label27.Text = "Time code Out"; // // label32 // this.label32.Appearance.ForeColor = System.Drawing.Color.Blue; this.label32.Appearance.Options.UseForeColor = true; this.label32.Location = new System.Drawing.Point(4, 33); this.label32.Name = "label32"; this.label32.Size = new System.Drawing.Size(61, 13); this.label32.TabIndex = 132; this.label32.Text = "Time code In"; // // groupControl2 // this.groupControl2.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl2.AppearanceCaption.Options.UseFont = true; this.groupControl2.Controls.Add(this.gridControlNgayPhatDauTien); this.groupControl2.Location = new System.Drawing.Point(523, 312); this.groupControl2.Name = "groupControl2"; this.groupControl2.Size = new System.Drawing.Size(333, 194); this.groupControl2.TabIndex = 127; this.groupControl2.Text = "Ngày phát sóng đầu tiên"; // // gridControlNgayPhatDauTien // this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage"))); this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlNgayPhatDauTien.Dock = System.Windows.Forms.DockStyle.Fill; this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(2, 22); this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien; this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien"; this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(329, 170); this.gridControlNgayPhatDauTien.TabIndex = 136; this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewNgayPhatDauTien}); // // gridViewNgayPhatDauTien // this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.CotDaiTruyenHinh, this.CotNgayPhat}); this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien; this.gridViewNgayPhatDauTien.GroupCount = 1; this.gridViewNgayPhatDauTien.IndicatorWidth = 40; this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien"; this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false; this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true; this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true; this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true; this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true; this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top; this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true; this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true; this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false; this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false; this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.CotDaiTruyenHinh, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow); this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow); // // CotDaiTruyenHinh // this.CotDaiTruyenHinh.Caption = "Kênh phát sóng"; this.CotDaiTruyenHinh.Name = "CotDaiTruyenHinh"; this.CotDaiTruyenHinh.SummaryItem.DisplayFormat = "Tồng số lần đã phát {0}"; this.CotDaiTruyenHinh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.CotDaiTruyenHinh.Visible = true; this.CotDaiTruyenHinh.VisibleIndex = 0; this.CotDaiTruyenHinh.Width = 107; // // CotNgayPhat // this.CotNgayPhat.Caption = "Ngày phát"; this.CotNgayPhat.Name = "CotNgayPhat"; this.CotNgayPhat.Visible = true; this.CotNgayPhat.VisibleIndex = 1; this.CotNgayPhat.Width = 62; // // Rating // this.Rating.Location = new System.Drawing.Point(352, 227); this.Rating.Name = "Rating"; this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.Rating.Size = new System.Drawing.Size(117, 20); this.Rating.TabIndex = 136; // // DoiTuongKhanGia // this.DoiTuongKhanGia.DataSource = null; this.DoiTuongKhanGia.DisplayField = null; this.DoiTuongKhanGia.EditValue = ""; this.DoiTuongKhanGia.Location = new System.Drawing.Point(85, 354); this.DoiTuongKhanGia.Name = "DoiTuongKhanGia"; this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DoiTuongKhanGia.Size = new System.Drawing.Size(412, 20); this.DoiTuongKhanGia.TabIndex = 132; this.DoiTuongKhanGia.ValueField = null; // // label14 // this.label14.Location = new System.Drawing.Point(9, 357); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(57, 13); this.label14.TabIndex = 0; this.label14.Text = "ĐT khán giả"; // // groupControl3 // this.groupControl3.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl3.AppearanceCaption.Options.UseFont = true; this.groupControl3.Controls.Add(this.ThoiHanBanQuyen); this.groupControl3.Controls.Add(this.BanQuyen_Other); this.groupControl3.Controls.Add(this.BanQuyen); this.groupControl3.Controls.Add(this.label1); this.groupControl3.Controls.Add(this.QuocGia); this.groupControl3.Controls.Add(this.DonViSoHuu); this.groupControl3.Controls.Add(this.DonViCungCap); this.groupControl3.Controls.Add(this.label25); this.groupControl3.Controls.Add(this.label5); this.groupControl3.Controls.Add(this.label2); this.groupControl3.Controls.Add(this.label4); this.groupControl3.Controls.Add(this.NamSanXuat); this.groupControl3.Location = new System.Drawing.Point(523, 177); this.groupControl3.Name = "groupControl3"; this.groupControl3.Size = new System.Drawing.Size(333, 129); this.groupControl3.TabIndex = 128; this.groupControl3.Text = "Nguồn gốc"; // // ThoiHanBanQuyen // this.ThoiHanBanQuyen.EditValue = new System.DateTime(2010, 8, 30, 14, 57, 59, 852); this.ThoiHanBanQuyen.Location = new System.Drawing.Point(207, 103); this.ThoiHanBanQuyen.Name = "ThoiHanBanQuyen"; this.ThoiHanBanQuyen.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.False; this.ThoiHanBanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.ThoiHanBanQuyen.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.ThoiHanBanQuyen.Size = new System.Drawing.Size(119, 20); this.ThoiHanBanQuyen.TabIndex = 122; // // BanQuyen_Other // this.BanQuyen_Other.EditValue = ""; this.BanQuyen_Other.Location = new System.Drawing.Point(207, 103); this.BanQuyen_Other.Name = "BanQuyen_Other"; this.BanQuyen_Other.Size = new System.Drawing.Size(119, 20); this.BanQuyen_Other.TabIndex = 5; this.BanQuyen_Other.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // BanQuyen // this.BanQuyen.Location = new System.Drawing.Point(112, 103); this.BanQuyen.Name = "BanQuyen"; this.BanQuyen.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyen.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.DisableTextEditor; this.BanQuyen.Size = new System.Drawing.Size(89, 20); this.BanQuyen.TabIndex = 121; // // label1 // this.label1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Appearance.ForeColor = System.Drawing.Color.Red; this.label1.Appearance.Options.UseFont = true; this.label1.Appearance.Options.UseForeColor = true; this.label1.Location = new System.Drawing.Point(8, 106); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(95, 13); this.label1.TabIndex = 0; this.label1.Text = "Thời hạn bản quyền"; // // QuocGia // this.QuocGia.DataSource = null; this.QuocGia.DisplayField = null; this.QuocGia.EditValue = ""; this.QuocGia.Location = new System.Drawing.Point(112, 77); 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(89, 20); this.QuocGia.TabIndex = 132; this.QuocGia.ValueField = null; // // DonViSoHuu // this.DonViSoHuu.Location = new System.Drawing.Point(112, 51); this.DonViSoHuu.Name = "DonViSoHuu"; this.DonViSoHuu.Size = new System.Drawing.Size(214, 20); this.DonViSoHuu.TabIndex = 120; this.DonViSoHuu.ZZZWidthFactor = 2F; // // DonViCungCap // this.DonViCungCap.Location = new System.Drawing.Point(112, 24); this.DonViCungCap.Name = "DonViCungCap"; this.DonViCungCap.Size = new System.Drawing.Size(214, 20); this.DonViCungCap.TabIndex = 120; this.DonViCungCap.ZZZWidthFactor = 2F; // // label25 // this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label25.Appearance.ForeColor = System.Drawing.Color.Black; this.label25.Appearance.Options.UseFont = true; this.label25.Appearance.Options.UseForeColor = true; this.label25.Location = new System.Drawing.Point(207, 80); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(36, 13); this.label25.TabIndex = 0; this.label25.Text = "Năm SX"; // // NamSanXuat // this.NamSanXuat.EditValue = new decimal(new int[] { 1999, 0, 0, 0}); this.NamSanXuat.Location = new System.Drawing.Point(254, 77); this.NamSanXuat.Name = "NamSanXuat"; this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSanXuat.Properties.Mask.EditMask = "n0"; this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true; this.NamSanXuat.Properties.MaxValue = new decimal(new int[] { -1530494977, 232830, 0, 0}); this.NamSanXuat.Size = new System.Drawing.Size(72, 20); this.NamSanXuat.TabIndex = 135; // // groupControl4 // this.groupControl4.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl4.AppearanceCaption.Options.UseFont = true; this.groupControl4.Controls.Add(this.NoiDung); this.groupControl4.Controls.Add(this.ThanhLy); this.groupControl4.Controls.Add(this.groupControl8); this.groupControl4.Controls.Add(this.label22); this.groupControl4.Controls.Add(this.Rating); this.groupControl4.Controls.Add(this.KyHieuPhanLoai); this.groupControl4.Controls.Add(this.Tang); this.groupControl4.Controls.Add(this.label21); this.groupControl4.Controls.Add(this.label15); this.groupControl4.Controls.Add(this.label24); this.groupControl4.Controls.Add(this.Ngan); this.groupControl4.Controls.Add(this.SoBang); this.groupControl4.Controls.Add(this.ThoiLuong); this.groupControl4.Controls.Add(this.Ke); this.groupControl4.Controls.Add(this.TuKhoaSelect); this.groupControl4.Controls.Add(this.label12); this.groupControl4.Controls.Add(this.DoiTuongKhanGia); this.groupControl4.Controls.Add(this.LoaiBang); this.groupControl4.Controls.Add(this.label23); this.groupControl4.Controls.Add(this.label13); this.groupControl4.Controls.Add(this.label14); this.groupControl4.Controls.Add(this.ThongSoLoaiBang); this.groupControl4.Controls.Add(this.NgayNhap); this.groupControl4.Controls.Add(this.TongTap); this.groupControl4.Controls.Add(this.label30); this.groupControl4.Controls.Add(this.GhiChu); this.groupControl4.Controls.Add(this.DinhKem); this.groupControl4.Controls.Add(this.TuKhoaText); this.groupControl4.Controls.Add(this.label31); this.groupControl4.Controls.Add(this.label20); this.groupControl4.Controls.Add(this.label9); this.groupControl4.Controls.Add(this.label10); this.groupControl4.Controls.Add(this.SoTap); this.groupControl4.Controls.Add(this.PopUp); this.groupControl4.Controls.Add(this.label33); this.groupControl4.Controls.Add(this.label36); this.groupControl4.Controls.Add(this.label17); this.groupControl4.Controls.Add(this.Info); this.groupControl4.Controls.Add(this.TietMuc); this.groupControl4.Controls.Add(this.MaBang); this.groupControl4.Controls.Add(this.label7); this.groupControl4.Controls.Add(this.PostMaster); this.groupControl4.Controls.Add(this.label11); this.groupControl4.Controls.Add(this.label3); this.groupControl4.Controls.Add(this.label16); this.groupControl4.Controls.Add(this.TenGoc); this.groupControl4.Controls.Add(this.label42); this.groupControl4.Controls.Add(this.label8); this.groupControl4.Location = new System.Drawing.Point(12, 44); this.groupControl4.Name = "groupControl4"; this.groupControl4.Size = new System.Drawing.Size(505, 419); this.groupControl4.TabIndex = 129; this.groupControl4.Text = "Thông tin chính"; // // NoiDung // this.NoiDung._DataSource = null; this.NoiDung._GetField = null; this.NoiDung.Location = new System.Drawing.Point(85, 74); this.NoiDung.Name = "NoiDung"; this.NoiDung.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)}); this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NoiDung.Size = new System.Drawing.Size(412, 20); this.NoiDung.TabIndex = 199; // // ThanhLy // this.ThanhLy.Location = new System.Drawing.Point(83, 26); this.ThanhLy.Name = "ThanhLy"; this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red; this.ThanhLy.Properties.Appearance.Options.UseFont = true; this.ThanhLy.Properties.Appearance.Options.UseForeColor = true; this.ThanhLy.Properties.Caption = "Thanh lý"; this.ThanhLy.Size = new System.Drawing.Size(88, 19); this.ThanhLy.TabIndex = 136; // // groupControl8 // this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL); this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung); this.groupControl8.Controls.Add(this.textEdit1); this.groupControl8.Location = new System.Drawing.Point(352, 254); this.groupControl8.Name = "groupControl8"; this.groupControl8.ShowCaption = false; this.groupControl8.Size = new System.Drawing.Size(145, 46); this.groupControl8.TabIndex = 132; this.groupControl8.Text = "groupControl8"; // // KyHieuXepKho_NoiDung // this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26); this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung"; this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true; this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(137, 18); this.KyHieuXepKho_NoiDung.TabIndex = 17; this.KyHieuXepKho_NoiDung.TabStop = false; // // textEdit1 // this.textEdit1.EditValue = "___________________"; this.textEdit1.Location = new System.Drawing.Point(2, 8); this.textEdit1.Name = "textEdit1"; this.textEdit1.Properties.AllowFocused = false; this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.textEdit1.Properties.ReadOnly = true; this.textEdit1.Size = new System.Drawing.Size(137, 18); this.textEdit1.TabIndex = 5; this.textEdit1.TabStop = false; // // Tang // this.Tang.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.Tang.Location = new System.Drawing.Point(222, 227); this.Tang.Name = "Tang"; this.Tang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.Tang.Size = new System.Drawing.Size(62, 20); this.Tang.TabIndex = 198; // // label24 // this.label24.Location = new System.Drawing.Point(478, 230); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(19, 13); this.label24.TabIndex = 0; this.label24.Text = "(%)"; // // Ngan // this.Ngan.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.Ngan.Location = new System.Drawing.Point(157, 227); this.Ngan.Name = "Ngan"; this.Ngan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.Ngan.Size = new System.Drawing.Size(59, 20); this.Ngan.TabIndex = 198; // // SoBang // this.SoBang.EditValue = new decimal(new int[] { 1, 0, 0, 0}); this.SoBang.Location = new System.Drawing.Point(352, 125); this.SoBang.Name = "SoBang"; this.SoBang.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoBang.Size = new System.Drawing.Size(145, 20); this.SoBang.TabIndex = 198; // // ThoiLuong // this.ThoiLuong.EditValue = "00:00:00:00"; this.ThoiLuong.Location = new System.Drawing.Point(85, 176); this.ThoiLuong.Name = "ThoiLuong"; this.ThoiLuong.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.ThoiLuong.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.ThoiLuong.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.ThoiLuong.Properties.ReadOnly = true; this.ThoiLuong.Size = new System.Drawing.Size(200, 20); this.ThoiLuong.TabIndex = 197; this.ThoiLuong.TabStop = false; this.ThoiLuong.TimeCode.Frame = 0; this.ThoiLuong.TimeCode.Hour = 0; this.ThoiLuong.TimeCode.Minute = 0; this.ThoiLuong.TimeCode.Second = 0; this.ThoiLuong.TimeCode.TimeCodeString = "00:00:00:00"; // // Ke // this.Ke.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.Ke.Location = new System.Drawing.Point(85, 227); this.Ke.Name = "Ke"; this.Ke.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.Ke.Size = new System.Drawing.Size(66, 20); this.Ke.TabIndex = 198; // // TuKhoaSelect // this.TuKhoaSelect.DataSource = null; this.TuKhoaSelect.DisplayField = null; this.TuKhoaSelect.EditValue = ""; this.TuKhoaSelect.Location = new System.Drawing.Point(85, 330); this.TuKhoaSelect.Name = "TuKhoaSelect"; this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor; this.TuKhoaSelect.Size = new System.Drawing.Size(199, 19); this.TuKhoaSelect.TabIndex = 132; this.TuKhoaSelect.TabStop = false; this.TuKhoaSelect.ValueField = null; this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged); this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp); // // label12 // this.label12.Location = new System.Drawing.Point(293, 154); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(44, 13); this.label12.TabIndex = 0; this.label12.Text = "Thông số"; // // NgayNhap // this.NgayNhap.EditValue = null; this.NgayNhap.Location = new System.Drawing.Point(352, 48); this.NgayNhap.Name = "NgayNhap"; this.NgayNhap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.NgayNhap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.NgayNhap.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NgayNhap.Size = new System.Drawing.Size(145, 20); this.NgayNhap.TabIndex = 141; // // TongTap // this.TongTap.EditValue = new decimal(new int[] { 1, 0, 0, 0}); this.TongTap.Location = new System.Drawing.Point(450, 176); this.TongTap.Name = "TongTap"; this.TongTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.TongTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TongTap.Properties.Mask.EditMask = "n0"; this.TongTap.Properties.Mask.UseMaskAsDisplayFormat = true; this.TongTap.Properties.MaxLength = 1; this.TongTap.Properties.MaxValue = new decimal(new int[] { -1530494977, 232830, 0, 0}); this.TongTap.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.TongTap.Size = new System.Drawing.Size(47, 20); this.TongTap.TabIndex = 135; // // label30 // this.label30.Appearance.ForeColor = System.Drawing.Color.Blue; this.label30.Appearance.Options.UseForeColor = true; this.label30.Location = new System.Drawing.Point(8, 178); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(50, 13); this.label30.TabIndex = 133; this.label30.Text = "Thời lượng"; // // GhiChu // this.GhiChu.Location = new System.Drawing.Point(85, 380); this.GhiChu.Name = "GhiChu"; this.GhiChu.Size = new System.Drawing.Size(412, 34); this.GhiChu.TabIndex = 134; // // DinhKem // this.DinhKem.Location = new System.Drawing.Point(352, 305); this.DinhKem.Name = "DinhKem"; this.DinhKem.Size = new System.Drawing.Size(145, 44); this.DinhKem.TabIndex = 134; // // TuKhoaText // this.TuKhoaText.Location = new System.Drawing.Point(85, 278); this.TuKhoaText.Name = "TuKhoaText"; this.TuKhoaText.Properties.ReadOnly = true; this.TuKhoaText.Size = new System.Drawing.Size(199, 50); this.TuKhoaText.TabIndex = 134; this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown); // // label31 // this.label31.Location = new System.Drawing.Point(290, 300); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(59, 13); this.label31.TabIndex = 131; this.label31.Text = "TT Đính kèm"; // // label20 // this.label20.Location = new System.Drawing.Point(8, 280); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(39, 13); this.label20.TabIndex = 131; this.label20.Text = "Từ khóa"; // // label9 // this.label9.Location = new System.Drawing.Point(293, 180); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(32, 13); this.label9.TabIndex = 128; this.label9.Text = "Tập số"; // // label10 // this.label10.Location = new System.Drawing.Point(403, 179); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(43, 13); this.label10.TabIndex = 127; this.label10.Text = "Tổng tập"; // // SoTap // this.SoTap.EditValue = new decimal(new int[] { 1, 0, 0, 0}); this.SoTap.Location = new System.Drawing.Point(352, 176); this.SoTap.Name = "SoTap"; this.SoTap.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.SoTap.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoTap.Properties.Mask.EditMask = "n0"; this.SoTap.Properties.Mask.UseMaskAsDisplayFormat = true; this.SoTap.Properties.MaxLength = 1; this.SoTap.Properties.MaxValue = new decimal(new int[] { -1530494977, 232830, 0, 0}); this.SoTap.Properties.MinValue = new decimal(new int[] { 1, 0, 0, 0}); this.SoTap.Size = new System.Drawing.Size(50, 20); this.SoTap.TabIndex = 136; // // PopUp // this.PopUp.EditValue = "Y"; this.PopUp.Location = new System.Drawing.Point(352, 202); this.PopUp.Name = "PopUp"; this.PopUp.Properties.Items.AddRange(new DevExpress.XtraEditors.Controls.RadioGroupItem[] { new DevExpress.XtraEditors.Controls.RadioGroupItem("Y", "Yes"), new DevExpress.XtraEditors.Controls.RadioGroupItem("N", "No")}); this.PopUp.Size = new System.Drawing.Size(145, 20); this.PopUp.TabIndex = 140; // // label33 // this.label33.Location = new System.Drawing.Point(287, 48); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(52, 13); this.label33.TabIndex = 129; this.label33.Text = "Ngày nhập"; // // label36 // this.label36.Location = new System.Drawing.Point(9, 382); this.label36.Name = "label36"; this.label36.Size = new System.Drawing.Size(35, 13); this.label36.TabIndex = 129; this.label36.Text = "Ghi chú"; // // label17 // this.label17.Location = new System.Drawing.Point(293, 205); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(36, 13); this.label17.TabIndex = 129; this.label17.Text = "POP Up"; // // Info // this.Info.Location = new System.Drawing.Point(243, 48); this.Info.Name = "Info"; this.Info.Size = new System.Drawing.Size(24, 21); this.Info.TabIndex = 126; // // TietMuc // this.TietMuc.Location = new System.Drawing.Point(85, 125); this.TietMuc.Name = "TietMuc"; this.TietMuc.Size = new System.Drawing.Size(199, 20); this.TietMuc.TabIndex = 120; this.TietMuc.ZZZWidthFactor = 2F; // // TenGoc // this.TenGoc.EditValue = ""; this.TenGoc.Location = new System.Drawing.Point(85, 99); this.TenGoc.Name = "TenGoc"; this.TenGoc.Size = new System.Drawing.Size(412, 20); this.TenGoc.TabIndex = 5; this.TenGoc.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // label42 // this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label42.Appearance.Options.UseFont = true; this.label42.Location = new System.Drawing.Point(8, 102); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(38, 13); this.label42.TabIndex = 0; this.label42.Text = "Tên gốc"; // // NgayMuon // this.NgayMuon.EditValue = null; this.NgayMuon.Location = new System.Drawing.Point(112, 25); this.NgayMuon.Name = "NgayMuon"; this.NgayMuon.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.NgayMuon.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NgayMuon.Size = new System.Drawing.Size(213, 20); this.NgayMuon.TabIndex = 141; // // label28 // this.label28.Appearance.ForeColor = System.Drawing.Color.Blue; this.label28.Appearance.Options.UseForeColor = true; this.label28.Location = new System.Drawing.Point(6, 33); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(61, 13); this.label28.TabIndex = 132; this.label28.Text = "Time code In"; // // label29 // this.label29.Appearance.ForeColor = System.Drawing.Color.Blue; this.label29.Appearance.Options.UseForeColor = true; this.label29.Location = new System.Drawing.Point(6, 58); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(69, 13); this.label29.TabIndex = 130; this.label29.Text = "Time code Out"; // // groupControl6 // this.groupControl6.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl6.AppearanceCaption.Options.UseFont = true; this.groupControl6.Controls.Add(this.btnNhapTimeCode); this.groupControl6.Controls.Add(this.groupControl5); this.groupControl6.Controls.Add(this.groupControl7); this.groupControl6.Location = new System.Drawing.Point(12, 469); this.groupControl6.Name = "groupControl6"; this.groupControl6.Size = new System.Drawing.Size(505, 140); this.groupControl6.TabIndex = 131; this.groupControl6.Text = "Thông tin timecode"; // // btnNhapTimeCode // this.btnNhapTimeCode.Location = new System.Drawing.Point(232, 51); this.btnNhapTimeCode.Name = "btnNhapTimeCode"; this.btnNhapTimeCode.Size = new System.Drawing.Size(60, 45); this.btnNhapTimeCode.TabIndex = 199; this.btnNhapTimeCode.Text = "Timecode"; this.btnNhapTimeCode.Click += new System.EventHandler(this.btnNhapTimeCode_Click); // // groupControl5 // this.groupControl5.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline); this.groupControl5.AppearanceCaption.Options.UseFont = true; this.groupControl5.Controls.Add(this.TimeCode_Betacam_Duration); this.groupControl5.Controls.Add(this.TimeCode_Betacam_Out); this.groupControl5.Controls.Add(this.label37); this.groupControl5.Controls.Add(this.TimeCode_Betacam_In); this.groupControl5.Controls.Add(this.label29); this.groupControl5.Controls.Add(this.label28); this.groupControl5.Location = new System.Drawing.Point(8, 25); this.groupControl5.Name = "groupControl5"; this.groupControl5.Size = new System.Drawing.Size(218, 108); this.groupControl5.TabIndex = 121; this.groupControl5.Text = "Timecode BETACAM"; // // TimeCode_Betacam_Duration // this.TimeCode_Betacam_Duration.EditValue = "00:00:00:00"; this.TimeCode_Betacam_Duration.Location = new System.Drawing.Point(83, 81); this.TimeCode_Betacam_Duration.Name = "TimeCode_Betacam_Duration"; this.TimeCode_Betacam_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_Betacam_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_Betacam_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_Betacam_Duration.Properties.ReadOnly = true; this.TimeCode_Betacam_Duration.Size = new System.Drawing.Size(118, 20); this.TimeCode_Betacam_Duration.TabIndex = 197; this.TimeCode_Betacam_Duration.TabStop = false; this.TimeCode_Betacam_Duration.TimeCode.Frame = 0; this.TimeCode_Betacam_Duration.TimeCode.Hour = 0; this.TimeCode_Betacam_Duration.TimeCode.Minute = 0; this.TimeCode_Betacam_Duration.TimeCode.Second = 0; this.TimeCode_Betacam_Duration.TimeCode.TimeCodeString = "00:00:00:00"; // // TimeCode_Betacam_Out // this.TimeCode_Betacam_Out.EditValue = "00:00:00:00"; this.TimeCode_Betacam_Out.Location = new System.Drawing.Point(83, 55); this.TimeCode_Betacam_Out.Name = "TimeCode_Betacam_Out"; this.TimeCode_Betacam_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_Betacam_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_Betacam_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_Betacam_Out.Properties.ReadOnly = true; this.TimeCode_Betacam_Out.Size = new System.Drawing.Size(118, 20); this.TimeCode_Betacam_Out.TabIndex = 197; this.TimeCode_Betacam_Out.TimeCode.Frame = 0; this.TimeCode_Betacam_Out.TimeCode.Hour = 0; this.TimeCode_Betacam_Out.TimeCode.Minute = 0; this.TimeCode_Betacam_Out.TimeCode.Second = 0; this.TimeCode_Betacam_Out.TimeCode.TimeCodeString = "00:00:00:00"; // // label37 // this.label37.Appearance.ForeColor = System.Drawing.Color.Blue; this.label37.Appearance.Options.UseForeColor = true; this.label37.Location = new System.Drawing.Point(6, 84); this.label37.Name = "label37"; this.label37.Size = new System.Drawing.Size(17, 13); this.label37.TabIndex = 0; this.label37.Text = "Dur"; // // TimeCode_Betacam_In // this.TimeCode_Betacam_In.EditValue = "00:00:00:00"; this.TimeCode_Betacam_In.Location = new System.Drawing.Point(83, 30); this.TimeCode_Betacam_In.Name = "TimeCode_Betacam_In"; this.TimeCode_Betacam_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_Betacam_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_Betacam_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_Betacam_In.Properties.ReadOnly = true; this.TimeCode_Betacam_In.Size = new System.Drawing.Size(118, 20); this.TimeCode_Betacam_In.TabIndex = 197; this.TimeCode_Betacam_In.TimeCode.Frame = 0; this.TimeCode_Betacam_In.TimeCode.Hour = 0; this.TimeCode_Betacam_In.TimeCode.Minute = 0; this.TimeCode_Betacam_In.TimeCode.Second = 0; this.TimeCode_Betacam_In.TimeCode.TimeCodeString = "00:00:00:00"; // // groupControl7 // this.groupControl7.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Underline); this.groupControl7.AppearanceCaption.Options.UseFont = true; this.groupControl7.Controls.Add(this.TimeCode_File_Duration); this.groupControl7.Controls.Add(this.TimeCode_File_In); this.groupControl7.Controls.Add(this.label32); this.groupControl7.Controls.Add(this.label27); this.groupControl7.Controls.Add(this.TimeCode_File_Out); this.groupControl7.Controls.Add(this.label34); this.groupControl7.Location = new System.Drawing.Point(300, 22); this.groupControl7.Name = "groupControl7"; this.groupControl7.Size = new System.Drawing.Size(200, 108); this.groupControl7.TabIndex = 122; this.groupControl7.Text = "Timecode FILE"; // // TimeCode_File_Duration // this.TimeCode_File_Duration.EditValue = "00:00:00:00"; this.TimeCode_File_Duration.Location = new System.Drawing.Point(86, 81); this.TimeCode_File_Duration.Name = "TimeCode_File_Duration"; this.TimeCode_File_Duration.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_File_Duration.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_File_Duration.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_File_Duration.Properties.ReadOnly = true; this.TimeCode_File_Duration.Size = new System.Drawing.Size(111, 20); this.TimeCode_File_Duration.TabIndex = 197; this.TimeCode_File_Duration.TabStop = false; this.TimeCode_File_Duration.TimeCode.Frame = 0; this.TimeCode_File_Duration.TimeCode.Hour = 0; this.TimeCode_File_Duration.TimeCode.Minute = 0; this.TimeCode_File_Duration.TimeCode.Second = 0; this.TimeCode_File_Duration.TimeCode.TimeCodeString = "00:00:00:00"; // // TimeCode_File_In // this.TimeCode_File_In.EditValue = "00:00:00:00"; this.TimeCode_File_In.Location = new System.Drawing.Point(86, 30); this.TimeCode_File_In.Name = "TimeCode_File_In"; this.TimeCode_File_In.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_File_In.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_File_In.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_File_In.Properties.ReadOnly = true; this.TimeCode_File_In.Size = new System.Drawing.Size(111, 20); this.TimeCode_File_In.TabIndex = 197; this.TimeCode_File_In.TimeCode.Frame = 0; this.TimeCode_File_In.TimeCode.Hour = 0; this.TimeCode_File_In.TimeCode.Minute = 0; this.TimeCode_File_In.TimeCode.Second = 0; this.TimeCode_File_In.TimeCode.TimeCodeString = "00:00:00:00"; this.TimeCode_File_In.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged); // // TimeCode_File_Out // this.TimeCode_File_Out.EditValue = "00:00:00:00"; this.TimeCode_File_Out.Location = new System.Drawing.Point(86, 55); this.TimeCode_File_Out.Name = "TimeCode_File_Out"; this.TimeCode_File_Out.Properties.Mask.AutoComplete = DevExpress.XtraEditors.Mask.AutoCompleteType.Optimistic; this.TimeCode_File_Out.Properties.Mask.EditMask = "[0-9][0-9]:[0-5][0-9]:[0-5][0-9]:(([0-1][0-9])|([2][0-3]))"; this.TimeCode_File_Out.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.RegEx; this.TimeCode_File_Out.Properties.ReadOnly = true; this.TimeCode_File_Out.Size = new System.Drawing.Size(111, 20); this.TimeCode_File_Out.TabIndex = 197; this.TimeCode_File_Out.TimeCode.Frame = 0; this.TimeCode_File_Out.TimeCode.Hour = 0; this.TimeCode_File_Out.TimeCode.Minute = 0; this.TimeCode_File_Out.TimeCode.Second = 0; this.TimeCode_File_Out.TimeCode.TimeCodeString = "00:00:00:00"; this.TimeCode_File_Out.EditValueChanged += new System.EventHandler(this.TimeCode_File_In_EditValueChanged); // // DoiTuongMuon // this.DoiTuongMuon.EditValue = ""; this.DoiTuongMuon.Location = new System.Drawing.Point(112, 50); this.DoiTuongMuon.Name = "DoiTuongMuon"; this.DoiTuongMuon.Size = new System.Drawing.Size(213, 20); this.DoiTuongMuon.TabIndex = 5; this.DoiTuongMuon.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // ThongTinMuon // this.ThongTinMuon.Location = new System.Drawing.Point(112, 75); this.ThongTinMuon.Name = "ThongTinMuon"; this.ThongTinMuon.Size = new System.Drawing.Size(213, 47); this.ThongTinMuon.TabIndex = 134; // // label41 // this.label41.Location = new System.Drawing.Point(10, 28); this.label41.Name = "label41"; this.label41.Size = new System.Drawing.Size(55, 13); this.label41.TabIndex = 0; this.label41.Text = "Ngày mượn"; // // label40 // this.label40.Location = new System.Drawing.Point(10, 53); this.label40.Name = "label40"; this.label40.Size = new System.Drawing.Size(48, 13); this.label40.TabIndex = 0; this.label40.Text = "Đối tượng"; // // label39 // this.label39.Location = new System.Drawing.Point(10, 79); this.label39.Name = "label39"; this.label39.Size = new System.Drawing.Size(75, 13); this.label39.TabIndex = 0; this.label39.Text = "Thông tin mượn"; // // groupControl10 // this.groupControl10.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControl10.AppearanceCaption.Options.UseFont = true; this.groupControl10.Controls.Add(this.NgayMuon); this.groupControl10.Controls.Add(this.DoiTuongMuon); this.groupControl10.Controls.Add(this.label39); this.groupControl10.Controls.Add(this.ThongTinMuon); this.groupControl10.Controls.Add(this.label40); this.groupControl10.Controls.Add(this.label41); this.groupControl10.Location = new System.Drawing.Point(523, 44); this.groupControl10.Name = "groupControl10"; this.groupControl10.Size = new System.Drawing.Size(330, 127); this.groupControl10.TabIndex = 132; this.groupControl10.Text = "Thông tin mượn trả"; // // frmBienMuc // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(866, 648); this.Controls.Add(this.groupControl10); this.Controls.Add(this.groupControl4); this.Controls.Add(this.flowLayoutPanel1); this.Controls.Add(this.groupControl3); this.Controls.Add(this.flowLayoutPanel2); this.Controls.Add(this.lblTitle); this.Controls.Add(this.groupControl2); this.Controls.Add(this.groupControl6); this.Controls.Add(this.groupControl1); this.Name = "frmBienMuc"; this.Text = "Biên mục"; this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load); this.flowLayoutPanel1.ResumeLayout(false); this.flowLayoutPanel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.MaBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PostMaster.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoiLuuTru.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl2)).EndInit(); this.groupControl2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl3)).EndInit(); this.groupControl3.ResumeLayout(false); this.groupControl3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThoiHanBanQuyen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyen_Other.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyen.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl4)).EndInit(); this.groupControl4.ResumeLayout(false); this.groupControl4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit(); this.groupControl8.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Tang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Ngan.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoBang.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThoiLuong.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Ke.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayNhap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TongTap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DinhKem.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoTap.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PopUp.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayMuon.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl6)).EndInit(); this.groupControl6.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.groupControl5)).EndInit(); this.groupControl5.ResumeLayout(false); this.groupControl5.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Duration.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_Out.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_Betacam_In.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit(); this.groupControl7.ResumeLayout(false); this.groupControl7.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Duration.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_In.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TimeCode_File_Out.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongMuon.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThongTinMuon.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl10)).EndInit(); this.groupControl10.ResumeLayout(false); this.groupControl10.PerformLayout(); this.ResumeLayout(false); }
public static long[] GetSelectedID(PLGridView gridView, string IDField) { if (gridView.GetSelectedRows() != null) { long[] ids = new long[gridView.GetSelectedRows().Length]; int i = 0; foreach (int index in gridView.GetSelectedRows()) { if (index > -1) { DataRow temp = gridView.GetDataRow(index); ids[i++] = HelpNumber.ParseInt64(temp[IDField]); } } return ids; } return null; }
public static void ShowErrorOnGrid(PLGridView gridDich, string Vi_Pham) { RangBuocSoLgTrLgHelp.AddFormatCond(gridDich); gridDich.SetRowCellValue(0, gridDich.Columns["CHECK"], 1); gridDich.SetRowCellValue(0, gridDich.Columns["VI_PHAM"], ""); DataRow rowDich = gridDich.GetDataRow(0); gridDich.SetRowCellValue(0, gridDich.Columns["CHECK"], 0); gridDich.SetRowCellValue(0, gridDich.Columns["VI_PHAM"], Vi_Pham); gridDich.UpdateCurrentRow(); gridDich.OptionsView.ShowPreview = true; gridDich.OptionsView.AutoCalcPreviewLineCount = true; gridDich.PreviewFieldName = "VI_PHAM"; gridDich.CustomDrawRowPreview += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler( gridDich_CustomDrawRowPreview); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmChuongTrinh)); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject(); DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject5 = new DevExpress.Utils.SerializableAppearanceObject(); this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel(); this.btnClose = new DevExpress.XtraEditors.SimpleButton(); this.btnDelete = new DevExpress.XtraEditors.SimpleButton(); this.btnDeleteRealy = new DevExpress.XtraEditors.SimpleButton(); this.btnRestore = new DevExpress.XtraEditors.SimpleButton(); this.btnSave = new DevExpress.XtraEditors.SimpleButton(); this.InPhieu = new DevExpress.XtraEditors.DropDownButton(); this.ctMnuInPhieu = new System.Windows.Forms.ContextMenuStrip(this.components); this.NghiepVu = new DevExpress.XtraEditors.DropDownButton(); this.ctMnuNghiepVu = new System.Windows.Forms.ContextMenuStrip(this.components); this.Duyet = new ProtocolVN.Framework.Win.PLDuyetCombobox(); this.flowLayoutPanel2 = new System.Windows.Forms.FlowLayoutPanel(); this.label7 = new DevExpress.XtraEditors.LabelControl(); this.label8 = new DevExpress.XtraEditors.LabelControl(); this.KyHieuPhanLoai = new DevExpress.XtraEditors.TextEdit(); this.label21 = new DevExpress.XtraEditors.LabelControl(); this.label22 = new DevExpress.XtraEditors.LabelControl(); this.label2 = new DevExpress.XtraEditors.LabelControl(); this.label4 = new DevExpress.XtraEditors.LabelControl(); this.label5 = new DevExpress.XtraEditors.LabelControl(); this.label15 = new DevExpress.XtraEditors.LabelControl(); this.lblTitle = new DevExpress.XtraEditors.LabelControl(); this.KyHieuXepKho_KHPL = new DevExpress.XtraEditors.TextEdit(); this.groupControlThongTinPhatSong = new DevExpress.XtraEditors.GroupControl(); this.ReleaseDate = new DevExpress.XtraEditors.DateEdit(); this.SoRunConlai = new DevExpress.XtraEditors.SpinEdit(); this.ReleaseRun = new DevExpress.XtraEditors.SpinEdit(); this.Release = new DevExpress.XtraEditors.SpinEdit(); this.SoDaRun = new DevExpress.XtraEditors.SpinEdit(); this.gridControlPhatSongKhac = new DevExpress.XtraGrid.GridControl(); this.gridviewPhatSongKhac = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.ColPSK_Kenh = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColPSK_TuNgay = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColPSK_DenNgay = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColPSK_LanPhat = new DevExpress.XtraGrid.Columns.GridColumn(); this.gridControlNgayPhatDauTien = new DevExpress.XtraGrid.GridControl(); this.gridViewNgayPhatDauTien = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.ColKenhPhatSong = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColIsPhatLai = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColNgayPhatStart = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColNgayPhatEnd = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColTimeSlot = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColLanPhat = new DevExpress.XtraGrid.Columns.GridColumn(); this.labelControl8 = new DevExpress.XtraEditors.LabelControl(); this.labelControl9 = new DevExpress.XtraEditors.LabelControl(); this.RunThu = new DevExpress.XtraEditors.SpinEdit(); this.TongSoRun = new DevExpress.XtraEditors.SpinEdit(); this.labelControl20 = new DevExpress.XtraEditors.LabelControl(); this.labelControl19 = new DevExpress.XtraEditors.LabelControl(); this.labelControl6 = new DevExpress.XtraEditors.LabelControl(); this.labelControl24 = new DevExpress.XtraEditors.LabelControl(); this.labelControl21 = new DevExpress.XtraEditors.LabelControl(); this.labelControl15 = new DevExpress.XtraEditors.LabelControl(); this.labelControl10 = new DevExpress.XtraEditors.LabelControl(); this.ReleaseRule = new DevExpress.XtraEditors.MemoEdit(); this.MuaKem = new DevExpress.XtraEditors.MemoEdit(); this.Rating = new DevExpress.XtraEditors.CalcEdit(); this.DoiTuongKhanGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.label14 = new DevExpress.XtraEditors.LabelControl(); this.groupControlNguonGoc = new DevExpress.XtraEditors.GroupControl(); this.NoteBQ = new DevExpress.XtraEditors.MemoEdit(); this.gridControlThongTinBan = new DevExpress.XtraGrid.GridControl(); this.gridViewThongTinBan = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.ColKenhBan = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColNgayBanTu = new DevExpress.XtraGrid.Columns.GridColumn(); this.ColNgayBanDen = new DevExpress.XtraGrid.Columns.GridColumn(); this.groupControl7 = new DevExpress.XtraEditors.GroupControl(); this.DonViHauKy = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.HangSanXuat = new ProtocolVN.Framework.Win.PLDMGrid(); this.DonViSoHuu = new ProtocolVN.Framework.Win.PLDMGrid(); this.NamSanXuat = new DevExpress.XtraEditors.PLSpinEdit(); this.labelControl33 = new DevExpress.XtraEditors.LabelControl(); this.labelControl32 = new DevExpress.XtraEditors.LabelControl(); this.labelControl4 = new DevExpress.XtraEditors.LabelControl(); this.labelControl7 = new DevExpress.XtraEditors.LabelControl(); this.QuocGia = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.label25 = new DevExpress.XtraEditors.LabelControl(); this.KenhHanCheBan = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.DonViCungCap = new ProtocolVN.Framework.Win.PLDMGrid(); this.labelControl17 = new DevExpress.XtraEditors.LabelControl(); this.groupControl1 = new DevExpress.XtraEditors.GroupControl(); this.BanQuyenHTV = new DevExpress.XtraEditors.DateEdit(); this.BanQuyenDIDEnd = new DevExpress.XtraEditors.DateEdit(); this.BanQuyenDTNNEnd = new DevExpress.XtraEditors.DateEdit(); this.BanQuyenDIDStart = new DevExpress.XtraEditors.DateEdit(); this.BanQuyenDTNNStart = new DevExpress.XtraEditors.DateEdit(); this.ChanelRight = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.labelControl25 = new DevExpress.XtraEditors.LabelControl(); this.labelControl26 = new DevExpress.XtraEditors.LabelControl(); this.labelControl27 = new DevExpress.XtraEditors.LabelControl(); this.labelControl28 = new DevExpress.XtraEditors.LabelControl(); this.labelControl29 = new DevExpress.XtraEditors.LabelControl(); this.labelControl30 = new DevExpress.XtraEditors.LabelControl(); this.BanQuyenThuoc = new ProtocolVN.Framework.Win.PLDMGrid(); this.labelControl31 = new DevExpress.XtraEditors.LabelControl(); this.labelControl14 = new DevExpress.XtraEditors.LabelControl(); this.DaoDien = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.groupControlThongTin = new DevExpress.XtraEditors.GroupControl(); this.gridControlGhiChu = new DevExpress.XtraGrid.GridControl(); this.gridViewGhiChu = new DevExpress.XtraGrid.Views.Grid.PLGridView(); this.colLoaiGhiChu = new DevExpress.XtraGrid.Columns.GridColumn(); this.colNoiDungGhiChu = new DevExpress.XtraGrid.Columns.GridColumn(); this.labelControl34 = new DevExpress.XtraEditors.LabelControl(); this.PhanLoaiDrama = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.barManager1 = new DevExpress.XtraBars.BarManager(this.components); 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.labelControl18 = new DevExpress.XtraEditors.LabelControl(); this.NguonTrading = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.ClassName = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.labelControl23 = new DevExpress.XtraEditors.LabelControl(); this.labelControl13 = new DevExpress.XtraEditors.LabelControl(); this.Code = new DevExpress.XtraEditors.TextEdit(); this.TenGoc = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.NoiDung = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.Period = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete(); this.TrailerGoc = new DevExpress.XtraEditors.CheckEdit(); this.Photos = new DevExpress.XtraEditors.CheckEdit(); this.Script = new DevExpress.XtraEditors.CheckEdit(); this.ckcMoiTrenThiTruong = new DevExpress.XtraEditors.CheckEdit(); this.ckcTrongKho = new DevExpress.XtraEditors.CheckEdit(); this.ThanhLy = new DevExpress.XtraEditors.CheckEdit(); this.groupControl8 = new DevExpress.XtraEditors.GroupControl(); this.KyHieuXepKho_NoiDung = new DevExpress.XtraEditors.TextEdit(); this.textEdit1 = new DevExpress.XtraEditors.TextEdit(); this.Ranking = new ProtocolVN.Framework.Win.PLDMGrid(); this.DienVien = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.labelControl22 = new DevExpress.XtraEditors.LabelControl(); this.labelControl16 = new DevExpress.XtraEditors.LabelControl(); this.labelControl12 = new DevExpress.XtraEditors.LabelControl(); this.label24 = new DevExpress.XtraEditors.LabelControl(); this.TuKhoaSelect = new ProtocolVN.Framework.Win.PLMultiCombobox(); this.labelControl11 = new DevExpress.XtraEditors.LabelControl(); this.NgayAWB = new DevExpress.XtraEditors.DateEdit(); this.TomTatNoiDung = new DevExpress.XtraEditors.MemoEdit(); this.GhiChu = new DevExpress.XtraEditors.MemoEdit(); this.TuKhoaText = new DevExpress.XtraEditors.MemoEdit(); this.label20 = new DevExpress.XtraEditors.LabelControl(); this.labelControl2 = new DevExpress.XtraEditors.LabelControl(); this.label33 = new DevExpress.XtraEditors.LabelControl(); this.labelControl5 = new DevExpress.XtraEditors.LabelControl(); this.label36 = new DevExpress.XtraEditors.LabelControl(); this.Info = new ProtocolVN.Framework.Win.PLInfoBoxEtx(); this.TinhTrangBang = new ProtocolVN.Framework.Win.PLDMGrid(); this.TietMuc = new ProtocolVN.Framework.Win.PLDMGrid(); this.labelControl3 = new DevExpress.XtraEditors.LabelControl(); this.MaChuongTrinh = new DevExpress.XtraEditors.TextEdit(); this.label42 = new DevExpress.XtraEditors.LabelControl(); this.labelControl1 = new DevExpress.XtraEditors.LabelControl(); this.xtraTabControlMain = new DevExpress.XtraTab.XtraTabControl(); this.xtraTabPageChuongTrinh = new DevExpress.XtraTab.XtraTabPage(); this.xtraScrollableControl1 = new DevExpress.XtraEditors.XtraScrollableControl(); this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage(); this.popupMenuTab = new DevExpress.XtraBars.PopupMenu(this.components); this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem(); this.flowLayoutPanel1.SuspendLayout(); this.flowLayoutPanel2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).BeginInit(); this.groupControlThongTinPhatSong.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).BeginInit(); this.groupControlNguonGoc.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).BeginInit(); this.groupControl7.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).BeginInit(); this.groupControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).BeginInit(); this.groupControlThongTin.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).BeginInit(); this.groupControl8.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).BeginInit(); this.xtraTabControlMain.SuspendLayout(); this.xtraTabPageChuongTrinh.SuspendLayout(); this.xtraScrollableControl1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).BeginInit(); this.SuspendLayout(); // // flowLayoutPanel1 // this.flowLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.flowLayoutPanel1.Controls.Add(this.btnClose); this.flowLayoutPanel1.Controls.Add(this.btnDelete); this.flowLayoutPanel1.Controls.Add(this.btnDeleteRealy); this.flowLayoutPanel1.Controls.Add(this.btnRestore); this.flowLayoutPanel1.Controls.Add(this.btnSave); this.flowLayoutPanel1.FlowDirection = System.Windows.Forms.FlowDirection.RightToLeft; this.flowLayoutPanel1.Location = new System.Drawing.Point(626, 716); this.flowLayoutPanel1.Name = "flowLayoutPanel1"; this.flowLayoutPanel1.Size = new System.Drawing.Size(415, 31); this.flowLayoutPanel1.TabIndex = 4; // // btnClose // this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnClose.Location = new System.Drawing.Point(337, 3); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(75, 23); this.btnClose.TabIndex = 2; this.btnClose.Text = "Đ&óng"; this.btnClose.Click += new System.EventHandler(this.btnClose_Click); // // btnDelete // this.btnDelete.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDelete.Location = new System.Drawing.Point(256, 3); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(75, 23); this.btnDelete.TabIndex = 1; this.btnDelete.Text = "&Xóa"; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnDeleteRealy // this.btnDeleteRealy.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnDeleteRealy.Location = new System.Drawing.Point(175, 3); this.btnDeleteRealy.Name = "btnDeleteRealy"; this.btnDeleteRealy.Size = new System.Drawing.Size(75, 23); this.btnDeleteRealy.TabIndex = 1; this.btnDeleteRealy.Text = "&Xóa hẳn"; this.btnDeleteRealy.Visible = false; this.btnDeleteRealy.Click += new System.EventHandler(this.btnDeleteRealy_Click); // // btnRestore // this.btnRestore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnRestore.Location = new System.Drawing.Point(94, 3); this.btnRestore.Name = "btnRestore"; this.btnRestore.Size = new System.Drawing.Size(75, 23); this.btnRestore.TabIndex = 1; this.btnRestore.Text = "&Phục hồi"; this.btnRestore.Visible = false; this.btnRestore.Click += new System.EventHandler(this.btnRestore_Click); // // btnSave // this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnSave.Location = new System.Drawing.Point(13, 3); this.btnSave.Name = "btnSave"; this.btnSave.Size = new System.Drawing.Size(75, 23); this.btnSave.TabIndex = 0; this.btnSave.Text = "&Lưu"; this.btnSave.Click += new System.EventHandler(this.btnSave_Click); // // InPhieu // this.InPhieu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.InPhieu.Location = new System.Drawing.Point(30, 3); this.InPhieu.Name = "InPhieu"; this.InPhieu.Size = new System.Drawing.Size(81, 23); this.InPhieu.TabIndex = 1; this.InPhieu.Text = "&In nhãn"; // // ctMnuInPhieu // this.ctMnuInPhieu.Name = "contextMenuStrip2"; this.ctMnuInPhieu.Size = new System.Drawing.Size(61, 4); // // NghiepVu // this.NghiepVu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.NghiepVu.Location = new System.Drawing.Point(117, 3); this.NghiepVu.Name = "NghiepVu"; this.NghiepVu.Size = new System.Drawing.Size(81, 23); this.NghiepVu.TabIndex = 2; this.NghiepVu.Text = "Nghiệp vụ"; this.NghiepVu.Visible = false; // // ctMnuNghiepVu // this.ctMnuNghiepVu.Name = "contextMenuStrip3"; this.ctMnuNghiepVu.Size = new System.Drawing.Size(61, 4); // // Duyet // this.Duyet.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.Duyet.Enabled = false; this.Duyet.Location = new System.Drawing.Point(3, 6); this.Duyet.Name = "Duyet"; this.Duyet.Size = new System.Drawing.Size(21, 20); this.Duyet.TabIndex = 0; this.Duyet.Visible = false; // // flowLayoutPanel2 // this.flowLayoutPanel2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.flowLayoutPanel2.Controls.Add(this.Duyet); this.flowLayoutPanel2.Controls.Add(this.InPhieu); this.flowLayoutPanel2.Controls.Add(this.NghiepVu); this.flowLayoutPanel2.Location = new System.Drawing.Point(6, 716); this.flowLayoutPanel2.Name = "flowLayoutPanel2"; this.flowLayoutPanel2.Size = new System.Drawing.Size(218, 31); this.flowLayoutPanel2.TabIndex = 3; // // label7 // this.label7.Location = new System.Drawing.Point(638, 52); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(40, 13); this.label7.TabIndex = 0; this.label7.Text = "Tiết mục"; // // label8 // this.label8.Location = new System.Drawing.Point(9, 76); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(82, 13); this.label8.TabIndex = 0; this.label8.Text = "Tên chương trình"; // // KyHieuPhanLoai // this.KyHieuPhanLoai.Location = new System.Drawing.Point(405, 165); this.KyHieuPhanLoai.Name = "KyHieuPhanLoai"; this.KyHieuPhanLoai.Properties.Appearance.Options.UseTextOptions = true; this.KyHieuPhanLoai.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuPhanLoai.Size = new System.Drawing.Size(227, 20); this.KyHieuPhanLoai.TabIndex = 11; this.KyHieuPhanLoai.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // label21 // this.label21.Location = new System.Drawing.Point(343, 168); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(24, 13); this.label21.TabIndex = 0; this.label21.Text = "KHPL"; this.label21.ToolTip = "Ký hiệu phân loại"; // // label22 // this.label22.Appearance.ForeColor = System.Drawing.Color.Blue; this.label22.Appearance.Options.UseForeColor = true; this.label22.Location = new System.Drawing.Point(345, 191); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(25, 13); this.label22.TabIndex = 0; this.label22.Text = "KHXK"; this.label22.ToolTip = "Ký hiệu xếp kho"; // // label2 // this.label2.Location = new System.Drawing.Point(5, 33); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(67, 13); this.label2.TabIndex = 0; this.label2.Text = "Đơn vị sở hữu"; // // label4 // this.label4.Location = new System.Drawing.Point(5, 10); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(77, 13); this.label4.TabIndex = 0; this.label4.Text = "Đơn vị cung cấp"; // // label5 // this.label5.Location = new System.Drawing.Point(9, 100); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(43, 13); this.label5.TabIndex = 0; this.label5.Text = "Đạo diễn"; // // label15 // this.label15.Location = new System.Drawing.Point(639, 122); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(46, 13); this.label15.TabIndex = 0; this.label15.Text = "Rating TB"; this.label15.ToolTip = "Rating trung bình"; // // lblTitle // this.lblTitle.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblTitle.Appearance.Options.UseFont = true; this.lblTitle.Appearance.Options.UseTextOptions = true; this.lblTitle.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.lblTitle.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None; this.lblTitle.Dock = System.Windows.Forms.DockStyle.Top; this.lblTitle.Location = new System.Drawing.Point(0, 0); this.lblTitle.Name = "lblTitle"; this.lblTitle.Size = new System.Drawing.Size(1049, 38); this.lblTitle.TabIndex = 0; this.lblTitle.Text = "CHƯƠNG TRÌNH"; // // KyHieuXepKho_KHPL // this.KyHieuXepKho_KHPL.Location = new System.Drawing.Point(3, 1); this.KyHieuXepKho_KHPL.Name = "KyHieuXepKho_KHPL"; this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.KyHieuXepKho_KHPL.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuXepKho_KHPL.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.KyHieuXepKho_KHPL.Properties.ReadOnly = true; this.KyHieuXepKho_KHPL.Size = new System.Drawing.Size(221, 18); this.KyHieuXepKho_KHPL.TabIndex = 0; this.KyHieuXepKho_KHPL.TabStop = false; // // groupControlThongTinPhatSong // this.groupControlThongTinPhatSong.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupControlThongTinPhatSong.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControlThongTinPhatSong.AppearanceCaption.Options.UseFont = true; this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseDate); this.groupControlThongTinPhatSong.Controls.Add(this.SoRunConlai); this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRun); this.groupControlThongTinPhatSong.Controls.Add(this.Release); this.groupControlThongTinPhatSong.Controls.Add(this.SoDaRun); this.groupControlThongTinPhatSong.Controls.Add(this.gridControlPhatSongKhac); this.groupControlThongTinPhatSong.Controls.Add(this.gridControlNgayPhatDauTien); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl8); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl9); this.groupControlThongTinPhatSong.Controls.Add(this.RunThu); this.groupControlThongTinPhatSong.Controls.Add(this.TongSoRun); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl20); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl19); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl6); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl24); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl21); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl15); this.groupControlThongTinPhatSong.Controls.Add(this.labelControl10); this.groupControlThongTinPhatSong.Controls.Add(this.ReleaseRule); this.groupControlThongTinPhatSong.Controls.Add(this.MuaKem); this.groupControlThongTinPhatSong.Location = new System.Drawing.Point(3, 672); this.groupControlThongTinPhatSong.Name = "groupControlThongTinPhatSong"; this.groupControlThongTinPhatSong.Size = new System.Drawing.Size(1000, 351); this.groupControlThongTinPhatSong.TabIndex = 2; this.groupControlThongTinPhatSong.Text = "Thông tin phát sóng"; // // ReleaseDate // this.ReleaseDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.ReleaseDate.EditValue = null; this.ReleaseDate.Location = new System.Drawing.Point(840, 150); this.ReleaseDate.Name = "ReleaseDate"; this.ReleaseDate.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.ReleaseDate.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.ReleaseDate.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.ReleaseDate.Size = new System.Drawing.Size(155, 20); this.ReleaseDate.TabIndex = 5; // // SoRunConlai // this.SoRunConlai.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.SoRunConlai.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoRunConlai.Location = new System.Drawing.Point(840, 102); this.SoRunConlai.Name = "SoRunConlai"; this.SoRunConlai.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.SoRunConlai.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoRunConlai.Properties.ReadOnly = true; this.SoRunConlai.Size = new System.Drawing.Size(155, 20); this.SoRunConlai.TabIndex = 4; this.SoRunConlai.TabStop = false; // // ReleaseRun // this.ReleaseRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.ReleaseRun.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.ReleaseRun.Location = new System.Drawing.Point(841, 175); this.ReleaseRun.Name = "ReleaseRun"; this.ReleaseRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.ReleaseRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.ReleaseRun.Size = new System.Drawing.Size(154, 20); this.ReleaseRun.TabIndex = 5; // // Release // this.Release.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.Release.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.Release.Location = new System.Drawing.Point(840, 125); this.Release.Name = "Release"; this.Release.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.Release.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.Release.Size = new System.Drawing.Size(155, 20); this.Release.TabIndex = 5; // // SoDaRun // this.SoDaRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.SoDaRun.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.SoDaRun.Location = new System.Drawing.Point(840, 78); this.SoDaRun.Name = "SoDaRun"; this.SoDaRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.SoDaRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.SoDaRun.Size = new System.Drawing.Size(155, 20); this.SoDaRun.TabIndex = 3; this.SoDaRun.TabStop = false; this.SoDaRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged); // // gridControlPhatSongKhac // this.gridControlPhatSongKhac.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.gridControlPhatSongKhac.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlPhatSongKhac.BackgroundImage"))); this.gridControlPhatSongKhac.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlPhatSongKhac.Location = new System.Drawing.Point(450, 32); this.gridControlPhatSongKhac.MainView = this.gridviewPhatSongKhac; this.gridControlPhatSongKhac.Name = "gridControlPhatSongKhac"; this.gridControlPhatSongKhac.Size = new System.Drawing.Size(305, 314); this.gridControlPhatSongKhac.TabIndex = 1; this.gridControlPhatSongKhac.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridviewPhatSongKhac}); // // gridviewPhatSongKhac // this.gridviewPhatSongKhac.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridviewPhatSongKhac.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridviewPhatSongKhac.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.ColPSK_Kenh, this.ColPSK_TuNgay, this.ColPSK_DenNgay, this.ColPSK_LanPhat}); this.gridviewPhatSongKhac.GridControl = this.gridControlPhatSongKhac; this.gridviewPhatSongKhac.GroupCount = 1; this.gridviewPhatSongKhac.IndicatorWidth = 40; this.gridviewPhatSongKhac.Name = "gridviewPhatSongKhac"; this.gridviewPhatSongKhac.OptionsLayout.Columns.AddNewColumns = false; this.gridviewPhatSongKhac.OptionsNavigation.AutoFocusNewRow = true; this.gridviewPhatSongKhac.OptionsNavigation.EnterMoveNextColumn = true; this.gridviewPhatSongKhac.OptionsPrint.UsePrintStyles = true; this.gridviewPhatSongKhac.OptionsView.EnableAppearanceEvenRow = true; this.gridviewPhatSongKhac.OptionsView.EnableAppearanceOddRow = true; this.gridviewPhatSongKhac.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top; this.gridviewPhatSongKhac.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridviewPhatSongKhac.OptionsView.ShowFooter = true; this.gridviewPhatSongKhac.OptionsView.ShowGroupedColumns = true; this.gridviewPhatSongKhac.OptionsView.ShowGroupPanel = false; this.gridviewPhatSongKhac.OptionsView.ShowIndicator = false; this.gridviewPhatSongKhac.OptionsView.ShowViewCaption = true; this.gridviewPhatSongKhac.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColPSK_Kenh, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridviewPhatSongKhac.ViewCaption = "Thời gian phát sóng trên các kênh khác"; this.gridviewPhatSongKhac.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewPhatSongKhac_ValidateRow); // // ColPSK_Kenh // this.ColPSK_Kenh.Caption = "Kênh phát sóng"; this.ColPSK_Kenh.Name = "ColPSK_Kenh"; this.ColPSK_Kenh.SummaryItem.DisplayFormat = "Số lần đã phát {0}"; this.ColPSK_Kenh.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.ColPSK_Kenh.Visible = true; this.ColPSK_Kenh.VisibleIndex = 0; this.ColPSK_Kenh.Width = 100; // // ColPSK_TuNgay // this.ColPSK_TuNgay.Caption = "Từ ngày"; this.ColPSK_TuNgay.Name = "ColPSK_TuNgay"; this.ColPSK_TuNgay.Visible = true; this.ColPSK_TuNgay.VisibleIndex = 1; this.ColPSK_TuNgay.Width = 52; // // ColPSK_DenNgay // this.ColPSK_DenNgay.Caption = "Đến ngày"; this.ColPSK_DenNgay.Name = "ColPSK_DenNgay"; this.ColPSK_DenNgay.Visible = true; this.ColPSK_DenNgay.VisibleIndex = 2; this.ColPSK_DenNgay.Width = 59; // // ColPSK_LanPhat // this.ColPSK_LanPhat.Caption = "Run thứ"; this.ColPSK_LanPhat.Name = "ColPSK_LanPhat"; this.ColPSK_LanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}"; this.ColPSK_LanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.ColPSK_LanPhat.Visible = true; this.ColPSK_LanPhat.VisibleIndex = 3; this.ColPSK_LanPhat.Width = 52; // // gridControlNgayPhatDauTien // this.gridControlNgayPhatDauTien.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.gridControlNgayPhatDauTien.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlNgayPhatDauTien.BackgroundImage"))); this.gridControlNgayPhatDauTien.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlNgayPhatDauTien.Location = new System.Drawing.Point(6, 32); this.gridControlNgayPhatDauTien.MainView = this.gridViewNgayPhatDauTien; this.gridControlNgayPhatDauTien.Name = "gridControlNgayPhatDauTien"; this.gridControlNgayPhatDauTien.Size = new System.Drawing.Size(436, 314); this.gridControlNgayPhatDauTien.TabIndex = 0; this.gridControlNgayPhatDauTien.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewNgayPhatDauTien}); // // gridViewNgayPhatDauTien // this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewNgayPhatDauTien.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewNgayPhatDauTien.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.ColKenhPhatSong, this.ColIsPhatLai, this.ColNgayPhatStart, this.ColNgayPhatEnd, this.ColTimeSlot, this.ColLanPhat}); this.gridViewNgayPhatDauTien.GridControl = this.gridControlNgayPhatDauTien; this.gridViewNgayPhatDauTien.GroupCount = 1; this.gridViewNgayPhatDauTien.IndicatorWidth = 40; this.gridViewNgayPhatDauTien.Name = "gridViewNgayPhatDauTien"; this.gridViewNgayPhatDauTien.OptionsLayout.Columns.AddNewColumns = false; this.gridViewNgayPhatDauTien.OptionsMenu.EnableFooterMenu = false; this.gridViewNgayPhatDauTien.OptionsNavigation.AutoFocusNewRow = true; this.gridViewNgayPhatDauTien.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewNgayPhatDauTien.OptionsPrint.UsePrintStyles = true; this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceEvenRow = true; this.gridViewNgayPhatDauTien.OptionsView.EnableAppearanceOddRow = true; this.gridViewNgayPhatDauTien.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top; this.gridViewNgayPhatDauTien.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridViewNgayPhatDauTien.OptionsView.ShowFooter = true; this.gridViewNgayPhatDauTien.OptionsView.ShowGroupedColumns = true; this.gridViewNgayPhatDauTien.OptionsView.ShowGroupPanel = false; this.gridViewNgayPhatDauTien.OptionsView.ShowIndicator = false; this.gridViewNgayPhatDauTien.OptionsView.ShowViewCaption = true; this.gridViewNgayPhatDauTien.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhPhatSong, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridViewNgayPhatDauTien.ViewCaption = "Ngày phát sóng đầu tiên"; this.gridViewNgayPhatDauTien.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewNgayPhatDauTien_CustomDrawGroupRow); this.gridViewNgayPhatDauTien.RowUpdated += new DevExpress.XtraGrid.Views.Base.RowObjectEventHandler(this.gridViewNgayPhatDauTien_RowUpdated); this.gridViewNgayPhatDauTien.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewNgayPhatDauTien_ValidateRow); // // ColKenhPhatSong // this.ColKenhPhatSong.Caption = "Kênh"; this.ColKenhPhatSong.Name = "ColKenhPhatSong"; this.ColKenhPhatSong.SummaryItem.DisplayFormat = "Phát chính: {0} lần"; this.ColKenhPhatSong.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.ColKenhPhatSong.Visible = true; this.ColKenhPhatSong.VisibleIndex = 0; this.ColKenhPhatSong.Width = 83; // // ColIsPhatLai // this.ColIsPhatLai.Caption = "Phát lại"; this.ColIsPhatLai.Name = "ColIsPhatLai"; this.ColIsPhatLai.SummaryItem.DisplayFormat = "Phát lại: {0} lần"; this.ColIsPhatLai.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.ColIsPhatLai.Visible = true; this.ColIsPhatLai.VisibleIndex = 1; this.ColIsPhatLai.Width = 68; // // ColNgayPhatStart // this.ColNgayPhatStart.Caption = "Từ ngày"; this.ColNgayPhatStart.Name = "ColNgayPhatStart"; this.ColNgayPhatStart.Visible = true; this.ColNgayPhatStart.VisibleIndex = 2; this.ColNgayPhatStart.Width = 52; // // ColNgayPhatEnd // this.ColNgayPhatEnd.Caption = "Đến ngày"; this.ColNgayPhatEnd.Name = "ColNgayPhatEnd"; this.ColNgayPhatEnd.Visible = true; this.ColNgayPhatEnd.VisibleIndex = 3; this.ColNgayPhatEnd.Width = 59; // // ColTimeSlot // this.ColTimeSlot.Caption = "Timeslot"; this.ColTimeSlot.Name = "ColTimeSlot"; this.ColTimeSlot.Visible = true; this.ColTimeSlot.VisibleIndex = 4; this.ColTimeSlot.Width = 51; // // ColLanPhat // this.ColLanPhat.Caption = "Run thứ"; this.ColLanPhat.Name = "ColLanPhat"; this.ColLanPhat.SummaryItem.DisplayFormat = "Run thứ:{0}"; this.ColLanPhat.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Sum; this.ColLanPhat.Visible = true; this.ColLanPhat.VisibleIndex = 5; this.ColLanPhat.Width = 52; // // labelControl8 // this.labelControl8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl8.Location = new System.Drawing.Point(760, 105); this.labelControl8.Name = "labelControl8"; this.labelControl8.Size = new System.Drawing.Size(52, 13); this.labelControl8.TabIndex = 137; this.labelControl8.Text = "Run còn lại"; // // labelControl9 // this.labelControl9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl9.Location = new System.Drawing.Point(760, 81); this.labelControl9.Name = "labelControl9"; this.labelControl9.Size = new System.Drawing.Size(49, 13); this.labelControl9.TabIndex = 137; this.labelControl9.Text = "Số đã Run"; // // RunThu // this.RunThu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.RunThu.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.RunThu.Location = new System.Drawing.Point(840, 32); this.RunThu.Name = "RunThu"; this.RunThu.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.RunThu.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.RunThu.Size = new System.Drawing.Size(155, 20); this.RunThu.TabIndex = 2; this.RunThu.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged); // // TongSoRun // this.TongSoRun.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.TongSoRun.EditValue = new decimal(new int[] { 0, 0, 0, 0}); this.TongSoRun.Location = new System.Drawing.Point(840, 55); this.TongSoRun.Name = "TongSoRun"; this.TongSoRun.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.TongSoRun.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.TongSoRun.Size = new System.Drawing.Size(155, 20); this.TongSoRun.TabIndex = 2; this.TongSoRun.EditValueChanged += new System.EventHandler(this.TongSoRun_EditValueChanged); // // labelControl20 // this.labelControl20.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl20.Location = new System.Drawing.Point(760, 178); this.labelControl20.Name = "labelControl20"; this.labelControl20.Size = new System.Drawing.Size(57, 13); this.labelControl20.TabIndex = 129; this.labelControl20.Text = "Release run"; // // labelControl19 // this.labelControl19.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl19.Location = new System.Drawing.Point(760, 151); this.labelControl19.Name = "labelControl19"; this.labelControl19.Size = new System.Drawing.Size(63, 13); this.labelControl19.TabIndex = 129; this.labelControl19.Text = "Release date"; // // labelControl6 // this.labelControl6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl6.Location = new System.Drawing.Point(760, 127); this.labelControl6.Name = "labelControl6"; this.labelControl6.Size = new System.Drawing.Size(74, 13); this.labelControl6.TabIndex = 129; this.labelControl6.Text = "Release (Ngày)"; // // labelControl24 // this.labelControl24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl24.Location = new System.Drawing.Point(760, 205); this.labelControl24.Name = "labelControl24"; this.labelControl24.Size = new System.Drawing.Size(53, 13); this.labelControl24.TabIndex = 137; this.labelControl24.Text = "Realse rule"; // // labelControl21 // this.labelControl21.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl21.Location = new System.Drawing.Point(760, 276); this.labelControl21.Name = "labelControl21"; this.labelControl21.Size = new System.Drawing.Size(42, 13); this.labelControl21.TabIndex = 137; this.labelControl21.Text = "Mua kèm"; // // labelControl15 // this.labelControl15.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl15.Location = new System.Drawing.Point(760, 36); this.labelControl15.Name = "labelControl15"; this.labelControl15.Size = new System.Drawing.Size(39, 13); this.labelControl15.TabIndex = 137; this.labelControl15.Text = "Run thứ"; // // labelControl10 // this.labelControl10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.labelControl10.Location = new System.Drawing.Point(760, 57); this.labelControl10.Name = "labelControl10"; this.labelControl10.Size = new System.Drawing.Size(60, 13); this.labelControl10.TabIndex = 137; this.labelControl10.Text = "Tổng số Run"; // // ReleaseRule // this.ReleaseRule.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.ReleaseRule.Location = new System.Drawing.Point(841, 201); this.ReleaseRule.Name = "ReleaseRule"; this.ReleaseRule.Size = new System.Drawing.Size(152, 70); this.ReleaseRule.TabIndex = 6; // // MuaKem // this.MuaKem.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.MuaKem.Location = new System.Drawing.Point(841, 277); this.MuaKem.Name = "MuaKem"; this.MuaKem.Size = new System.Drawing.Size(155, 69); this.MuaKem.TabIndex = 6; // // Rating // this.Rating.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.Rating.Location = new System.Drawing.Point(690, 120); this.Rating.Name = "Rating"; this.Rating.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.Rating.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.Rating.Size = new System.Drawing.Size(303, 20); this.Rating.TabIndex = 12; // // DoiTuongKhanGia // this.DoiTuongKhanGia.DataSource = null; this.DoiTuongKhanGia.DisplayField = null; this.DoiTuongKhanGia.EditValue = ""; this.DoiTuongKhanGia.Location = new System.Drawing.Point(93, 120); this.DoiTuongKhanGia.Name = "DoiTuongKhanGia"; this.DoiTuongKhanGia.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DoiTuongKhanGia.Size = new System.Drawing.Size(241, 20); this.DoiTuongKhanGia.TabIndex = 10; this.DoiTuongKhanGia.ValueField = null; // // label14 // this.label14.Location = new System.Drawing.Point(9, 124); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(57, 13); this.label14.TabIndex = 0; this.label14.Text = "ĐT khán giả"; // // groupControlNguonGoc // this.groupControlNguonGoc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupControlNguonGoc.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControlNguonGoc.AppearanceCaption.Options.UseFont = true; this.groupControlNguonGoc.Controls.Add(this.NoteBQ); this.groupControlNguonGoc.Controls.Add(this.gridControlThongTinBan); this.groupControlNguonGoc.Controls.Add(this.groupControl7); this.groupControlNguonGoc.Controls.Add(this.labelControl17); this.groupControlNguonGoc.Controls.Add(this.groupControl1); this.groupControlNguonGoc.Controls.Add(this.labelControl14); this.groupControlNguonGoc.Location = new System.Drawing.Point(4, 425); this.groupControlNguonGoc.Name = "groupControlNguonGoc"; this.groupControlNguonGoc.Size = new System.Drawing.Size(999, 228); this.groupControlNguonGoc.TabIndex = 1; this.groupControlNguonGoc.Text = "Nguồn gốc - bản quyền"; // // NoteBQ // this.NoteBQ.Location = new System.Drawing.Point(95, 180); this.NoteBQ.Name = "NoteBQ"; this.NoteBQ.Size = new System.Drawing.Size(539, 43); this.NoteBQ.TabIndex = 136; // // gridControlThongTinBan // this.gridControlThongTinBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.gridControlThongTinBan.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlThongTinBan.BackgroundImage"))); this.gridControlThongTinBan.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlThongTinBan.Location = new System.Drawing.Point(645, 29); this.gridControlThongTinBan.MainView = this.gridViewThongTinBan; this.gridControlThongTinBan.Name = "gridControlThongTinBan"; this.gridControlThongTinBan.Size = new System.Drawing.Size(350, 194); this.gridControlThongTinBan.TabIndex = 2; this.gridControlThongTinBan.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewThongTinBan}); // // gridViewThongTinBan // this.gridViewThongTinBan.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewThongTinBan.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewThongTinBan.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.ColKenhBan, this.ColNgayBanTu, this.ColNgayBanDen}); this.gridViewThongTinBan.GridControl = this.gridControlThongTinBan; this.gridViewThongTinBan.GroupCount = 1; this.gridViewThongTinBan.IndicatorWidth = 40; this.gridViewThongTinBan.Name = "gridViewThongTinBan"; this.gridViewThongTinBan.OptionsLayout.Columns.AddNewColumns = false; this.gridViewThongTinBan.OptionsNavigation.AutoFocusNewRow = true; this.gridViewThongTinBan.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewThongTinBan.OptionsPrint.UsePrintStyles = true; this.gridViewThongTinBan.OptionsView.EnableAppearanceEvenRow = true; this.gridViewThongTinBan.OptionsView.EnableAppearanceOddRow = true; this.gridViewThongTinBan.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top; this.gridViewThongTinBan.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridViewThongTinBan.OptionsView.ShowGroupedColumns = true; this.gridViewThongTinBan.OptionsView.ShowGroupPanel = false; this.gridViewThongTinBan.OptionsView.ShowIndicator = false; this.gridViewThongTinBan.OptionsView.ShowViewCaption = true; this.gridViewThongTinBan.SortInfo.AddRange(new DevExpress.XtraGrid.Columns.GridColumnSortInfo[] { new DevExpress.XtraGrid.Columns.GridColumnSortInfo(this.ColKenhBan, DevExpress.Data.ColumnSortOrder.Ascending)}); this.gridViewThongTinBan.ViewCaption = "Thông tin bán"; this.gridViewThongTinBan.CustomDrawGroupRow += new DevExpress.XtraGrid.Views.Base.RowObjectCustomDrawEventHandler(this.gridViewThongTinBan_CustomDrawGroupRow); this.gridViewThongTinBan.ValidateRow += new DevExpress.XtraGrid.Views.Base.ValidateRowEventHandler(this.gridViewThongTinBan_ValidateRow); // // ColKenhBan // this.ColKenhBan.Caption = "Kênh bán"; this.ColKenhBan.Name = "ColKenhBan"; this.ColKenhBan.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}"; this.ColKenhBan.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.ColKenhBan.Visible = true; this.ColKenhBan.VisibleIndex = 0; this.ColKenhBan.Width = 70; // // ColNgayBanTu // this.ColNgayBanTu.Caption = "Từ ngày"; this.ColNgayBanTu.Name = "ColNgayBanTu"; this.ColNgayBanTu.Visible = true; this.ColNgayBanTu.VisibleIndex = 1; this.ColNgayBanTu.Width = 52; // // ColNgayBanDen // this.ColNgayBanDen.Caption = "Đên ngày"; this.ColNgayBanDen.Name = "ColNgayBanDen"; this.ColNgayBanDen.Visible = true; this.ColNgayBanDen.VisibleIndex = 2; this.ColNgayBanDen.Width = 59; // // groupControl7 // this.groupControl7.Controls.Add(this.DonViHauKy); this.groupControl7.Controls.Add(this.HangSanXuat); this.groupControl7.Controls.Add(this.DonViSoHuu); this.groupControl7.Controls.Add(this.NamSanXuat); this.groupControl7.Controls.Add(this.label4); this.groupControl7.Controls.Add(this.label2); this.groupControl7.Controls.Add(this.labelControl33); this.groupControl7.Controls.Add(this.labelControl32); this.groupControl7.Controls.Add(this.labelControl4); this.groupControl7.Controls.Add(this.labelControl7); this.groupControl7.Controls.Add(this.QuocGia); this.groupControl7.Controls.Add(this.label25); this.groupControl7.Controls.Add(this.KenhHanCheBan); this.groupControl7.Controls.Add(this.DonViCungCap); this.groupControl7.Location = new System.Drawing.Point(2, 29); this.groupControl7.Name = "groupControl7"; this.groupControl7.ShowCaption = false; this.groupControl7.Size = new System.Drawing.Size(338, 147); this.groupControl7.TabIndex = 0; this.groupControl7.Text = "groupControl7"; // // DonViHauKy // this.DonViHauKy._DataSource = null; this.DonViHauKy._GetField = null; this.DonViHauKy.Location = new System.Drawing.Point(92, 53); this.DonViHauKy.Name = "DonViHauKy"; this.DonViHauKy.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.DonViHauKy.Size = new System.Drawing.Size(241, 20); this.DonViHauKy.TabIndex = 133; // // HangSanXuat // this.HangSanXuat.Location = new System.Drawing.Point(92, 78); this.HangSanXuat.Name = "HangSanXuat"; this.HangSanXuat.Size = new System.Drawing.Size(241, 20); this.HangSanXuat.TabIndex = 1; this.HangSanXuat.ZZZWidthFactor = 2F; // // DonViSoHuu // this.DonViSoHuu.Location = new System.Drawing.Point(92, 31); this.DonViSoHuu.Name = "DonViSoHuu"; this.DonViSoHuu.Size = new System.Drawing.Size(241, 20); this.DonViSoHuu.TabIndex = 1; this.DonViSoHuu.ZZZWidthFactor = 2F; // // NamSanXuat // this.NamSanXuat.EditValue = new decimal(new int[] { 1999, 0, 0, 0}); this.NamSanXuat.Location = new System.Drawing.Point(278, 101); this.NamSanXuat.Name = "NamSanXuat"; this.NamSanXuat.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NamSanXuat.Properties.Mask.EditMask = "n0"; this.NamSanXuat.Properties.Mask.UseMaskAsDisplayFormat = true; this.NamSanXuat.Properties.MaxValue = new decimal(new int[] { -1530494977, 232830, 0, 0}); this.NamSanXuat.Size = new System.Drawing.Size(55, 20); this.NamSanXuat.TabIndex = 3; // // labelControl33 // this.labelControl33.Location = new System.Drawing.Point(6, 81); this.labelControl33.Name = "labelControl33"; this.labelControl33.Size = new System.Drawing.Size(70, 13); this.labelControl33.TabIndex = 0; this.labelControl33.Text = "Hãng sản xuất"; // // labelControl32 // this.labelControl32.Location = new System.Drawing.Point(5, 55); this.labelControl32.Name = "labelControl32"; this.labelControl32.Size = new System.Drawing.Size(66, 13); this.labelControl32.TabIndex = 0; this.labelControl32.Text = "Đơn vị hậu kỳ"; // // labelControl4 // this.labelControl4.Location = new System.Drawing.Point(5, 104); this.labelControl4.Name = "labelControl4"; this.labelControl4.Size = new System.Drawing.Size(70, 13); this.labelControl4.TabIndex = 0; this.labelControl4.Text = "Nước sản xuất"; // // labelControl7 // this.labelControl7.Location = new System.Drawing.Point(5, 127); this.labelControl7.Name = "labelControl7"; this.labelControl7.Size = new System.Drawing.Size(86, 13); this.labelControl7.TabIndex = 0; this.labelControl7.Text = "Kênh hạn chế bán"; // // QuocGia // this.QuocGia.DataSource = null; this.QuocGia.DisplayField = null; this.QuocGia.EditValue = ""; this.QuocGia.Location = new System.Drawing.Point(92, 101); 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(137, 20); this.QuocGia.TabIndex = 2; this.QuocGia.ValueField = null; // // label25 // this.label25.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label25.Appearance.ForeColor = System.Drawing.Color.Black; this.label25.Appearance.Options.UseFont = true; this.label25.Appearance.Options.UseForeColor = true; this.label25.Location = new System.Drawing.Point(236, 104); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(36, 13); this.label25.TabIndex = 0; this.label25.Text = "Năm SX"; // // KenhHanCheBan // this.KenhHanCheBan.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.KenhHanCheBan.DataSource = null; this.KenhHanCheBan.DisplayField = null; this.KenhHanCheBan.EditValue = ""; this.KenhHanCheBan.Location = new System.Drawing.Point(92, 123); this.KenhHanCheBan.Name = "KenhHanCheBan"; this.KenhHanCheBan.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.KenhHanCheBan.Size = new System.Drawing.Size(241, 20); this.KenhHanCheBan.TabIndex = 4; this.KenhHanCheBan.ValueField = null; // // DonViCungCap // this.DonViCungCap.Location = new System.Drawing.Point(92, 8); this.DonViCungCap.Name = "DonViCungCap"; this.DonViCungCap.Size = new System.Drawing.Size(241, 20); this.DonViCungCap.TabIndex = 0; this.DonViCungCap.ZZZWidthFactor = 2F; // // labelControl17 // this.labelControl17.Location = new System.Drawing.Point(436, 23); this.labelControl17.Name = "labelControl17"; this.labelControl17.Size = new System.Drawing.Size(95, 13); this.labelControl17.TabIndex = 0; this.labelControl17.Text = "Thời hạn bản quyền"; // // groupControl1 // this.groupControl1.Controls.Add(this.BanQuyenHTV); this.groupControl1.Controls.Add(this.BanQuyenDIDEnd); this.groupControl1.Controls.Add(this.BanQuyenDTNNEnd); this.groupControl1.Controls.Add(this.BanQuyenDIDStart); this.groupControl1.Controls.Add(this.BanQuyenDTNNStart); this.groupControl1.Controls.Add(this.ChanelRight); this.groupControl1.Controls.Add(this.labelControl25); this.groupControl1.Controls.Add(this.labelControl26); this.groupControl1.Controls.Add(this.labelControl27); this.groupControl1.Controls.Add(this.labelControl28); this.groupControl1.Controls.Add(this.labelControl29); this.groupControl1.Controls.Add(this.labelControl30); this.groupControl1.Controls.Add(this.BanQuyenThuoc); this.groupControl1.Controls.Add(this.labelControl31); this.groupControl1.Location = new System.Drawing.Point(345, 29); this.groupControl1.Name = "groupControl1"; this.groupControl1.ShowCaption = false; this.groupControl1.Size = new System.Drawing.Size(289, 145); this.groupControl1.TabIndex = 1; this.groupControl1.Text = "groupControl5"; // // BanQuyenHTV // this.BanQuyenHTV.EditValue = null; this.BanQuyenHTV.Location = new System.Drawing.Point(72, 83); this.BanQuyenHTV.Name = "BanQuyenHTV"; this.BanQuyenHTV.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.BanQuyenHTV.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenHTV.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BanQuyenHTV.Size = new System.Drawing.Size(213, 20); this.BanQuyenHTV.TabIndex = 5; // // BanQuyenDIDEnd // this.BanQuyenDIDEnd.EditValue = null; this.BanQuyenDIDEnd.Location = new System.Drawing.Point(192, 38); this.BanQuyenDIDEnd.Name = "BanQuyenDIDEnd"; this.BanQuyenDIDEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.BanQuyenDIDEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenDIDEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BanQuyenDIDEnd.Size = new System.Drawing.Size(94, 20); this.BanQuyenDIDEnd.TabIndex = 2; this.BanQuyenDIDEnd.ToolTip = "Bản quyền đối với đối tác trong nước End"; // // BanQuyenDTNNEnd // this.BanQuyenDTNNEnd.EditValue = null; this.BanQuyenDTNNEnd.Location = new System.Drawing.Point(192, 60); this.BanQuyenDTNNEnd.Name = "BanQuyenDTNNEnd"; this.BanQuyenDTNNEnd.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.BanQuyenDTNNEnd.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenDTNNEnd.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BanQuyenDTNNEnd.Size = new System.Drawing.Size(94, 20); this.BanQuyenDTNNEnd.TabIndex = 4; this.BanQuyenDTNNEnd.ToolTip = "Bản quyền với đối tác nước ngoài end"; // // BanQuyenDIDStart // this.BanQuyenDIDStart.EditValue = null; this.BanQuyenDIDStart.Location = new System.Drawing.Point(71, 38); this.BanQuyenDIDStart.Name = "BanQuyenDIDStart"; this.BanQuyenDIDStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.BanQuyenDIDStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenDIDStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BanQuyenDIDStart.Size = new System.Drawing.Size(91, 20); this.BanQuyenDIDStart.TabIndex = 1; this.BanQuyenDIDStart.ToolTip = "Bản quyền đối với đối tác trong nước start"; // // BanQuyenDTNNStart // this.BanQuyenDTNNStart.EditValue = null; this.BanQuyenDTNNStart.Location = new System.Drawing.Point(71, 60); this.BanQuyenDTNNStart.Name = "BanQuyenDTNNStart"; this.BanQuyenDTNNStart.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.BanQuyenDTNNStart.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.BanQuyenDTNNStart.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.BanQuyenDTNNStart.Size = new System.Drawing.Size(90, 20); this.BanQuyenDTNNStart.TabIndex = 3; // // ChanelRight // this.ChanelRight.DataSource = null; this.ChanelRight.DisplayField = null; this.ChanelRight.EditValue = ""; this.ChanelRight.Location = new System.Drawing.Point(72, 106); this.ChanelRight.Name = "ChanelRight"; this.ChanelRight.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.ChanelRight.Size = new System.Drawing.Size(213, 20); this.ChanelRight.TabIndex = 11; this.ChanelRight.ValueField = null; // // labelControl25 // this.labelControl25.Location = new System.Drawing.Point(2, 110); this.labelControl25.Name = "labelControl25"; this.labelControl25.Size = new System.Drawing.Size(64, 13); this.labelControl25.TabIndex = 0; this.labelControl25.Text = "Channel right"; // // labelControl26 // this.labelControl26.Location = new System.Drawing.Point(3, 20); this.labelControl26.Name = "labelControl26"; this.labelControl26.Size = new System.Drawing.Size(44, 13); this.labelControl26.TabIndex = 0; this.labelControl26.Text = "BQ thuộc"; this.labelControl26.ToolTip = "Bản quyền thuộc"; // // labelControl27 // this.labelControl27.Location = new System.Drawing.Point(3, 87); this.labelControl27.Name = "labelControl27"; this.labelControl27.Size = new System.Drawing.Size(19, 13); this.labelControl27.TabIndex = 0; this.labelControl27.Text = "HTV"; this.labelControl27.ToolTip = "Bản quyền HTV"; // // labelControl28 // this.labelControl28.Location = new System.Drawing.Point(3, 64); this.labelControl28.Name = "labelControl28"; this.labelControl28.Size = new System.Drawing.Size(54, 13); this.labelControl28.TabIndex = 0; this.labelControl28.Text = "DTNN Start"; this.labelControl28.ToolTip = "Bản quyền với đối tác nước ngoài Start"; // // labelControl29 // this.labelControl29.Location = new System.Drawing.Point(3, 42); this.labelControl29.Name = "labelControl29"; this.labelControl29.Size = new System.Drawing.Size(53, 13); this.labelControl29.TabIndex = 0; this.labelControl29.Text = "DTTN Start"; // // labelControl30 // this.labelControl30.Location = new System.Drawing.Point(169, 64); this.labelControl30.Name = "labelControl30"; this.labelControl30.Size = new System.Drawing.Size(18, 13); this.labelControl30.TabIndex = 0; this.labelControl30.Text = "End"; // // BanQuyenThuoc // this.BanQuyenThuoc.Location = new System.Drawing.Point(71, 16); this.BanQuyenThuoc.Name = "BanQuyenThuoc"; this.BanQuyenThuoc.Size = new System.Drawing.Size(217, 20); this.BanQuyenThuoc.TabIndex = 0; this.BanQuyenThuoc.ZZZWidthFactor = 2F; // // labelControl31 // this.labelControl31.Location = new System.Drawing.Point(169, 42); this.labelControl31.Name = "labelControl31"; this.labelControl31.Size = new System.Drawing.Size(18, 13); this.labelControl31.TabIndex = 0; this.labelControl31.Text = "End"; // // labelControl14 // this.labelControl14.Location = new System.Drawing.Point(6, 182); this.labelControl14.Name = "labelControl14"; this.labelControl14.Size = new System.Drawing.Size(40, 13); this.labelControl14.TabIndex = 0; this.labelControl14.Text = "Note BQ"; // // DaoDien // this.DaoDien.DataSource = null; this.DaoDien.DisplayField = null; this.DaoDien.EditValue = ""; this.DaoDien.Location = new System.Drawing.Point(93, 96); this.DaoDien.Name = "DaoDien"; this.DaoDien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DaoDien.Size = new System.Drawing.Size(239, 20); this.DaoDien.TabIndex = 7; this.DaoDien.ValueField = null; // // groupControlThongTin // this.groupControlThongTin.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.groupControlThongTin.AppearanceCaption.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.groupControlThongTin.AppearanceCaption.Options.UseFont = true; this.groupControlThongTin.Controls.Add(this.gridControlGhiChu); this.groupControlThongTin.Controls.Add(this.labelControl34); this.groupControlThongTin.Controls.Add(this.PhanLoaiDrama); this.groupControlThongTin.Controls.Add(this.labelControl18); this.groupControlThongTin.Controls.Add(this.NguonTrading); this.groupControlThongTin.Controls.Add(this.ClassName); this.groupControlThongTin.Controls.Add(this.labelControl23); this.groupControlThongTin.Controls.Add(this.labelControl13); this.groupControlThongTin.Controls.Add(this.Code); this.groupControlThongTin.Controls.Add(this.TenGoc); this.groupControlThongTin.Controls.Add(this.NoiDung); this.groupControlThongTin.Controls.Add(this.Period); this.groupControlThongTin.Controls.Add(this.Category); this.groupControlThongTin.Controls.Add(this.TrailerGoc); this.groupControlThongTin.Controls.Add(this.Photos); this.groupControlThongTin.Controls.Add(this.Script); this.groupControlThongTin.Controls.Add(this.ckcMoiTrenThiTruong); this.groupControlThongTin.Controls.Add(this.ckcTrongKho); this.groupControlThongTin.Controls.Add(this.ThanhLy); this.groupControlThongTin.Controls.Add(this.groupControl8); this.groupControlThongTin.Controls.Add(this.label22); this.groupControlThongTin.Controls.Add(this.Ranking); this.groupControlThongTin.Controls.Add(this.Rating); this.groupControlThongTin.Controls.Add(this.DienVien); this.groupControlThongTin.Controls.Add(this.DaoDien); this.groupControlThongTin.Controls.Add(this.KyHieuPhanLoai); this.groupControlThongTin.Controls.Add(this.labelControl22); this.groupControlThongTin.Controls.Add(this.labelControl16); this.groupControlThongTin.Controls.Add(this.label21); this.groupControlThongTin.Controls.Add(this.labelControl12); this.groupControlThongTin.Controls.Add(this.label15); this.groupControlThongTin.Controls.Add(this.label5); this.groupControlThongTin.Controls.Add(this.label24); this.groupControlThongTin.Controls.Add(this.TuKhoaSelect); this.groupControlThongTin.Controls.Add(this.DoiTuongKhanGia); this.groupControlThongTin.Controls.Add(this.labelControl11); this.groupControlThongTin.Controls.Add(this.label14); this.groupControlThongTin.Controls.Add(this.NgayAWB); this.groupControlThongTin.Controls.Add(this.TomTatNoiDung); this.groupControlThongTin.Controls.Add(this.GhiChu); this.groupControlThongTin.Controls.Add(this.TuKhoaText); this.groupControlThongTin.Controls.Add(this.label20); this.groupControlThongTin.Controls.Add(this.labelControl2); this.groupControlThongTin.Controls.Add(this.label33); this.groupControlThongTin.Controls.Add(this.labelControl5); this.groupControlThongTin.Controls.Add(this.label36); this.groupControlThongTin.Controls.Add(this.Info); this.groupControlThongTin.Controls.Add(this.TinhTrangBang); this.groupControlThongTin.Controls.Add(this.TietMuc); this.groupControlThongTin.Controls.Add(this.labelControl3); this.groupControlThongTin.Controls.Add(this.MaChuongTrinh); this.groupControlThongTin.Controls.Add(this.label7); this.groupControlThongTin.Controls.Add(this.label42); this.groupControlThongTin.Controls.Add(this.labelControl1); this.groupControlThongTin.Controls.Add(this.label8); this.groupControlThongTin.Location = new System.Drawing.Point(3, 0); this.groupControlThongTin.Name = "groupControlThongTin"; this.groupControlThongTin.Size = new System.Drawing.Size(1000, 410); this.groupControlThongTin.TabIndex = 0; this.groupControlThongTin.Text = "Thông tin chính"; // // gridControlGhiChu // this.gridControlGhiChu.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.gridControlGhiChu.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gridControlGhiChu.BackgroundImage"))); this.gridControlGhiChu.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.gridControlGhiChu.Location = new System.Drawing.Point(405, 241); this.gridControlGhiChu.MainView = this.gridViewGhiChu; this.gridControlGhiChu.Name = "gridControlGhiChu"; this.gridControlGhiChu.Size = new System.Drawing.Size(588, 152); this.gridControlGhiChu.TabIndex = 138; this.gridControlGhiChu.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] { this.gridViewGhiChu}); // // gridViewGhiChu // this.gridViewGhiChu.Appearance.HeaderPanel.Options.UseTextOptions = true; this.gridViewGhiChu.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.gridViewGhiChu.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] { this.colLoaiGhiChu, this.colNoiDungGhiChu}); this.gridViewGhiChu.GridControl = this.gridControlGhiChu; this.gridViewGhiChu.IndicatorWidth = 40; this.gridViewGhiChu.Name = "gridViewGhiChu"; this.gridViewGhiChu.OptionsLayout.Columns.AddNewColumns = false; this.gridViewGhiChu.OptionsNavigation.AutoFocusNewRow = true; this.gridViewGhiChu.OptionsNavigation.EnterMoveNextColumn = true; this.gridViewGhiChu.OptionsPrint.UsePrintStyles = true; this.gridViewGhiChu.OptionsView.EnableAppearanceEvenRow = true; this.gridViewGhiChu.OptionsView.EnableAppearanceOddRow = true; this.gridViewGhiChu.OptionsView.NewItemRowPosition = DevExpress.XtraGrid.Views.Grid.NewItemRowPosition.Top; this.gridViewGhiChu.OptionsView.ShowFilterPanelMode = DevExpress.XtraGrid.Views.Base.ShowFilterPanelMode.Never; this.gridViewGhiChu.OptionsView.ShowGroupedColumns = true; this.gridViewGhiChu.OptionsView.ShowGroupPanel = false; this.gridViewGhiChu.OptionsView.ShowIndicator = false; this.gridViewGhiChu.ViewCaption = "Thông tin bán"; // // colLoaiGhiChu // this.colLoaiGhiChu.Caption = "Loại ghi chú"; this.colLoaiGhiChu.Name = "colLoaiGhiChu"; this.colLoaiGhiChu.SummaryItem.DisplayFormat = "Tồng số lần đã bán {0}"; this.colLoaiGhiChu.SummaryItem.SummaryType = DevExpress.Data.SummaryItemType.Count; this.colLoaiGhiChu.Visible = true; this.colLoaiGhiChu.VisibleIndex = 0; this.colLoaiGhiChu.Width = 68; // // colNoiDungGhiChu // this.colNoiDungGhiChu.Caption = "Nội dung"; this.colNoiDungGhiChu.Name = "colNoiDungGhiChu"; this.colNoiDungGhiChu.Visible = true; this.colNoiDungGhiChu.VisibleIndex = 1; this.colNoiDungGhiChu.Width = 54; // // labelControl34 // this.labelControl34.Location = new System.Drawing.Point(342, 245); this.labelControl34.Name = "labelControl34"; this.labelControl34.Size = new System.Drawing.Size(60, 13); this.labelControl34.TabIndex = 139; this.labelControl34.Text = "Ghi chú khác"; // // PhanLoaiDrama // this.PhanLoaiDrama._DataSource = null; this.PhanLoaiDrama._GetField = null; this.PhanLoaiDrama.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.PhanLoaiDrama.Location = new System.Drawing.Point(690, 142); this.PhanLoaiDrama.MenuManager = this.barManager1; this.PhanLoaiDrama.Name = "PhanLoaiDrama"; this.PhanLoaiDrama.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, false)}); this.PhanLoaiDrama.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.PhanLoaiDrama.Size = new System.Drawing.Size(303, 20); this.PhanLoaiDrama.TabIndex = 137; // // barManager1 // this.barManager1.DockControls.Add(this.barDockControlTop); this.barManager1.DockControls.Add(this.barDockControlBottom); this.barManager1.DockControls.Add(this.barDockControlLeft); this.barManager1.DockControls.Add(this.barDockControlRight); this.barManager1.Form = this; this.barManager1.MaxItemId = 2; // // 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(1049, 0); // // barDockControlBottom // this.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom; this.barDockControlBottom.Location = new System.Drawing.Point(0, 750); this.barDockControlBottom.Size = new System.Drawing.Size(1049, 0); // // barDockControlLeft // this.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left; this.barDockControlLeft.Location = new System.Drawing.Point(0, 0); this.barDockControlLeft.Size = new System.Drawing.Size(0, 750); // // barDockControlRight // this.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right; this.barDockControlRight.Location = new System.Drawing.Point(1049, 0); this.barDockControlRight.Size = new System.Drawing.Size(0, 750); // // labelControl18 // this.labelControl18.Location = new System.Drawing.Point(639, 144); this.labelControl18.Name = "labelControl18"; this.labelControl18.Size = new System.Drawing.Size(49, 13); this.labelControl18.TabIndex = 136; this.labelControl18.Text = "P/L Drama"; this.labelControl18.ToolTip = "Phân loại Drama"; // // NguonTrading // this.NguonTrading._DataSource = null; this.NguonTrading._GetField = null; this.NguonTrading.Location = new System.Drawing.Point(93, 191); this.NguonTrading.Name = "NguonTrading"; this.NguonTrading.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, false)}); this.NguonTrading.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NguonTrading.Size = new System.Drawing.Size(239, 20); this.NguonTrading.TabIndex = 135; // // ClassName // this.ClassName._DataSource = null; this.ClassName._GetField = null; this.ClassName.Location = new System.Drawing.Point(405, 119); this.ClassName.MenuManager = this.barManager1; this.ClassName.Name = "ClassName"; this.ClassName.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, false)}); this.ClassName.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.ClassName.Size = new System.Drawing.Size(227, 20); this.ClassName.TabIndex = 135; // // labelControl23 // this.labelControl23.Location = new System.Drawing.Point(8, 192); this.labelControl23.Name = "labelControl23"; this.labelControl23.Size = new System.Drawing.Size(70, 13); this.labelControl23.TabIndex = 134; this.labelControl23.Text = "Nguồn Trading"; // // labelControl13 // this.labelControl13.Location = new System.Drawing.Point(9, 170); this.labelControl13.Name = "labelControl13"; this.labelControl13.Size = new System.Drawing.Size(41, 13); this.labelControl13.TabIndex = 134; this.labelControl13.Text = "Code CT"; this.labelControl13.ToolTip = "Mã code kế toán"; // // Code // this.Code.Location = new System.Drawing.Point(93, 168); this.Code.MenuManager = this.barManager1; this.Code.Name = "Code"; this.Code.Size = new System.Drawing.Size(239, 20); this.Code.TabIndex = 133; // // TenGoc // this.TenGoc._DataSource = null; this.TenGoc._GetField = null; this.TenGoc.Location = new System.Drawing.Point(405, 73); this.TenGoc.Name = "TenGoc"; this.TenGoc.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.TenGoc.Size = new System.Drawing.Size(227, 20); this.TenGoc.TabIndex = 132; // // NoiDung // this.NoiDung._DataSource = null; this.NoiDung._GetField = null; this.NoiDung.Location = new System.Drawing.Point(93, 73); this.NoiDung.Name = "NoiDung"; this.NoiDung.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.NoiDung.Size = new System.Drawing.Size(240, 20); this.NoiDung.TabIndex = 132; this.NoiDung.Validated += new System.EventHandler(this.KyHieuPhanLoai_Validated); // // Period // this.Period._DataSource = null; this.Period._GetField = null; this.Period.Location = new System.Drawing.Point(405, 142); this.Period.Name = "Period"; this.Period.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, false)}); this.Period.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.Period.Size = new System.Drawing.Size(228, 20); this.Period.TabIndex = 6; // // Category // this.Category._DataSource = null; this.Category._GetField = null; this.Category.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.Category.Location = new System.Drawing.Point(690, 72); this.Category.MenuManager = this.barManager1; this.Category.Name = "Category"; this.Category.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo, "", 0, true, false, false, DevExpress.XtraEditors.ImageLocation.Default, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject5, "", null, null, false)}); this.Category.Properties.CloseUpKey = new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None); this.Category.Size = new System.Drawing.Size(303, 20); this.Category.TabIndex = 6; // // TrailerGoc // this.TrailerGoc.Location = new System.Drawing.Point(260, 215); this.TrailerGoc.Name = "TrailerGoc"; this.TrailerGoc.Properties.Caption = "Trailer gốc"; this.TrailerGoc.Size = new System.Drawing.Size(72, 19); this.TrailerGoc.TabIndex = 16; // // Photos // this.Photos.Location = new System.Drawing.Point(174, 215); this.Photos.Name = "Photos"; this.Photos.Properties.Caption = "Photo"; this.Photos.Size = new System.Drawing.Size(56, 19); this.Photos.TabIndex = 15; // // Script // this.Script.Location = new System.Drawing.Point(93, 215); this.Script.MenuManager = this.barManager1; this.Script.Name = "Script"; this.Script.Properties.Caption = "Script"; this.Script.Size = new System.Drawing.Size(48, 19); this.Script.TabIndex = 14; // // ckcMoiTrenThiTruong // this.ckcMoiTrenThiTruong.Location = new System.Drawing.Point(313, 25); this.ckcMoiTrenThiTruong.Name = "ckcMoiTrenThiTruong"; this.ckcMoiTrenThiTruong.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.ckcMoiTrenThiTruong.Properties.Appearance.ForeColor = System.Drawing.Color.Red; this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseFont = true; this.ckcMoiTrenThiTruong.Properties.Appearance.Options.UseForeColor = true; this.ckcMoiTrenThiTruong.Properties.Caption = "Mới trên thị trường"; this.ckcMoiTrenThiTruong.Size = new System.Drawing.Size(142, 19); this.ckcMoiTrenThiTruong.TabIndex = 0; // // ckcTrongKho // this.ckcTrongKho.Location = new System.Drawing.Point(204, 24); this.ckcTrongKho.Name = "ckcTrongKho"; this.ckcTrongKho.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.ckcTrongKho.Properties.Appearance.ForeColor = System.Drawing.Color.Red; this.ckcTrongKho.Properties.Appearance.Options.UseFont = true; this.ckcTrongKho.Properties.Appearance.Options.UseForeColor = true; this.ckcTrongKho.Properties.Caption = "Có trong kho"; this.ckcTrongKho.Size = new System.Drawing.Size(98, 19); this.ckcTrongKho.TabIndex = 0; // // ThanhLy // this.ThanhLy.Location = new System.Drawing.Point(91, 24); this.ThanhLy.Name = "ThanhLy"; this.ThanhLy.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.ThanhLy.Properties.Appearance.ForeColor = System.Drawing.Color.Red; this.ThanhLy.Properties.Appearance.Options.UseFont = true; this.ThanhLy.Properties.Appearance.Options.UseForeColor = true; this.ThanhLy.Properties.Caption = "Thanh lý"; this.ThanhLy.Size = new System.Drawing.Size(88, 19); this.ThanhLy.TabIndex = 0; // // groupControl8 // this.groupControl8.Controls.Add(this.KyHieuXepKho_KHPL); this.groupControl8.Controls.Add(this.KyHieuXepKho_NoiDung); this.groupControl8.Controls.Add(this.textEdit1); this.groupControl8.Location = new System.Drawing.Point(405, 188); this.groupControl8.Name = "groupControl8"; this.groupControl8.ShowCaption = false; this.groupControl8.Size = new System.Drawing.Size(227, 46); this.groupControl8.TabIndex = 17; this.groupControl8.Text = "groupControl8"; // // KyHieuXepKho_NoiDung // this.KyHieuXepKho_NoiDung.Location = new System.Drawing.Point(2, 26); this.KyHieuXepKho_NoiDung.Name = "KyHieuXepKho_NoiDung"; this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.KyHieuXepKho_NoiDung.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.KyHieuXepKho_NoiDung.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.KyHieuXepKho_NoiDung.Properties.ReadOnly = true; this.KyHieuXepKho_NoiDung.Size = new System.Drawing.Size(220, 18); this.KyHieuXepKho_NoiDung.TabIndex = 2; this.KyHieuXepKho_NoiDung.TabStop = false; // // textEdit1 // this.textEdit1.EditValue = "___________________"; this.textEdit1.Location = new System.Drawing.Point(2, 9); this.textEdit1.Name = "textEdit1"; this.textEdit1.Properties.AllowFocused = false; this.textEdit1.Properties.AppearanceReadOnly.Options.UseTextOptions = true; this.textEdit1.Properties.AppearanceReadOnly.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center; this.textEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder; this.textEdit1.Properties.ReadOnly = true; this.textEdit1.Size = new System.Drawing.Size(220, 18); this.textEdit1.TabIndex = 5; this.textEdit1.TabStop = false; // // Ranking // this.Ranking.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.Ranking.Location = new System.Drawing.Point(690, 96); this.Ranking.Name = "Ranking"; this.Ranking.Size = new System.Drawing.Size(305, 20); this.Ranking.TabIndex = 9; this.Ranking.ZZZWidthFactor = 2F; // // DienVien // this.DienVien.DataSource = null; this.DienVien.DisplayField = null; this.DienVien.EditValue = ""; this.DienVien.Location = new System.Drawing.Point(405, 96); this.DienVien.Name = "DienVien"; this.DienVien.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.DienVien.Size = new System.Drawing.Size(227, 20); this.DienVien.TabIndex = 8; this.DienVien.ValueField = null; // // labelControl22 // this.labelControl22.Location = new System.Drawing.Point(344, 122); this.labelControl22.Name = "labelControl22"; this.labelControl22.Size = new System.Drawing.Size(24, 13); this.labelControl22.TabIndex = 0; this.labelControl22.Text = "Điểm"; // // labelControl16 // this.labelControl16.Location = new System.Drawing.Point(343, 145); this.labelControl16.Name = "labelControl16"; this.labelControl16.Size = new System.Drawing.Size(30, 13); this.labelControl16.TabIndex = 0; this.labelControl16.Text = "Period"; // // labelControl12 // this.labelControl12.Location = new System.Drawing.Point(640, 98); this.labelControl12.Name = "labelControl12"; this.labelControl12.Size = new System.Drawing.Size(38, 13); this.labelControl12.TabIndex = 0; this.labelControl12.Text = "Ranking"; // // label24 // this.label24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.label24.Location = new System.Drawing.Point(968, 125); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(19, 13); this.label24.TabIndex = 0; this.label24.Text = "(%)"; // // TuKhoaSelect // this.TuKhoaSelect.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.TuKhoaSelect.DataSource = null; this.TuKhoaSelect.DisplayField = null; this.TuKhoaSelect.EditValue = ""; this.TuKhoaSelect.Location = new System.Drawing.Point(690, 216); this.TuKhoaSelect.Name = "TuKhoaSelect"; this.TuKhoaSelect.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.TuKhoaSelect.Properties.TextEditStyle = DevExpress.XtraEditors.Controls.TextEditStyles.HideTextEditor; this.TuKhoaSelect.Size = new System.Drawing.Size(303, 19); this.TuKhoaSelect.TabIndex = 18; this.TuKhoaSelect.TabStop = false; this.TuKhoaSelect.ValueField = null; this.TuKhoaSelect.EditValueChanged += new System.EventHandler(this.TuKhoaSelect_EditValueChanged); this.TuKhoaSelect.CloseUp += new DevExpress.XtraEditors.Controls.CloseUpEventHandler(this.TuKhoaSelect_CloseUp); // // labelControl11 // this.labelControl11.Location = new System.Drawing.Point(638, 74); this.labelControl11.Name = "labelControl11"; this.labelControl11.Size = new System.Drawing.Size(45, 13); this.labelControl11.TabIndex = 0; this.labelControl11.Text = "Category"; // // NgayAWB // this.NgayAWB.EditValue = null; this.NgayAWB.Location = new System.Drawing.Point(405, 48); this.NgayAWB.Name = "NgayAWB"; this.NgayAWB.Properties.AllowNullInput = DevExpress.Utils.DefaultBoolean.True; this.NgayAWB.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)}); this.NgayAWB.Properties.VistaTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton()}); this.NgayAWB.Size = new System.Drawing.Size(227, 20); this.NgayAWB.TabIndex = 2; // // TomTatNoiDung // this.TomTatNoiDung.Location = new System.Drawing.Point(93, 242); this.TomTatNoiDung.Name = "TomTatNoiDung"; this.TomTatNoiDung.Size = new System.Drawing.Size(241, 80); this.TomTatNoiDung.TabIndex = 20; // // GhiChu // this.GhiChu.Location = new System.Drawing.Point(91, 326); this.GhiChu.Name = "GhiChu"; this.GhiChu.Size = new System.Drawing.Size(243, 78); this.GhiChu.TabIndex = 21; this.GhiChu.EditValueChanged += new System.EventHandler(this.GhiChu_EditValueChanged); // // TuKhoaText // this.TuKhoaText.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.TuKhoaText.Location = new System.Drawing.Point(690, 167); this.TuKhoaText.Name = "TuKhoaText"; this.TuKhoaText.Properties.ReadOnly = true; this.TuKhoaText.Size = new System.Drawing.Size(303, 50); this.TuKhoaText.TabIndex = 19; this.TuKhoaText.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TuKhoaText_KeyDown); // // label20 // this.label20.Location = new System.Drawing.Point(639, 169); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(39, 13); this.label20.TabIndex = 131; this.label20.Text = "Từ khóa"; // // labelControl2 // this.labelControl2.Location = new System.Drawing.Point(343, 100); this.labelControl2.Name = "labelControl2"; this.labelControl2.Size = new System.Drawing.Size(44, 13); this.labelControl2.TabIndex = 129; this.labelControl2.Text = "Diễn viên"; // // label33 // this.label33.Location = new System.Drawing.Point(343, 52); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(51, 13); this.label33.TabIndex = 129; this.label33.Text = "Ngày AWB"; // // labelControl5 // this.labelControl5.Location = new System.Drawing.Point(8, 244); this.labelControl5.Name = "labelControl5"; this.labelControl5.Size = new System.Drawing.Size(81, 13); this.labelControl5.TabIndex = 129; this.labelControl5.Text = "Tóm tắt nội dung"; // // label36 // this.label36.Location = new System.Drawing.Point(12, 329); this.label36.Name = "label36"; this.label36.Size = new System.Drawing.Size(35, 13); this.label36.TabIndex = 129; this.label36.Text = "Ghi chú"; // // Info // this.Info.Location = new System.Drawing.Point(308, 46); this.Info.Name = "Info"; this.Info.Size = new System.Drawing.Size(24, 21); this.Info.TabIndex = 1; // // TinhTrangBang // this.TinhTrangBang.Location = new System.Drawing.Point(93, 144); this.TinhTrangBang.Name = "TinhTrangBang"; this.TinhTrangBang.Size = new System.Drawing.Size(241, 20); this.TinhTrangBang.TabIndex = 13; this.TinhTrangBang.ZZZWidthFactor = 2F; // // TietMuc // this.TietMuc.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.TietMuc.Location = new System.Drawing.Point(690, 48); this.TietMuc.Name = "TietMuc"; this.TietMuc.Size = new System.Drawing.Size(303, 20); this.TietMuc.TabIndex = 3; this.TietMuc.ZZZWidthFactor = 2F; // // labelControl3 // this.labelControl3.Location = new System.Drawing.Point(9, 148); this.labelControl3.Name = "labelControl3"; this.labelControl3.Size = new System.Drawing.Size(39, 13); this.labelControl3.TabIndex = 0; this.labelControl3.Text = "TT băng"; this.labelControl3.ToolTip = "Tình trạng băng"; // // MaChuongTrinh // this.MaChuongTrinh.Location = new System.Drawing.Point(93, 48); this.MaChuongTrinh.Name = "MaChuongTrinh"; this.MaChuongTrinh.Properties.Appearance.BackColor = System.Drawing.Color.White; this.MaChuongTrinh.Properties.Appearance.Options.UseBackColor = true; this.MaChuongTrinh.Properties.MaxLength = 100; this.MaChuongTrinh.Properties.ReadOnly = true; this.MaChuongTrinh.Size = new System.Drawing.Size(209, 20); this.MaChuongTrinh.TabIndex = 1; this.MaChuongTrinh.TabStop = false; this.MaChuongTrinh.ToolTip = "Mã chương trình"; // // label42 // this.label42.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label42.Appearance.Options.UseFont = true; this.label42.Location = new System.Drawing.Point(342, 76); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(38, 13); this.label42.TabIndex = 0; this.label42.Text = "Tên gốc"; // // labelControl1 // this.labelControl1.Location = new System.Drawing.Point(9, 52); this.labelControl1.Name = "labelControl1"; this.labelControl1.Size = new System.Drawing.Size(78, 13); this.labelControl1.TabIndex = 0; this.labelControl1.Text = "Mã chương trình"; // // xtraTabControlMain // this.xtraTabControlMain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.xtraTabControlMain.AppearancePage.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.xtraTabControlMain.AppearancePage.Header.Options.UseFont = true; this.xtraTabControlMain.AppearancePage.HeaderActive.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.xtraTabControlMain.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.Blue; this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseFont = true; this.xtraTabControlMain.AppearancePage.HeaderActive.Options.UseForeColor = true; this.xtraTabControlMain.ClosePageButtonShowMode = DevExpress.XtraTab.ClosePageButtonShowMode.InAllTabPageHeaders; this.xtraTabControlMain.Location = new System.Drawing.Point(6, 44); this.xtraTabControlMain.Name = "xtraTabControlMain"; this.xtraTabControlMain.SelectedTabPage = this.xtraTabPageChuongTrinh; this.xtraTabControlMain.Size = new System.Drawing.Size(1043, 666); this.xtraTabControlMain.TabIndex = 130; this.xtraTabControlMain.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { this.xtraTabPageChuongTrinh, this.xtraTabPageAdd}); this.xtraTabControlMain.SelectedPageChanging += new DevExpress.XtraTab.TabPageChangingEventHandler(this.xtraTabControl1_SelectedPageChanging); this.xtraTabControlMain.CloseButtonClick += new System.EventHandler(this.xtraTabControlMain_CloseButtonClick); // // xtraTabPageChuongTrinh // this.xtraTabPageChuongTrinh.AutoScroll = true; this.xtraTabPageChuongTrinh.Controls.Add(this.xtraScrollableControl1); this.xtraTabPageChuongTrinh.FireScrollEventOnMouseWheel = true; this.xtraTabPageChuongTrinh.Name = "xtraTabPageChuongTrinh"; this.xtraTabPageChuongTrinh.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False; this.xtraTabPageChuongTrinh.Size = new System.Drawing.Size(1036, 637); this.xtraTabPageChuongTrinh.Text = "Thông tin chương trình"; // // xtraScrollableControl1 // this.xtraScrollableControl1.Controls.Add(this.groupControlThongTinPhatSong); this.xtraScrollableControl1.Controls.Add(this.groupControlNguonGoc); this.xtraScrollableControl1.Controls.Add(this.groupControlThongTin); this.xtraScrollableControl1.Dock = System.Windows.Forms.DockStyle.Fill; this.xtraScrollableControl1.FireScrollEventOnMouseWheel = true; this.xtraScrollableControl1.Location = new System.Drawing.Point(0, 0); this.xtraScrollableControl1.Name = "xtraScrollableControl1"; this.xtraScrollableControl1.Size = new System.Drawing.Size(1036, 637); this.xtraScrollableControl1.TabIndex = 130; // // xtraTabPageAdd // this.xtraTabPageAdd.Appearance.Header.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold); this.xtraTabPageAdd.Appearance.Header.Options.UseFont = true; this.xtraTabPageAdd.Name = "xtraTabPageAdd"; this.xtraTabPageAdd.ShowCloseButton = DevExpress.Utils.DefaultBoolean.False; this.xtraTabPageAdd.Size = new System.Drawing.Size(1036, 637); this.xtraTabPageAdd.Text = "+"; // // popupMenuTab // this.popupMenuTab.Manager = this.barManager1; this.popupMenuTab.Name = "popupMenuTab"; // // barButtonItem1 // this.barButtonItem1.Caption = "Text"; this.barButtonItem1.Id = 0; this.barButtonItem1.Name = "barButtonItem1"; // // FrmChuongTrinh // this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None; this.ClientSize = new System.Drawing.Size(1049, 750); this.Controls.Add(this.flowLayoutPanel1); this.Controls.Add(this.flowLayoutPanel2); this.Controls.Add(this.xtraTabControlMain); this.Controls.Add(this.lblTitle); this.Controls.Add(this.barDockControlLeft); this.Controls.Add(this.barDockControlRight); this.Controls.Add(this.barDockControlBottom); this.Controls.Add(this.barDockControlTop); this.Cursor = System.Windows.Forms.Cursors.Default; this.Name = "FrmChuongTrinh"; this.Text = "Chương trình"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.Load += new System.EventHandler(this.frmPhuongAnDeXuatTour_Load); this.flowLayoutPanel1.ResumeLayout(false); this.flowLayoutPanel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.KyHieuPhanLoai.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_KHPL.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTinPhatSong)).EndInit(); this.groupControlThongTinPhatSong.ResumeLayout(false); this.groupControlThongTinPhatSong.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseDate.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoRunConlai.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseRun.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Release.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.SoDaRun.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlPhatSongKhac)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridviewPhatSongKhac)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlNgayPhatDauTien)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewNgayPhatDauTien)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.RunThu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TongSoRun.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ReleaseRule.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.MuaKem.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Rating.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DoiTuongKhanGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlNguonGoc)).EndInit(); this.groupControlNguonGoc.ResumeLayout(false); this.groupControlNguonGoc.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.NoteBQ.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridControlThongTinBan)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewThongTinBan)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl7)).EndInit(); this.groupControl7.ResumeLayout(false); this.groupControl7.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.DonViHauKy.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NamSanXuat.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.QuocGia.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.KenhHanCheBan.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl1)).EndInit(); this.groupControl1.ResumeLayout(false); this.groupControl1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenHTV.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDEnd.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNEnd.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDIDStart.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.BanQuyenDTNNStart.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ChanelRight.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DaoDien.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControlThongTin)).EndInit(); this.groupControlThongTin.ResumeLayout(false); this.groupControlThongTin.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.gridControlGhiChu)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.gridViewGhiChu)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PhanLoaiDrama.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.barManager1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NguonTrading.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ClassName.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Code.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TenGoc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Period.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Category.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TrailerGoc.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Photos.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Script.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ckcMoiTrenThiTruong.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ckcTrongKho.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.ThanhLy.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.groupControl8)).EndInit(); this.groupControl8.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.KyHieuXepKho_NoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.textEdit1.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.DienVien.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaSelect.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties.VistaTimeProperties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.NgayAWB.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TomTatNoiDung.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GhiChu.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.TuKhoaText.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.MaChuongTrinh.Properties)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.xtraTabControlMain)).EndInit(); this.xtraTabControlMain.ResumeLayout(false); this.xtraTabPageChuongTrinh.ResumeLayout(false); this.xtraScrollableControl1.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.popupMenuTab)).EndInit(); this.ResumeLayout(false); }
public RBTienThanhToanExt(PhieuType Src, long SrcID, PhieuType Des, long DesID, object DesObj, PLGridView DesGrid) { this.Src = Src; this.SrcID = SrcID; this.Des = Des; this.DesID = DesID; this.DesObj = DesObj; this.DesGrid = DesGrid; }