Hello guys..
I have made two seperate winforms of which includes Gauges in C# .
But i have to do both winforms in single winform , which includes some more buttons in the final winform.
please give me suggestions ......
Loading
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.
Kunal VaishyaPosted May 16, 2012, 8:23 AM
try this
private void toolStripButton2_Click(object sender, EventArgs e)
{
Form3 Obj = new Form3();
Obj.MdiParent = this;
Obj.Show();
}
private void toolStripButton1_Click(object sender, EventArgs e)
{
Form2 Obj = new Form2();
Obj.MdiParent = this;
Obj.Show();
}