示例#1
0
        private void doctorsInformationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var f = new frmDoctorsInformation {
                MdiParent = this
            };

            f.Show();
        }
示例#2
0
        private void btnAddDoctor_Click(object sender, EventArgs e)
        {
            frmDoctorsInformation doc = new frmDoctorsInformation();

            doc.Show();
        }