2012-02-14 209 views
0

我正在將動畫工作到C#和WPF中的窗口。在一個簡單的2窗口應用程序中,我想要一個窗口來獲取前一個窗口的座標,以及何時加載,我想要將其高度屬性從0調整爲前一個窗口的高度。我已經搜索了很多帖子,如幻燈片效果矩形或圖像,但我無法將它們應用到窗口。當它被加載時,請幫助我瞭解窗口的滑動高度。如果你有這個東西工作,請發佈任何代碼或項目鏈接在此先感謝。幻燈片窗口動畫

回答

1

你可以玩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);