Answers for "C# change to different form"

C#
0

C# change to different form

private void submitPassword_Click(object sender, EventArgs e)

{

    options optionForm = new options();

    this.Hide();

    optionForm.Show();
}
Posted by: Guest on March-02-2021

C# Answers by Framework

Browse Popular Code Answers by Language