如何:对 Visual 中的几何图形进行命中测试

更新:2007 年 11 月

此示例演示如何对由一个或多个 Geometry 对象组成的可视化对象执行命中测试。

示例

下面的示例演示如何从使用 GetDrawing 方法的可视化对象中检索 DrawingGroup。随后,此示例对 DrawingGroup 中每个绘图所呈现的内容执行命中测试,以确定命中了哪个几何图形。

说明:

在大多数情况下,您将使用 HitTest 方法来确定点是否与可视化对象的任何呈现内容有交集。

// Determine if a geometry within the visual was hit.
static public void HitTestGeometryInVisual(Visual visual, Point pt)
{
    // Retrieve the group of drawings for the visual.
    DrawingGroup drawingGroup = VisualTreeHelper.GetDrawing(visual);
    EnumDrawingGroup(drawingGroup, pt);
}

// Enumerate the drawings in the DrawingGroup.
static public void EnumDrawingGroup(DrawingGroup drawingGroup, Point pt)
{
    DrawingCollection drawingCollection = drawingGroup.Children;

    // Enumerate the drawings in the DrawingCollection.
    foreach (Drawing drawing in drawingCollection)
    {
        // If the drawing is a DrawingGroup, call the function recursively.
        if (drawing.GetType() == typeof(DrawingGroup))
        {
            EnumDrawingGroup((DrawingGroup)drawing, pt);
        }
        else if (drawing.GetType() == typeof(GeometryDrawing))
        {
            // Determine whether the hit test point falls within the geometry.
            if (((GeometryDrawing)drawing).Geometry.FillContains(pt))
            {
                // Perform action based on hit test on geometry.
            }
        }

    }
}

FillContains 方法是一种重载的方法,允许您通过使用指定的 PointGeometry 进行命中测试。绘制几何图形时,笔画可以延伸到填充边界之外。在这种情况下,除了调用 FillContains 之外,可能还要调用 StrokeContains

您还可以提供一个 ToleranceType 以用于贝塞尔拉平操作。

说明:

此示例不会考虑可能应用到几何图形中的任何变形或剪裁。此外,此示例不会使用已设置样式的控件,因为这种控件没有与它直接关联的绘图。

请参见

任务

如何:将几何图形用作参数的命中测试

概念

可视化层中的命中测试