c#UWP窗口位置在屏幕上问题

问题描述 投票:2回答:2

如何在屏幕上获取窗口绝对位置?

在WPF中有:

var location = myTextBlock.PointToScreen(new Point(0,0));

但是在UWP中我找不到类似的东西......

有什么想法吗?

c# uwp location window screen
2个回答
1
投票

试试这个:

假设ctl是您寻求的绝对屏幕坐标的控件:

Dim ttv As GeneralTransform = ctl.TransformToVisual(Window.Current.Content)
Dim WindowCoords As Point = ttv.TransformPoint(New Point(0, 0))
Dim ScreenCoordsX as double = WindowsCoords.X + ApplicationView.GetForCurrentView().VisibleBounds.Left
Dim ScreenCoordsY as double = WindowsCoords.Y + ApplicationView.GetForCurrentView().VisibleBounds.Top

您可以添加ctl.ActualWidth来查找右侧,但是如果您已将ScaleTransform应用于控件,则必须将ActualWidth乘以相同的比例,因为ActualWidth不受变换的影响。


0
投票

您无法在当前UWP API中获取或设置窗口在屏幕上的位置。您只能部分控制其大小。

您可以使用AdjacentToLeftDisplayEdgeAdjacentToRightDisplayEdge来查询窗口是否被捕捉到屏幕的一侧。您还可以使用IsFullScreenMode属性来查询应用程序是否为全屏。

© www.soinside.com 2019 - 2024. All rights reserved.