Windows 8商店应用程序c#动画边距

时间:2012-11-08 09:36:59

标签: c# windows-store-apps

我正在创建一个Windows应用商店应用,它需要一些动画

有没有人有一个动画示例来设置用户控件的边距?

我需要使用重新定位吗? (doubleanimation不支持ucChat.margin或ucChat.margin.top)

DoubleAnimation da = new DoubleAnimation();
                da.Duration = new Duration(TimeSpan.FromMilliseconds(1500));
                da.From = 0;
                da.To = -400;

                Storyboard st = new Storyboard();
                Storyboard.SetTarget(da, ucChat);
                Storyboard.SetTargetProperty(da, "ucChat.Margin.Top");
                st.Children.Add(da);

                st.Begin();

似乎在wpf中你可以使用ThicknessAnimation,在windows商店应用程序中是否有相同的功能?

0 个答案:

没有答案