ContentElement.IsMouseOver Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the mouse pointer is located over this element (including visual child elements, or its control compositing).
public:
property bool IsMouseOver { bool get(); };
public bool IsMouseOver { get; }
member this.IsMouseOver : bool
Public ReadOnly Property IsMouseOver As Boolean
Property Value
true
if mouse pointer is over the element or its child elements; otherwise, false
. The default is false
.
Implements
Examples
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>
Remarks
Although 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.
Dependency Property Information
Identifier field | IsMouseOverProperty |
Metadata properties set to true |
None |