home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 25_9.tcl < prev    next >
Text File  |  2003-04-15  |  227b  |  14 lines

  1. #
  2. # Example 25-9
  3. # Row padding compared to widget padding.
  4. #
  5.  
  6. . config -bg black
  7. label .f1 -text left -bg #ccc
  8. label .f2 -text right -bg #aaa
  9. grid .f1 .f2 -sticky news
  10. grid .f1 -padx 10 -pady 10
  11. grid rowconfigure . 0 -pad 20
  12.  
  13.  
  14.