New to Telerik UI for WinForms? Download free 30-day trial

Heart Shape

The following image shows the heart shape applied to a RadPanel:

heart-shape001

The following code shows how you can create and apply a HeartShape:

HeartShape heartShape = new HeartShape();
radPanel1.RootElement.Shape = heartShape;
radPanel1.RootElement.ApplyShapeToControl = true;

Dim heartShape As New HeartShape()
radPanel1.RootElement.Shape = heartShape
radPanel1.RootElement.ApplyShapeToControl = True

See Also

In this article