Beispiel #1
0
        private void btnProducts_Click(object sender, EventArgs e)
        {
            frmProducts frm = new frmProducts();

            frm.MdiParent = _form;
            frm.Show();
        }
Beispiel #2
0
        private void productToolStripMenuItem_Click(object sender, EventArgs e)
        {
            pnlPleaseWait.Visible = true;
            pnlPleaseWait.Refresh();
            frmProducts frm = new frmProducts();

            frm.MdiParent = this;
            frm.Show();
            pnlPleaseWait.Visible = false;
        }