fix: MenuItem hover animation disappears after click #1451
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Pull request type
Please check the type of change your PR introduces:
What is the current behavior?
The MenuItem in the menu displays a smooth hover animation when the mouse pointer is over it. However, after clicking the button, the hover visual state disappears and does not return until the mouse is moved outside the item and then back onto it. This creates a temporary loss of visual feedback, which may feel inconsistent or unintuitive to users.
To reproduce this issue:
Before Fix
Issue Number: #1394
What is the new behavior?
The hover visual feedback now remains active while the MenuItem is pressed and the mouse is still over it. This is achieved by adding a new MultiTrigger that responds to both IsMouseOver and IsPressed properties. As a result, the hover animation no longer disappears immediately after clicking the item, providing a more consistent and intuitive user experience.
Theme Brushes for Menu and MenuItem:
After Fix
Other information
N/A