how do I add a border to selected RadLabels?
I am skinning the entire Winforms app with Desert
the following routine only seems to expand the size of the label
I am hoping to find kode to mimic BorderStyle=FixedSingle
I am skinning the entire Winforms app with Desert
the following routine only seems to expand the size of the label
Public
Sub
BorderStyleLabel(
ByRef
rdLabel
As
RadLabel)
Dim
labelBorder
As
BorderPrimitive
labelBorder =
DirectCast
(rdLabel.LabelElement.Children(1), BorderPrimitive)
labelBorder.BoxStyle = BorderBoxStyle.SingleBorder
labelBorder.BackColor = Color.Chocolate
labelBorder.Width = 1
End
Sub