PointHelper 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public ref class PointHelper sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class PointHelper final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class PointHelper
Public NotInheritable Class PointHelper
- 继承
- 属性
Windows 要求
设备系列 |
Windows 10 (在 10.0.10240.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)
|
注解
Point 是表示坐标系中的 X,Y 位置的Windows 运行时结构。 点用作许多不同的Windows 运行时 API 中的值。
PointHelper 是多个帮助程序类之一,旨在为Windows 运行时结构值提供实用工具方法。 C# 和 Microsoft Visual Basic 代码可以改用 Point 的成员,因为由于.NET Framework运行时支持,实用工具成员直接在 结构上可用。 C++ 代码只能访问 Point 上的 X 和 Y 数据值。 对于 C++ 开发人员,Microsoft Visual Basic 开发人员可以直接在 Point 上使用的实用工具功能大致相同,在 PointHelper 类上以静态形式提供。
方法
FromCoordinates(Single, Single) |
使用 x 和 y 坐标值(以像素为单位)创建新的 Point 值。 C# 和 Microsoft Visual Basic 代码应改用 Point (Double,Double) 构造函数。 |