Answers for "run a form on button click in c#"

C#
0

link form to a button in dashbord visual c#

private void Button1_Click(Object sender, EventArgs e ) 
{
   var myForm = new Form1();
   myForm.Show();
}
Posted by: Guest on July-05-2020

Code answers related to "run a form on button click in c#"

C# Answers by Framework

Browse Popular Code Answers by Language