本文介绍了MDI和子窗体功能的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
请告诉我如何在wpf中使用MDI父子表格的功能。
如何制作一个将儿童表格改为另一种形式
谢谢
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
推荐答案
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...
这篇关于MDI和子窗体功能的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!