Click here to Skip to main content
15,893,644 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all

Please tell me how to use the functionality of MDI parent and child form in wpf.
how to make a form child form to another form

Thank you
Posted

Hi Sneh,

You must be knowing, MDI is NOT possible in WPF. You need to change the approach. And the best approach which I like is Tabbed approach(Like web browsers).

You can see the following link for start.

Tabbed MDI in WPF[^]

Good Luck

RKS
 
Share this answer
 
VB
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles bAccounts.Click
       Accounts.TopLevel = False
       Server_Main_Window.Panel3.Controls.Add(Accounts)
       Accounts.Show()
       Accounts.BringToFront()
   End Sub



using panel is more easier...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900