Пример #1
0
        private void bVar3_Click(object sender, EventArgs e)
        {
            TestForm testForm = new TestForm(3, this);

            if (testForm.IsDisposed != true)
            {
                this.Visible = false;
                testForm.Show();
            }
        }
Пример #2
0
        private void bNew_Click(object sender, EventArgs e)
        {
            TestForm testForm = new TestForm(testN, parentF);

            if (testForm.IsDisposed != true)
            {
                this.Visible = false;
                this.Close();
                testForm.Show();
            }
        }
Пример #3
0
 public DePictureDinamicBox(TestForm father)
 {
     fatherForm = father;
 }