user90150
user90150

Reputation:

Can Windows Controls works with WPF?

We have Win Forms application uses the 3rd party windows native controls. Can these controls used with WPF application?

Upvotes: 2

Views: 130

Answers (2)

Andy Shellam
Andy Shellam

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

David Brunelle
David Brunelle

Reputation: 6440

Yes it does. However, if you can use a WPF control instead do it.

Upvotes: 0

Related Questions