MAIN FORM AND SUB FORM
MY QUESTION IS IN C# windows application.............how can we create form like master page and sub page....i mean i mhave some layout common....which display common in all forms.so can i do like asp.net website as c# windows application
Satyapriya NayakPosted Feb 27, 2013, 9:33 AM
http://www.codeproject.com/Articles/3553/Introduction-to-MDI-Forms-with-C
Posted Feb 27, 2013, 7:42 AM
1)Take one form, set his isMdicontainer property to true
2) Take another form
3) write following code in the form_load event of the form one
form2 fm2=new form2();
frm2.Mdiparent=this;
fm2.Show();
please mark it as answer if this is helpful to you