以下是引用江南小城在2016/8/18 11:01:00的发言:
Dim cs1 As C1.Win.C1FlexGrid.CellStyle = e.Table.grid.Styles.Add("cs1")
cs1.BackColor = Color.SandyBrown
For i As Integer = 1 To e.Table.Cols.Count
e.Table.Grid.SetCellStyle(e.Row.Index+1, i, cs1)
Next
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
老师,上面代码设置鼠标光标和突出行不在同一行上,鼠标光标在下面突出行在上一行)
老师,为什么新建的项目没问题