Answers for "open form from button c#"

C#
4

C# open a new form

form2 F2 = new form2();
F2.Show();
Posted by: Guest on January-26-2021
0

Open another form with C# Winforms

Form myForm = new myForm();
myForm.Show();

//If you want to close the current form after the new one opens, then write in a new line, "this.Close();"
Posted by: Guest on August-22-2021

Code answers related to "open form from button c#"

C# Answers by Framework

Browse Popular Code Answers by Language