出现QComboBox下拉只出现一小部分或者完全不能下来,情况见下图:
原因:QStyledItemDelegate设置了两次,造成QComboBox下拉出现异常
QComboBox自动补全和下拉提示的是使用Qt自带的一个非常牛逼和优秀的类叫做QComplete,我去设置后突然有的是自动不全有的是下拉提示,查Qt官方文档
Constant | Value | Description |
---|---|---|
QCompleter::PopupCompletion | 0 | Current completions are displayed in a popup window. |
QCompleter::InlineCompletion | 1 | Completions appear inline (as selected text). |
QCompleter::UnfilteredPopupCompletion | 2 | All possible completions are displayed in a popup window with the most likely suggestion indicated as current. |
哈哈哈,这一看瞬间明白了,立马用setCompletionMode()设置我想要的模式。
但是呢,设置之后依然没有按照我的要求来,所有很郁闷,唯一能想到的是代码配置的顺序,又看了一下发现QComboBox的代理QStyledItemDelegate和editable在QCompleter之后设置的,调整一下顺寻,解决了!