WPF 获取特定坐标处的元素
我在 Canvas 中有标签,我需要获取与坐标 X,Y 相交的标签?
谢谢!!
I have Labels inside a Canvas, I need to get the label that intersects with coordinates X,Y?
Thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需使用
InputHitTest
在画布上,传递所需的坐标作为参数。请注意,InputHitTest
在每个UIElement
上都可用,并且不特定于画布。Simply use
InputHitTest
on your canvas, passing the coordinate you want as parameter. Note thatInputHitTest
is available on everyUIElement
and is not specific to canvas.Canvas.GetLeft(element)、Canvas.GetTop(element) 将获取任何元素的位置。使用 ActualWidth 和 ActualHeight 形成完整的矩形。您可以使用 foreach 遍历画布的子元素。
编辑: CodeNaked 指出元素可以使用 SetRight 或 SetBottom 设置,因此我修改了示例代码:
Canvas.GetLeft(element), Canvas.GetTop(element) will get you any element's position. Use ActualWidth and ActualHeight to form its complete rectangle. You can iterate through the Children of the Canvas with a foreach.
Edit: CodeNaked pointed out that elements might be set with SetRight or SetBottom so I modified the sample code: