Categories
How to add item to comboBox in PyQT5?
I am new to PyQT. I want to add item to comboBox. How can I best do this?
Answer the question
In order to leave comments, you need to log in
Everything is just .addItem("Item"). Example:
self.funcs = QComboBox(self) self.funcs.addItem("Status")
Didn't find what you were looking for?
Ask a Question
731 491 924 answers to any question