Код: Выделить всё
int iMaxLen = 0;
foreach item in comboBoxList
{
iMaxLen = (item.Length > iMaxLen) ? item.Length : iMaxLen;
}
comboBoxList.DropDownWidth = iMaxLen;
Подробнее здесь: https://stackoverflow.com/questions/289 ... in-c-sharp
Код: Выделить всё
int iMaxLen = 0;
foreach item in comboBoxList
{
iMaxLen = (item.Length > iMaxLen) ? item.Length : iMaxLen;
}
comboBoxList.DropDownWidth = iMaxLen;