PointHitTestResult.VisualHit 属性

定义

获取从命中测试结果返回的视觉对象。

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

属性值

Visual

一个 Visual 对象,它表示命中测试结果。

示例

以下示例演示如何访问 VisualHit 命中测试结果回调函数中的属性。

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

注解

该值 VisualHit 可能会在单个命中测试期间表示多个视觉对象。 命中测试回叫方法定义在可视化树中的特定视觉对象上标识命中测试时要执行的操作。 执行操作后,返回一个 HitTestResultBehavior 值,该值确定是否继续枚举任何其他视觉对象。 返回的视觉对象的枚举顺序由呈现平面上的 z 顺序。

适用于