CornerRadius 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CornerRadius(Double) |
建立新的 CornerRadius 使其四個圓角均有相同的半徑。 |
CornerRadius(Double, Double, Double, Double) |
建立新的 CornerRadius 使其四個圓角均有指定的半徑。 |
CornerRadius(Double)
建立新的 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 使其四個圓角均有指定的半徑。
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
右下方圓角的半徑。