Answers for "visual studio add a new form from a button"

0

visual studio add a new form from a button

/// first go to projects, then  click on "New Form" then click the option that says "Windows Form"
/// Now just copypaste this code into the button you want to add the second form to. (Make sure that the name is the same

var newForm = new NAME();
newForm.Show();
Posted by: Guest on September-29-2020

Browse Popular Code Answers by Language