函数原型如下:
int InsertString(int nIndex, LPCTSTR lpszString);
这个方法的参数包括:
- nIndex:要插入项的位置索引。如果 nIndex 为 -1,则该项将添加到列表的末尾。
- lpszString:要插入的字符串。
该方法返回一个整数,表示插入的项的索引。如果插入失败,返回 CB_ERR。
例如,以下是一个简单的示例,演示如何使用 InsertString 方法:
CComboBox comboBox;
// 假设已经初始化
int nIndex = comboBox.InsertString(2, _T("Inserted Item"));
上述代码将在组合框的索引 2 处插入一个字符串为 "Inserted Item" 的项。如果 nIndex 返回 CB_ERR,则插入操作失败。
确保在使用 InsertString 之前已经初始化了组合框。
转载请注明出处:http://www.zyzy.cn/article/detail/15947/MFC/CComboBox