如何从画布上的给定点获取元素?
我需要按给定点从画布获取元素。
例如,我在画布上有矩形,其中 CanvasLeft 和 CanvasTop 值设置为某些值。
我想从画布中获取元素,其中 CanvasLeft 和 CanvasTop 值例如为 10 和 40。
可能吗?
谢谢。
I need to get element from canvas by given point.
For example I have Rectangle on Canvas, which CanvasLeft and CanvasTop values are setted to some values.
I whant get element from canvas which CanvasLeft and CanvasTop vaules are for example 10 and 40.
Is it possible?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 VisualTreeHelper 查找特定位置的元素。它有一个方法 FindElementsInHostCoordinates。您必须给它一个主机,例如画布和坐标,它会返回 UIElements 列表。
MSDN 上的信息如下:
http://msdn.microsoft.com/en -us/library/cc838402(v=VS.95).aspx
You can find the elements a specific position by using the VisualTreeHelper. It has a method FindElementsInHostCoordinates. You'll have to give it a host, for example the canvas and the coordinates and it returns a list of UIElements.
Here's the info on MSDN:
http://msdn.microsoft.com/en-us/library/cc838402(v=VS.95).aspx
像这样的代码应该可以做到:-
Code like this should do it:-