CornerRadius 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CornerRadius(Double) |
初始化新的 CornerRadius 結構,將相同的統一半徑套用至其所有角落。 |
CornerRadius(Double, Double, Double, Double) |
初始化 CornerRadius 結構的新執行個體,並將特定的半徑值套用到其邊角。 |
備註
此結構代表 Windows 執行時間 (WinRT) CornerRadius
結構的 .NET 投影。 如需詳細資訊,請參閱 UWP API 參考中的 CornerRadius 。
CornerRadius(Double)
初始化新的 CornerRadius 結構,將相同的統一半徑套用至其所有角落。
public:
CornerRadius(double uniformRadius);
public CornerRadius (double uniformRadius);
new Windows.UI.Xaml.CornerRadius : double -> Windows.UI.Xaml.CornerRadius
Public Sub New (uniformRadius As Double)
參數
- uniformRadius
- Double
套用至全部四個 CornerRadius 屬性 (TopLeft、TopRight、BottomRight、BottomLeft) 的統一半徑。
適用於
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 Windows.UI.Xaml.CornerRadius : double * double * double * double -> Windows.UI.Xaml.CornerRadius
Public Sub New (topLeft As Double, topRight As Double, bottomRight As Double, bottomLeft As Double)
參數
- bottomRight
- Double
BottomRight 的初始值。
- bottomLeft
- Double
BottomLeft 的初始值。