作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 WPF 中,类似这样的内容会告诉我边框左上角的位置:
var point = myBorder.PointToScreen(new Point());
如何在 UWP 中获得相同的结果?我找不到任何获得它的方法。
谢谢你:)
最佳答案
您可以通过以下步骤获取 UIElement 的屏幕坐标:
通过以下代码获取UIElement相对于当前应用程序窗口的坐标:
GeneralTransform transform = myBorder.TransformToVisual(Window.Current.Content);
Point coordinatePointToWindow = transform.TransformPoint(new Point(0, 0));
获取当前应用窗口的Rect
信息:
Rect rect = Window.Current.CoreWindow.Bounds;
计算你的 UIElement 的坐标:
var left = coordinatePointToWindow.X + rect.Left;
var top = coordinatePointToWindow.Y + rect.Top;
关于wpf - 如何在 UWP 中获取 PointToScreen,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38568847/
我是一名优秀的程序员,十分优秀!