How to add user control into groupbox
I have c# winform application and one WPF user control. How i can add 开发者_JAVA百科groupbox(which is in winform) controls my wpf usercontrol?
Add ElementHost control to the groupbox and add WPF usercontrol in the ElementHost.
See here and here for good articles.
精彩评论