WPF DataGrid from WPF toolkit vs ListView - any benefits? -
I know ListView
is very well, but DataGrid
But never seen
My question is simple - if you do not need editing in the list, then provide a profit compared to DataGrid
what ListView Does it? Also, are there disadvantages of using
DataGrid
(more complex, performance, bugs, rigid to style etc.)?
List view is just a control to read Normal Use list containing 'text description' To synchronize with.
The datagrid does not lack anything in the list, such as multiple selection modes, styles, etc. However, provide support for some features at the top of ListView:
-
Edit In-Place of Data
-
Transaction related Edit
> -
Auto-column generation
-
Row details setting
Actually there is a question - do you want in-place editing? If so, the data grid is a clear choice. If not, then both are quite similar.
Comments
Post a Comment