Share an Interface between XAML and WinForms

Posted by Nathan Friesen on Programmers See other posts from Programmers or by Nathan Friesen
Published on 2012-06-07T21:11:42Z Indexed on 2012/06/07 22:47 UTC
Read the original article Hit count: 767

Filed under:
|
|
|

We're considering converting our WinForms application to a XAML application sometime in the future. Currently, our WinForms application uses lots of tabs, which we put use to display different User Control objects. All of these controls implement a specific Interface so we can make specific calls to them and not worry about what the actual control is (things like Save, Close, Clear, etc.) Would it be possible to create a WPF project that contains XAML User Controls that implement the same Interface and display those User Controls in the WinFroms project within a tab?

© Programmers or respective owner

Related posts about wpf

Related posts about interfaces