CanvasのWidthプロパティのDoubleAnimationを実行しています。キャンバスを1/5のサイズに縮小したい。
var widthAnimation = new DoubleAnimation();
widthAnimation.Duration = new TimeSpan(0,0,1);
StoryBoard.SetTarget(widthAnimation, Canvas1);
StoryBoard.SetTargetProperty(widthAnimation, new PropertyPath("Width"));
widthAnimation.From = Canvas1.Width;
widthAnimation.To = Canvas1.Width * .2;
StoryBoard stb = new StoryBoard();
stb.Children.Add(widthAnimation);
stb.Begin();
どういうわけか、上記のアニメーションはサイズを1/5に縮小しません。代わりに、キャンバスを拡大します。アニメーションが何か面白いことをしている理由はありますか?