Answers for "how to open another form in windows application c#"

C#
2

start new form c#

moreForm = new MoreForm();
    moreForm.Show();
    childForm.Close();
Posted by: Guest on September-19-2020
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 "how to open another form in windows application c#"

C# Answers by Framework

Browse Popular Code Answers by Language