I'm trying to set the width of the dropdown window in a Telerik RadGridView GridViewComboBoxColumn
using C# and WinForms. But I only found ways to set the width of the whole column:
foreach (GridViewColumn col in radGridView1.Columns)
{
GridViewComboBoxColumn cbCol = col as GridViewComboBoxColumn;
cbCol.Width = 200;
}
But this is not what I want. I want the dropdown window to be wider than the column itself. I also found a DropDownStyle
property:
cbCol.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDown;
// or this
cbCol.DropDownStyle = Telerik.WinControls.RadDropDownStyle.DropDownList;
But this doesn't make any difference (at least not visually for me) and I couldn't find a property like DropDownWidth
or something similar.