Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DevExpress WPF Grid - get number of rows

Does anyone knows how to get a DevExpress WPF Grid Rows count?

like image 219
Vytas Avatar asked Nov 20 '09 12:11

Vytas


1 Answers

The number of rows displayed can change as users change the grouping, filterting. Therefore, you should use the GridControl.VisibleRowCount property instead of the data source row count.

like image 137
TheSean Avatar answered Nov 15 '22 03:11

TheSean