PyQt5 – método checkState() para la casilla de verificación

Básicamente, hay dos estados en la casilla de verificación que están marcados o desmarcados , aunque al usar el setTristatemétodo podemos agregar un estado intermedio.

checkStateEl método se usa para verificar el estado de la casilla de verificación, devuelve el objeto CheckState, pero cuando lo imprimamos, la salida será la siguiente:

  • 0 para estado no verificado
  • 2 para estado marcado
  • 1 para estado intermedio

Sintaxis: checkbox.checkState()

Argumento: No requiere argumento.

Retorno: Devuelve el objeto CheckState

A continuación se muestra la implementación.

# 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
        checkbox = QCheckBox('Geek ?', self)
  
        # setting geometry of check box
        checkbox.setGeometry(200, 150, 100, 40)
  
        # getting the checked state
        check = checkbox.checkState()
  
        # printing the state
        print("Before check status : ", check)
  
        # checking the check box
        checkbox.setChecked(True)
  
        # getting the checked state
        check = checkbox.checkState()
  
        # printing the state
        print("After check status : ", check)
  
        # exiting the program
        sys.exit()
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

Producción :

Before check status :  0
After check status :  2

Publicación traducida automáticamente

Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *