IntersectionDetail Перечисление

Определение

Предоставляет информацию о пересечении геометрий вGeometryHitTestParameters и нажатого визуального элемента.

public enum class IntersectionDetail
public enum IntersectionDetail
type IntersectionDetail = 
Public Enum IntersectionDetail
Наследование
IntersectionDetail

Поля

Empty 1

Параметр проверки нажатия Geometry и целевой визуальный объект, или геометрия, не пересекаются.

FullyContains 3

Параметр проверки нажатия Geometry целиком содержится в границах целевого визуального объекта или геометрии.

FullyInside 2

Целевой визуальный объект, или геометрия, целиком находится в параметре проверки нажатия Geometry.

Intersects 4

Параметр проверки нажатия Geometry и целевой визуальный объект, или геометрия, пересекаются. Это означает, что два элемента накладываются друг на друга, но ни один из них не содержит другой.

NotCalculated 0

Значение IntersectionDetail не вычисляется.

Примеры

В следующем примере показано, как использовать IntersectionDetail свойство GeometryHitTestResult.

// Return the result of the hit test to the callback.
public HitTestResultBehavior MyHitTestResultCallback(HitTestResult result)
{
    // Retrieve the results of the hit test.
    IntersectionDetail intersectionDetail = ((GeometryHitTestResult)result).IntersectionDetail;

    switch (intersectionDetail)
    {
        case IntersectionDetail.FullyContains:

            // Add the hit test result to the list that will be processed after the enumeration.
            hitResultsList.Add(result.VisualHit);

            return HitTestResultBehavior.Continue;

        case IntersectionDetail.Intersects:

            // Set the behavior to return visuals at all z-order levels.
            return HitTestResultBehavior.Continue;

        case IntersectionDetail.FullyInside:

            // Set the behavior to return visuals at all z-order levels.
            return HitTestResultBehavior.Continue;

        default:
            return HitTestResultBehavior.Stop;
    }
}
' Return the result of the hit test to the callback.
Public Function MyHitTestResultCallback(ByVal result As HitTestResult) As HitTestResultBehavior
    ' Retrieve the results of the hit test.
    Dim intersectionDetail As IntersectionDetail = (CType(result, GeometryHitTestResult)).IntersectionDetail

    Select Case intersectionDetail
        Case IntersectionDetail.FullyContains

            ' Add the hit test result to the list that will be processed after the enumeration.
            hitResultsList.Add(result.VisualHit)

            Return HitTestResultBehavior.Continue

        Case IntersectionDetail.Intersects

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

        Case IntersectionDetail.FullyInside

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

        Case Else
            Return HitTestResultBehavior.Stop
    End Select
End Function

Комментарии

На следующем рисунке показана связь между геометрией теста попадания (синим кругом) и визуальной геометрией (красный квадрат).

Схема IntersectionDetail для проверки попадания
Пересечение между геометрией теста попадания и визуальной геометрией во время тестирования попаданий

Применяется к