AD
Administrator
Syncfusion Team
September 3, 2004 05:45 AM UTC
Here is a KB link that shows a way to blink a cell every now and then.
http://www.syncfusion.com/Support/article.aspx?id=10558
To use the same technique to do a row every now and then, you would e.ColIndex == this.col to e.ColIndex > 0 in the PrepareViewStyleInfo eventhandler and change the the GridRangeInfo to GridRangeInfo.Row(this.row) in the tick eventhandler.
Now this technique relies on a timer on the UI thread. So, if you are going to have many rows blinking at once, this might hinder your UI performance by spiking the CPU load. In this case, you might want to try the more involved blinking solution that manages the cells that blinking in a different thread like the sample referred to in your earlier post. That sample was for a GridControl, but could be modified to work with a GridDataBoundGrid.