-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Description
When changing visibility before animation ends, weird flickering behaviour occurs. Possible fix would be not allowing animations to stack on current element. Here's a XAML example to concretize the issue:
<Style.Triggers>
<DataTrigger Binding="{...}">
<DataTrigger.EnterActions>
<BeginStoryboard x:Name="Temp_Animation" Storyboard="{StaticResource FadeOutAnimation}"/>
</DataTrigger.EnterActions>
<DataTrigger.ExitActions>
<StopStoryboard BeginStoryboardName="Temp_Animation"/>
<BeginStoryboard Storyboard="{StaticResource FadeInAnimation}"/>
</DataTrigger.ExitActions>
</DataTrigger>
</Style.Triggers>And here is a video. Note the flickering
Metadata
Metadata
Assignees
Labels
No labels