I've a DLL written in Windows Forms. I need to host one UserControl from this DLL to my silverlight project. Is this possible?
In WPF, this is possible using WindowsFormsHost :
<WindowsFormsHost Name="m_WindowsFormsHost" Height="800" Width="900" >
<winform:PlayerWindowControl />
</WindowsFormsHost>
I want to do this in silverlight.