CornerRadius 생성자

정의

오버로드

CornerRadius(Double)

모든 모퉁이에 동일한 균일 반경을 적용하여 새 CornerRadius 구조체를 초기화합니다.

CornerRadius(Double, Double, Double, Double)

모서리에 특정 반지름 값을 적용하여 CornerRadius 구조체의 새 인스턴스를 초기화합니다.

설명

이 구조체는 WinRT (Windows 런타임) 구조체의 .NET 프로젝션을 나타냅니다 CornerRadius . 자세한 내용은 CornerRadius 에서 UWP API 참조를 참조 하세요.

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)

매개 변수

topLeft
Double

초기 TopLeft 값입니다.

topRight
Double

초기 TopRight 값입니다.

bottomRight
Double

초기 BottomRight 값입니다.

bottomLeft
Double

초기 BottomLeft 값입니다.

적용 대상