python 3和tkinter中的单选按钮

时间:2013-05-27 13:13:00

标签: python tkinter

我在Python 3和Tkinter中创建了一个使用单选按钮的程序。现在,我怎样才能确定某些单选按钮已被检查?

1 个答案:

答案 0 :(得分: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