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

  1. #
  2. # Example 24-6
  3. # Filling the display into extra packing space. 
  4. #
  5.  
  6. frame .one -width 100 -height 50 -bg grey50
  7. frame .two -width 40 -height 40 -bg white
  8. # Pack with fill enabled
  9. pack .one .two -side bottom -fill x
  10. frame .three -width 20 -height 20 -bg red
  11. pack .three -side right -fill x
  12.  
  13.  
  14.