Bar in the datagrid

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I would like to know how can i display the selection bar like the list control. My selection bar is by cell and i don't want it

Thanks
 
H

In data grid you can select an entire row by grid.Select(rowNumber) method
If you want rows to be selected when you click a cell; In the CurrentCellChanged event of gri
use grid.Select(grid.CurrentCell.RowNumber

Regard

Dincer Uyav
 
Back
Top