PyQt5 – 如何阻止单选按钮被选中
在这篇文章中,我们将看到如何阻止单选按钮被检查,有些时候需要阻止一个单选按钮,使用户不能检查它。
为了阻止单选按钮被检查,我们必须改变单选按钮的check-able属性,并将其设置为False。
语法: radio_button.setCheckable(False)
参数: 它使用bool作为参数
动作: 它将不允许按钮被检查。
下面是实现方法。
# 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")
# changing check-able property of radio button
self.radio_button.setCheckable(False)
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())