1

我用 Python 3 和 Tkinter 编写了一个程序,它使用单选按钮。现在,我怎样才能使某些单选按钮已经被选中?

4

1 回答 1

1

您想在单选按钮上使用 select 方法,如下所示:

import tkinter as tk

root = tk.Tk()
root.title("Radio Button Example")    
button = tk.Radiobutton(root)  # Make a radio button
button.pack()  # Pack it to the screen
button.select()  #This is the bit that makes it checked
root.mainloop()

有关 tk 中 RadioButtons 的更多信息,请查看此页面的教程点:

http://www.tutorialspoint.com/python/tk_radiobutton.htm

于 2013-05-27T13:18:38.503 回答