0
votes
3answers
42 views
WPF: how to fire an EventTrigger (or Animation) when binding changes?
We have a simple animation that runs when a ToggleButton is checked and unchecked (expands a ListView's height and then collapses a ListView's height). How do you fire the EventTr …
1
vote
1answer
25 views
silverlight textblock animation style
I want to make a Style that can be applied to a TextBlock to create a loading text control. All I want is for the text's opacity to pulse from 0 to 1 and back until I hide the con …
0
votes
3answers
65 views
WPF animate linear gradient
You can animate linear gradient by:
<Storyboard x:Key="Focused" >
<DoubleAnimation Duration="0:0:0.3" Storyboard.TargetProperty=
"BorderBrush.GradientStops[0].Offset" Sto …
0
votes
1answer
56 views
WPF Expander Border Animation affects all contained controls?
I'm using a WPF Expander to display a number of analog process variables.
I want to make the expander's border 'glow' (or flash) when one of these variables enters a 'warning' o …
3
votes
2answers
199 views
What is the best way to start an animation when a bound value changes?
This is a situation that comes up often:
In the View, you have a control bound to a ViewModel property (backed by a INotifyPropertyChanged). For example:
<TextBlock Text="{Bin …
0
votes
1answer
22 views
Remove storyboard but keep animated value?
How can I remove a storyboard in XAML (i.e. RemoveStoryboard action in a DataTrigger) but keep the value that was animated. Similar to the Animatable.BeginAnimation:
If the ani …
1
vote
2answers
172 views
WPF - sequential animation simple example
Hi, I'm learning about WPF animation, and am confused about how to apply animations sequentially. As a simple example, I've got four rectangles in a uniform grid, and would like t …
0
votes
1answer
68 views
WPF Remove Margin Animation Programmatically
How do I remove the margins of two sides of a stackpanel in an animation storyboard so it looks like the stackpanel has moved from the code behind? I need to do it in the code-behi …
1
vote
0answers
23 views
Binding to the actual of a UserControl in Silverlight?
Seen some questions on SO but none answers my question.
What I want to accomplish:
I have a custom control (lets call it A) which moves around the canvas using a storyboard. And …
1
vote
3answers
81 views
Is there a low-tack adhesive tape available for creating Scrum story boards? [closed]
[It's not a 'programming question' by the normal definition, but there's no Management SO trilogy site .. yet, and it's about programming from a meta POV]
We've previously used el …
0
votes
0answers
34 views
Behaviours in ContentTemplate Triggers
Hi all,
I’m loving behaviours and states in Blend 3. Typically I’m using the GoToStateAction behaviour to go to a state when an action (such as a button click) occurs.
I’ve hit …
1
vote
2answers
151 views
With WPF, how to link an animation with a ContentControl?
I don't know how to link successfully a StoryBoard to a TranslateTransform that is part of a ContentControl. I always get the following error when I try to run my StoryBoard:
' …
0
votes
3answers
114 views
Bind to an attached behavior on a Storyboard
I have created an attached dependency property for Storyboards, with the intention of enabling me to call a method on my ViewModel when a Storyboard Completed event fires:
public …
0
votes
0answers
25 views
How can I assign a Storyboard for single rows in a Silverlight DataGrid?
Hi I'm trying to make some rows of a DataGrid blink from white to red depending on their status.
So, I have tried this: (e.row is the current row Im trying to make blink)
Storybo …
1
vote
1answer
60 views
Get a Framework element from a Storyboard
I have a reference to an instance of a Storyboard object, and want to get hold of the Framework element that it is attached to / animating. I haven't been able to come up with any …
