Esempio n. 1
0
 private void ShowNewForm(object sender, EventArgs e)
 {
     frmMap childForm = new frmMap();
     childForm.MdiParent = this;
     childForm.Text = "Untitled Map " + childFormNumber++;
     childForm.Show();
     childForm.Map = null;
     OpenFiles.Add(childForm);
 }
Esempio n. 2
0
 private string NewForm()
 {
     frmMap childForm = new frmMap();
     childForm.MdiParent = this;
     childForm.Text = "Untitled Map " + childFormNumber++;
     childForm.Show();
     childForm.Map = null;
     OpenFiles.Add(childForm);
     return childForm.Text;
 }