Reputation:
We have Win Forms application uses the 3rd party windows native controls. Can these controls used with WPF application?
Upvotes: 2
Views: 130
Reputation: 15535
Of course, that's what the WindowsFormsHost
WPF control is for!
See: http://msdn.microsoft.com/en-us/library/ms751761.aspx to do it in code.
Or: http://msdn.microsoft.com/en-us/library/ms742875.aspx to do it in XAML.
Upvotes: 8
Reputation: 6440
Yes it does. However, if you can use a WPF control instead do it.
Upvotes: 0