Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有QLineEdit一个QListView小部件,
QLineEdit
QListView
但似乎没有QCompleter. 那我该怎么办?
QCompleter
从中删除完成者QLineEdit将有效地禁用它,您可以稍后将其重新设置以启用它。要删除它,请QLineEdit::setCompleter(QCompleter*)使用空指针调用。稍后使用相同的成员函数再次设置/恢复它。
QLineEdit::setCompleter(QCompleter*)