gooderp18绿色标准版
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

47 行
2.1KB

  1. # entry2.tcl --
  2. #
  3. # This demonstration script is the same as the entry1.tcl script
  4. # except that it creates scrollbars for the entries.
  5. if {![info exists widgetDemo]} {
  6. error "This script should be run from the \"widget\" demo."
  7. }
  8. package require Tk
  9. set w .entry2
  10. catch {destroy $w}
  11. toplevel $w
  12. wm title $w "Entry Demonstration (with scrollbars)"
  13. wm iconname $w "entry2"
  14. positionWindow $w
  15. label $w.msg -font $font -wraplength 5i -justify left -text "Three different entries are displayed below, with a scrollbar for each entry. You can add characters by pointing, clicking and typing. The normal Motif editing characters are supported, along with many Emacs bindings. For example, Backspace and Control-h delete the character to the left of the insertion cursor and Delete and Control-d delete the chararacter to the right of the insertion cursor. For entries that are too large to fit in the window all at once, you can scan through the entries with the scrollbars, or by dragging with the middle mouse button pressed."
  16. pack $w.msg -side top
  17. ## See Code / Dismiss buttons
  18. set btns [addSeeDismiss $w.buttons $w]
  19. pack $btns -side bottom -fill x
  20. frame $w.frame -borderwidth 10
  21. pack $w.frame -side top -fill x -expand 1
  22. entry $w.frame.e1 -xscrollcommand "$w.frame.s1 set"
  23. ttk::scrollbar $w.frame.s1 -orient horizontal -command \
  24. "$w.frame.e1 xview"
  25. frame $w.frame.spacer1 -width 20 -height 10
  26. entry $w.frame.e2 -xscrollcommand "$w.frame.s2 set"
  27. ttk::scrollbar $w.frame.s2 -orient horizontal -command \
  28. "$w.frame.e2 xview"
  29. frame $w.frame.spacer2 -width 20 -height 10
  30. entry $w.frame.e3 -xscrollcommand "$w.frame.s3 set"
  31. ttk::scrollbar $w.frame.s3 -orient horizontal -command \
  32. "$w.frame.e3 xview"
  33. pack $w.frame.e1 $w.frame.s1 $w.frame.spacer1 $w.frame.e2 $w.frame.s2 \
  34. $w.frame.spacer2 $w.frame.e3 $w.frame.s3 -side top -fill x
  35. $w.frame.e1 insert 0 "Initial value"
  36. $w.frame.e2 insert end "This entry contains a long value, much too long "
  37. $w.frame.e2 insert end "to fit in the window at one time, so long in fact "
  38. $w.frame.e2 insert end "that you'll have to scan or scroll to see the end."
上海开阖软件有限公司 沪ICP备12045867号-1