如何以编程方式将项添加到 Windows 窗体的 DomainUpDown 控件中
可以通过编写代码将元素添加到 Windows 窗体 DomainUpDown 控件中。 调用 DomainUpDown.DomainUpDownItemCollection 类的 Add 或 Insert 方法,将项添加到控件的 Items 属性。 Add 方法将项添加到集合的末尾,而 Insert 方法在指定位置添加项。
添加新项
使用 Add 方法将项添加到项列表的末尾。
DomainUpDown1.Items.Add("noodles")
domainUpDown1.Items.Add("noodles");
domainUpDown1->Items->Add("noodles");
-或-
使用 Insert 方法将项插入到列表中的指定位置。
' Inserts an item at the third position in the list DomainUpDown1.Items.Insert(2, "rice")
// Inserts an item at the third position in the list domainUpDown1.Items.Insert(2, "rice");
// Inserts an item at the third position in the list domainUpDown1->Items->Insert(2, "rice");