BackColor of current cell.

J Trahair

Well-known member
Joined
May 14, 2008
Messages
175
Location
Spain
Programming Experience
10+
DataGridView1.CurrentCell.Style.BackColor = Color.White doesn't seem to turn the current cell's background colour to white, when it moves from cell to cell. It remains the default blue. Have I missed something? Thank you.
 
VB.NET:
Me.DataGridView1.DefaultCellStyle.SelectionBackColor = Color.White
or just set it in Designer.
 
Back
Top