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

左下角的半径。

适用于