New to Telerik UI for WinForms? Start a free 30-day trial
QA Shape
Updated over 6 months ago
The following image shows the QAShape applied to a RadPanel:

The following code shows how you can create and apply a QAShape:
C#
QAShape qaShape = new QAShape();
radPanel1.BackColor = Color.ForestGreen;
this.radPanel1.RootElement.Shape = qaShape;
this.radPanel1.RootElement.ApplyShapeToControl = true;