我一直在尝试创建一个简单的单选按钮,但问题是两个按钮都已经显示为单击(当 GUI 启动时,它们内部有黑色圆圈)。我将如何解决这个问题?
this.myVar = StringVar()
this.button1 = Radiobutton(this.root,text = "Small Boxes First",variable = this.myVar)
this.button1.grid(row = 2,column = 5)
this.button2 = Radiobutton(this.root,text = "Large Boxes First",variable = this.myVar)
this.button2.grid(row = 3,column = 5)
使用 SetValue(self, False)
将其设置为未选中。您可以在此处阅读更多相关信息