4 # This program shows how to use a simple type-in box
7 def __init__(self
, master
=None):
8 Frame
.__init
__(self
, master
)
11 self
.entrythingy
= Entry()
12 self
.entrythingy
.pack()
14 # and here we get a callback when the user hits return. we could
15 # make the key that triggers the callback anything we wanted to.
16 # other typical options might be <Key-Tab> or <Key> (for anything)
17 self
.entrythingy
.bind('<Key-Return>', self
.print_contents
)
19 def print_contents(self
, event
):
20 print "hi. contents of entry is now ---->", self
.entrythingy
.get()
23 root
.master
.title("Foo")