Re: class object using widget
On Wednesday 20 February 2008 13:16, you wrote: > from Tkinter import * > # get widget classes from tkMessageBox > import askokcancel # get canned > std dialog > > class Quitter(Frame): > # subclass our GUI def __init__(self, > parent=Non
Re: class object using widget
asit wrote: > from Tkinter import * # get widget classes > from tkMessageBox import askokcancel # get canned std dialog > > class Quitter(Frame): # subclass our GUI > def __init__(self, parent=None): # constructor method >