If I have such string in XAML:
Storyboard.TargetProperty=\"Margin\" From=\"1,2,3,4\" To=\"0,0,0,0\"
What is Top Bottom Right and Left? 1- r
Margin="1,2,3,4"
It is also possible to specify just two sizes like this:
Margin="1,2"
Finally you can specify a single size:
Margin="1"
The order is the same as in WinForms.