ComboBox中文本文件中的数据

时间:2013-11-14 21:23:40

标签: c++ qt

我在Qt IDE中有ComboBox,在这个组合框中是员工列出的名字。但是会不时出现新的名字,有些会被删除。所以我认为我可以制作这样的文本文件:

name 1
name 2
name 3
name 4
name 5 //and you keep going on

如何在组合框中获取此列表?

1 个答案:

答案 0 :(得分:0)

如果你想在组合框中获取每个项目,你可以像这样迭代:

for(int i = 0; i < ui->comboBox->count(); ++i)
{
  qDebug() << ui->comboBox->itemText(i);
}