Is DataGrid a necessity in WPF? - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T04:51:02Zhttp://stackoverflow.com/feeds/question/128414http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf12Is DataGrid a necessity in WPF?Jobi Joy2008-09-24T17:08:31Z2009-05-18T06:37:03Z
<p>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.</p>
<p>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?</p>
<p>Some other threads having the discussion about DatGrid are <a href="http://stackoverflow.com/questions/112518/what-wpf-datagrid-controls-are-worth-the-money-andor-effort#112623">here</a> and <a href="http://stackoverflow.com/questions/127647/what-is-the-best-free-datagrid-for-wpf#127740">here</a></p>
<p>Link to <a href="http://www.codeplex.com/wpf/Release/ProjectReleases.aspx?ReleaseId=14963" rel="nofollow">WPF ToolKit</a> - Latest WPF DatGrid</p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/128469#12846917Answer by Chris Wenham for Is DataGrid a necessity in WPF?Chris Wenham2008-09-24T17:20:00Z2008-09-24T17:20:00Z<p>DataGrids are excellent for displaying large amounts of tabular data bound to a backing store. </p>
<p>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.</p>
<p>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.</p>
<p>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. </p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/128587#1285874Answer by radu_c for Is DataGrid a necessity in WPF?radu_c2008-09-24T17:39:34Z2008-09-24T17:39:34Z<p>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 <a href="http://www.codeplex.com/wpf/Release/ProjectReleases.aspx?ReleaseId=14963" rel="nofollow">this</a>. </p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/133873#1338730Answer by Entrodus for Is DataGrid a necessity in WPF?Entrodus2008-09-25T15:07:24Z2008-09-25T15:07:24Z<p>Yes it is!
Among many other controls that ms failed to deliver. (Datepicker, NumericControl)</p>
<p>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. </p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/134645#1346452Answer by Phobis for Is DataGrid a necessity in WPF?Phobis2008-09-25T17:17:06Z2008-09-25T17:17:06Z<p>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). </p>
<p>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.</p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/139516#1395161Answer by scmccart for Is DataGrid a necessity in WPF?scmccart2008-09-26T13:30:34Z2008-09-26T13:30:34Z<p>It is essential, but you can achieve nearly the same effect with a ListView that is using a GridView, can't you?</p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/437846#4378462Answer by Andy Dent for Is DataGrid a necessity in WPF?Andy Dent2009-01-13T03:12:08Z2009-01-13T03:12:08Z<p>Yes DataGrids will never go away as essential business UI components. People love their spreadsheets and we want to share in that love!</p>
<p>Note that MS <strong>are</strong> shipping these extra controls - they have created the <a href="http://www.codeplex.com/wpf" rel="nofollow">WPF Toolkit</a> on CodePlex to provide a fast-turnaround, open-source style of deployment.</p>
<p>It already includes a DataGrid and Calendar.</p>
http://stackoverflow.com/questions/128414/is-datagrid-a-necessity-in-wpf/515401#5154012Answer by Dragoljub for Is DataGrid a necessity in WPF?Dragoljub2009-02-05T10:50:53Z2009-02-05T10:50:53Z<p>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.</p>
<p>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.</p>