message entry box at center

Peter Otten __peter__ at web.de
Thu Feb 28 09:53:37 EST 2008


asit wrote:

> i want to show the entry button at the center of the window. How is it
> possible ??

> from Tkinter import *
> 
> 
> def callback():
> print e.get()
> 
> 
> master=Tk()
> e=Entry(master)

e.pack(expand=True)

> e.focus_set()
> 
> 
> b=Button(master,text="get",width=10,command=callback)
> b.pack(anchor=CENTER)
> 
> master.mainloop()

For more complex layouts have a look at the grid geometry manager.

Peter



More information about the Python-list mailing list