#pythontutorial #python #pythonprogramming
PyQt5 Checkboxes
import sys
from PyQt5.QtWidgets import QApplication, QMainWindow, QCheckBox
from PyQt5.QtCore import Qt
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.setGeometry(700, 300, 500, 500)
self.checkbox = QCheckBox("Do you like food?", self)
self.initUI()
def initUI(self):
self.checkbox.setGeometry(10, 0, 500, 100)
self.checkbox.setStyleSheet("font-size: 30px;"
"font-family: Arial;")
self.checkbox.stateChanged.connect(self.checkbox_changed)
def checkbox_changed(self, state):
if state == Qt.Checked:
print("You like food")
else:
print("You DO NOT like food")
if __name__ == '__main__':
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec_())
On this page of the site you can watch the video online Create Python checkboxes in 5 minutes! ✅ with a duration of hours minute second in good quality, which was uploaded by the user Bro Code 27 July 2024, share the link with friends and acquaintances, this video has already been watched 8,529 times on youtube and it was liked by 157 viewers. Enjoy your viewing!