Declined
Last Updated: 20 Aug 2026 13:00 by ADMIN
ADMIN
Dess | Tech Support Engineer, Principal
Created on: 09 Sep 2015 08:42
Category:
Type: Bug Report
0
FIX. RadDropDownList - text is cut off by the control bounds in RadDropDownStyle.DropDown
Please refer to the attached screenshot.

To reproduce:

public RadForm1()
{
    InitializeComponent();
    
    Font f = new Font("Microsoft Sans Serif", 9.5f);
    this.radDropDownList1.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
    this.radDropDownList1.Font = f;

    this.radDropDownList2.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
    this.radDropDownList2.Font = f;
}

Workaround:  If the text is not completely visible in RadDropDownList for a specific font you can increase the minimum height of the RadDropDownList and the DropDownListElement.TextBox.TextBoxItem.TextBoxControl.

public RadForm1()
{
    InitializeComponent();
    this.radDropDownList1.MinimumSize = new Size(0, 25);
    this.radDropDownList1.DropDownListElement.TextBox.TextBoxItem.TextBoxControl.MinimumSize = new Size(0, 25);
}
Attached Files:
1 comment
ADMIN
Nadya | Tech Support Engineer
Posted on: 20 Aug 2026 13:00

Hi,

This behavior was originally reported more than ten years ago, and we haven’t noticed significant demand or follow-up from the community since then. Also, there is a feasible workaround that can be applied. As a result, we currently plan to prioritize improvements that have a broader impact and are more widely requested. Feel free to use the suggested workaround.

This ticket is marked as "Declined". If this limitation is still affecting your scenario, please share additional context or use cases. 

Regards,
Nadya | Tech Support Engineer
Progress Telerik

Modernizing a WinForms application? Use the AI-powered WinForms Converter to simplify migration to Telerik UI for WinForms.