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

  1. #
  2. # Example 24-18
  3. # Packing into other relatives.
  4. #
  5.  
  6. # Create and pack two frames
  7. frame .one -bg white
  8. frame .two -width 100 -height 50 -bg grey50
  9. # Create a row of buttons
  10. foreach b {alpha beta} {
  11.     button .$b -text $b
  12.     pack .$b -in .one -side left
  13. }
  14. # Create a frame for two more buttons
  15. frame .one.right
  16. foreach b {delta epsilon} {
  17.     button .$b -text $b
  18.     pack .$b -in .one.right -side bottom
  19. }
  20. pack .one.right -side right
  21. pack .one .two -side top
  22.  
  23.  
  24.