Exemplo n.º 1
0
        private void ManualEntry_Click(object sender, EventArgs e)
        {
            if (constructorForm == null || constructorForm.IsDisposed)
            {
                constructorForm = new ConstructorForm();
            }

            constructorForm.Owner = this;
            constructorForm.Show();
            Hide();
        }
Exemplo n.º 2
0
        private void ManualEntry_Click(object sender, EventArgs e)
        {
            ConstructorForm form = new ConstructorForm();

            form.Show();
        }