'&" char is not displayed
Brought to you by:
agaman
'&" char is not displayed when UseCompatibleTextRendering is true
workaround:
pass TextFormatFlags.NoPrefix flag to DrawText
if (UseCompatibleTextRendering)
TextRenderer.DrawText(context.Graphics, label, font, bounds, textColor, _formatFlags);
to fix it add to BaseTextControl.cs
_baseFormatFlags = TextFormatFlags.PreserveGraphicsClipping | TextFormatFlags.PreserveGraphicsTranslateTransform | TextFormatFlags.NoPrefix;