MouseEnterCell事件
Dim cs1 As C1.Win.C1FlexGrid.CellStyle = e.Table.grid.Styles.Add("cs1")
cs1.BackColor = Color.Red
For i As Integer = 1 To e.Table.Cols.Count
e.Table.Grid.SetCellStyle(e.Row.Index+1, i, cs1)
Next
MouseLeaveCell事件
Dim cs1 As C1.Win.C1FlexGrid.CellStyle = e.Table.grid.Styles.Add("cs2")
cs1.BackColor = Color.white
For i As Integer = 1 To e.Table.Cols.Count
e.Table.Grid.SetCellStyle(e.Row.Index+1, i, cs1)
Next