private void InitializingForms() { // File Group frmLogin = new FormLogin(); frmLogin.MdiParent = this; frmSettings = new FormSettings(); frmSettings.MdiParent = this; // Master Group frmUser = new FormMasterUser(); frmUser.MdiParent = this; frmMasterCategory = new FormMasterCategory(); frmMasterCategory.MdiParent = this; frmMasterPrice = new FormMasterPrice(); frmMasterPrice.MdiParent = this; frmMasterInventory = new FormMasterInventori(); frmMasterInventory.MdiParent = this; //Transactions Group frmSales = new FormSales(); frmSales.MdiParent = this; frmPurchasing = new FormPurchasing(); frmPurchasing.MdiParent = this; frmServices = new FormServices(); frmServices.MdiParent = this; }
/// <summary> /// Menu Master Prices /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void PricesToolStripMenuItem_Click(object sender, EventArgs e) { if (frmMasterPrice == null || frmMasterPrice.IsDisposed) { frmMasterPrice = new FormMasterPrice(); frmMasterPrice.MdiParent = this; } frmMasterPrice.Show(); }