Grid.CornerRadius Property
Definition
Gets or sets the radius for the corners of the panel's border.
Equivalent WinUI property: Microsoft.UI.Xaml.Controls.Grid.CornerRadius.
public:
property CornerRadius CornerRadius { CornerRadius get(); void set(CornerRadius value); };
CornerRadius CornerRadius();
void CornerRadius(CornerRadius value);
public CornerRadius CornerRadius { get; set; }
var cornerRadius = grid.cornerRadius;
grid.cornerRadius = cornerRadius;
Public Property CornerRadius As CornerRadius
<Grid CornerRadius="uniformRadius"/>
- or -
<Grid CornerRadius="topLeft,topRight,bottomRight,bottomLeft"/>
Property Value
The degree to which the corners are rounded, expressed as values of the CornerRadius structure.
Remarks
Member components of a CornerRadius value cannot be negative.