📄 displaywidgetpath.tcl
字号:
#this is a little helper, if you want to know the widget-name
# simply source it in your file
package require Tk
global widgetPath
set widgetPath "move mouse to a widget and click left mouse button while pressing Ctrl-Key"
toplevel .widgetPath
entry .widgetPath.e -textvar widgetPath
pack .widgetPath.e -fill both -expand yes
wm geometry .widgetPath =[winfo screenwidth .widgetPath]x20+0+0
raise .widgetPath
# wm withdraw .
bind all <Control-Button-1> {set widgetPath %W;break}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -