Unplanned
Last Updated: 30 Mar 2016 13:32 by ADMIN
ADMIN
Stefan
Created on: 07 Nov 2011 03:52
Category: TreeView
Type: Bug Report
5
FIX. RadTreeView - nodes TextAlignment is incorrect for nodes with longer content than the control size.
Workaround: 
private void radTreeView1_NodeFormatting(object sender, TreeNodeFormattingEventArgs e)
{
    e.NodeElement.ContentElement.TextAlignment = ContentAlignment.MiddleCenter;
}
0 comments