将 ElementHost 的 WPF UserControl 动态添加到 WinForms 会导致黑色
我在 ElementHost
内有一个 WPF 用户控件,该控件位于 WinForms 控件内以对其进行包装。我将其动态添加到选项卡控件选项卡中。
但是当我这样做时,我的 WPF 控件是黑色的。
我该如何解决这个问题?
I have a WPF user control inside an ElementHost
that is inside a WinForms control to wrap it. I'm dynamically adding it to a tab control tab.
But when I do this, my WPF control is black.
How do I fix that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
网络上有许多替代解决方案。然而,为我们解决的问题是避免“填充”将元素宿主停靠在其父控件中。如果您正在使用对接,请尝试一下!
不幸的是,这可能是通过实验解决的邪恶问题之一,结果只需一行即可解决!
There are many alternative solutions on the web to this one. However, what fixed it for us was to avoid "Fill" docking the element host within it's parent control. If you are using docking, then give it a try!
Unfortunately this can be one of those evil problems solved by experimentation and it'll turn out to be a one line fix!
这是我自己的错误。我忘记将 WinForms 选项卡控制面板(第 3 方控制面板)添加到正确的类中。
It was my own mistake. I forgot to add the WinForms tab control panel (a 3rd party one) to the right class.