private void ManualEntry_Click(object sender, EventArgs e) { if (constructorForm == null || constructorForm.IsDisposed) { constructorForm = new ConstructorForm(); } constructorForm.Owner = this; constructorForm.Show(); Hide(); }
private void ManualEntry_Click(object sender, EventArgs e) { ConstructorForm form = new ConstructorForm(); form.Show(); }