En este artículo veremos cómo cambiar el estado del botón de opción. Aunque con la ayuda del setChecked
método podemos marcar el botón de radio, pero cuando usamos este método en el botón de radio marcado, no habrá cambios en el estado del botón de radio.
Para cambiar el estado del botón de radio cuando se presiona el botón, tenemos que hacer lo siguiente:
1. Cree un botón de opción
2. Cree un botón de presión
3. Conecte un método al botón de presión de modo que cuando se presione el botón de presión se llame al método
4. En el método de llamada con la ayuda delnextCheckState
método, cambie el estado del botón de opción.
A continuación se muestra el implemento.
# 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 a radio button self.radio_button = QRadioButton(self) # setting geometry of radio button self.radio_button.setGeometry(200, 150, 120, 40) # setting text to radio button self.radio_button.setText("Radio Button") # creating push button push = QPushButton("Press", self) # setting geometry of push button push.setGeometry(200, 200, 100, 40) # connect method to push button push.clicked.connect(self.method) def method(self): # changing the state of radio button self.radio_button.nextCheckState() # 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