#666 – Using a Trigger to React to the Mouse Being Over a Control
October 11, 2012 1 Comment
You can perform some action when the user moves the mouse over a user interface element by defining event handlers for the MouseEnter and MouseLeave events for the element.
If the action that you’re performing is something that can be expressed in XAML (like setting a property value), it’s more elegant to use a trigger to react to the mouse movement.
You can define a property trigger for the IsMouseOver property, setting new values for one or more of the Button’s properties when the mouse is over the Button.
<StackPanel Margin="20" > <Button HorizontalAlignment="Center" Padding="10,5"> <Button.Style> <Style TargetType="Button"> <Setter Property="Content" Value="Click Me"/> <Style.Triggers> <Trigger Property="IsMouseOver" Value="True"> <Setter Property="Button.Content" Value="!! CLICK Me !!"/> <Setter Property="FontWeight" Value="Bold"/> </Trigger> </Style.Triggers> </Style> </Button.Style> </Button> </StackPanel>
Note that when you move the mouse off of the Button, the Content and FontWeight properties both revert back to their original values.