📜  PyQt5 – 复选框的 isChecked() 方法

📅  最后修改于: 2022-05-13 01:55:47.853000             🧑  作者: Mango

PyQt5 – 复选框的 isChecked() 方法

isChecked方法用于知道复选框是否被选中。如果选中复选框,此方法将返回 true,否则将返回 false。如果我们在创建复选框后使用此方法,它将始终返回 False,因为默认情况下未选中复选框。

下面是实现。

# importing libraries
from PyQt5.QtWidgets import * 
from PyQt5 import QtCore, QtGui
from PyQt5.QtGui import * 
from PyQt5.QtCore import * 
import sys
  
  
class Window(QMainWindow):
  
    def __init__(self):
        super().__init__()
  
        # setting title
        self.setWindowTitle("Python ")
  
        # setting geometry
        self.setGeometry(100, 100, 600, 400)
  
        # calling method
        self.UiComponents()
  
        # showing all the widgets
        self.show()
  
    # method for widgets
    def UiComponents(self):
  
        # creating the check-box
        self.checkbox = QCheckBox('Check box', self)
  
        # setting geometry of check box
        self.checkbox.setGeometry(200, 150, 100, 30)
  
  
        # connecting it to function
        self.checkbox.stateChanged.connect(self.method)
  
        # checking if it checked
        check = self.checkbox.isChecked()
  
        # printing the check
        print(check)
  
    def method(self):
  
        # printing the checked status
        print(self.checkbox.isChecked())
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :

False
True


当我们运行代码时,将打印 False,在选中复选框后,它将打印 True。