Yes, you should use the WindowsFormsHost and then include the clr-namespace and add the components :
You can also do it by code by adding
Panel p = new Panel();
WindowsFormsHost wf = new WindowsFormsHost();
wf.Child = p;
ykatchou
2010-10-21 16:18:25