Declined
Last Updated: 08 Mar 2018 11:07 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 05 Mar 2018 13:04
Category: Form
Type: Bug Report
1
FIX. RadForm - pixelized text in titlebar when a RadRibbonBar is added
To reproduce: on some Windows 10 machines the title bar's text is not rendered clearly. 

Workaround:

1. Set the RadForm.AllowTheming property to false.

2. In the form's Load event change the TextRenderingHint of the caption text primitive to AntiAliasGridFit:  

TextPrimitive tp = this.radRibbonBar2.RibbonBarElement.RibbonCaption.CaptionLayout.CaptionTextElement as TextPrimitive;
tp.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAliasGridFit;
Attached Files:
1 comment
ADMIN
Dimitar
Posted on: 08 Mar 2018 11:04
Our further investigation showed that the issue cannot be fixed without greatly affecting other components. You should Set the RadForm.AllowTheming property to false or to use the provided workaround.