本文整理汇总了C#中DevExpress.XtraTab.XtraTabPage类的典型用法代码示例。如果您正苦于以下问题:C# DevExpress.XtraTab.XtraTabPage类的具体用法?C# DevExpress.XtraTab.XtraTabPage怎么用?C# DevExpress.XtraTab.XtraTabPage使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
DevExpress.XtraTab.XtraTabPage类属于命名空间,在下文中一共展示了DevExpress.XtraTab.XtraTabPage类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddTab
// Sử dụng 4 đối số truyền vào cho hàm này gồm có:
//1> DevExpress.XtraTab.XtraTabControl XtraTabCha : Tạm gọi là Tab Cha vì XtraTabControl này để mình quăng tabcon vào
//2> string icon : Khi add Tab con vào Tab cha thì đối số này để quy định icon hình cho tabCon(XtraTabpage)
//3> string TabNameAdd : Khi add tab con vào thì đối số này quy định tên của Tabcon vừa Add vào đó.
//4> System.Windows.Forms.UserControl UserControl: Cái này dùng để Add cái UserControl do ta tạo vào Tabcon
public void AddTab(DevExpress.XtraTab.XtraTabControl XtraTabCha, string icon, string TabNameAdd, System.Windows.Forms.UserControl UserControl)
{
// Khởi tạo 1 Tab Con (XtraTabPage)
DevExpress.XtraTab.XtraTabPage TAbAdd = new DevExpress.XtraTab.XtraTabPage();
// Đặt đại cái tên cho nó là TestTab
TAbAdd.Name = "TestTab";
// Tên của nó là đối số như đã nói ở trên
TAbAdd.Text = TabNameAdd;
// Add đối số UserControl vào Tab con vừa khởi tạo ở trên
TAbAdd.Controls.Add(UserControl);
// Dock cho nó tràn hết TAb con đó
UserControl.Dock = DockStyle.Fill;
try
{
// Icon của Tab con khi add vào Tab cha sẽ được quy định ở đây(^^Ở đây là k sử dụng Icon^^)
TAbAdd.Image = System.Drawing.Bitmap.FromFile(System.Windows.Forms.Application.StartupPath.ToString() + @"\Icons\" + icon);
}
catch (Exception ex)
{
//MessageBox.Show("lỗi như thế này: " + ex.Message, "Lỗi");
}
// Quăng nó lên TAb Cha
XtraTabCha.TabPages.Add(TAbAdd);
}
示例2: TabCreating
/// <summary>
/// Tạo thêm tab mới
/// </summary>
/// <param name="tabControl">Tên TabControl để add thêm tabpage mới vào</param>
/// <param name="Text">Tiêu đề tabpage mới</param>
/// <param name="Name">Tên tabpage mới</param>
/// <param name="form">Tên form con của tab mới</param>
/// <param name="imageIndex">index của icon</param>
void TabCreating(DevExpress.XtraTab.XtraTabControl tabControl, string Text, string Name, DevExpress.XtraEditors.XtraForm form, int imageIndex)
{
DevExpress.XtraTab.XtraTabPage tabpage = new DevExpress.XtraTab.XtraTabPage { Text = Text, Name = Name, ImageIndex = imageIndex };
tabControl.TabPages.Add(tabpage);
tabControl.SelectedTabPage = tabpage;
form.TopLevel = false;
form.Parent = tabpage;
form.Show();
}
示例3: AddWindowX
public void AddWindowX(string title, DevExpress.XtraEditors.XtraForm forms)
{
Cursor.Current = Cursors.WaitCursor;
try
{
bool add = true;
//Recorro el xtabContenedor para saber si ya existe un tab de ese nombre abierto
//de ser asi lo selecciono o si no creeo uno nuevo
for (int x = 0; x < xTabContenedor.TabPages.Count; x++)
{
//Comparo todos los tab con el nombre del nuevo tab que quiero crear
if (xTabContenedor.TabPages[x].Text == title)
{
xTabContenedor.TabPages[x].BackColor = Color.Azure;
xTabContenedor.SelectedTabPageIndex = x;
add = false;
break;
}
//Si no existe un abierto "add" sera true
else
{
add = true;
}
}
if (add)
{
//Creo un XtraTabPage que sera el que contendra el formulario
DevExpress.XtraTab.XtraTabPage myTabPage = new DevExpress.XtraTab.XtraTabPage();
myTabPage.Text = title;
forms.TopLevel = false;
forms.Visible = true;
forms.FormBorderStyle = FormBorderStyle.None;
forms.Dock = DockStyle.Fill;
myTabPage.BackColor = Color.Azure;
myTabPage.Controls.Add(forms);
xTabContenedor.TabPages.Add(myTabPage);
xTabContenedor.SelectedTabPageIndex = xTabContenedor.TabPages.Count - 1;
}
}
catch (Exception exAddWindowsX)
{
ErrorSystem(exAddWindowsX.Message, "", "MenuPrincipal: AddWwindowX");
}
Cursor.Current = Cursors.Default;
}
示例4: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
this.rtbFeatures = new System.Windows.Forms.RichTextBox();
((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
this.xtraTabControl1.SuspendLayout();
this.xtraTabPage1.SuspendLayout();
this.SuspendLayout();
//
// xtraTabControl1
//
this.xtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
this.xtraTabControl1.Location = new System.Drawing.Point(0, 0);
this.xtraTabControl1.Name = "xtraTabControl1";
this.xtraTabControl1.SelectedTabPage = this.xtraTabPage1;
this.xtraTabControl1.ShowTabHeader = DevExpress.Utils.DefaultBoolean.False;
this.xtraTabControl1.Size = new System.Drawing.Size(412, 273);
this.xtraTabControl1.TabIndex = 0;
this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
this.xtraTabPage1});
//
// xtraTabPage1
//
this.xtraTabPage1.Controls.Add(this.rtbFeatures);
this.xtraTabPage1.Name = "xtraTabPage1";
this.xtraTabPage1.Size = new System.Drawing.Size(403, 264);
this.xtraTabPage1.Text = "xtraTabPage1";
//
// rtbFeatures
//
this.rtbFeatures.BackColor = System.Drawing.Color.White;
this.rtbFeatures.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbFeatures.Dock = System.Windows.Forms.DockStyle.Fill;
this.rtbFeatures.ForeColor = System.Drawing.Color.Black;
this.rtbFeatures.Location = new System.Drawing.Point(0, 0);
this.rtbFeatures.Name = "rtbFeatures";
this.rtbFeatures.ReadOnly = true;
this.rtbFeatures.Size = new System.Drawing.Size(403, 264);
this.rtbFeatures.TabIndex = 1;
this.rtbFeatures.Text = "";
//
// MainFeaturesControl
//
this.Controls.Add(this.xtraTabControl1);
this.Name = "MainFeaturesControl";
this.Size = new System.Drawing.Size(412, 273);
((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
this.xtraTabControl1.ResumeLayout(false);
this.xtraTabPage1.ResumeLayout(false);
this.ResumeLayout(false);
}
示例5: OpenForm
/// <summary>
///
/// </summary>
/// <param name="frm"></param>
/// <param name="xTabControl"></param>
private void OpenForm(XtraForm frm, DevExpress.XtraTab.XtraTabControl xTabControl)
{
foreach (DevExpress.XtraTab.XtraTabPage tab in xtraTabControlMain.TabPages)
{
if (tab.Text == frm.Text)
{
xtraTabControlMain.SelectedTabPage = tab;
return;
}
}
var xTabPage = new DevExpress.XtraTab.XtraTabPage { Text = frm.Text };
xTabControl.TabPages.Add(xTabPage);
xTabControl.SelectedTabPage = xTabPage;
frm.WindowState = FormWindowState.Maximized;
frm.FormBorderStyle = FormBorderStyle.None;
frm.TopLevel = false;
frm.Parent = xTabPage;
frm.Show();
frm.Dock = DockStyle.Fill;
}
示例6: Addtabpage
private void Addtabpage(DevExpress.XtraEditors.XtraUserControl frm, string tabname)
{
DevExpress.XtraTab.XtraTabPage tab = new DevExpress.XtraTab.XtraTabPage();
tab.Text = tabname;
//frm.TopLevel = false;
frm.Show();
frm.Parent = tab;
//tab.Controls.Add(frm);
bool kt = false;
foreach (DevExpress.XtraTab.XtraTabPage tabitem in xtraTab.TabPages)
{
if (tabitem.Text == tabname)
{
xtraTab.SelectedTabPage = tabitem;
kt = true;
}
}
if (!kt)
{
xtraTab.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] { tab });
}
}
示例7: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
protected void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMuonTraQL));
this.barManager1 = new DevExpress.XtraBars.BarManager(this.components);
this.MainBar = new DevExpress.XtraBars.Bar();
this.barButtonItemAdd = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemXem = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemDelete = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemUpdate = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemPrint = new DevExpress.XtraBars.BarButtonItem();
this.popupMenu1 = new DevExpress.XtraBars.PopupMenu(this.components);
this.barButtonItem4 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemCommit = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItemNoCommit = new DevExpress.XtraBars.BarButtonItem();
this.barSubItem1 = new DevExpress.XtraBars.BarSubItem();
this.barButtonItemSearch = new DevExpress.XtraBars.BarButtonItem();
this.popupMenuFilter = new DevExpress.XtraBars.PopupMenu(this.components);
this.barCheckItemFilter = new DevExpress.XtraBars.BarCheckItem();
this.barButtonItemClose = new DevExpress.XtraBars.BarButtonItem();
this.barDockControlTop = new DevExpress.XtraBars.BarDockControl();
this.barDockControlBottom = new DevExpress.XtraBars.BarDockControl();
this.barDockControlLeft = new DevExpress.XtraBars.BarDockControl();
this.barDockControlRight = new DevExpress.XtraBars.BarDockControl();
this.dockManager1 = new DevExpress.XtraBars.Docking.DockManager(this.components);
this.dockPanel1 = new DevExpress.XtraBars.Docking.DockPanel();
this.dockPanel1_Container = new DevExpress.XtraBars.Docking.ControlContainer();
this.popupControlContainerFilter = new DevExpress.XtraBars.PopupControlContainer(this.components);
this.ChuaTra = new DevExpress.XtraEditors.CheckEdit();
this.ngayTra = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
this.label29 = new DevExpress.XtraEditors.LabelControl();
this.gridControlDetail = new DevExpress.XtraGrid.GridControl();
this.gridViewDetail = new DevExpress.XtraGrid.Views.Grid.PLGridView();
this.TapSoDen = new DevExpress.XtraEditors.SpinEdit();
this.TapSoTu = new DevExpress.XtraEditors.SpinEdit();
this.plLabel8 = new DevExpress.XtraEditors.LabelControl();
this.plLabel15 = new DevExpress.XtraEditors.LabelControl();
this.plLabel5 = new DevExpress.XtraEditors.LabelControl();
this.plLabel12 = new DevExpress.XtraEditors.LabelControl();
this.PhongBan = new ProtocolVN.Framework.Win.PLDMTreeMultiChoice();
this.NgayMuon = new ProtocolVN.Framework.Win.Trial.PLDateSelection();
this.MaPMT = new DevExpress.XtraEditors.TextEdit();
this.Category = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.TenChuongTrinh = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.CongTyMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.BoPhanMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.NguoiMuon = new ProtocolVN.App.VideoLibrary.PLTextEditAutocomplete();
this.LoaiLuuTru = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.NuocSX = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.PostMaster = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.TietMuc = new ProtocolVN.Framework.Win.PLMultiCombobox();
this.plLabel2 = new DevExpress.XtraEditors.LabelControl();
this.plLabel4 = new DevExpress.XtraEditors.LabelControl();
this.plLabel7 = new DevExpress.XtraEditors.LabelControl();
this.plLabel6 = new DevExpress.XtraEditors.LabelControl();
this.label10 = new DevExpress.XtraEditors.LabelControl();
this.label1 = new DevExpress.XtraEditors.LabelControl();
this.plLabel3 = new DevExpress.XtraEditors.LabelControl();
this.plLabel1 = new DevExpress.XtraEditors.LabelControl();
this.label3 = new DevExpress.XtraEditors.LabelControl();
this.label5 = new DevExpress.XtraEditors.LabelControl();
this.barStaticItem1 = new DevExpress.XtraBars.BarStaticItem();
this.barButtonItem1 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItem2 = new DevExpress.XtraBars.BarButtonItem();
this.barButtonItem3 = new DevExpress.XtraBars.BarButtonItem();
this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
this.gridControlMaster = new DevExpress.XtraGrid.GridControl();
this.gridViewMaster = new DevExpress.XtraGrid.Views.BandedGrid.PLBandedGridView();
this.Col_MaPhieu = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NguoiMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_BoPhanMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_CongTyMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayMuon = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_MucDich = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayTra = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NguoiTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_NgayTao = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_PhongBan = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.Col_CongTy = new DevExpress.XtraGrid.Views.BandedGrid.BandedGridColumn();
this.xtraTabControlDetail = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPageDetail = new DevExpress.XtraTab.XtraTabPage();
this.TreeDes = new DevExpress.XtraTreeList.PLTreeList();
this.ColDes_Ten = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.treeListColumn2 = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_NuocSX = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TietMuc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_SoTapGoc = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_LoaiLuuTru = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_Betacam = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_File = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_DVD = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_Cap = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenPM = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_TenCT = new DevExpress.XtraTreeList.Columns.TreeListColumn();
this.ColDes_PhongBan = new DevExpress.XtraTreeList.Columns.TreeListColumn();
//.........这里部分代码省略.........
示例8: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmProducts));
DevExpress.Utils.SuperToolTip superToolTip1 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem1 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip2 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem2 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip3 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem3 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip4 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem4 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip5 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem1 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip6 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem2 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip7 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem3 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip8 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem4 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip9 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipItem toolTipItem5 = new DevExpress.Utils.ToolTipItem();
DevExpress.Utils.SuperToolTip superToolTip10 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem5 = new DevExpress.Utils.ToolTipTitleItem();
DevExpress.Utils.SuperToolTip superToolTip11 = new DevExpress.Utils.SuperToolTip();
DevExpress.Utils.ToolTipTitleItem toolTipTitleItem6 = new DevExpress.Utils.ToolTipTitleItem();
this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
this.xtrabarGeneralinformation = new DevExpress.XtraTab.XtraTabPage();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.txtfactor = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuompurchase = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuomsize = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtuomsale = new DevExpress.XtraEditors.ComboBoxEdit();
this.cmbValueMethod = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtAvgRate = new DevExpress.XtraEditors.TextEdit();
this.txtToleranceDay = new DevExpress.XtraEditors.TextEdit();
this.txtLoadTime = new DevExpress.XtraEditors.TextEdit();
this.txtPurchaseRate = new DevExpress.XtraEditors.TextEdit();
this.txtSpecialRate = new DevExpress.XtraEditors.TextEdit();
this.txtCostRate = new DevExpress.XtraEditors.TextEdit();
this.txtTransit = new DevExpress.XtraEditors.TextEdit();
this.txtTarget = new DevExpress.XtraEditors.TextEdit();
this.txtNetBalance = new DevExpress.XtraEditors.TextEdit();
this.txtBalanceBonus = new DevExpress.XtraEditors.TextEdit();
this.txtBalanceStock = new DevExpress.XtraEditors.TextEdit();
this.txtMaxQuantityDays = new DevExpress.XtraEditors.TextEdit();
this.txtMaxQuantityPCustomer = new DevExpress.XtraEditors.TextEdit();
this.txtPackInBox = new DevExpress.XtraEditors.TextEdit();
this.txtInventoryDays = new DevExpress.XtraEditors.TextEdit();
this.txtMinFlatRate = new DevExpress.XtraEditors.TextEdit();
this.txtMaxFlatRate = new DevExpress.XtraEditors.TextEdit();
this.cmbSaleTaxCalculation = new DevExpress.XtraEditors.ComboBoxEdit();
this.txtSaleTaxVale = new DevExpress.XtraEditors.TextEdit();
this.txtSaleTaxPer = new DevExpress.XtraEditors.TextEdit();
this.txtMaxSalesDisc = new DevExpress.XtraEditors.TextEdit();
this.txtPurchaseDiscountPer = new DevExpress.XtraEditors.TextEdit();
this.txtRetailPrice = new DevExpress.XtraEditors.TextEdit();
this.chkwolallow = new DevExpress.XtraEditors.CheckEdit();
this.chkAllowPer = new DevExpress.XtraEditors.CheckEdit();
this.chkAutoBonus = new DevExpress.XtraEditors.CheckEdit();
this.chkSaleBase = new DevExpress.XtraEditors.CheckEdit();
this.chkSaleTaxReg = new DevExpress.XtraEditors.CheckEdit();
this.chkNonPharma = new DevExpress.XtraEditors.CheckEdit();
this.chkExcempted = new DevExpress.XtraEditors.CheckEdit();
this.chkUseFlatRate = new DevExpress.XtraEditors.CheckEdit();
this.chkNorCotics = new DevExpress.XtraEditors.CheckEdit();
this.chkHideinTabs = new DevExpress.XtraEditors.CheckEdit();
this.chkAllowMaxQtyDays = new DevExpress.XtraEditors.CheckEdit();
this.chkProductDiscontinue = new DevExpress.XtraEditors.CheckEdit();
this.txtTradePrice = new DevExpress.XtraEditors.TextEdit();
this.txtSaleRate = new DevExpress.XtraEditors.TextEdit();
this.txtPackInCarton = new DevExpress.XtraEditors.TextEdit();
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.labelControl18 = new DevExpress.XtraEditors.LabelControl();
this.labelControl17 = new DevExpress.XtraEditors.LabelControl();
this.labelControl16 = new DevExpress.XtraEditors.LabelControl();
this.labelControl15 = new DevExpress.XtraEditors.LabelControl();
this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
this.labelControl50 = new DevExpress.XtraEditors.LabelControl();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
this.labelControl19 = new DevExpress.XtraEditors.LabelControl();
this.labelControl20 = new DevExpress.XtraEditors.LabelControl();
this.labelControl25 = new DevExpress.XtraEditors.LabelControl();
this.labelControl24 = new DevExpress.XtraEditors.LabelControl();
this.labelControl23 = new DevExpress.XtraEditors.LabelControl();
this.labelControl22 = new DevExpress.XtraEditors.LabelControl();
this.labelControl21 = new DevExpress.XtraEditors.LabelControl();
this.labelControl26 = new DevExpress.XtraEditors.LabelControl();
this.labelControl52 = new DevExpress.XtraEditors.LabelControl();
this.labelControl53 = 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.labelControl31 = new DevExpress.XtraEditors.LabelControl();
this.labelControl32 = new DevExpress.XtraEditors.LabelControl();
//.........这里部分代码省略.........
示例9: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(RealtimeInfo));
this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
this.splitContainerControl2 = new DevExpress.XtraEditors.SplitContainerControl();
this.groupControl1_Realtime_Graphic = new DevExpress.XtraEditors.GroupControl();
this.groupControl_RealtimeStat_Graphic = new DevExpress.XtraEditors.GroupControl();
this.comboBoxEdit_Realtime_GraphicState = new DevExpress.XtraEditors.ComboBoxEdit();
this.notePanel_Realtime_GraphicState = new DevExpress.Utils.Frames.NotePanel();
this.comboBoxEdit_Realtime_GraphicClass = new DevExpress.XtraEditors.ComboBoxEdit();
this.comboBoxEdit_Realtime_GraphicGrade = new DevExpress.XtraEditors.ComboBoxEdit();
this.notePanel_Realtime_GraphicGrade = new DevExpress.Utils.Frames.NotePanel();
this.notePanel_Realtime_GraphicClass = new DevExpress.Utils.Frames.NotePanel();
this.notePanel_Realtime_Graphic = new DevExpress.Utils.Frames.NotePanel();
this.groupControl_Realtime_GraphicShow = new DevExpress.XtraEditors.GroupControl();
this.panelControl_Realtime_GraphicShow = new DevExpress.XtraEditors.PanelControl();
this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
this.simpleButton_RealTimeQuery_Graphic = new DevExpress.XtraEditors.SimpleButton();
this.simpleButton_Realtime_GraphicPrint = new DevExpress.XtraEditors.SimpleButton();
this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
this.groupControl_RealTime = new DevExpress.XtraEditors.GroupControl();
this.groupControl_RealTimeStat = new DevExpress.XtraEditors.GroupControl();
this.comboBoxEdit_RealTimeOption = new DevExpress.XtraEditors.ComboBoxEdit();
this.notePanel_RealTimeOption = new DevExpress.Utils.Frames.NotePanel();
this.comboBoxEdit_RealTimeClass = new DevExpress.XtraEditors.ComboBoxEdit();
this.comboBoxEdit_RealTimeGrade = new DevExpress.XtraEditors.ComboBoxEdit();
this.notePanel1_RealTimeGrade = new DevExpress.Utils.Frames.NotePanel();
this.notePanel1_RealTimeClass = new DevExpress.Utils.Frames.NotePanel();
this.notePanel_RealTime = new DevExpress.Utils.Frames.NotePanel();
this.gridControl_RealTimeMorning = new DevExpress.XtraGrid.GridControl();
this.gridView1 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridControl_RealTimeBack = new DevExpress.XtraGrid.GridControl();
this.gridView2 = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.simpleButton_RealTimeQuery = new DevExpress.XtraEditors.SimpleButton();
this.simpleButton_RealTimePrint = new DevExpress.XtraEditors.SimpleButton();
this.saveFileDialog_Report = new System.Windows.Forms.SaveFileDialog();
this.helpProvider_RealtimeInfo_Student = new System.Windows.Forms.HelpProvider();
((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
this.xtraTabControl1.SuspendLayout();
this.xtraTabPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainerControl2)).BeginInit();
this.splitContainerControl2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControl1_Realtime_Graphic)).BeginInit();
this.groupControl1_Realtime_Graphic.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControl_RealtimeStat_Graphic)).BeginInit();
this.groupControl_RealtimeStat_Graphic.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicState.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicClass.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_Realtime_GraphicGrade.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.groupControl_Realtime_GraphicShow)).BeginInit();
this.groupControl_Realtime_GraphicShow.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.panelControl_Realtime_GraphicShow)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
this.panelControl2.SuspendLayout();
this.xtraTabPage2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.splitContainerControl1)).BeginInit();
this.splitContainerControl1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTime)).BeginInit();
this.groupControl_RealTime.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.groupControl_RealTimeStat)).BeginInit();
this.groupControl_RealTimeStat.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeOption.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeClass.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.comboBoxEdit_RealTimeGrade.Properties)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeMorning)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView1)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridControl_RealTimeBack)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.gridView2)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
this.panelControl1.SuspendLayout();
this.SuspendLayout();
//
// xtraTabControl1
//
this.xtraTabControl1.Appearance.BackColor = System.Drawing.Color.WhiteSmoke;
this.xtraTabControl1.Appearance.Options.UseBackColor = true;
this.xtraTabControl1.AppearancePage.HeaderActive.ForeColor = System.Drawing.Color.DarkOrange;
this.xtraTabControl1.AppearancePage.HeaderActive.Options.UseForeColor = true;
this.xtraTabControl1.Controls.Add(this.xtraTabPage1);
this.xtraTabControl1.Controls.Add(this.xtraTabPage2);
//.........这里部分代码省略.........
示例10: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DataBillFrm));
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditSalesUnitID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditEditSortNo1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridControlEditor = new DevExpress.XtraGrid.GridControl();
this.mastergridView = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemDateEditEditStoreTrDate = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditPERSONID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditEMPID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditTotalkasm = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditEditExtraFees = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemMemoExEditEditREM = new DevExpress.XtraEditors.Repository.RepositoryItemMemoExEdit();
this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditStoreID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditEditBillPayTypeID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditEditBillDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditBillEdit = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.xtraTabControlEditor = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPageAdd = new DevExpress.XtraTab.XtraTabPage();
this.BtnPrint = new DevExpress.XtraEditors.SimpleButton();
this.BtnSave = new DevExpress.XtraEditors.SimpleButton();
this.groupControl3 = new DevExpress.XtraEditors.GroupControl();
this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
this.LblTotal = new DevExpress.XtraEditors.LabelControl();
this.GridControlAddDetials = new DevExpress.XtraGrid.GridControl();
this.gridViewAdd = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumnStoreTrID = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumnSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumnQuantity = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
this.gridColumnPrice = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditPrice = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumnDiscount = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemCalcEditDiscount = new DevExpress.XtraEditors.Repository.RepositoryItemCalcEdit();
this.gridColumnSort = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditSort = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumnDelete = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemButtonEditDelete = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
this.gridColumnTotal = new DevExpress.XtraGrid.Columns.GridColumn();
this.groupControl2 = new DevExpress.XtraEditors.GroupControl();
this.TxtREM = new DevExpress.XtraEditors.MemoEdit();
this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
this.TxtExtraFees = new DevExpress.XtraEditors.TextEdit();
this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
this.TxtTotalkasm = new DevExpress.XtraEditors.TextEdit();
this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
this.groupControl1 = new DevExpress.XtraEditors.GroupControl();
this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
this.LUEStoreID = new DevExpress.XtraEditors.LookUpEdit();
this.LUEBillPayType = new DevExpress.XtraEditors.LookUpEdit();
this.LUEEMPID = new DevExpress.XtraEditors.LookUpEdit();
this.LUEPERSONID = new DevExpress.XtraEditors.LookUpEdit();
this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
this.DEStoreTrDate = new DevExpress.XtraEditors.DateEdit();
this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
this.TxtStoreTrIDDAY = new DevExpress.XtraEditors.TextEdit();
this.TxtStoreTrIDTYPE = new DevExpress.XtraEditors.TextEdit();
this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
this.xtraTabPageEdit = new DevExpress.XtraTab.XtraTabPage();
this.groupControl4 = new DevExpress.XtraEditors.GroupControl();
this.gridControlEditorDetial = new DevExpress.XtraGrid.GridControl();
this.gridViewEditDetial = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumnEditDetialSanfID = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemLookUpEditDetialSanfID = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemTextEditDetailQuantity = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
//.........这里部分代码省略.........
示例11: InitializeComponent
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(InStockView));
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
this.txtinstckno = new Ultra.FASControls.LabelTextBox();
this.txtouterno = new Ultra.FASControls.LabelTextBox();
this.supplierEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
this.tbMain = new DevExpress.XtraTab.XtraTabControl();
this.xtraTabPage5 = new DevExpress.XtraTab.XtraTabPage();
this.gcUnAudit = new Ultra.FASControls.GridControlEx();
this.gvUnAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
this.pgr1 = new Ultra.FASControls.InStockPager();
this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
this.gcAudit = new Ultra.FASControls.GridControlEx();
this.gvAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
this.pgr2 = new Ultra.FASControls.InStockPager();
this.xtraTabPage7 = new DevExpress.XtraTab.XtraTabPage();
this.gcAllAudit = new Ultra.FASControls.GridControlEx();
this.gvAllAudit = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn71 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
this.pgr3 = new Ultra.FASControls.InStockPager();
this.xtraTabPage6 = new DevExpress.XtraTab.XtraTabPage();
this.gcInvalid = new Ultra.FASControls.GridControlEx();
this.gvInvalid = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
this.pgr4 = new Ultra.FASControls.InStockPager();
this.splitContainerControl1 = new DevExpress.XtraEditors.SplitContainerControl();
this.tbDetail = new DevExpress.XtraTab.XtraTabControl();
this.xtbInStork = new DevExpress.XtraTab.XtraTabPage();
this.gc = new Ultra.FASControls.GridControlEx();
this.gv = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
this.repositoryItemSpinEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
this.gcistknum = new DevExpress.XtraGrid.Columns.GridColumn();
this.rspinstock = new DevExpress.XtraEditors.Repository.RepositoryItemSpinEdit();
this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
this.rspSuppName = new DevExpress.XtraEditors.Repository.RepositoryItemGridLookUpEdit();
this.repositoryItemGridLookUpEdit1View = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
this.xtbItem = new DevExpress.XtraTab.XtraTabPage();
this.gcNeedItem = new Ultra.FASControls.GridControlEx();
this.gvNeedItem = new DevExpress.XtraGrid.Views.Grid.GridView();
this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
//.........这里部分代码省略.........
示例12: InitializeComponent
//.........这里部分代码省略.........
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();
示例13: InicializarNuevoProducto
internal void InicializarNuevoProducto( )
{
if ( !ContextControls.ContainsKey( "PnlNuevoProducto" ) )
{
PnlNuevoProducto pnlProducto = new PnlNuevoProducto( );
pnlProducto.Dock = DockStyle.Fill;
DevExpress.XtraTab.XtraTabPage tabItem = new DevExpress.XtraTab.XtraTabPage( );
tabItem.Controls.Add( pnlProducto );
tabItem.Text = "Nuevo Producto";
xtraTabControl.TabPages.Add( tabItem );
xtraTabControl.SelectedTabPage = tabItem;
ContextControls.Add( "PnlNuevoProducto" , pnlProducto );
}
}
示例14: InicializarReporteComprasDeInsumos
private void InicializarReporteComprasDeInsumos()
{
if (!ContextControls.ContainsKey("ReportesComprasInsumos"))
{
ReportesComprasInsumos pnlReportesComprasInsumos = new ReportesComprasInsumos();
pnlReportesComprasInsumos.Dock = DockStyle.Fill;
DevExpress.XtraTab.XtraTabPage tabItem = new DevExpress.XtraTab.XtraTabPage();
tabItem.Controls.Add(pnlReportesComprasInsumos);
tabItem.Text = "Reporte Compras de Insumos";
xtraTabControl.TabPages.Add(tabItem);
xtraTabControl.SelectedTabPage = tabItem;
ContextControls.Add("ReportesComprasInsumos", pnlReportesComprasInsumos);
}
}
示例15: InicializarReportesComprasInsumosConFecha
private void InicializarReportesComprasInsumosConFecha()
{
if (!ContextControls.ContainsKey("ReporteVentasPorFecha"))
{
ReporteVentasPorFecha pnlReportesFecha = new ReporteVentasPorFecha();
pnlReportesFecha.Dock = DockStyle.Fill;
DevExpress.XtraTab.XtraTabPage tabItem = new DevExpress.XtraTab.XtraTabPage();
tabItem.Controls.Add(pnlReportesFecha);
tabItem.Text = "Reporte Compras con fecha";
xtraTabControl.TabPages.Add(tabItem);
xtraTabControl.SelectedTabPage = tabItem;
ContextControls.Add("ReporteVentasPorFecha", pnlReportesFecha);
}
}