Completed
Last Updated: 10 Aug 2017 06:05 by Todor
Todor
Created on: 30 Jun 2017 06:40
Category:
Type: Bug Report
1
FIX. RadLabel - one cannot set the TextAlignment property to TopLeft.
To reproduce:
Set at design or at run time the TextAlignment property of RadLabel to TopLeft. nothing happens.

Workaround:
Set the TextAlignment to MiddleLeft and then to TopLeft:
this.radLabel1.TextAlignment = ContentAlignment.Middleleft;
this.radLabel1.TextAlignment = ContentAlignment.TopLeft;
0 comments