For example if i press play on a simple game, the game starts instantly in the same dialog not a new one.
Thanks.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
FroglegPosted Nov 22, 2013, 9:20 PM
Stojance PecovPosted Nov 22, 2013, 5:59 PM
FroglegPosted Nov 22, 2013, 3:06 PM
assuming you have created two forms
private void Form1_Load(object sender, EventArgs e)
{
this.IsMdiContainer = true;
}
private void BttnOpenF2_Click(object sender, EventArgs e)
{
Form F2 = new Form();
F2.MdiParent = this;
F2.Show();
}