📌  相关文章
📜  PyQt5 – 查找单选按钮是否被选中

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

PyQt5 – 查找单选按钮是否被选中

在本文中,我们将看看如何找到单选按钮是否被选中。默认情况下,单选按钮未选中,但在setChecked方法的帮助下,我们可以将其设置为选中。

下面是实现。

# 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("GEEK ?")
  
        # creating label to display if it is checked or not
        self.label = QLabel("", self)
  
        # setting geometry of label
        self.label.setGeometry(200, 200, 150, 40)
  
        # setting callable method to radio button
        self.radio_button.clicked.connect(self.check)
  
    # method called by radio button
    def check(self):
          
        # checking if it is checked
        if self.radio_button.isChecked():
              
            # changing text of label
            self.label.setText("It is now checked")
  
        # if it is not checked
        else:
              
            # changing text of label
            self.label.setText("")
  
  
  
# create pyqt5 app
App = QApplication(sys.argv)
  
# create the instance of our Window
window = Window()
  
# start the app
sys.exit(App.exec())

输出 :