Lire en anglais Modifier

Partager via


PointHitTestResult Class

Definition

Represents the results of a hit test that uses a Point as a hit test parameter.

C#
public class PointHitTestResult : System.Windows.Media.HitTestResult
Inheritance
PointHitTestResult
Derived

Examples

The following example shows how to retrieve the PointHitTestResult return value from the HitTest method.

C#
// Respond to the left mouse button down event by initiating the hit test.
private void OnMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
    // Retrieve the coordinate of the mouse position.
    Point pt = e.GetPosition((UIElement)sender);

    // Perform the hit test against a given portion of the visual object tree.
    HitTestResult result = VisualTreeHelper.HitTest(myCanvas, pt);

    if (result != null)
    {
        // Perform action on hit visual object.
    }
}

Remarks

You can also perform a hit test on a visual object by using a Geometry as a hit test parameter and returning the result as a GeometryHitTestResult. For more information, see How to: Hit Test Using Geometry as a Parameter.

Constructors

PointHitTestResult(Visual, Point)

Initializes a new instance of the PointHitTestResult class.

Properties

PointHit

Gets the point value that is returned from a hit test result.

VisualHit

Gets the visual object that is returned from a hit test result.

Methods

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to

Produit Versions
.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, 10