幻灯片窗口动画

本文关键字:动画 窗口 幻灯片 | 更新日期: 2023-09-27 18:24:37

我正在用C#和WPF制作一个窗口的动画。在一个简单的2窗口应用程序中,我希望一个窗口获得上一个窗口的坐标,当它被加载时,我希望将其高度属性从0设置为上一窗口的高度。我已经搜索了很多帖子,比如矩形或图像的幻灯片效果,但我无法将它们应用于窗口。请帮我了解一下窗户装上后的滑动高度。请张贴任何代码或项目链接,如果你有这个东西工作,提前感谢。

幻灯片窗口动画

您可以围绕DoubleAnimation 进行游戏

            DoubleAnimation anim = new DoubleAnimation();
            anim.From = 125;   //Height of the container before animation
            anim.To = 0;       //Height of the container after animation
            anim.SpeedRatio = 3;
            mainWindow.BeginAnimation(Window.HeightProperty, anim);