vote up 27 vote down star
15

Disclaimer: I'm not generally a Windows Client developer.

I presume that WPF is intended to eventually replace WinForms altogether, but for now, they both are shipping.

My question is, when is one more appropriate than another? Should we be leaving Winforms to legacy and creating new Windows Clients in WPF only?

flag

15 Answers

vote up 25 vote down check

WPF requires either Vista or Windows XP SP2, which is not an onerous requirement but it is a relevant one. If you want to run on Windows 2000 (which some people still do), then WPF won't work for you.

WPF is also a newer technology and not as proven as WinForms so you might choose WinForms as a less risky option, particularly for larger applications.

That being said, yes WPF is the future. Visual Studio 2010 is being rewritten in WPF, which will probably be the largest WPF application to date and it will also be a real test for the technology.

Obviously legacy Winforms apps would be another situation where it is the correct choice.

link|flag
do you have a link for that VS2010 info? – m_oLogin Dec 23 '08 at 13:07
Just google for Visual Studio 2010 Wpf Some examples: demiliani.com/blog/archive/… ayende.com/Blog/archive/… – Esteban Brenes Dec 23 '08 at 13:46
then I think its best to wait until MS has done this, learned the lessons, fixed all the niggles and added all the extensions that they need to make it work well. – gbjbaanb Dec 23 '08 at 15:59
If you look at the blog of Rico Mariani, you'll see they've already reported lots of bugs and leaks and performance issues to the WPF team. Having VS heavily use WPF is a great advancement for WPF, IMO. – Judah Himango Aug 29 at 19:36
vote up 36 vote down

After 3 months of trying to hammer out a LOB application on WPF, I reached a point of considering turning back to WinForms for my project, and in researching other people's opinions, came across this thread...

Yes, WPF is a brilliant technology and it has benefits that span far beyond mere eye-candy... the templating and binding capabilities are great examples. The whole object model offers more flexibility and broader possibilities. That doesn't, however, make it the defacto platform for future line-of-business apps.

The "problems" which WPF solves in terms of seperating GUI from business logic aren't problems which can't be readily solved in Winforms by simply starting with the right architecture and mind-set. Even the object-path binding capabilities of WPF can be reproduced in WinForms with some very simple helper classes. The data template capabilities of WPF are very nice, but again they're nothing that you can't simulate in WinForms on those rare occasions when you absolutely don't know exactly what objects you're going to represent on any given part of the screen.

Where WinForms races ahead is in terms of maturity. You can't swing a dead cat on Google without hitting some blog where someone has solved a WinForms problem for you. WPF, on the other hand, has comparatively less learning resources available, fewer custom controls available, and hasn't had as many of it's teething problems solved.

At the peak of making a WPF vs Winforms decision has got to be the maturity of the development environment. Winforms is editors are slick, responsive and intuitive. Feedback about errors gets to you instantly, the solutions are usually obvious, and the compile->debug->edit cycle in Winforms is very quick.

WPF apps, on the other hand, have comparatively pathetic design time support, with the design view all-too ready to chicken out at the first encounter of an error, often requiring a porject build after the fix before the designer is willing to kick in again. Drag'n'drop of components from the toolbox might as well not be supported, given the vast range of circumstances under which it either doesn't work at all, or yields completely unintuitive results. Despite the promise of the WpfToolkit, there still isn't a usable DataGrid for WPF that yields any kind of resonable performance or design time friendlyness.

Debugging WPF apps is a bit like the old ASP.NET debugging paradigm... hit F5 -> wait -> launch -> error -> stop -> fix -> hit F5 -> wait -> launch -> error -> groan -> stop -> fix -> hit F5.... all XAML is locked which your program is running, and tracking down XAML specific problems is often tedious.

The botton line, simply put, is that the development tools for WinForms are going to have you banging out front-ends in a fraction of the time of a WPF application... especially if you're creating master-detail grids or spreadsheet like interfaces, which most LOB have. With Winforms, you start with 90% of the work already done for you.

I'm a huge fan of the WPF architecture. I just wish the design-time tool-set didn't feel like a pre-alpha debug-build.

link|flag
3  
+1 Couldn't agree more, it's always good to hear from someone who has actually tried technology in the real world and with real world pressures. WPF will probably be excellent in 5 years when the tools and developers have finally caught up. And WinForms will still be around even then. – Ash Mar 8 at 5:57
1  
The DataGrid control supports column Virtualization in WPF 3.5 SP1. That should solve the performance problems with it. – Kalmi Mar 20 at 18:49
Amen. I've been using WPF recently - it's painful, but at the same time kinda cool. – mackenir Apr 7 at 15:16
nice answer! :) – m_oLogin Jun 19 at 14:22
vote up 14 vote down

Both of technologies have their pros and cons. In large application with "classic" UI I'd use winforms. In application which require rich user interface (skinning, animations, changing user interface) I'd choose WPF. Please check this article comparing WPF and Winforms.

WPF vs Winforms

