BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Me.gridControl1.RefreshCurrentCellBehavior = GridRefreshCurrentCellBehavior.RefreshRow
Private Sub gridControl1_PrepareViewStyleInfo(ByVal sender As Object, ByVal e As Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs) Handles gridControl1.PrepareViewStyleInfo If e.RowIndex = gridControl1.CurrentCell.RowIndex Then e.Style.BackColor = Color.AliceBlue End If End Sub
Dim cr As GridDropDownGridListControlCellRenderer = gridControl1.CellRenderers("GridListControl")
cr.ListControlPart.ShowColumnHeader = False
AddHandler cr.ListControlPart.Grid.PrepareViewStyleInfo, AddressOf gridControl1_PrepareViewStyleInfo
Private Sub gridControl1_PrepareViewStyleInfo(ByVal sender As Object, ByVal e As GridPrepareViewStyleInfoEventArgs) e.Style.BackColor = Color.Red End Sub