Completed
Last Updated: 06 Dec 2019 14:37 by ADMIN
Release R1 2020 (LIB 2019.3.1209)
ADMIN
Ivan Petrov
Created on: 01 Apr 2013 06:41
Category:
Type: Bug Report
2
FIX. RadLabel - if one sets the border color and the back color of a label the border will not be drawn on the bounds of the control.
Code to reproduce:
this.radLabel1.BackColor = Color.Yellow;
this.radLabel1.BorderVisible = true;
this.radLabel1.LabelElement.LabelBorder.ForeColor = Color.Red;

WORKAROUND:
this.radLabel1.LabelElement.LabelBorder.FitToSizeMode = RadFitToSizeMode.FitToParentBounds;
0 comments