vote up 1 vote down star
1

It's great that WPF is so flexible, but some of the built-in controls just don't cut it. The ListView + GridView control is the worst I've come across so far.

Here's my laundry list of features that still don't exist as of .NET 3.5.

  • Hide columns
  • Turn off column resizing
  • Turn off row selection
  • Allow cell selection
  • Automatic column sorting

A nice bonus would be:

  • Show tooltip if text doesn't fit within cell

I know there are some nice aftermarket products that do most/all of these things, but some of these features have been around for years in Windows Forms and ASP.NET, so WPF is a step backward. And, yes, some of these have relatively easy workarounds (once you figure out what they are), but some require rewriting parts of the control template, which seems unreasonable.

What obvious missing features have you noticed in WPF?

flag
Was looking for something to close today. – Chacha102 Aug 28 at 1:04
Actually this isn't a bad topic since it's CW. I'd leave it open. – Matt Hamilton Aug 28 at 1:05
2  
Voting to close as S&A since "rant" was not an option. – paxdiablo Aug 28 at 1:06
+1 because of the brief amount of time i used listview/gridview these features were immediately wanted and not there – Mark Aug 28 at 1:08

closed as subjective and argumentative by Chacha102, silky, paxdiablo, Alex, David Basarab Aug 28 at 1:32

1 Answer

vote up 3 vote down

That is why we have the WPF toolkit, which has the WPF DataGrid in it, which solves pretty much all of these problems. Instead of ranting, you might have considered asking if there was a solution to your problems out there.

link|flag
I have looked up answers to several of these problems on StackOverflow, but I don't recall seeing any mention of this toolkit. I'll definitely take a look. Thanks for the tip. – DanThMan Aug 28 at 2:06
Okay, I gave the DataGrid in the toolkit a try. It seems to have some of the features I was talking about (CanUserReorderColumns, CanUserResizeColumns), but a couple things seems to be missing: 1. You still can't set the SelectionMode to None, so there's no obvious way to disable row selection. 2. The Header no longer accepts a Binding (or so it seems). – DanThMan Aug 28 at 6:16

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