Irakli Lekishvili
Irakli Lekishvili

Reputation: 34198

How to add user control into groupbox

I have c# winform application and one WPF user control. How i can add groupbox(which is in winform) controls my wpf usercontrol?

Upvotes: 2

Views: 1586

Answers (1)

CharithJ
CharithJ

Reputation: 47570

Add ElementHost control to the groupbox and add WPF usercontrol in the ElementHost.

See here and here for good articles.

Upvotes: 2

Related Questions