Hi, I have a DatagridView, and I would like it to change the background color depending on the data in each row.
Ex.
| Man 1 | Man 2 | Face 3 |
| ---- 100 ---- | --- 200 ----- | ----- 150 ---- |
| ---- 300 ---- | --- 100 ----- | ------ 50 ---- |
In the first line, I would like β100β to have a red background color and β200β green. Or. Lowest value = red maximum = green
Now the thing is, Im using a BindingList for my data and updating it async with INotifyPropertyChanged. Therefore, I need to check every time every time one of the values ββhas been updated.
Is there an event in the DataGridView that would be useful?
gulbaek
source share