Completed
Last Updated: 23 May 2019 14:22 by ADMIN
scottw
Created on: 30 Apr 2019 08:35
Category: UI for WinForms
Type: Bug Report
0
RadDropDownList: incorrect font in the auto-complete drop down with Office2010Black

Use attached to reproduce. 

Type "Christoff" and scroll down.

Workaround:

public RadForm1()
{
    InitializeComponent();
    FilterToList.DropDownListElement.AutoCompleteSuggest.DropDownList.VisualItemFormatting += DropDownList_VisualItemFormatting;
}

private void DropDownList_VisualItemFormatting(object sender, Telerik.WinControls.UI.VisualItemFormattingEventArgs args)
{
    args.VisualItem.TextWrap = false;
}

 

Attached Files:
0 comments