On Feb 28, 7:53 pm, Peter Otten <[EMAIL PROTECTED]> wrote:
> 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

but here there is another problem. there is a huge gap between get
button and message entry button when maximized.

pl z help. !!
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to