CornerRadius Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the CornerRadius class.
Overloads
CornerRadius(Double) |
Initializes a new instance of the CornerRadius class with a specified uniform radius value for every corner or the rectangle. |
CornerRadius(Double, Double, Double, Double) |
Initializes a new instance of the CornerRadius class with the specified radius values for each corner of the rectangle. |
CornerRadius(Double)
Initializes a new instance of the CornerRadius class with a specified uniform radius value for every corner or the rectangle.
public:
CornerRadius(double uniformRadius);
public CornerRadius (double uniformRadius);
new System.Windows.CornerRadius : double -> System.Windows.CornerRadius
Public Sub New (uniformRadius As Double)
Parameters
- uniformRadius
- Double
The radius value applied to every corner of the rectangle.
Applies to
CornerRadius(Double, Double, Double, Double)
Initializes a new instance of the CornerRadius class with the specified radius values for each corner of the rectangle.
public:
CornerRadius(double topLeft, double topRight, double bottomRight, double bottomLeft);
public CornerRadius (double topLeft, double topRight, double bottomRight, double bottomLeft);
new System.Windows.CornerRadius : double * double * double * double -> System.Windows.CornerRadius
Public Sub New (topLeft As Double, topRight As Double, bottomRight As Double, bottomLeft As Double)
Parameters
- topLeft
- Double
The radius of the top-left corner.
- topRight
- Double
The radius of the top-right corner.
- bottomRight
- Double
The radius of the bottom-right corner.
- bottomLeft
- Double
The radius of the bottom-left corner.