By Bruce Rosner - Tuesday, June 14, 2011
I can't change the label font. Setting the Font property seems to set the font of the embedded EditControl rather than the label font. Setting the EditControl font works OK.
|
By Nevron Support - Tuesday, June 14, 2011
Hello Bruce,
Take a look at the example code below.
NThemeFontInfo fontInfo = nEntryBox1.Item.Style.FontInfo; fontInfo.Style = Nevron.GraphicsCore.FontStyleEx.Bold; nEntryBox1.Item.Style.FontInfo = fontInfo;
I hope it helps.
|
|