datagrid Scroll
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How do I programmatically scroll the datagrid to a particular row? For example. dataGrid1.Select(200); On the datagrid, selected row is 200 but the scroll bar is not in the same location. Thanks.
datagrid1.Select(50); datagrid1.CurrentRowIndex=50;
Here i used 50 to denote the grid row number or index. Insted of that 50 , use your variable or value to fix the location of the datarow in your datagrid.:) Sreejith Nair [ My Articles ]