master form in .net winform 1.1
C#
3
Posts
3
Posters
0
Views
1
Watching
-
How to create master form in .net winform 1.1 same as in asp.net master page Thanks in advance
-
How to create master form in .net winform 1.1 same as in asp.net master page Thanks in advance
WinForms works in a different way than ASP.NET, there is no masterpage-concept. You can create a new form, and inherit from it. Would look something like this;
public MyMasterForm: Form
{
// stuff
}public MyNewForm: MyMasterForm
{
// more stuff
}Good luck :)
I are Troll :suss:
-
How to create master form in .net winform 1.1 same as in asp.net master page Thanks in advance
You can do as Eddy suggested, or otherwise you could create one form with a panel that gets populated with Usercontrols.