Questions tagged [wpf-animation]

Animation is an illusion that is created by quickly cycling through a series of images, each slightly different from the last. The brain perceives the group of images as a single changing scene. In film, this illusion is created by using cameras that record many photographs, or frames, each second. When the frames are played back by a projector, the audience sees a moving picture.

Windows Presentation Foundation (WPF) provides a powerful set of graphics and layout features that enable you to create attractive user interfaces and appealing documents. Animation can make an attractive user interface even more spectacular and usable. By just animating a background color or applying an animated Transform, you can create dramatic screen transitions or provide helpful visual cues.

Reference

159 questions
0
votes
1 answer

How do I rotate an image and resize it at the same time

I am developing a Windows Phone 8 game application and I want to rotate the image and at the same time I want to re-size the image from 100 to 0 then again from 0 to 100. Till now what I have done is
Debhere
  • 1,055
  • 2
  • 19
  • 41
0
votes
2 answers

Trouble creating horizontal automatic scrolling textblock

I'm trying to create an automatic scrolling textblock. This is the code I have so far:
Robby Smet
  • 4,649
  • 8
  • 61
  • 104
0
votes
0 answers

How to animate items in stackpanel animation

I am working on wpf animation. I need to Translate a stackpanel inside the grid from left to right. It starts its translation from behind the grid.its work but some part of stackpanel crop by the grid. If increase the width i can see the full of…
Sachin123
  • 251
  • 5
  • 18
0
votes
1 answer

Straight line EasingFunction in WPF application

Straight line EasingFunction in WPF application I am working in WPF application and new to animation. I need to animate images in straight direction with ease effect. Which type of EasingFunction can I use? Now I am using CircleEase function but not…
Sachin123
  • 251
  • 5
  • 18
0
votes
1 answer

How to rotate the Ellipse and border based on dragging border?

Please find the attached Image for my requirement.when drag the arc(Border) the arc and wheel rotate through mouse position.can you please help me? if rotate the arc and wheel in button click it working.But i want rotate this in Draging the…
Ravuthasamy
  • 589
  • 1
  • 6
  • 16
0
votes
1 answer

Storyboard flicker between remove and begin

I have these two animations defined in UserControl.Resources:
Chuck Savage
  • 11,775
  • 6
  • 49
  • 69
-1
votes
1 answer

System.Windows.Media.Animation.DoubleAnimation generates a lot of PropertyChangedCallbacks of DependecyProperty

Hi together i am Korbinian and i investigate currently a CPU cosumption problem regarding WPF and animated UI elements. We animate a UI element via System.Windows.Media.Animation.DoubleAnimation methode BeginAnimation. I am quite new to WPF…
korbif
  • 1
  • 3
-1
votes
1 answer

How to animate button on IsEnabled property changed?

I'm currently styling a button template in WPF .NET Core 3.1 in a resource dictionary and I want to fade the button color when the button's IsEnabled property is set to true/false. According to this link it appears we can easily do this with…
liquidair
  • 177
  • 2
  • 11
-1
votes
1 answer

How to animate GradientStop color?

I've tried code below, but there's something wrong in line "Storyboard.SetTargetProperty(ca1, new PropertyPath("GradientStop.ColorProperty")); sb.Begin(this) threw an InvalidOperationException and couldn't resolve „gradStop1.ColorProperty”. How to…
residue
  • 207
  • 5
  • 18
1 2 3
10
11