HitTestResult.VisualHit Propriedade

Definição

Obtém o objeto visual que foi atingido.

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

Valor da propriedade

DependencyObject

Um valor DependencyObject que representa o objeto visual que foi atingido.

Exemplos

O exemplo a seguir mostra como recuperar o valor da VisualHit propriedade em um método de retorno de chamada de teste de clique.

// 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

Comentários

DependencyObject é o tipo em vez de Visual para que o teste de ocorrência possa fazer a ponte entre árvores 2D e 3D por meio de um visor.

Aplica-se a