我可以将数据从 Winforms 传递到 WPF 控件吗?

发布于 2024-08-07 23:50:00 字数 144 浏览 4 评论 0原文

我有一个 winforms 应用程序,但我想在该应用程序中引入一个 WPF 用户控件,作为进一步 WPF 实现的品尝者。

该控件需要从其主机接收一条信息,即字符串。如何将其从 Winforms 应用程序传递到托管控件?

或者说,我确实可以吗?

I have a winforms app but I would like to introduce a WPF user control into the app as a taster for further WPF implementation.

This control needs to receive from its Host a single piece of information, a string. How can I pass this down from the Winforms app to the hosted control?

Or, indeed, can I?

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

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

发布评论

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

评论(2

逆蝶 2024-08-14 23:50:00

在创建实例之后和向主机的子级提供引用之前分配 wpf 控件的属性

WpfUserControl ctrl = new WpfUserControl();
ctrl.Data = passedData;
ElementHost1.Child = ctrl;

Assign properties of wpf control after creating an instance and before giving the reference to host's childes

WpfUserControl ctrl = new WpfUserControl();
ctrl.Data = passedData;
ElementHost1.Child = ctrl;
唐婉 2024-08-14 23:50:00

这是可能的。使用方法扩展 WPF 用户控件以设置所需的任何数据并从 WinForms 应用程序中调用它们。例如,请参阅这篇文章

It is possible. Extend your WPF User Control with methods to set whatever data you want and call them from within WinForms application. See this article for example.

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