コード例 #1
0
 private void MDIChildeNew_Click(object sender, EventArgs e)
 {
     ApplicationsScreen newMDIChild = new ApplicationsScreen();
     // Set the Parent Form of the Child window.
     newMDIChild.MdiParent = this;
     // Display the new form.
     newMDIChild.Show();
 }
コード例 #2
0
        private void MDIChildeNew_Click(object sender, EventArgs e)
        {
            ApplicationsScreen newMDIChild = new ApplicationsScreen();

            // Set the Parent Form of the Child window.
            newMDIChild.MdiParent = this;
            // Display the new form.
            newMDIChild.Show();
        }