Completed
Last Updated: 17 Oct 2013 03:34 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 17 Oct 2013 03:34
Category: TreeView
Type: Bug Report
1
FIX. RadTreeView - Font rendering is not correct
To reproduce:
Add a RadTreeView with some nodes and you will notice that the font is different than other controls.

Workaround:
void tree_NodeFormatting(object sender, TreeNodeFormattingEventArgs e)
{
    e.NodeElement.ContentElement.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault;
}
0 comments