我有一个用Windows Forms编写的DLL。我需要从这个DLL托管一个UserControl到我的silverlight项目。这可能吗?
在WPF中,可以使用WindowsFormsHost:
<WindowsFormsHost Name="m_WindowsFormsHost" Height="800" Width="900" >
<winform:PlayerWindowControl />
</WindowsFormsHost>
我想在silverlight中这样做。
答案 0 :(得分:3)
您无法使用DLL,而不是为Silverlight编写的 看看this帖子。
答案 1 :(得分:3)
没有类似的支持,似乎也没有任何添加,因为Silverlight试图跨平台。如果你想要这个功能,那么你也应该没有使用WPF绑定到Windows的问题,对吗?