home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 June / PCWorld_2005-06_cd.bin / software / vyzkuste / firewally / firewally.exe / framework-2.3.exe / radiobox < prev    next >
Text File  |  2003-09-01  |  433b  |  15 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: radiobox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::radiobox .rb -labeltext "Size:" -labelpos nw
  7. pack .rb -padx 4 -pady 4 -fill both
  8.  
  9. .rb add small -text "Small"
  10. .rb add med -text "Medium"
  11. .rb add large -text "Large"
  12. .rb add xlarge -text "Biggie"
  13.  
  14. .rb select med
  15.