I need to add "Select more ..." at the bottom of the list items, for example, on the SQL 2008 server selector. Attempt:
List<string> srvList = new List<string>();
srvList.Add("ff");
srvList.Add("jj");
srvList.Add("pp");
srvList.Add("<Select more...>");
ComboBoxServs.Items.AddRange(srvList.ToArray<String>());
But the inscription "Choose more ..." appears at the top of the elements.
source
share