CornerRadiusHelper 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
提供用于处理 CornerRadius 值的基本实用工具方法。 C# 和 Microsoft Visual Basic 代码应改用 CornerRadius 的方法。
public ref class CornerRadiusHelper sealed
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.UI.Xaml.WinUIContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class CornerRadiusHelper final
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class CornerRadiusHelper
Public NotInheritable Class CornerRadiusHelper
- 继承
- 属性
注解
CornerRadius 是一个Windows 运行时结构,表示应用于矩形 UI 元素的一个或所有角的半径。 例如, Border.CornerRadius 使用 CornerRadius 值。
CornerRadiusHelper 是旨在为Windows 运行时结构值提供实用工具方法的几个Helper
类之一。 C# 和 Microsoft Visual Basic 代码可以改用 CornerRadius 的成员,因为由于.NET Framework运行时支持,实用工具成员直接在 结构上可用。 C++ 代码只能访问 CornerRadius 上的数据值,例如 TopLeft
字段值。 对于 C++ 开发人员,Microsoft Visual Basic 开发人员可以直接在 CornerRadius 上使用的实用工具功能在 CornerRadiusHelper 类上以静态形式提供。
方法
FromRadii(Double, Double, Double, Double) |
从元素值生成 CornerRadius 值。 C# 和 Microsoft Visual Basic 代码应改用 CornerRadius (Double、Double、Double、Double) 构造函数。 |
FromUniformRadius(Double) |
创建一个新的 CornerRadius 值,该值的每个元素都有一个统一的半径值。 C# 和 Microsoft Visual Basic 代码应改用 CornerRadius (Double) 构造函数。 |