Reputation: 3
When the gridview cell's value change, I want to change the background color for few seconds to notify users. How to implement. I can change the background color when the value is changed. But I don't know how to change it back after few seconds.
Upvotes: 0
Views: 150
Reputation: 4000
I think you can use a timer in the cell change event handler, and set the background color twice. Once the highlighting color and at the end of timer, normal background color.
Here's a full impementation of CellValueChanged on DataGriewView. Check this out once.
Upvotes: 0