Visual Studio exécute plusieurs formulaires à la fois

// 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();
}

Dante