예제 #1
0
        private void businessToolStripMenuItem_Click(object sender, EventArgs e)
        {
            BizContacts frm = new BizContacts();

            frm.MdiParent = this;
            frm.Show();
        }
예제 #2
0
파일: Main.cs 프로젝트: annievo-av/Winforms
        private void BusinessToolStripMenuItem_Click(object sender, EventArgs e)
        {
            BizContacts frm = new BizContacts();

            //set the main form as the parent of each bussiness form
            frm.MdiParent = this;
            frm.Show();
        }