Border.CornerRadius Property
.NET Framework 4
Gets or sets a value that represents the degree to which the corners of a Border are rounded.
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
<object> <object.CornerRadius> <CornerRadius .../> </object.CornerRadius> </object>
<object CornerRadius="CornerRadius" .../>
Property Value
Type: System.Windows.CornerRadiusThe CornerRadius that describes the degree to which corners are rounded. This property has no default value.
The following example shows how to set the value of this property.
myBorder1 = new Border(); myBorder1.BorderBrush = Brushes.SlateBlue; myBorder1.BorderThickness = new Thickness(5, 10, 15, 20); myBorder1.Background = Brushes.AliceBlue; myBorder1.Padding = new Thickness(5); myBorder1.CornerRadius = new CornerRadius(15);
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.