public void CreateChildForm(string url)
 {
     Form childForm = new TangramMdiChild();
     childForm.Tag = url;
     childForm.MdiParent = this;
     childForm.Text = "Window " + childFormNumber++;
     childForm.Show();
 }
Example #2
0
        public void CreateChildForm(string url)
        {
            Form childForm = new TangramMdiChild();

            childForm.Tag       = url;
            childForm.MdiParent = this;
            childForm.Text      = "Window " + childFormNumber++;
            childForm.Show();
        }