Nick Peelman
Nick Peelman

Reputation: 583

2 forms or windows in one single c# project (MS visual studio)

Is it possible to run 2 windows in one single project? I would like to use this as my program needs to run on a projected screen, and data needs to be changed on another screen which isn't allowed to be seen by the people who are watching the projected screen.

Thanks for your time !

Upvotes: 1

Views: 2979

Answers (1)

WraithNath
WraithNath

Reputation: 18013

Yes, it is.

When you application starts you can show mutiple forms. This is assuming you are using dual monitors, and one is mirrored on the projector.

eg:

MainForm:

MainForm_Load(object sender, EventArgs args)
{
 Form1 form1 = new Form1();
 Form2 form2 = new Form2();

 form1.Show();
 //Set location to screen 1

 form2.Show();
 //Set location to screen 2
}

Upvotes: 1

Related Questions