我可以将一组radiobutton作为一组按下的按钮,而不是一组有一个点的圆圈吗? (PyQt4中)

时间:2016-02-15 10:25:01

标签: python-3.x pyqt4 qradiobutton

如果我使用tkinter,我可以设置选项indicatoron = 0,并获得预期效果。

我想这个效果可以通过一组QPushButton以及一些额外的代码来实现。

但这是真的吗?也许,PyQt有一个选项,tkinter

这段代码给了我一个来自tkinter的预期效果。

from tkinter import *
root = Tk()
var = IntVar()
button1 = Radiobutton(root,indicatoron=0,text=' One Button ',variable=var,value=1)
button2 = Radiobutton(root,indicatoron=0,text=' Two Button ',variable=var,value=2)
button3 = Radiobutton(root,indicatoron=0,text='Three Button',variable=var,value=3)
button1.place(x=4, y=4)
button2.place(x=4, y=30)
button3.place(x=4, y=56)
mainloop()

1 个答案:

答案 0 :(得分:0)

在PyQt中,您可以使用INSERT INTO `testing`.`temp_entries` (`File`, `Schema` ) SELECT `_FilePath`, 'CU010' FROM `cua010`.`doc_table` QPushButton

QButtonGroup