Questions tagged [doubleanimation]

Use this tag for questions related to DoubleAnimation .Net framework class for animating the value of a Double.

DoubleAnimation is a .Net framework class for animating the value of a Double property between two target values using linear interpolation over a specified Duration.

77 questions
-1
votes
1 answer

How can i use DoubleAnimation in a loop in WPF?

I want to use animation in a for loop. But I can only see the last animation. According to my search I have to use storyboard. My code is below. Random rnd = new Random(); Storyboard sb = new Storyboard(); public MainWindow() { …
Mert DEMIRKIRAN
  • 418
  • 5
  • 18
-1
votes
1 answer

How to grow an image gradually (from nothing) in WPF

So, I'm developing an application in WPF with C#, and I would like to gradually grow a image control (using a DoubleAnimation). I ran it, but my image never appeared. Here is my code: PACSCore.Height = 0; //Sets Image Size before…
Luke Dinkler
  • 731
  • 5
  • 16
  • 36
1 2 3 4 5
6