0
votes

On my previous question i asked how to use WPF controls in a Windows Form application. My answer was to go to this website and i clicked on the sixth option there. But heres my problem: the controlls are in a WPF application in Expression Blend 4, I need a way to put the controls as a resource or whatever onto my Winforms project ( I think i need to convert them into a WPF control library ) . How would I convert the buttons so I can add them to my form, and how would I add them there?

1

1 Answers

2
votes

I would recommend not mixing these technologies. You have major interop issues between the two with focus, data binding, etc. Your best option is to start replacing a form at a time in your win forms app with a WPF equivalent so you can migrate it to WPF over time.