简体   繁体   中英

C# - Change index of ComboBox item?

I have a combobox that I want to be able to add items to the beginning of. For example, when you click it, you get 1,2,3 , but I want to be able to add an option, 0, so that when you click it you get 0,1,2,3.

Is this possible without rebuilding the combobox?

只需使用组合框的Items属性的Insert方法:

myComboBox.Items.Insert(0, "New item at top");

Yes, you can use the Insert() method on the Items property of your ComboBox object.

var comboBox = new ComboBox();
comboBox.Items.Add("1");
comboBox.Items.Add("2");
comboBox.Items.Add("3");
comboBox.Items.Insert(0, "0");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM