Unplanned
Last Updated: 30 Mar 2016 08:18 by ADMIN
ADMIN
Stefan
Created on: 31 Jul 2015 08:14
Category:
Type: Bug Report
1
FIX. RadListControl - setting the font to the control when AutoSizeItems is true, results in wrong layout
To reproduce:
 protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);

            AddListControl();
            radListControl1.AutoSizeItems = true;
            radListControl1.Font = new Font("Arial", 22);
        }

Workaround: After the font is set, set the AutoSizeItems to false and then back to true
0 comments