Hi,
I need to change the background colour of a certain cell in a DataGrid that is bound to a DataTable, is this possible? I cannot find a list of cells or cell styles anywhere.
I know the column and row of its location in the DataTable. So, in pseudo code, it would be:
var cell = dgData.Cells[columnIndex,rowIndex];
cell.Background = new SolidBrush(Colours.AliceBlue);
Cheers,
Jose