Open Another Form With C Winforms

[Solved] Open Another Form With C Winforms | Vb - Code Explorer | yomemimo.com
Question : Open another form with C# Winforms

Answered by : kneesdev

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();"

Source : | Last Update : Sun, 29 Aug 21

Answers related to open another form with c winforms

Code Explorer Popular Question For Vb