如何将 UIElement 添加到 Windows 窗体应用程序?
我有一个 WPF 自定义控件,想添加到 Windows 窗体应用程序中。 因此,我添加了对 WPF 程序集的引用,创建了 ElementHost 并在代码中设置了 Child 属性。
有没有办法通过拖放来做到这一点,而无需编写代码? 我已经尝试过 ElementHost 弹出窗口,但它没有列出我的组件。 据我所知,它仅列出项目中的WPF组件(而不是外部程序集)。
I have a WPF custom control I'd like to add to a Windows Forms application.
So I added a reference to the WPF assembly, created an ElementHost and set the Child property in code.
Is there a way to do this with drag and drop i e without writing code?
I have tried the ElementHost popup but it does not list my component.
As far as I can see, it lists only WPF components that are in a project (as opposed to an external assembly).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您将元素宿主拖放到窗口窗体时,它将显示下拉菜单以选择子元素,然后您可以添加 WPF 自定义控件而无需代码。
When you will drop element host to window form it will show drop down to select the child then you can add WPF custom controls without code.