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.
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>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.