tags:

views:

49

answers:

1

My fairly large WinForm application needs a GUI overhaul, but I can't afford to do it all at once. I need to know if I can slowly add WPF into it, and if so, how?

Can I add WPF dialogs?

Can I add WPF 'panels' within a WinForm so that I can embed WPF elements?

EDIT

Can I do the opposite and put WinForm dialogs in my WPF application?

+4  A: 

Yes, you can host WPF controls in your WinForms applications:

Walkthrough: Hosting a 3-D WPF Composite Control in Windows Forms

Host WPF Controls in Windows Forms

Justin Niessner