Condividi tramite


HitTestResult.VisualHit Proprietà

Definizione

Ottiene l'oggetto visivo raggiunto.

public:
 property System::Windows::DependencyObject ^ VisualHit { System::Windows::DependencyObject ^ get(); };
public System.Windows.DependencyObject VisualHit { get; }
member this.VisualHit : System.Windows.DependencyObject
Public ReadOnly Property VisualHit As DependencyObject

Valore della proprietà

DependencyObject

Valore DependencyObject che rappresenta l'oggetto visivo raggiunto.

Esempio

Nell'esempio seguente viene illustrato come recuperare il valore della VisualHit proprietà in un metodo di callback hit test.

// Return the result of the hit test to the callback.
public HitTestResultBehavior MyHitTestResult(HitTestResult result)
{
    // Add the hit test result to the list that will be processed after the enumeration.
    hitResultsList.Add(result.VisualHit);

    // Set the behavior to return visuals at all z-order levels.
    return HitTestResultBehavior.Continue;
}
' Return the result of the hit test to the callback.
Public Function MyHitTestResult(ByVal result As HitTestResult) As HitTestResultBehavior
    ' Add the hit test result to the list that will be processed after the enumeration.
    hitResultsList.Add(result.VisualHit)

    ' Set the behavior to return visuals at all z-order levels.
    Return HitTestResultBehavior.Continue
End Function

Commenti

DependencyObject è il tipo anziché Visual in modo che l'hit testing possa collegare alberi 2D e 3D tramite un viewport.

Si applica a