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

왼쪽 아래 모퉁이의 반지름입니다.

적용 대상