如何将一个 WPF 表单嵌入到另一个 WPF 表单中?
我想要一个带有选项卡控件的主 WPF 表单,其中每个选项卡都包含一个独立的 WPF 表单。 这些表单彼此不依赖,所以我认为单独开发它们然后将它们嵌入到主表单中会更容易。
表单的数量是已知的,因此不需要动态插件系统。
I would like to have master WPF form with tab control where each tab contains one independent WPF form. Those forms do not depend on each other, so I thought it will be easier to develop each of them separately and then just embed them into master form.
Number of forms is known, so there is no need for dynamic plugin system.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您使用 Frame 或 NavigationWindow 你可以让它加载不同的xaml 页面甚至 html。 您还可以使其像浏览器一样具有向前和向后导航功能。 请参阅 http://msdn.microsoft.com/en-us/library/ms750478。 aspx
您可以在每个选项卡上放置一个框架并让它加载某个页面。
When you use a Frame or NavigationWindow you can have it load different xaml Pages and even html. You can also make it act like a browser with forward and backward navigation. See http://msdn.microsoft.com/en-us/library/ms750478.aspx
You could put a Frame on each tab and have it load a certain Page.
使子窗体从 UserControl 派生,在主窗体中添加一个选项卡控件,每个选项卡内都包含这些用户控件之一。
Make the child forms derive from UserControl, in the master form add a tab control with one of those user controls inside each tab.
我更喜欢用 userControl 来做这个
首先创建用户控件
之后,在另一个地方包含此 userControle 的引用
在 frmHome 中的任何地方...
I prefer make this with userControl
First create User control
after, include reference of this userControle in another place
anywhere in the frmHome...