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

左下隅の半径。

適用対象