Created by Daniele Scasciafratte / Mte90Net
One of the key features of Qt is its use of signals and slots to communicate between objects. Their use encourages the development of reusable components.
Signal is emitted when something of potential interest happens.
Slot is a Python callable.
self.ui.newQuestionButton.clicked.connect(self.new_question)
- Slides
- PyQt5 examples