I like to arrange the widgets as shown below:
button1 button2 button3
button4 button5 button6
I use the following:
pack .b1 .b2 .b3 -side left
That takes care the first row. Then for the next row:
pack .b4 .b5 .b6 -side left
They all line up in a row which is not what I want. I just cannot come up with an option that allows button4 through button6 to be on the next row.
button1 button2 button3
button4 button5 button6
I use the following:
pack .b1 .b2 .b3 -side left
That takes care the first row. Then for the next row:
pack .b4 .b5 .b6 -side left
They all line up in a row which is not what I want. I just cannot come up with an option that allows button4 through button6 to be on the next row.