如何将一个 WPF 表单嵌入到另一个 WPF 表单中?

发布于 2024-07-13 20:18:51 字数 131 浏览 4 评论 0原文

我想要一个带有选项卡控件的主 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

彻夜缠绵 2024-07-20 20:18:51

当您使用 FrameNavigationWindow 你可以让它加载不同的xaml 页面甚至 html。 您还可以使其像浏览器一样具有向前和向后导航功能。 请参阅 http://msdn.microsoft.com/en-us/library/ms750478。 aspx

您可以在每个选项卡上放置一个框架并让它加载某个页面。

<Window x:Class="PluginApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <DockPanel>
        <Frame Name="frame" NavigationUIVisibility="Visible" Source="SomePage.xaml" />
    </DockPanel>
</Window>

<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    WindowTitle="Page Title"
    WindowWidth="500"
    WindowHeight="200">
  Hello world
</Page>

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.

<Window x:Class="PluginApplication.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="Window1" Height="300" Width="300">
    <DockPanel>
        <Frame Name="frame" NavigationUIVisibility="Visible" Source="SomePage.xaml" />
    </DockPanel>
</Window>

<Page
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    WindowTitle="Page Title"
    WindowWidth="500"
    WindowHeight="200">
  Hello world
</Page>
习ぎ惯性依靠 2024-07-20 20:18:51

使子窗体从 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.

看轻我的陪伴 2024-07-20 20:18:51

我更喜欢用 userControl 来做这个
首先创建用户控件
输入图像描述这里

之后,在另一个地方包含此 userControle 的引用
输入图像描述这里

在 frmHome 中的任何地方...

 <DockPanel>
      <Entity:ucContactList/>
 </DockPanel>

I prefer make this with userControl
First create User control
enter image description here

after, include reference of this userControle in another place
enter image description here

anywhere in the frmHome...

 <DockPanel>
      <Entity:ucContactList/>
 </DockPanel>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文