-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Jim Kleckner пишет:
| Any pointers to what it takes to add/remove widgets
| from a running application?
Something like this maybe?
from Tkinter import *
root = Tk()
x = Label(root, text='Hello')
x.pack()
Button(root, text='Hide', command=x.pack_forge
Any pointers to what it takes to add/remove widgets
from a running application?
Thanks.
___
Tkinter-discuss mailing list
Tkinter-discuss@python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss
In article <[EMAIL PROTECTED]>,
Bob Greschke <[EMAIL PROTECTED]> wrote:
> I use colors quite a bit in my programs:
...> I got to thinking about what should be done to make things better
for
> color blind people
>
> Anybody know of a good source of info, or does this not even make
> sens