如何在 C# 中从资源字典加载 Dockpanel

发布于 2024-10-15 07:24:26 字数 130 浏览 3 评论 0原文

我想将停靠面板控件加载到 wpf 窗口。停靠面板控件位于资源字典文件上,并且合并在我想使用它的窗口中。我想要 C# 代码,可以在按钮单击事件时动态地将此停靠面板添加到窗口上的现有停靠面板主机控件。请帮助我提供 C# 代码实现

问候

I want to load a dockpanel control to an wpf window. the dockpanel control is on a resource dictionary file and that is merged in the window I want to use it. I want the c# code that can add this dock panel to a existing dockpanelhost control on the window dynamically upon a button click event. Please help me by providing the c# code implementation

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

明媚殇 2024-10-22 07:24:26

您可以从这样的资源中获取 DockPanel:

var dockPanel = FindResource("DockPanelKey") as DockPanel;

稍后添加此行以将dockPanel 插入到例如网格中:

m_Grid.Children.Add(dockPanel);

You can get your DockPanel from resources like that:

var dockPanel = FindResource("DockPanelKey") as DockPanel;

Later add this line to insert dockPanel to for example grid:

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