I am trying to create a simple (I think) animation effect based on a property change in my ViewModel. I would like the target to be a specific textblock in the control template of a custom control, which inherits from Window.
From the article examples I’ve seen, a DataTrigger is the easiest way to accomplish this. It appears that Window.Triggers doesn’t support DataTriggers, which led me to try to apply the trigger in the style. The problem I am currently having is that I can’t seem to target the TextBlock (or any other child control)–what happens is which the code below is that the animation is applied to the background of the whole window.
If I leave off StoryBoard.Target completely, the effect is exactly the same.
Is this the right approach with the wrong syntax, or is there an easier way to accomplish this?
<Style x:Key="MyWindowStyle" TargetType="{x:Type Window}">
<Setter Property="Template" Value="{StaticResource MyWindowTemplate}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding ChangeOccurred}" Value="True">
<DataTrigger.EnterActions>
<BeginStoryboard>
<Storyboard BeginTime="00:00:00" Duration="0:0:2" Storyboard.Target="{Binding RelativeSource={RelativeSource AncestorType=TextBlock}}"
Storyboard.TargetProperty="(Background).(SolidColorBrush.Color)">
<ColorAnimation FillBehavior="Stop" From="Black" To="Red" Duration="0:0:0.5" AutoReverse="True"/>
</Storyboard>
</BeginStoryboard>
</DataTrigger.EnterActions>
</DataTrigger>
</Style.Triggers>
</Style>
Update
Should have also mentioned that I tried to name the TextBlock and reference it via StoryBoard.TargetName (as Timores suggested), and got the error “TargetName property cannot be set on a Style Setter.”
EDIT: I have overseen the fact that the
TextBlockis in theControlTemplateof your custom Window/Control. I do not think that it is possible to target a control within theControlTemplatefrom aStoryboardoutside of thisControlTemplate. You could however define a property on your custom Window which you then databind to yourChangeOccurredproperty, and then add the trigger to yourControlTemplatewhich will now get triggered by the custom Control’s property rather than the Window’s ViewModel’s property (of course, indirectly it is triggered by the ViewModel becauseChangeOccurredis bound to the property of the custom Window which in turn triggers the animation – uh, complex sentence, hope you understand). Is this an option? Could you follow? 😉Maybe some code helps:
And some XAML:
Note: I named the Window’s property
ChangeOccurred2because I wanted it to be distinguishable from the ViewModel’sChangeOccurredproperty. Of course, you should choose a better name for this property. However, I am missing the background for such a decision.My old answer:
So, you want to animate a
TextBlockwhich is in the content of a (custom) Window?!Why do you want to set the style on the Window, and not on the
TextBlockitself? Maybe you should try something like this (did not test this!):The
{Binding ChangeOccurred}might not be sufficient. You might have to add aDataContextto theTextBlock, or add aRelativeSourceor something.