我需要更改datagridview中行的顏色,但我的代碼不適合我。 我總是寫着一個錯誤「列命名數量:無法找到參數名稱:列名」根據單元格的數量更改DataGridView中的行顏色
這裏是我的代碼:
Private Sub DataGridView1_CellFormatting(ByVal sender As Object, ByVal e As DataGridViewCellFormattingEventArgs) Handles DataGridView1.CellFormatting
For i As Integer = 0 To Me.DataGridView1.Rows.Count - 1
If Me.DataGridView1.Rows(i).Cells("Quantity:").Value < 5 Then
Me.DataGridView1.Rows(i).Cells("Quantity:").Style.ForeColor = Color.Red
End If
Next
End Sub
請幫我解決這個問題。謝謝。
使用我的以下回答鏈接進行日期範圍比較 http://stackoverflow.com/a/29486288/3583859 –