foreach (string text in ComboBox.Items)
    {
    ComboBox.DropDownWidth = Math.Max(ComboBox.DropDownWidth, TextRenderer.MeasureText(text, ComboBox.Font).Width);
    }