Tagged Questions
The coloranimation tag has no wiki summary.
9
votes
5answers
2k views
WPF - Making an animation's execution conditional on a property of the bound data item
I have a data object -- a custom class called Notification -- that exposes a IsCritical property. The idea being that if a notification will expire, it has a period of validity and the user's ...
4
votes
1answer
4k views
WPF ColorAnimation for a Brush property
I wonder if someone can help me - I've got a label which I need to be able to cross-fade between any 2 colors when a method is called in the code behind.
My best attempt so far:
Private OldColor as ...
3
votes
1answer
183 views
round brackets in xaml syntax
when I'm using ColorAnimation to change Background of control i'm using following syntax:
<ColorAnimation Duration="0:0:0.5"
...
2
votes
2answers
387 views
Dynamic View Animations using MVVM
I've been trying to figure out how to effectively trigger animations in a View when a property in the ViewModel updates, where the animation depends on the value of said property.
I've recreated my ...
2
votes
1answer
353 views
WPF ColorAnimation seems to retain part of original colour?
I'm having a strange problem with a colour animation.
I have a list of items bound to a listbox. These items have an enum property which can have one of three values - NoRemarks, RemarksFound and ...
2
votes
1answer
956 views
How do I bind to a color in a WPF ColorAnimation?
I would like to do something that is seemingly quite simple, but I cannot figure out how to do it. I have a ColorAnimation that is triggered when the MouseEnter event occurs. It simply changes the ...
2
votes
1answer
839 views
WPF - ColorAnimation completed event
I want to be notified when the animation is completed.
However, when I apply the following code, I get the following error
"The event 'Completed' cannot be specified on a Target tag in a Style. Use ...
1
vote
1answer
503 views
Animate Fill Color of a Path In a Canvas
I'm trying to figure out how to animate the fill color of some paths I have inside of a canvas, which reside in ViewBoxes so they are stretched. My goal here is to change the fill color of these Paths ...
1
vote
1answer
758 views
Animating LinearGradientBrush Color in Code-Behind
I am playing a bit with trying to animate a LinearGradientBrush (lgb) in a Silverlight app. I have the following code in the constructor for my Page:
for (int stops = 0; stops < numStops; ...
0
votes
0answers
41 views
How to make strokes disappear on an InkCanvas
I am completely new to this forum, and still a beginner on WPF.
I am working on a project that requires the strokes on an inkcanvas to be animated. One of the animations required is "disappearing". ...
0
votes
1answer
107 views
WPF DataGrid - highlight new rows when inserted into datagrid
I have a datagrid bound to an ObservableCollection, and what I'd like to do is highlight new rows when they are added to the datagrid (i.e. when a new object is inserted into the ...
0
votes
1answer
111 views
Binding Color Value for coloranimation
I have a Border, and i'm trying to to make it's BorderBrush Flashes "Fade in and out". But my problem, is that the Flasing color depends on the code behind. so the color will change, but i have to ...
0
votes
1answer
210 views
Borderbrush coloranimation fade in and out
i have a border , and i change it's borderbrush in the run time.
now i need this border to be glowing all the time, whatever the color was.
i tried this but i have problems. any one can help?
...
0
votes
1answer
267 views
Problem at the beginning of a ColorAnimation for a GradientStop in a VisualState
I have a very strange problem with a ColorAnimation. What I want to do is pretty simple (I think): I have a Rectangle with a GradientBrush as a background. This rectangle has different VisualStates ...
0
votes
1answer
1k views
WPF Background change of Border OnMouseDown
I'm trying to change the background of a border on left mousebutton down. Button I don't get it. Of Course my gradient has 3 stops.
Eventtrigger:
<EventTrigger ...
0
votes
2answers
824 views
WPF: How to animate color change?
I have a grid, a window root element. I want to apply an animation which would change it's background color from white to green in 5 seconds. Here's what I did:
private void Window_Loaded(object ...
0
votes
2answers
158 views
.NET - ColorAnimation doesn't work
I created a ColorAnimation for a SpotLight-object, but it doesn't seem to work.
What am I doing wrong?
ColorAnimation mouseEnterColorAnimation = new ColorAnimation();
mouseEnterColorAnimation.To = ...
0
votes
1answer
2k views
Silverlight 4 Foreground ColorAnimation
I am trying to animate the Foreground color of a hyperlinkbutton when the user MouseOver the control. I created a custom style in which I want to animate the Foreground color. The Foreground color is ...