Possible Duplicate:
Convert XAML WPF Window to WinForm
I have a wpf project and I would like to convert the project to a windows forms project. Are there any tools are available to do this?
Possible Duplicate:
Convert XAML WPF Window to WinForm
I have a wpf project and I would like to convert the project to a windows forms project. Are there any tools are available to do this?
If you want to use WPF controls in Winforms, there is an other way:
a control for WinForms that allows you to use a WPF control in WinForms. It is called ElementHost
This is not possible since the complete Markup and Design Language XAML differes completly from the way WinForms makes its markup. Also the .NET WPF Framework contains lots of unique Classes behaviors and functionalities, they are also totally different.
Anyways: Why would you try to convert a WPF project back to WinForms? ;)