New to Telerik UI for WinForms? Start a free 30-day trial
Round Corners via UI
Updated over 1 year ago
You round the corners by showing the round corners dialog and set the Radius, the Border Thickness and their colors.

Round Corners Programmatically
The following snippet shows how you can round the corners with the RoundCorners method.
Round Corners in code.
C#
radImageEditor1.ImageEditorElement.RoundCorners(100, Color.Red, 2, Color.Green);
radImageEditor1.ImageEditorElement.SaveState();