共用方式為


CornerRadius 建構函式

定義

多載

CornerRadius(Double)

建立新的 CornerRadius 使其四個圓角均有相同的半徑。

CornerRadius(Double, Double, Double, Double)

建立新的 CornerRadius 使其四個圓角均有指定的半徑。

CornerRadius(Double)

來源:
CornerRadius.cs
來源:
CornerRadius.cs

建立新的 CornerRadius 使其四個圓角均有相同的半徑。

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

參數

uniformRadius
Double

所有四個圓角的半徑。

適用於

CornerRadius(Double, Double, Double, Double)

來源:
CornerRadius.cs
來源:
CornerRadius.cs

建立新的 CornerRadius 使其四個圓角均有指定的半徑。

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

參數

topLeft
Double

左上方圓角的半徑。

topRight
Double

右上方圓角的半徑。

bottomLeft
Double

左下方圓角的半徑。

bottomRight
Double

右下方圓角的半徑。

適用於