Silverlight 4 添加/删除网格子元素之间的过渡动画
我正在使用此博客提供的 Silverlight 向导控件:
http://weblogs.asp.net/bryansampica/archive/2010/07/21/silverlight-4-0-wizard-custom-control.aspx
我想添加一个ActivePage 更改之间的过渡...在代码隐藏中处理它们的方式如下所示:
public void manager_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
ContentHost.Children.Clear();
ContentHost.Children.Add(manager.ActiveStep);
HeaderText = manager.ActiveStep.StepHeaderText;
}
有没有办法在 Clear 和 ActivePage 之间添加动画?添加?
如果这是一个愚蠢的问题,我很抱歉!
谢谢!
I'm using the Silverlight Wizard control provided by this blog:
http://weblogs.asp.net/bryansampica/archive/2010/07/21/silverlight-4-0-wizard-custom-control.aspx
And I would like to add a transition between ActivePage changes...the way they are handled in the codebehind are like so:
public void manager_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
ContentHost.Children.Clear();
ContentHost.Children.Add(manager.ActiveStep);
HeaderText = manager.ActiveStep.StepHeaderText;
}
Is there any way to add an animation between the Clear & Add?
My apologies if this is a silly question!
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获得所需效果的一种方法是启动处理视觉过渡的 Storyboard,然后侦听 Completed 事件以更新 ContentHost.Children。
One way to get the desired effect would be to launch a Storyboard which handles the visual transition, then listen on the Completed event to update the ContentHost.Children.