GUI problems

eric_brake brakedon at hotmail.com
Fri Jul 6 09:11:06 EDT 2001


I don't know what happened, but this is how it's supposed to look
("command=frame.quit" under "Button" was on the next line. Thanks for
any help

brakedon at hotmail.com (eric_brake) wrote in message news:<7b515e0f.0107051455.4194a679 at posting.google.com>...
> Why doesn't this TKinter script work? The blank window will come up,
> but the "quit" button doesn't appear inside it. Thanks for any help.
> 
> import dice_gui #ignore this
> from Tkinter import *
> class fibon_gui:
>      def __init__(self, master):
>           frame = Frame(master)
>           frame.pack()
>           button = Button(frame, text="QUIT", fg="red", command=frame.quit)
>           button.pack(side=LEFT)
> root = Tk()
> root.title('Play Dice')
> root.mainloop()



More information about the Python-list mailing list