UIElement.IsMouseOver Proprietà
Definizione
Ottiene un valore che indica se il puntatore del mouse si trova sull'elemento (inclusi gli elementi figlio della struttura ad albero visuale).Gets a value indicating whether the mouse pointer is located over this element (including child elements in the visual tree). Si tratta di una proprietà di dipendenza.This is a dependency property.
public:
property bool IsMouseOver { bool get(); };
public bool IsMouseOver { get; }
member this.IsMouseOver : bool
Public ReadOnly Property IsMouseOver As Boolean
Valore della proprietà
true
se il puntatore del mouse si trova sull'elemento o sui suoi elementi figlio. In caso contrario, false
.true
if mouse pointer is over the element or its child elements; otherwise, false
. Il valore predefinito è false
.The default is false
.
Implementazioni
Esempi
Nell'esempio seguente viene fatto riferimento a questa proprietà come il tipo di proprietà di un Trigger, parte di un <Style. Triggers > Block.The following example references this property as the property type of a Trigger, part of a <Style.Triggers> block. Se il mouse si trova sul controllo, il testo del controllo diventa blu e il cursore diventa una mano.If the mouse is over the control, the control text turns blue and the cursor becomes a hand.
<Trigger Property="IsMouseOver" Value="true">
<Setter Property="Foreground" Value="Blue" />
<Setter Property="Cursor" Value="Hand"/>
</Trigger>
Commenti
In genere, i controlli sono composte in modo che i vari elementi all'interno del controllo (struttura ad albero visuale) segnalino lo stato del mouse per il controllo che lo contiene.Typically, controls are composited such that the various elements inside the control (the visual tree) will all report the mouse state for the containing control. Ad esempio, un controllo ListBox stile segnalerà IsMouseOver come true
se il mouse si trova in un punto qualsiasi della relativa geometria, incluso qualsiasi ListBoxItem.For example, a ListBox style control will report IsMouseOver as true
if the mouse is anywhere over its geometry, including any ListBoxItem.
Sebbene non esista un evento "IsMouseOverChanged" analogo, vengono eseguite diverse attività simili.Although an analogous "IsMouseOverChanged" event does not exist, several similar events do. È ad esempio possibile gestire MouseEnter, MouseMovee IsMouseDirectlyOverChanged.For example, you can handle MouseEnter, MouseMove, and IsMouseDirectlyOverChanged.
Se questo elemento acquisisce il mouse, questa proprietà rimane true
finché l'acquisizione del mouse non viene persa e il puntatore del mouse esce dai limiti dell'elemento.If this element captures the mouse, this property remains true
until mouse capture is lost and the mouse pointer leaves the element bounds.
Alcuni controlli acquisiscono intenzionalmente il mouse su determinate azioni che non sembrano coinvolgere direttamente il mouse.Some controls deliberately capture the mouse on certain actions that do not appear to directly involve the mouse. Questo può comportare la true
di IsMouseOver anche se il mouse non è stato spostato.This can lead to IsMouseOver being true
even though the mouse has not apparently moved.
Informazioni proprietà di dipendenzaDependency Property Information
Campo identificatoreIdentifier field | IsMouseOverProperty |
Proprietà dei metadati impostate su true Metadata properties set to true |
nessunoNone |