Freigeben über


CornerRadius Konstruktoren

Definition

Überlädt

CornerRadius(Double)

Erstellt eine neue CornerRadius-Struktur so, dass alle vier Ecken denselben Radius aufweisen.

CornerRadius(Double, Double, Double, Double)

Erstellt eine neue CornerRadius-Struktur so, dass alle vier Ecken die angegebenen Radien aufweisen.

CornerRadius(Double)

Quelle:
CornerRadius.cs
Quelle:
CornerRadius.cs

Erstellt eine neue CornerRadius-Struktur so, dass alle vier Ecken denselben Radius aufweisen.

public:
 CornerRadius(double uniformRadius);
public CornerRadius (double uniformRadius);
new Microsoft.Maui.CornerRadius : double -> Microsoft.Maui.CornerRadius
Public Sub New (uniformRadius As Double)

Parameter

uniformRadius
Double

Der Radius für alle vier Ecken.

Gilt für:

CornerRadius(Double, Double, Double, Double)

Quelle:
CornerRadius.cs
Quelle:
CornerRadius.cs

Erstellt eine neue CornerRadius-Struktur so, dass alle vier Ecken die angegebenen Radien aufweisen.

public:
 CornerRadius(double topLeft, double topRight, double bottomLeft, double bottomRight);
public CornerRadius (double topLeft, double topRight, double bottomLeft, double bottomRight);
new Microsoft.Maui.CornerRadius : double * double * double * double -> Microsoft.Maui.CornerRadius
Public Sub New (topLeft As Double, topRight As Double, bottomLeft As Double, bottomRight As Double)

Parameter

topLeft
Double

Der Radius der linken oberen Ecke.

topRight
Double

Der Radius der rechten oberen Ecke.

bottomLeft
Double

Der Radius der linken unteren Ecke.

bottomRight
Double

Der Radius der rechten unteren Ecke.

Gilt für: