How do I get rid of the blue background when data is loaded into a datagridview, the first row has a default color of blue for the background, and when you select a row, the background changes to blue. I’d like it so that there is no blue background, at all.
Share
I’m assuming you’re working with the
DataGridViewcontrol within a windows form application. The blue background is the default color for a selected row. You can change this color within the properties windowdatagridviewDefaultCellStyleAppearance, change the value ofSelectionBackColorHope this helps.