Completed
Last Updated: 16 Mar 2015 12:44 by Brad Harrison
ADMIN
Dimitar
Created on: 10 Nov 2014 07:41
Category:
Type: Bug Report
2
FIX. RadLabel - when the control is anchored to bottom left and its text is set to empty string in the form's Load event its location is changed.
When the control is anchored to bottom left and its text is set to empty string in the form's Load event its position is changed.

To workaround this you can either set the text to a space or you can set the text in the form's shown event:
Private Sub Form1_Shown(sender As Object, e As EventArgs) Handles MyBase.Shown
    RadLabel2.Text = ""
End Sub
1 comment
Brad Harrison
Posted on: 12 Nov 2014 23:37
A vote for fixing this....