Completed
Last Updated: 13 Feb 2018 09:04 by ADMIN
ADMIN
Hristo
Created on: 08 Feb 2018 10:06
Category:
Type: Bug Report
1
FIX. RadListControl - the DescriptionFont set to the DescriptionTextListDataItem is not respected
How to reproduce: 
var descriptionItem = new DescriptionTextListDataItem()
{
    Text = "Chicken wings",
    DescriptionFont = new Font("Arial", 20, FontStyle.Bold),
    DescriptionText = "some description",

};

this.radListControl1.Items.Add(descriptionItem);

Workaround: handle the VisualItemFormatting event and set the font to the DescriptionContent element
https://docs.telerik.com/devtools/winforms/dropdown-listcontrol-and-checkeddropdownlist/listcontrol/customizing-appearance/formatting-items
0 comments