ComboBox.ObjectCollection.IList.Add(Object) 方法

定义

有关此成员的说明,请参见 Add(Object)

 virtual int System.Collections.IList.Add(System::Object ^ item) = System::Collections::IList::Add;
int IList.Add (object item);
abstract member System.Collections.IList.Add : obj -> int
override this.System.Collections.IList.Add : obj -> int
Function Add (item As Object) As Integer Implements IList.Add

参数

item
Object

一个对象,表示要添加到集合中的项。

返回

Int32

集合中项的从零开始的索引。

实现

例外

item 参数为 null

没有足够的可用空间来存储新项。

注解

此成员是显式接口成员的实现。 它只能在 ComboBox.ObjectCollection 实例被强制转换为 IList 接口时使用。

此方法将项添加到组合框中。 Sorted如果该属性设置为 trueComboBox则按字母顺序将项插入到列表中。 否则,该项将插入列表末尾。

项的视觉表示形式显示在组合框中。 此内容表示形式由 DisplayMember 属性指定。 DisplayMember如果该属性为 null,则调用项ToString的方法以获取组合框中显示的字符串;否则,将显示由该属性指定的DisplayMember存储对象的属性。 若要将一组项添加到组合框,最好使用 AddRange 该方法。 如果选择使用 Add 该方法将一组项添加到组合框中,请使用 BeginUpdate 该方法在添加期间暂停重新绘制,以及 EndUpdate 恢复重新绘制的方法。 可以使用 Insert 该方法指定添加项的列表中的位置。 将对象添加到集合中时,调用 ComboBox 对象的 ToString 方法来获取要显示在列表中的字符串。

适用于

另请参阅