pyqt5 toolbox
时间: 2023-10-05 08:12:12 浏览: 85
pyqt5-tools
5星 · 资源好评率100%
PyQt5 is a Python library that allows developers to create graphical user interfaces (GUI) for their applications. One of the useful features of PyQt5 is the toolbox, which provides a range of widgets that can be used to build the GUI of an application. Here are some of the widgets available in the PyQt5 toolbox:
1. QLabel: This widget is used to display text or images on a GUI.
2. QPushButton: This widget creates a button that can be clicked by the user.
3. QCheckBox: This widget creates a checkbox that can be checked or unchecked by the user.
4. QComboBox: This widget creates a drop-down list that allows the user to select one option from a list of options.
5. QLineEdit: This widget creates a text box that allows the user to enter text.
6. QProgressBar: This widget displays a progress bar that shows the progress of a task.
7. QRadioButton: This widget creates a radio button that allows the user to select one option from a list of options.
8. QSlider: This widget creates a slider that allows the user to select a value from a range of values.
9. QTextEdit: This widget creates a text area that allows the user to enter and edit text.
10. QSpinBox: This widget creates a spin box that allows the user to select a value from a range of values by clicking on up or down arrows.
阅读全文