""" 会员谜题_为什么加上gui=t.Turtle()这行代码后,单击radiobutton失效了呢? """ import tkinter as tk import turtle as t import time def start(): root.destroy() def select(): print(btn.get()) gui = t.Turtle() root=tk.Tk() root.title("五子棋游戏开始") root.geometry("200x180+580+300") label=tk.Label(root,text="请选择开局方",font=("微软雅黑",18)) label.pack() frame=tk.Frame(root) frame.pack() btn=tk.IntVar() btn.set(1) btn_red=tk.Radiobutton(frame,text="红方",variable=btn,value=1,font=("微软雅黑",16),command=select) btn_red.grid(column=0,row=0,sticky="w") btn_black=tk.Radiobutton(frame,text="黑方",variable=btn,value=-1,font=("微软雅黑",16),command=select) btn_black.grid(column=1,row=0,sticky="e") btn_ok=tk.Button(root,text="确定",font=("微软雅黑",16),command=start) btn_ok.pack(pady=20) root.mainloop()
李兴球
李兴球的博客是Python创意编程原创博客
要发表评论,您必须先登录。
发表评论