vote up 14 vote down star
1

I have seen a lot of discussions going on and people asking about DataGrid for WPF and complaining about Microsoft for not having one with their WPF framework till date. We know that WPF is a great UI technology and have the Concept of ItemsControl,DataTemplate, etc,etc to make great UX. Even WPF has got a more closely matching control- ListView, which can be easily templated to give better UX than a traditional Datagrid like display. And I would say a readymade DataGrid control will kill or hide a lot of creativity and it surely will decrease the innovations in User Experience field.

So what is your opinion about the need of DataGrid in WPF as a Framework component? If you feel it is necessary then is it just because the world is so used to the DatGrid way of data display for many years?

Some other threads having the discussion about DatGrid are here and here

Link to WPF ToolKit - Latest WPF DatGrid

flag

50% accept rate

7 Answers

vote up 17 vote down check

DataGrids are excellent for displaying large amounts of tabular data bound to a backing store.

But what happened in the WinForms world was that people often used them for everything that required a multi-element scrolling list. Souped-up third-party DataGrids soon became available that allowed columns and fields to contain buttons and ComboBoxes and icons, etc.

The DataGrid became a workhorse because there was a need for something it could be coaxed into behaving like. Similar happened to DataTables before generic collections came along--and when you're using lots of DataTables, presenting it in the UI with a DataGrid is the path of least resistance.

I think that when WPF came out, a lot of programmers like me were still thinking in this fashion, and sought out WPF ports of the DataGrid concept.

link|flag
vote up 2 vote down

Nobody is disputing that you can make a DataGrid control in WPF yourself. The same can probably be said about WinForms, although it would be more difficult. I've implemented some functionality with ListView - presenting tabular data is easy, you could even say it's well supported. However, the amount of code, manually written code, needed to make an editing ListView is enormous.

The business applications usually require editing of many tables, and you don't want to be creative, you want to be quick. That's why DataGrid is needed in my opinion.

link|flag
vote up 2 vote down

Yes DataGrids will never go away as essential business UI components. People love their spreadsheets and we want to share in that love!

Note that MS are shipping these extra controls - they have created the WPF Toolkit on CodePlex to provide a fast-turnaround, open-source style of deployment.

It already includes a DataGrid and Calendar.

link|flag
vote up 1 vote down

It is essential, but you can achieve nearly the same effect with a ListView that is using a GridView, can't you?

link|flag
Yeah exactly that is the origin of my question. I never thought of a big need for DataGrid in a great UI technology like WPF – Jobi Joy Sep 26 '08 at 22:17
1  
There are a lot of things you don't get this way. Sorting on column content is only the most obvious and basic. You can implement sorting, sure, but why should you have to? In my shop we've added over 3000 lines of lines of code to the basic ListView/GridView to get a control suitable for us. – PeterAllenWebb Mar 20 at 15:48
vote up 2 vote down

After working with WPF for about 2 years now. I would say that a DataGrid is really just a glorified ListBox (since [almost] everything in WPF is styleless).

One could style a ListBox to take an Entity of some sort and show a "record" control for each entry. Depending on how flexible these are made, they could automatically adjust based on the entity passed.

link|flag
vote up 0 vote down

Yes it is! Among many other controls that ms failed to deliver. (Datepicker, NumericControl)

MS should first give us the tools to get the job done, that is the least i expect from a programming enviroment with the hype of wpf.

link|flag
vote up 4 vote down

Can't think of a better control to display tabular data, especially in business apps where you don't want to reinvent the wheel by templating/developing a (Headered)ItemsControl to make it behave like the good old DGV. I'm sure you saw this.

link|flag

Your Answer

Get an OpenID
or

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