Hi,
When I hoover the mouse over a item in the main menu, a blue effect appears over it, but when I click it, that effect remains in the item, and it looks pretty bad.
Why that happen? how can I avoid it?
Cheers.
Hi
I could not reproduce your issue, but you can try this:
Add follow storyboard to control template of XamWebMenuItem in normal visual state
<vsm:VisualState x:Name="Normal"><Storyboard > <ObjectAnimationUsingKeyFrames Storyboard.TargetName="HighlightedIndicator" Storyboard.TargetProperty="(UIElement.Visibility)"> <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/> </ObjectAnimationUsingKeyFrames> <ObjectAnimationUsingKeyFrames Storyboard.TargetName="SelectedIndicator" Storyboard.TargetProperty="(UIElement.Visibility)"> <DiscreteObjectKeyFrame KeyTime="0" Value="Collapsed"/> </ObjectAnimationUsingKeyFrames></Storyboard></vsm:VisualState>
It happens when the item has no subitems, I mean, when you are using the menu like a toolbar.
After click it you have to hoover the mouse again to remove the effect.
Cannot you reproduce it?