ContentElement::IsMouseOver Property
Gets a value that indicates whether the mouse pointer is located over this element (including visual child elements, or its control compositing).
Assembly: PresentationCore (in PresentationCore.dll)
Property Value
Type: System::Booleantrue if mouse pointer is over the element or its child elements; otherwise, false. The default is false.
Implements
IInputElement::IsMouseOverAlthough an analogous "IsMouseOverChanged" event does not exist, several similar events do. For example, you can use MouseEnter, MouseMove, and IsMouseDirectlyOverChanged.
If this element captures the mouse, this property remains true until mouse capture is lost and the mouse pointer leaves the element bounds.
Identifier field | |
Metadata properties set to true | None |
The following example creates a style that includes a property setter that gives an alternate visual behavior when a Hyperlink reports IsMouseOver true.
<Style.Triggers> <Trigger Property="Hyperlink.IsEnabled" Value="false"> <Setter Property="Foreground" Value="Gray"/> </Trigger> <Trigger Property="Hyperlink.IsMouseOver" Value="true"> <Setter Property = "Foreground" Value="{StaticResource BlueGreenBrush}"/> </Trigger> </Style.Triggers>
Available since 3.0