tkinter - grid layout question

Alex Martelli aleaxit at yahoo.com
Tue Sep 14 10:12:04 EDT 2004


Ajay <abra9823 at mail.usyd.edu.au> wrote:

> hi!
> 
> is it possible to make a widget span more than one column in a grid?
> i have two radio buttons in row=1, column=0 and 1
> now in row 2 i have a listbox. i'd like it to span both columns. how would
> i do that?

thelistbox.grid(row=2, columnspan=2)


Alex



More information about the Python-list mailing list