。
在pyqt5中,可以通过以下步骤实现单击选中的单选按钮时取消选中:
radio_button = QRadioButton("选项1", parent)
button_group = QButtonGroup()
button_group.addButton(radio_button1)
button_group.addButton(radio_button2)
radio_button.toggled.connect(on_radio_button_toggled)
def on_radio_button_toggled(checked):
if checked:
button_group.setExclusive(False)
button_group.checkedButton().setChecked(False)
button_group.setExclusive(True)
在上述代码中,我们首先通过创建一个QButtonGroup对象来将所有的QRadioButton对象进行分组。然后,我们连接QRadioButton的toggled信号到一个槽函数on_radio_button_toggled。在槽函数中,我们首先通过button_group.checkedButton()获取当前选中的QRadioButton对象,然后调用setChecked(False)来取消选中。需要注意的是,为了避免出现无限循环的问题,我们在取消选中之前先调用button_group.setExclusive(False)来关闭按钮组的互斥性,取消选中后再调用button_group.setExclusive(True)来恢复互斥性。
这样,当单击选中的单选按钮时,它会自动取消选中。
推荐的腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云