Try the following:
Drop a comboxbox onto a windows form.
Add the following code to the forms constructor:
List _List = new List();
_List.Add(null);
_List.Add(“A”);
comboBox1.DataSource = _List;
The comboxbox drop down is not populated.
Populate the list the other way around and the list will only have 1 item.