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

QA Shape

The following image shows the QAShape applied to a RadPanel:

qa-shape001

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

QAShape qaShape = new QAShape();
radPanel1.BackColor = Color.ForestGreen;
this.radPanel1.RootElement.Shape = qaShape;
this.radPanel1.RootElement.ApplyShapeToControl = true;

Dim qaShape As QAShape = New QAShape()
radPanel1.BackColor = Color.ForestGreen
Me.radPanel1.RootElement.Shape = qaShape
Me.radPanel1.RootElement.ApplyShapeToControl = True

See Also

In this article