CornerRadius Konstruktoren

Definition

Überlädt

CornerRadius(Double)

Initialisiert eine neue CornerRadius-Struktur und wendet den gleichen einheitlichen Radius auf alle Ecken an.

CornerRadius(Double, Double, Double, Double)

Initialisiert eine neue Instanz der CornerRadius-Struktur und wendet bestimmte Radiuswerte auf die Ecken an.

Hinweise

Diese Struktur stellt die .NET-Projektion der winRT-Struktur (Windows-Runtime) CornerRadius dar. Weitere Informationen finden Sie unter CornerRadius in der UWP-API-Referenz.

CornerRadius(Double)

Initialisiert eine neue CornerRadius-Struktur und wendet den gleichen einheitlichen Radius auf alle Ecken an.

public:
 CornerRadius(double uniformRadius);
public CornerRadius (double uniformRadius);
new Windows.UI.Xaml.CornerRadius : double -> Windows.UI.Xaml.CornerRadius
Public Sub New (uniformRadius As Double)

Parameter

uniformRadius
Double

Ein einheitlicher Radius, der auf alle vier CornerRadius-Eigenschaften (TopLeft, TopRight, BottomRight, BottomLeft) angewendet wird.

Gilt für:

CornerRadius(Double, Double, Double, Double)

Initialisiert eine neue Instanz der CornerRadius-Struktur und wendet bestimmte Radiuswerte auf die Ecken an.

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)

Parameter

topLeft
Double

Der TopLeft-Anfangswert.

topRight
Double

Der TopRight-Anfangswert.

bottomRight
Double

Der BottomRight-Anfangswert.

bottomLeft
Double

Der BottomLeft-Anfangswert.

Gilt für: