vote up 2 vote down star
1

Hi, I'm currently working on a brownfield application, it's written with winforms, as a preparation to use WPF in a later version, out team plans to at least use the MVVM/Presentation model, and bind it against winforms...

I've explored the subject, including the posts in this site (which i love very much), when boiled down, the main advantage of wpf are :

  • binding controls to properties in xaml.
  • binding commands to command objects in the viewmodel.

the first feature is easy to implement (in code), or with a generic control binder, which binds all the controls in the form.

the second feature is a little harder to implement, but if you inherit from all your controls and add a command property (which is triggered by an internal event such as click), which is binded to a command instance in the ViewModel.

The challenges I'm currently aware of are :

  • implementing a commandmanager, (which will trigger the CanInvoke method of the commands as necessery.
  • winforms only supports one level of databinding : datasource, datamember, wpf is much more flexible.

am i missing any other major features that winforms lacks in comparison with wpf, when attempting to implement this design pattern?

i sure many of you will recommend some sort of MVP pattern, but MVVM/Presentation model is the way to go for me, because I'll want future WPF support.

Thanks in advance, Erik.

flag
Have you considered just using an ElementHost to drop new WPF content into your existing WinForm app? – Jerry Bullard Sep 17 at 2:12
I'll probably do that at some point... I've thought of another challenge: DataTemplates.. instead of using datatemlates, i'll use a usercontrol and bind it againt an object on my viewmodel.. :)) I'll start working on a prototype next week, anyone interested in my results? – Erik Ashepa Sep 18 at 16:09

1 Answer

vote up 1 vote down

Please take a look at Update Controls .NET. It is an open-source library for Winforms, WPF, and Silverlight that keeps controls up to date as data changes. You can start using it now for Winforms, and then transition over to WPF without changing your Data Model or View Model code.

Unfortunately, it does not solve the Winforms command binding problem. Your button click events will not port from Winforms to WPF. But it does take care of the data binding problem.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.