ContentElement.IsMouseOver Property
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
true
if mouse pointer is over the element or its child elements; otherwise, false
. The default is false
.
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>
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.
Item | Value |
---|---|
Identifier field | IsMouseOverProperty |
Metadata properties set to true |
None |
Product | Versions |
---|---|
.NET Framework | 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
Windows Desktop | 3.0, 3.1, 5, 6, 7, 8, 9 |
.NET feedback
.NET is an open source project. Select a link to provide feedback: