BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Dim cellRenderer As GridDropDownGridListControlCellRenderer = Me.gridControl1.CellRenderers("GridListControl")
Dim gridList As GridListControl = cellRenderer.ListControlPart
AddHandler gridList.Grid.PrepareViewStyleInfo, AddressOf gridlist_PrepareViewStyleInfo
Then the handler can do soemthing like:
Private Sub gridlist_PrepareViewStyleInfo(ByVal sender As Object, ByVal e As GridPrepareViewStyleInfoEventArgs)
If e.RowIndex Mod 2 = 1 Then
e.Style.BackColor = Color.LightCoral
End If
End Sub
This code will change the backcolor everytime the gridlistcontrol is shown.