csharp change to different form

Code Example - csharp change to different form

                
                        private void submitPassword_Click(object sender, EventArgs e)

{

    options optionForm = new options();

    this.Hide();

    optionForm.Show();
}