This topic has not yet been rated - Rate this topic

CornerRadius Structure

Represents the radii of a rectangle's corners.

Namespace:  System.Windows
Assembly:  PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: http://schemas.microsoft.com/winfx/2006/xaml/presentation, http://schemas.microsoft.com/netfx/2007/xaml/presentation
[TypeConverterAttribute(typeof(CornerRadiusConverter))]
public struct CornerRadius : IEquatable<CornerRadius>
<CornerRadius .../>
<object property="TopLeft,TopRight,BottomRight,BottomLeft "/>
- or -
<object property="AllCorners"/>

XAML Values

TopLeft

Double value that specifies the radius of the top left corner.

TopRight

Double value that specifies the top right corner.

BottomRight

Double value that specifies the bottom right corner.

BottomLeft

Double value that specifies the bottom left corner.

AllCorners

If only a single Double value is specified, that measure is applied to ALL of the TopLeft, TopRight, BottomRight, and BottomLeft corners of the CornerRadius.

NoteNote

Values need not include the decimal point explicitly when specified as a string. The string "1" provided in XAML evaluates to a value of 1.0 when referenced in code.

The CornerRadius type exposes the following members.

  Name Description
Public method CornerRadius(Double) Initializes a new instance of the CornerRadius class with a specified uniform radius value for every corner or the rectangle.
Public method CornerRadius(Double, Double, Double, Double) Initializes a new instance of the CornerRadius class with the specified radius values for each corner of the rectangle.
Top
  Name Description
Public property BottomLeft Gets or sets the radius of the bottom-left corner.
Public property BottomRight Gets or sets the radius of the bottom-right corner.
Public property TopLeft Gets or sets the radius of the top-left corner.
Public property TopRight Gets or sets the radius of the top-right corner.
Top
  Name Description
Public method Equals(CornerRadius) Compares two CornerRadius structures for equality.
Public method Equals(Object) Determines whether the specified Object is a CornerRadius and whether it contains the same corner radius values as this CornerRadius. (Overrides ValueType.Equals(Object).)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Returns the hash code for this CornerRadius. (Overrides ValueType.GetHashCode().)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns the string representation of the CornerRadius. (Overrides ValueType.ToString().)
Top
  Name Description
Public operator Static member Equality Compares two CornerRadius structures for equality.
Public operator Static member Inequality Compares two CornerRadius structures for inequality.
Top

This class has four properties, TopLeft, TopRight, BottomLeft, and BottomRight, corresponding to the individual corners of the rectangle. Each is a Double structure that can be set independently of the others.

The radii cannot be negative.

The following example shows how to set the value of the CornerRadius property by using Extensible Application Markup Language (XAML) and code.


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);



<Border BorderBrush="SlateBlue" BorderThickness="5,10,15,20" Background="AliceBlue" Padding="5" CornerRadius="15">


.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

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.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