CornerRadius コンストラクター

定義

CornerRadius クラスの新しいインスタンスを初期化します。

オーバーロード

CornerRadius(Double)

四角形のすべての角に同じ半径値を指定して、CornerRadius クラスの新しいインスタンスを初期化します。

CornerRadius(Double, Double, Double, Double)

四角形の各角に半径値を指定して、CornerRadius クラスの新しいインスタンスを初期化します。

CornerRadius(Double)

四角形のすべての角に同じ半径値を指定して、CornerRadius クラスの新しいインスタンスを初期化します。

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

パラメーター

uniformRadius
Double

四角形のすべての角に適用される半径値。

適用対象

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 System.Windows.CornerRadius : double * double * double * double -> System.Windows.CornerRadius
Public Sub New (topLeft As Double, topRight As Double, bottomRight As Double, bottomLeft As Double)

パラメーター

topLeft
Double

左上隅の半径。

topRight
Double

右上隅の半径。

bottomRight
Double

右下隅の半径。

bottomLeft
Double

左下隅の半径。

適用対象