c# - How do I synchronize ArrangeOverride with my animations? -
i have drag , drop implementation animate items below dragged item. problem animation of item below can still running when drop dragged item.
this leads call arrangeoverride resets item below position , storyboard.completed call moves item again leads wrong positioning.
reanimate below: 1: direction: 200 reanimate dragged: 0: direction: -200 complete on dragged item: 0: direction: -200 arrangeoverride arrangeoverride done complete on itembelow: 1: direction: 200
is there way synchronize arrangeoverride call animation called when animation done?
my code modified version of https://github.com/realistschuckle/wpfchrometabs has same problem
Comments
Post a Comment