Enhanced DataGridView

DataGridViews in Wisej.NET are very powerful controls. By default they are using Virtual Rows, allowing for an unlimited number of rows.

DGVs can act as containers hosting other controls.

They also support Tool Buttons in Cells, Column Headers, etc.

WinForms DataBinding is fully supported and additionally you can use Append/Fill methods to populate the DataGrid from a datasource without actually binding to it. This can come in quite handy if you want to group the rows and/or add Summary Rows.

Rows can also be Frozen including support for RowSpan and ColSpan.

DataGridView editing can be extended by using custom Cell Editors and you can display virtually any control or HTML in the DGVs cells. You can even paint in the cells!

Last updated