예제 #1
0
        private void ShowNewForm(object sender, EventArgs e)
        {
            Form childForm = new TangramForm();

            childForm.MdiParent = this;
            childForm.Text      = "Window " + childFormNumber++;
            childForm.Show();
            Form childForm2 = new TangramForm();

            childForm2.Show(childForm);
        }
예제 #2
0
 private void ShowNewForm(object sender, EventArgs e)
 {
     Form childForm = new TangramForm();
     childForm.MdiParent = this;
     childForm.Text = "Window " + childFormNumber++;
     childForm.Show();
      Form childForm2 = new TangramForm();
      childForm2.Show(childForm);
 }