CornerRadiusHelper クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
CornerRadius 値を処理するための基本的なユーティリティ メソッドを提供します。 C# と Microsoft Visual Basic のコードでは、代わりに CornerRadius のメソッドを使用する必要があります。
public ref class CornerRadiusHelper 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 CornerRadiusHelper 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 CornerRadiusHelper
Public NotInheritable Class CornerRadiusHelper
- 継承
- 属性
Windows の要件
デバイス ファミリ |
Windows 10 (10.0.10240.0 で導入)
|
API contract |
Windows.Foundation.UniversalApiContract (v1.0 で導入)
|
注釈
CornerRadius は、四角形の UI 要素の 1 つまたはすべてのコーナーに適用される半径を表すWindows ランタイム構造体です。 たとえば、 Border.CornerRadius では CornerRadius 値が使用されます。
CornerRadiusHelper は、構造体の値をWindows ランタイムするためのユーティリティ メソッドを提供することを目的としたいくつかのヘルパー クラスの 1 つです。 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) コンストラクターを使用する必要があります。 |