I have noticed that if you set the font size of an ultralabel to Arial 8 points that the letter spacing is different than from a regular microsoft label. Its either squeezed or streched.
Even on different machines the look is different. What causes this?
Hi,
This is due to the fact that the UltraLabel is using GDI Plus text rendering. If you want the old GDI-style, you can set the TextRenderingMode propety property on the UltraLabel to GDI.
You can also set this globally for your whole application, instead of on each individual Infragistics control, by using the static property:
Infragistics.Win.DrawUtility.UseGDIPlusTextRendering = false;
When I do this, the labels that are set to autosize will expand height to 70 pixels causing overlap in other controls.
I found when I then also set WrapText = false, then it's not expanded to this 70 pixels.