PointHitTestParameters.HitPoint Propiedad

Definición

Obtiene el objeto Point con el que se va a realizar la prueba de posicionamiento.

C#
public System.Windows.Point HitPoint { get; }

Valor de propiedad

Point con el que se va a realizar la prueba de posicionamiento.

Ejemplos

En el ejemplo siguiente se muestra cómo invalidar la compatibilidad de la prueba de posicionamiento predeterminada en un objeto visual definido por el usuario. En este caso, el HitPoint valor se devuelve simplemente como parte de PointHitTestResult.

C#
// Override default hit test support in visual object.
protected override HitTestResult HitTestCore(PointHitTestParameters hitTestParameters)
{
    Point pt = hitTestParameters.HitPoint;

    // Perform custom actions during the hit test processing,
    // which may include verifying that the point actually
    // falls within the rendered content of the visual.

    // Return hit on bounding rectangle of visual object.
    return new PointHitTestResult(this, pt);
}

Se aplica a

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9