查找 Button/UIElement 在屏幕上相对于网格 Windows Phone 的位置

发布于 2024-12-17 12:32:53 字数 67 浏览 0 评论 0原文

我找不到一种方法来获取屏幕控件的 (x,y) 坐标位置,例如按钮相对于其内部网格的位置。有没有办法做到这一点,我忽略了?

I can't find a way to get the position in (x,y) co-ordinates of an on-screen control like a button relative to the grid that it is inside. Is there a way to do this that I am overlooking?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

聊慰 2024-12-24 12:32:53
var transform = button.TransformToVisual(grid);        
Point absolutePosition = transform.Transform(new Point(0, 0));

来自 如何获取元素的位置StackPanel?

var transform = button.TransformToVisual(grid);        
Point absolutePosition = transform.Transform(new Point(0, 0));

From How to get the position of an element in a StackPanel?.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文