image1.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # image1.tcl --
  2. #
  3. # This demonstration script displays two image widgets.
  4. #
  5. # RCS: @(#) $Id: image1.tcl,v 1.2 1998/09/14 18:23:28 stanton Exp $
  6. if {![info exists widgetDemo]} {
  7.     error "This script should be run from the "widget" demo."
  8. }
  9. set w .image1
  10. catch {destroy $w}
  11. toplevel $w
  12. wm title $w "Image Demonstration #1"
  13. wm iconname $w "Image1"
  14. positionWindow $w
  15. label $w.msg -font $font -wraplength 4i -justify left -text "This demonstration displays two images, each in a separate label widget."
  16. pack $w.msg -side top
  17. frame $w.buttons
  18. pack $w.buttons -side bottom -fill x -pady 2m
  19. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  20. button $w.buttons.code -text "See Code" -command "showCode $w"
  21. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  22. catch {image delete image1a}
  23. image create photo image1a -file [file join $tk_library demos images earth.gif]
  24. label $w.l1 -image image1a -bd 1 -relief sunken
  25. catch {image delete image1b}
  26. image create photo image1b 
  27.   -file [file join $tk_library demos images earthris.gif]
  28. label $w.l2 -image image1b -bd 1 -relief sunken
  29. pack $w.l1 $w.l2 -side top -padx .5m -pady .5m