link|flag
+1 for the link. Josh has a lot of real life experience with succsessfully developed WPF projects including NY Times Reader. – DK Dec 23 '08 at 22:02
vote up 13 vote down

This seems to have become my favourite thread.

I'm 7 months into using WPF on what has now become a core system for my customer, and I'd like to share some more thoughts with you about the experience of learning and using WPF as a line of business presentation platform.

In general, the comments I made above still hold... the design time support for WPF isn't here yet. If you're in a big rush to get a rich-client application out of the door, go with Winforms. Period. Microsoft aren't in any hurry to discontinue the GDI / winforms platform, so you can count on good support for a fair time into the future.

WPF is not easy to master, but that shouldn't be where you leave your descision about whether or not to invest your time and energy into learning WPF. Despite it's present lack of maturity, WPF is built around some useful, modern concepts.

In WPF, for example, your investment in well-written business objects with sound validating logic is a solid investment. Unlike winforms, WPF's data binding is briming with features that allow interface controls to react to invalid user input without writing GUI code to detect those errors. This is valuable.

The styling and templating capabilities in WPF have proven to be valuable too. Despite the common misconception that the only use for styling and templating is to create on-screen eye-candy, the truth is that these features significantly simplify the coding of a user interface which gives rich feedback - like buttons that disable/enable themselves base on the state of the underlying business logic layer, or tooltips which intelligently find their text based on the state of the object under the cursor, etc.

These all add up to incredibly valuable features for "nothing fancy" business applications, simply because they make it easy to keep the interface congruent with the underlying data.

In a nutshell:

  • In Winforms you design your user interface, then write code to drive that user interface, which generally also includes code to drive your data objects.
  • In Wpf you invest in the business layer that drives your data objects, then design an interface that listens to your data objects.

...its a seemingly subtle difference, but it makes a huge difference in your ability to re-use code... which begs the question: "Is the Winforms vs WPF question actually an investment decision?"

link|flag
3  
Just wanted to commend you for coming back here and adding your further thoughts. I appreciate it. – Stever B Jul 7 at 14:39
vote up 7 vote down

Consider WPF if interface design is important to you, because WPF can deliver better UI experience. But Winforms has on it's side the years of evolution, so it's proven to work and you can find many versed programmers for that platform.

Also portability may be an issue, WPF only works with XP SP2 and up.

Also, WPF has a high curve of learning, meaning it's not easy to deliver a quality product without having specific WPF experience.

link|flag
vote up 5 vote down

Shmee again... After spending two days researching and looking for solutions, I've decided to stick with WPF... and here's why:

It's true that Visual studio's designer support for WPF is lacking when compared to Winforms, but the programming model for WPF is far more open and flexible than Winforms is. Particularly, when it comes to more advanced data binding scenarios, WPF offers a level is sophistication which would take a lot of work-arounds to achieve in Winforms.

From personal experience, I can admit that my biggest stumbling block has been that I ignored the good advice of Guru's like Josh Smith who, quite correctly, recommend implementing the Model-View-ViewModel pattern for WPF pages. Another personal stumbling block was that, while learning XAML, I tried to accomplish as much as possible in XAML. This is a mistake... the V-M-MV pattern gives you the ViewModel specifically so that you've got a class to code in all of your context-specific interactions with a data model, such that your XAML can bind to a single object and find all of the data and commands that it needs in one place.

WPF is a good technology, and when VS2010 is released with improved designer support, I believe that WPF will gradually become the favoured platform for writing visual interfaces.

link|flag
1  
Thanks for coming back, revisiting this and sharing your experience. I appreciate it. – Stever B Mar 11 at 20:54
vote up 4 vote down

Well, one answer is "when you have to support 1.1 or 2.0", since WPF is part of .NET 3.0. There are known OS limitations for WPF, and there is an obvious skills issue: if you have a team of developers that know winforms, then it may be easier to turn out robust code with winforms. However, if you are writing a lot of UI code it is probably worth beginning to pick up WPF at some point.

WPF also shares a lot in common with Silverlight, so it has transferable benefits.

link|flag
vote up 4 vote down

WPF comes with many advantages such as superb data binding features, separation of concerns, separation of design and logic etc...

As a developer I enjoy the ability to define my UI using XAML as opposed to being tied to the Windows Forms designer and I feel good knowing I can count on another designer to make my app look good.

Personally I don't care older versions of Windows are not supported, but one of the big problems with WPF is that is is not (currently/ever) supported by Mono (http://www.mono-project.com) so WPF apps will not run on Mac OS or Linux. (Altough Silverlight applications will).

If you have the time and resources to invest in learning WPF, do it! Even if you're going to be writing Silverlight applications to support multiple OS's.

If you need desktop applications to run on multiple OS's stick with SWF.

link|flag
1  
"WPF comes with many advantages such as superb data binding features, separation of concerns, separation of design and logic etc..." Agreed. WPF offers much more than fancy looks. It offers better architectural options. – Daniel Auger Dec 23 '08 at 15:29
This is the big divide for me. I'm upgrading to "2.0" of one of my applications and while all my initial experimentation with WPF has been wonderful, I do want the app to be cross platform, so I'm going to do 2.0 using Winforms to leverage Mono. That won't stop me from rewriting my other apps in WPF – Dillie-O Dec 26 '08 at 19:01
vote up 3 vote down

i don't agree with some of the answers here. WPF is really well suited for Line of Business applications. (the frog design LoB client is the best example). And besides all the possibilities to have your UI look eye candy (which is not necessary in business applications) , wpf offers a lot more for you. the data binding and templating features are just superior to winforms. it also offers a far better way for separating code and presentation. we've used WPF for 2 LoB applications in teams with no more than 2-3 developers successfully.

the biggest problem you will face is probably the steep learning curve of wpf (compared to winforms) which will decrease development speed with developers not used to wpf.

link|flag
I would have to agree... the learning curve is steep, but it sure pays off in the long run. I started with WPF and never looked back. – TimothyP Nov 24 at 0:47
vote up 3 vote down

Aside from the flexibility in UI design, there are some technical advantages to WPF:

1.) WPF doesn't rely on GDI objects. Well, I think it uses 2 GDI objects for the instance of the window itself, but that's practically nothing. I've been involved to a certain extent in a very large internal Windows Forms application. The people in our office sometimes run 3 or 4 instances of it simultaneously. The problem is that they frequently run into the 10,000 GDI object limit inherent to Windows 2000, XP and Vista. When that happens the entire OS becomes unresponsive and you'll start to see visual artifacts. The only way to clear it up is to close applications down.

2.) WPF utilizes the GPU. The ability for WPF to off-load some of the UI processing to the GPU is brilliant. I only expect this aspect of it to get better with time. As a former OpenGL programming hobbyist I can appreciate the power that comes from the GPU. I mean, my $100 video card has 112 cores running at 1.5 GHz each (and that's not top of the line by any means). That kind of parallel processing power can put any quad-core CPU to shame.

However, WPF is still pretty new. It won't run on Windows 2000. And in fact, a WPF application can be slow to start up after a fresh reboot. I talk about all of this on my blog: http://www.bucketsoft.com/blog/2009/05/wpf-is-like-fat-super-hero.html

link|flag
vote up 2 vote down

Multiple answers make the claim that you should use WPF if interface design is "important to you" but thats pretty vague. Interface design is always "important"

WPF makes it much easier to hand off the forms design work to an actual designer, not a developer in designer's clothing. If thats something you'd like to do, WPF is your answer. If the classic windows styled buttons are fine, then WinForms is probably the way to go.

link|flag
vote up 1 vote down

WPF requires a team. The most important role within this team is that of the UI designer. The vast majority of apps are line-of-business apps, developed and maintained by one or two devs. WPF is rarely suitable for this kind of dev environment.

A good example of even big companies having trouble with WPF is Nero. It's latest release, version 9, has two apps in the suite that are done with WPF. The rest of them are traditional user32 apps. Those two WPF apps are notable for being starkly off-note for the rest of the suite. And just plain ugly. Making WPF look good is hard.

link|flag
1  
My Winforms apps look bad as well... because I'm not a designer... but writing XAML feels so much better than drawing my forms with the Winforms designer :-) – TimothyP Dec 29 '08 at 8:10
1  
I disagree with this. WPF doesn't require a team if you're just creating a standard windows UI. If you want to create a wacky skinned mess that breaks the Windows user-experience guidelines, then yeah - you will need designers. – mackenir Apr 7 at 15:18
1  
I guess what you're getting at is that it requires a team to make a WPF application look good. I don't think that's anything unique to WPF. Also, I used to do a lot of web design and I usually design my own applications because I enjoy doing it. Sure, a true design professional would probably be able to make something look better than I can, but my stuff usually looks decent. So I wouldn't say WPF development requires a team, but that's me. – Steve Wortham May 19 at 22:55
vote up 0 vote down

For conversion projects (from VB6), it's hard to get a team to switch to WPF. Besides learning curve, people are already used to the old interface. WinForms, although being phased out, will be around for a long time still.

link|flag
Those teams are right to reject WPF. A VB6->WPF "conversion" would actually be a rewrite, and according to Microsoft "far more costly and difficult" than an automatic conversion. Reference here stackoverflow.com/questions/395/… – MarkJ Mar 12 at 23:15
vote up 0 vote down

For the last 3 1/2 years I've been doing Winforms development (at 2 companies). Both applications were used extensively and ended up having GDI problems. Large Winforms apps will eventually run out of GDI resources - causing the end user to have to reboot.

link|flag
vote up 0 vote down

A quote from an earlier post from Mark:

  • In Winforms you design your user interface, then write code to drive that user interface, which generally also includes code to drive your data objects.
  • In Wpf you invest in the business layer that drives your data objects, then design an interface that listens to your data objects.

I would argue that this is more of a design choice, rather than whether or not you are using Winforms or WPF. However, I can appreciate that certain technologies might be better suited for a particular approach.

link|flag

Your Answer

Get an OpenID
or

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