spinint

来自「windows下的GDB insight前端」· 代码 · 共 30 行

TXT
30
字号
# ----------------------------------------------------------------------#  DEMO: spinint in [incr Widgets]# ----------------------------------------------------------------------package require Iwidgets 4.0option add *textBackground seashell. configure -background whiteiwidgets::spinint .times -labeltext "Countdown:" -range {0 10} -width 3pack .times -padx 10 -pady 10.times delete 0 end.times insert end "5"frame .testpack .test -padx 10 -pady 10button .test.go -text "Go" -command {    set count [.times get]    while {$count >= 0} {        .test.readout configure -text $count        update        after 200        incr count -1    }    .test.readout configure -text "blast-off!"}pack .test.go -side leftlabel .test.readout -width 15 -background seashellpack .test.readout -side left -padx 4 -pady 4

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?