为什么QCombo Box不工作?

时间:2017-09-13 14:27:43

标签: python python-3.x pyqt5 qcombobox

我有一个Qcombobox,当我初始化主窗口时,我使用:

设置第一个值
window.events.clear()

现在看起来像这样:

enter image description here

我想清理并重新填充这个盒子几次,所以我使用:

window.events.insertItem(0,'Some Events')

然后:

System.Type

在添加我的活动之前。

现在看起来像这样:

enter image description here

如果我选择框:

enter image description here

为什么“某些事件”没有像“无事件”那样写在最上面?

如何将“一些事件”写在第一行,如“无事件”?

1 个答案:

答案 0 :(得分:1)

在组合框中设置当前项目应解决此问题。

window.events.setCurrentIndex(0)