The problem I am having is actually simple. If I try to set Cell styles, say, the BackColor property in an event handler , nothing happens. I see that in my implementation, the GridControl is firing the .QueryCellInfo handler after my own event handlers. So, let's say I have a button Click handler that tries to change a cell style using grid[r,c].BackColor, it will not work. However, if I change a cell's BackColor inside the QueryCellInfo handler, the color changes properly in the cell. I can not change any cell characteristics or header styles or content from my handlers, only from the QueryCellInfo handler.
Maybe I have something set up incorrectly, because my control event handlers are processed before the GridControl.QueryCellInfo handler??
I define the grid control's QueryCellInfo event handler vectors during the MetroForm constructor, so maybe I need to change the order of defining my event handlers? I'll try that.
Bob