📄 bindtag.tk
字号:
#!/usr/bin/wish -fset count 0button .b -text "Tick(ms)"label .ticker -textvariable countpack .b .tickerbind timer <ButtonPress-1> { set count 0 StartTimer %W } bind timer <ButtonRelease-1> { StopTimer %W } proc StartTimer { widget } { global pending count incr count 200 set pending [after 200 [list StartTimer $widget]]} proc StopTimer { widget } { global pending after cancel $pending} bindtags .b [linsert [bindtags .b] 0 timer]
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -