Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Anyone using WPF for real LOB applications?

Tags:

.net

wpf

Anyone using WPF for real LOB applications?

We have all seen the clever demos of WPF showing videos mapped onto 3D elements. These look great but what about the real world of line-of-business applications that make up the majority of developers efforts. Is WPF just for nice eye candy?

like image 954
Phil Wright Avatar asked Sep 15 '08 04:09

Phil Wright


3 Answers

While we discussing it, smart guys are building amazing apps:

Lawson Smart Office brings WPF goodness to the enterprise

IGT’s Next-Generation UI with WPF

Billy Hollis on Getting Smart with WPF

like image 176
aku Avatar answered Oct 13 '22 22:10

aku


Just rolling out a WPF LOB application to about 400 municipal locations. Not heavy on the eye-candy but very heavy on databinding.
WPF is custom made for LOB! Many drawbacks (ie no refactoring) were recently fixed in SP1, but tools are still, to put it mildly, retarded.
I find that ironic seeing that XAML was invented for easy tooling.
To use WPF, you really need to understand some fundamentals in the WPF object model, and I don't see the designer/developer workflow happening anytime soon.
There's a really steep learning curve, but it is worth it.
Tasks that used to be huge are trivial now, and conversely, tasks that used to be dead simple are near impossible.

like image 30
Robert Jeppesen Avatar answered Oct 13 '22 21:10

Robert Jeppesen


I worked on the Helios product in this setup. WPF on top of lots of other stuff, including C++.

WPF is what I would recommend if you were developing in .NET and wanted a smart client application with a heavily customized UI. If you were thinking about using a simple Windows-y UI, go with Windows Forms.

like image 3
Omer van Kloeten Avatar answered Oct 13 '22 20:10

Omer van Kloeten