Can nonvisual WinForms controls be used from WPF, as long as they are instantiated programmatically? I am comparing two sets of components that are only available for WinForms, yet we want to create WPF apps "going forward."
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes. If you reference the the correct dll any object from any assembly and namespace can be used. The big question is whether that is the right thing to do. It would help tremendously if you mentioned which two sets of components you are referencing as we may know of a WPF only solution, hence saving you from having to reference WinForms. |
|||
|

SynchronizationContextwhich works in both WPF and WinForms – JaredPar Mar 19 '12 at 15:55