Posted to tcl by rmax at Tue Nov 18 12:59:30 GMT 2014view pretty

#!/usr/bin/tclsh
package require Tk

text .t1
text .t2
text .t3

grid .t1 -rowspan 2 -sticky nsew
grid .t2 -row 0 -column 1 -sticky nsew
grid .t3 -row 1 -column 1 -sticky nsew

grid rowconfigure . 0 -weight 1
grid rowconfigure . 1 -weight 1
grid columnconfigure . 0 -weight 1
grid columnconfigure . 1 -weight 1