之前我一直没有注意到 Combo box控件的下拉列表中的值可以在控件的属性中 Data下面直接输入如下:
这样的效果和使用语句添加是相同的:如代码:
m_comboInsertString(0,"默认");
m_combo.InsertString(1,"1");
m_combo.InsertString(2,"2");
m_combo.InsertString(3,"3");
m_combo.InsertString(4,"4");
m_combo.InsertString(5,"5");
如果是数字的话最好在Styles中不要选中Sort属性,否则就会出现数字不是按照大小排列的现象。
时间: 2024-10-27 06:02:29