GUI problems
eric_brake
brakedon at hotmail.com
Thu Jul 5 18:55:14 EDT 2001
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