The coloranimation tag has no wiki summary.
1
vote
1answer
89 views
Wpf color animation binding
I have stumbled upon a really annoying problem, it would seem to be something trivial to achieve but I cannot figure out a solution. What I want to do is bind the To property of a ColorAnimation to a ...
0
votes
1answer
69 views
Using ColorAnimationUsingKeyFrames multiple times for Stroke.Color Property
I like to use this ColorAnimationUsingKeyFrames
<Color x:Key="HighlightedColor">Yellow</Color>
<ColorAnimationUsingKeyFrames BeginTime="00:00:00.0000000"
...
0
votes
1answer
225 views
Bind storyboard color animation from local string variable
I'm still a bit of an amateur in regards to binding in WPF but I was hoping I could get some help in regards to binding a string to a storyboard animation. I have a custom UserControl with nothing ...
0
votes
3answers
762 views
How to increment / decrement hex color values with javascript / jQuery
Is it possible to increment or decrement hex color values on a step-by-step basis in jQuery / javascript?
What I would like to do is something like this:
Adapting from a for-loop like
for (var i ...
1
vote
2answers
81 views
Color animation jQuery plugin: the animation triggers for both parent and child elements. How to fix this?
Only yesterday did I need to animate the border color of an HTML div and came across the color animation jquery plugin from bitstorm. It is lightweight and simple to use, but it seems that it has a ...
1
vote
1answer
474 views
Metro/Windows Store App: Can't use Foreground as TemplateBinding source in ControlTemplate?
I'd like to use the value of the Foreground of my control to be used as source for a VisualState ColorAnimation in a ControlTemplate.
My template definition looks mainly like the standard template ...
0
votes
2answers
79 views
Why do certain properties need to be surrounded in parenthesis..ex: Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)
The title pretty much sums it up. I was stuck on an issue with a ColorAnimation not working properly. I eventually figured out that the TargetProperty had to be surrounded in parenthesis...although ...
2
votes
1answer
108 views
Why is this ColorAnimation not starting?
I'm trying to get a ColorAnimation to occur depending on the control's state. I created a ControlTemplate for the ToggleButton that looks something like this:
<ControlTemplate ...
1
vote
1answer
514 views
Can't set Border Background in Silverlight StoryBoard ColorAnimation
When trying to set the background of a Border, I get the following exception:
Cannot resolve TargetProperty (Border.Background).(SolidColorBrush.Color) on specified object.
You can easily reproduce ...
0
votes
1answer
41 views
Mouseleave not really being called by IE with color animations
I know that there are tons of questions like this on SO, but I haven't been able to find one with animating colors. On mouse over, it animates to a color (I made it an ugly blue just for testing ...
2
votes
1answer
224 views
WPF ColorAnimation inside Window.Resources
I have a TextBlock that I would like to give it a color animation effect; I have done something like this:
<Window.Resources>
<Storyboard x:Key="AnimateTarget" ...
0
votes
1answer
624 views
WPF button EventTrigger=Button.IsEnabledChanged
I want to animate a color change of a button (based on its IsEnabled property) in two ways:
1) when it is changed from enabled to disables -> the color will be changed from white to black.
2) when it ...
1
vote
2answers
289 views
DataTrigger don't seems to fire
I want to create a datatrigger that makes my page blink (from transparent to red). So I created a DataTrigger that listens to a boolean flag within my viewmodel. This flag shall indicate whenever the ...
0
votes
1answer
461 views
VisualState storyboard applies to resource instead of control?
I have a weird problem with a storyboard inside a button visual state manager. I have two buttons with the same style and a specific Foreground. The Path that is the content of the button binds its ...
0
votes
2answers
1k views
Changing StackPanel Background color with ColorAnimation
Well, I'm trying to change the Background color of a StackPanel in a DataTemplate using ColorAnimation:
<DataTemplate DataType="{x:Type logic:Sensor}">
<StackPanel ...
0
votes
1answer
177 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". ...
1
vote
1answer
888 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 ...
1
vote
1answer
465 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
2k 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?
...
3
votes
2answers
1k 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 ...
0
votes
1answer
576 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 ...
1
vote
1answer
2k 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 ...
2
votes
1answer
1k 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
1answer
4k 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 ...
3
votes
1answer
431 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
7k 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
316 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 = ...
3
votes
1answer
4k 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 ...
2
votes
1answer
601 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 ...
3
votes
1answer
2k 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 ...
9
votes
1answer
8k 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 ...
2
votes
1answer
1k 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 ...
11
votes
5answers
3k 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 ...