entrys.tcl

来自「用于TCL/TK的可视化集成开发环境.(GUI)」· TCL 代码 · 共 35 行

TCL
35
字号
# ClonePath = .frame# The above line makes pasting MUCH easier for me.# It contains the pathname of the cutted widget.# The symbolic names.global symbolicName  # build widget .frame  frame .frame  # build widget .frame.scrollbar1  scrollbar .frame.scrollbar1 \    -command {.frame.entry2 xview} \    -orient {horizontal} \    -relief {raised} \    -width {11}  # build widget .frame.entry2  entry .frame.entry2 \    -exportselection {true} \    -relief {sunken} \    -background white \    -xscrollcommand {.frame.scrollbar1 set}  # pack widget .frame  pack append .frame \    .frame.entry2   {top frame center fill} \    .frame.scrollbar1   {top frame center fillx}   # pack widgets  pack .frame# end of widget tree

⌨️ 快捷键说明

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