We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e18b9eb commit ad3d951Copy full SHA for ad3d951
1 file changed
Desktop/MainWindow.xaml
@@ -72,7 +72,19 @@
72
<Separator Width="1" Height="26" />
73
</StatusBarItem>
74
<StatusBarItem>
75
- <Label Content="{Binding StatusMessage}">
+ <Label Content="{Binding StatusMessage, NotifyOnTargetUpdated=True}">
76
+ <Label.Triggers>
77
+ <EventTrigger RoutedEvent="Binding.TargetUpdated">
78
+ <BeginStoryboard>
79
+ <Storyboard RepeatBehavior="3x" AutoReverse="True">
80
+ <DoubleAnimation
81
+ Storyboard.TargetProperty="Opacity"
82
+ From="1.0" To="0.3"
83
+ Duration="0:0:0.5" />
84
+ </Storyboard>
85
+ </BeginStoryboard>
86
+ </EventTrigger>
87
+ </Label.Triggers>
88
</Label>
89
90
</StatusBar>
0 commit comments