Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the alternatives to DataGridView? [closed]

We're looking to replace DataGridView in our Winforms app. What are the alternatives - commercial or otherwise - that we ought to evaluate?

like image 500
Simon Avatar asked Mar 22 '10 14:03

Simon


People also ask

Which is better ListView or DataGridView?

Yes a ListView looks nicer than a DataGrid, but a Datagrid is better because it has more functionality (out of the box that is). With a ListView you cannot: Copy and paste - although you can select a row of data in both controls, you can't copy and paste a whole row from the ListView.

What is difference between GridView and DataGridView?

The DataGrid and the GridView controls have different event models. The DataGrid control raises single events for operations, while the GridView control is capable of both pre-operation and post-operation events. The GridView control supports the Sorting event that occurs when a field is sorted.

What is the difference between DataGrid and DataGridView?

The DataGrid control is limited to displaying data from an external data source. The DataGridView control, however, can display unbound data stored in the control, data from a bound data source, or bound and unbound data together.

Is Devexpress grid free?

It has a trial version. It costs $499 for 1 dev.


1 Answers

Replacing the Grid is usually not fun...

You could try:

  • Telerik
  • DevExpress
  • Infragistics
  • SyncFusion
  • ComponentArt
  • ObjectListView (nuget)

But first - evaluate your needs, see why the GridView is not giving you the desired results & then do a through technical analysis on these commercial products before making any changes to your code.

Also as a side-note: don't directly use the vendor code & namespaces into your code, perhaps DI would be a better mechanism to abstract via a IGridView interface...

HTH.

like image 190
Sunny Avatar answered Dec 05 '22 02:12

Sunny