我正在 Tkinter 中创建一个菜单。创建菜单后,我希望能够更改单选按钮的标签。类似于.configure方法的东西。我该怎么做?
我希望能够将单选按钮文本从“Hello”更改为“Hello!”。
片段:
self.B3Me = Tkinter.Menu(self, tearoff=0,
activebackground='grey15',
activeforeground='grey95')
self.B3MeVar = Tkinter.StringVar()
self.B3Me.add_radiobutton(label='Hello', variable=self.B3MeVar,
command=self.B3_menu_beh)