How to animate TextBlock when its value changes in WinRT XAML?
I have the following Storyboard <Storyboard x:Name="DeleteStoryboard"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="StatusTextBlock"> <EasingDoubleKeyFrame KeyTime="0" Value="1"/> <EasingDoubleKeyFrame KeyTime="0:0:4" Value="1"/> <EasingDoubleKeyFrame KeyTime="0:0:5" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> and the following TextBlock <TextBlock x:Name="StatusTextBlock" Text="{Binding Status}"> Both are in SettingsFlyout not a Page . I want the Storyboard to start when the TextBlock value changes. I'm using MVVM, so