B
Bachus
Hello,
Is there any way to disable highlight on selected cell in DataGrid ?
I want to select entire rows and only rows in my DataGrid.
DataGrid is readonly.
I put that into my code :
private void dataGrid1_CurrentCellChanged(object sender, System.EventArgs
e)
{
dataGrid1.Select(dataGrid1.CurrentCell.RowNumber);
}
This selects entire row, but current cell is highlited. i want to get rid of
that highlight.
What should i do ? Is it possible to do that by changing some properties ?
Adam
Is there any way to disable highlight on selected cell in DataGrid ?
I want to select entire rows and only rows in my DataGrid.
DataGrid is readonly.
I put that into my code :
private void dataGrid1_CurrentCellChanged(object sender, System.EventArgs
e)
{
dataGrid1.Select(dataGrid1.CurrentCell.RowNumber);
}
This selects entire row, but current cell is highlited. i want to get rid of
that highlight.
What should i do ? Is it possible to do that by changing some properties ?
Adam