Silverlight 4 添加/删除网格子元素之间的过渡动​​画

发布于 2024-12-06 13:08:42 字数 703 浏览 0 评论 0原文

我正在使用此博客提供的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有一腔孤勇 2024-12-13 13:08:42

获得所需效果的一种方法是启动处理视觉过渡的 Storyboard,然后侦听 Completed 事件以更新 ContentHost.Children。

  1. 在 Storyboard 中,将 ContentHost.Opacity 动画设置为 0
  2. 当 Storyboard.Completed 事件触发时,执行 manager_PropertyChanged() 代码块中的代码
  3. 启动第二个 Storyboard,将 ContentHost.Opacity 动画设置回 1

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.

  1. In a storyboard animate ContentHost.Opacity to 0
  2. When the Storyboard.Completed event fires, execute the code in your manager_PropertyChanged() code block
  3. Launch a second Storyboard to animate ContentHost.Opacity back to 1
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文