I have the follow code snippet:
<Style TargetType="FlyoutItem" x:Key="HomeFlyout">
<Setter Property="FlyoutIcon" Value="tab_home.png" />
<Style.Triggers>
<Trigger TargetType="FlyoutItem"
Property="IsChecked" Value="False">
</Trigger>
<Trigger TargetType="FlyoutItem"
Property="IsChecked" Value="True">
<Setter Property="FlyoutIcon" Value="tab_home_on.png" />
</Trigger>
</Style.Triggers>
</Style>
Currently, this works fine, however, I'd like to add a simple tooltip to it.
Is this possible and how can it be done?