I have a control with 5 buttons, and I would like to make all of them shift diagonally when any of them are clicked.
What would be the best way to do this? If it were a single button, I could use a Storyboard and DoubleAnimate, but I believe that if I apply this to multiply buttons, they would shift one by one, instead of at the same time.
How would I make them all move in the same time?
If I have understood your situation correctly, one option might be to put the buttons on a container like a
Gridand animate the Grid.Here is a quick example of animating a Grid which is hosting a set of buttons.