tags:

views:

15

answers:

1

Hi /all

In Windows .NET gridview - if a grid is readonly; when I click, a cell is selected; I want complete row to be highlighted instead of just cell.

any idea?

+2  A: 

Hi, try like this

dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;

Best Regards, Iordan

IordanTanev