如果我使用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()