ICoreWindow.Bounds 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定获取窗口边界矩形的属性。
public:
property Rect Bounds { Rect get(); };
Rect Bounds();
public Rect Bounds { get; }
var rect = iCoreWindow.bounds;
Public ReadOnly Property Bounds As Rect
属性值
窗口的边框,以与设备无关的像素 (DIP) 。
注解
若要从与设备无关的像素 (DIP) 转换为物理像素 (并返回) ,请使用以下公式 (其中 DPI 是屏幕) 的每英寸点数值:
- DIP 值 = (物理像素 x 96) / DPI
- 物理像素值 = (DIP x DPI) / 96