0

我正在 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)
4

1 回答 1

1

修改标签使用entryconfig方法。你给这个方法一个索引,它可以是项目的整数位置,也可以是标签本身。例如:

self.B3Me.entryconfig("Hello", label="Goodbye!")
于 2010-12-19T13:13:37.170 回答