UIElement.TranslatePoint(Point, UIElement) 方法

定义

将相对于此元素的点转换为相对于指定元素的坐标。

public:
 System::Windows::Point TranslatePoint(System::Windows::Point point, System::Windows::UIElement ^ relativeTo);
public System.Windows.Point TranslatePoint (System.Windows.Point point, System.Windows.UIElement relativeTo);
member this.TranslatePoint : System.Windows.Point * System.Windows.UIElement -> System.Windows.Point
Public Function TranslatePoint (point As Point, relativeTo As UIElement) As Point

参数

point
Point

相对于此元素的点值。

relativeTo
UIElement

给定点转换后的元素。

返回

Point

相对于目标元素而不是此源元素的点值。

注解

允许null``relativeTo传递,并指示坐标应相对于此元素所属的逻辑树中的根元素。

此方法用于转换命中测试点值。 如果要创作控件,并且需要在较低级别处理输入,则调用此方法主要相关。 如果使用现有控件,通常可以假定已完成的控件将报告正确翻译的命中测试结果。

适用于