I would like to add an animation to a DataGrid
, which is applied to every row when they are loaded.
Like the following:
For example in that one, each row is blurred out and gets focus.
I tried editing the GridRowStyle
template of my DataGrid
and adding an even trigger for OnLoaded
even to fire the animation. It works, but as it is fast, all the rows get updated almost at the same time so the animation fires on all of them.
How can I introduce a delay on the rows, so the last row will fire the even later than the first?