AddComboBox

AddComboBox(int, int, ICollection)

将组合框添加到行列索引处的指定单元格。

public ComboBox AddComboBox(int row, int col, ICollection items)
范围类型描述
rowInt32单元格的行索引。
colInt32单元格的列索引。
itemsICollectionComboBox 中包含的项目的集合。

返回值

添加的组合框。

也可以看看


AddComboBox(int, int, ICollection, ICollection)

将组合框添加到行列索引处的指定单元格。

public ComboBox AddComboBox(int row, int col, ICollection items, ICollection values)
范围类型描述
rowInt32单元格的行索引。
colInt32单元格的列索引。
itemsICollectionComboBox 中包含的项目的集合。
valuesICollectionComboBox 中包含的值的集合。

返回值

添加的组合框。

也可以看看


AddComboBox(string, ICollection)

按单元格名称将组合框添加到指定单元格。

public ComboBox AddComboBox(string cellName, ICollection items)
范围类型描述
cellNameString网格单元的名称。
itemsICollectionComboBox 中包含的项目的集合。

返回值

添加的组合框。

也可以看看


AddComboBox(string, ICollection, ICollection)

按单元格名称将组合框添加到指定单元格。

public ComboBox AddComboBox(string cellName, ICollection items, ICollection values)
范围类型描述
cellNameString网格单元的名称。
itemsICollectionComboBox 中包含的项目的集合。
valuesICollectionComboBox 中包含的值的集合。

返回值

添加的组合框。

也可以看看