次の方法で共有


CornerRadius コンストラクター

定義

オーバーロード

CornerRadius(Double)

すべての角に同じ均一な半径を適用して、新しい CornerRadius 構造体を初期化します。

CornerRadius(Double, Double, Double, Double)

特定の半径値をコーナーに適用して、CornerRadius 構造体の新しいインスタンスを初期化します。

注釈

この構造体は、Windows ランタイム (WinRT) CornerRadius 構造体の .NET プロジェクションを表します。 詳細については、UWP API リファレンス CornerRadius を参照してください。

CornerRadius(Double)

すべての角に同じ均一な半径を適用して、新しい CornerRadius 構造体を初期化します。

public:
 CornerRadius(double uniformRadius);
public CornerRadius (double uniformRadius);
new Windows.UI.Xaml.CornerRadius : double -> Windows.UI.Xaml.CornerRadius
Public Sub New (uniformRadius As Double)

パラメーター

uniformRadius
Double

4 つの CornerRadius プロパティ (TopLeftTopRightBottomRightBottomLeft) すべてに適用される均一な半径。

適用対象

CornerRadius(Double, Double, Double, Double)

特定の半径値をコーナーに適用して、CornerRadius 構造体の新しいインスタンスを初期化します。

public:
 CornerRadius(double topLeft, double topRight, double bottomRight, double bottomLeft);
public CornerRadius (double topLeft, double topRight, double bottomRight, double bottomLeft);
new Windows.UI.Xaml.CornerRadius : double * double * double * double -> Windows.UI.Xaml.CornerRadius
Public Sub New (topLeft As Double, topRight As Double, bottomRight As Double, bottomLeft As Double)

パラメーター

topLeft
Double

初期 TopLeft 値。

topRight
Double

初期 TopRight 値。

bottomRight
Double

初期 BottomRight 値。

bottomLeft
Double

初期 BottomLeft 値。

適用対象