CornerRadius Konstruktoren

Definition

Überlädt

Name Beschreibung
CornerRadius(Double)

Initialisiert eine neue CornerRadius Struktur, wobei derselbe einheitliche Radius auf alle Ecken angewendet wird.

CornerRadius(Double, Double, Double, Double)

Initialisiert eine neue Instanz der CornerRadius Struktur, wobei bestimmte Radiuswerte auf die Ecken angewendet werden.

Hinweise

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

CornerRadius(Double)

Initialisiert eine neue CornerRadius Struktur, wobei derselbe einheitliche Radius auf alle Ecken angewendet wird.

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 angewendet wird (TopLeft, TopRight, BottomRight, BottomLeft).

Gilt für:

CornerRadius(Double, Double, Double, Double)

Initialisiert eine neue Instanz der CornerRadius Struktur, wobei bestimmte Radiuswerte auf die Ecken angewendet werden.

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 Anfangswert TopLeft .

topRight
Double

Der Anfangswert TopRight .

bottomRight
Double

Der Anfangswert BottomRight .

bottomLeft
Double

Der Anfangswert BottomLeft .

Gilt für: