En este artículo, veremos cómo establecer el color de fondo en una casilla de verificación cuando se encuentra en un estado intermedio y pasar el mouse sobre ella. De forma predeterminada, la casilla de verificación tiene solo dos estados, aunque también podemos crear un tercer estado que no esté marcado o desmarcado, que se encuentre entre ambos estados y se refiera a un estado intermedio con la ayuda del setTristate
método.
Para agregar color de fondo al indicador en estado intermedio, debemos cambiar la hoja de estilo del indicador para el estado intermedio y cuando el cursor se desplaza sobre él, a continuación se muestra el código de la hoja de estilo.
QCheckBox::indicator:indeterminate:hover { background-color : blue; }
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, 30) # creating tri-state check box checkbox.setTristate(True) # adding background color to the indicator # when it is in intermediate state and cursor hover over it checkbox.setStyleSheet("QCheckBox::indicator:indeterminate:hover" "{" "background-color : blue;" "}") # create pyqt5 app App = QApplication(sys.argv) # create the instance of our Window window = Window() # start the app sys.exit(App.exec())
Producción :
Publicación traducida automáticamente
Artículo escrito por rakshitarora y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA