Re: class object using widget

2008-02-20 Thread jim-on-linux
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

2008-02-20 Thread Jeff Schwab
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 >

class object using widget

2008-02-20 Thread asit
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 Frame.__init__(se