ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
# PyQt5 Checkboxesimport sysfrom PyQt5.QtWidgets import QApplication, QMainWindow, QCheckBoxfrom PyQt5.QtCore import Qtclass 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: 50px;" "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_())
Teaching people how to code in an easily understandable way. What a legend
I like u code bro .❤
Bro can you make c# advance tutorials coz I m going with c# + thank you so much bro for creating such free and best courses for the other bros True bro 🗿
huhuuhuhhuhuhuuuuhh
hello :)
# 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: 50px;"
"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_())
Teaching people how to code in an easily understandable way. What a legend
I like u code bro .❤
Bro can you make c# advance tutorials coz I m going with c# + thank you so much bro for creating such free and best courses for the other bros
True bro 🗿
huhuuhuhhuhuhuuuuhh
hello :)