CornerRadius 생성자

정의

CornerRadius 클래스의 새 인스턴스를 초기화합니다.

오버로드

Name Description
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

왼쪽 아래 모서리의 반지름입니다.

적용 대상