private void bVar3_Click(object sender, EventArgs e) { TestForm testForm = new TestForm(3, this); if (testForm.IsDisposed != true) { this.Visible = false; testForm.Show(); } }
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(); } }
public DePictureDinamicBox(TestForm father) { fatherForm = father; }