示例#1
0
        private void button1_Click(object sender, EventArgs e)
        {
            CustomerBill f = new CustomerBill();

            f.Show();
            //  Close();
        }
示例#2
0
文件: MDI.cs 项目: Vinaymohite/Abc
        private void bILLREPORTSToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.IsMdiContainer = true;
            CustomerBill f = new CustomerBill();

            f.MdiParent = this;
            f.Show();
        }