VisualTreeHelper.HitTest Method (Visual, Point)
Namespace: System.Windows.Media
Assembly: PresentationCore (in PresentationCore.dll)
Parameters
- reference
- Type: System.Windows.Media.Visual
The Visual to hit test.
- point
- Type: System.Windows.Point
The point value to hit test against.
Return Value
Type: System.Windows.Media.HitTestResultThe hit test result of the Visual, returned as a HitTestResult type.
The VisualHit property of the return value represents the Visual object that was hit.
Note
|
|---|
|
It is possible for a hit test that starts in a 2D visual tree to return RayHitTestResult, which is a 3D hit test result object. Hit testing that starts in a 2D visual tree seamlessly extends into any defined 3D visual tree. |
The following example shows how to use the HitTest method to hit test the objects within a Canvas.
// 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. } }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Relationship with Visibility or IsHitTestVisible properties
This method doesn't care about the Visibility or IsHitTestVisible properties of UIElements (and derived objects), which is unexpected. If you need to take these properties into account, then use the other HitTest method that accepts a filter and callback and provide the filtering yourself.
$0
$0
$0$0
$0
$0More information can be found on MS Connect https://connect.microsoft.com/feedback/ViewFeedback.aspx?FeedbackID=412961&SiteID=212.$0
$0
$0
- 6/9/2011
- Ramon de Klein
Note