Answers for "VIsual Studio create multiple forms"

C#
1

visual studio run multiple forms at once

// visual studio run multiple forms at once
// Start the other forms from the Form.Load event of Form1.

private void Form1_Load(object sender, EventArgs e)
{
    Form2 form2 = new Form2();
    form2.Show();
}
Posted by: Guest on February-26-2021

Code answers related to "VIsual Studio create multiple forms"

C# Answers by Framework

Browse Popular Code Answers by Language