I am trying to access the DataGridView CellPainting event to no avail. It is not in the list of events and if I try to create a custom event handler in the Designer.cs using the former code I get the latter error. What's the dealio, where is this event hiding?
this
.PricebooksGridView.CellPainting += new System.Windows.Forms.DataGridViewCellPaintingEventHandler(PricebookItemsGridView_CellPainting);
'Gizmox.WebGUI.Forms.DataGridView' does not contain a definition for 'CellPainting' and no extension method 'CellPainting' accepting a first argument of type 'Gizmox.WebGUI.Forms.DataGridView' could be found (are you missing a using directive or an assembly reference?)