tkinter grid vs pack

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gigs_

    #1

    tkinter grid vs pack

    For what is grid better than pack, and otherwise?

    thanks in advance
  • aspineux

    #2
    Re: tkinter grid vs pack

    On 18 mar, 16:49, Gigs_ <g...@hi.t-com.hrwrote:
    For what is grid better than pack, and otherwise?
    >
    thanks in advance
    Grid are useful to align items vertically _AND_ horizontally !
    For example to make adialog box with label of different length

    Firstname: John__________
    Lastname: Smith__________
    Contry: Uk__________

    to align vertically Firstname and John , Lastname and Smith ....
    But ALSO horizontaly John, Smith and Uk !

    Comment

    Working...