I am new to C# can anybody tell me on How to show a new Form on click of a button.
Try this:
private void Button1_Click(Object sender, EventArgs e ) { var myForm = new Form1(); myForm.Show(); }
1.4m articles
1.4m replys
5 comments
57.0k users