In my WPF control, I have below code. If I don't have a trigger with false, I can see the my storyboard, but if I have both ture and false triggers, I don't see any thing.
How to fix this? Appreciate your help!
<Trigger Property="Control.IsMouseOver" Value="True">
<StoryBoard>
Image with Opacity 1
</StoryBoard>
</Trigger>
<Trigger Property="Control.IsMouseOver" Value="False">
<StoryBoard>
Image with Opacity 0
</StoryBoard>
</Trigger>