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 値。

適用対象