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 / checkbox < prev    next >
Text File  |  2003-09-01  |  411b  |  13 lines

  1. # ----------------------------------------------------------------------
  2. #  DEMO: checkbox in [incr Widgets]
  3. # ----------------------------------------------------------------------
  4. package require Iwidgets 4.0
  5.  
  6. iwidgets::checkbox .cb -labeltext Styles
  7. .cb add bold -text Bold
  8. .cb add italic -text Italic
  9. .cb add underline -text Underline
  10. .cb select underline
  11.  
  12. pack .cb -padx 10 -pady 10 -fill both -expand yes
  13.