Qt-QComboBoxg清空所有的方法

Posted Ant-double

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt-QComboBoxg清空所有的方法相关的知识,希望对你有一定的参考价值。

1.clear()会清空关系,而且在我这会卡,很慢也不报错清完全要2分钟

2.我的方法:

 1  for (int i = 0; i < 7; i++)
 2         {
 3             // strListTemp << dt.addDays (i).toString (strDateFromat);
 4             ui.beginTime_comboBox->insertItem (i, dt.addDays (i).toString (strDateFromat));
 5             ui.endTime_comboBox->insertItem (i, dt.addDays (i).toString (strDateFromat));
 6         }
 7         
 8         ControlFunction::romoveAllItem (ui.beginTime_comboBox);
 9         ControlFunction::romoveAllItem (ui.endTime_comboBox);
10         ui.beginTime_comboBox->setCurrentIndex (0);
11         ui.endTime_comboBox->setCurrentIndex (ui.endTime_comboBox->count() - 1);
12         return true;
 1 void ControlFunction::romoveAllItem (QComboBox *cb)
 2 {
 3     int atemp = cb->count();
 4     
 5     for (; atemp >= 7; atemp--)
 6     {
 7         cb->removeItem (atemp);
 8         // cb->setItemText (atemp, "ddd");
 9     }
10 }

 

以上是关于Qt-QComboBoxg清空所有的方法的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

HTML代码片段

如何清空android ListView控件的内容

JS怎么清空DIV里元素实例代码

sql清空表数据的方法

使用jQuery清空除特定元素以外的所有内容的最佳方法?