⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 textrors.tcl

📁 用于TCL/TK的可视化集成开发环境.(GUI)
💻 TCL
字号:
# 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 \    -relief {raised}  # build widget .frame.scrollbar1  scrollbar .frame.scrollbar1 \    -command {.frame.text2 yview} \    -relief {raised}  # build widget .frame.text2  text .frame.text2 \    -relief {ridge} \    -borderwidth 2 \    -background white \    -yscrollcommand {.frame.scrollbar1 set} \    -wrap {none}  # bindings  bind .frame.text2 <Any-Key> {NoFunction}   # pack widget .frame  pack append .frame \    .frame.scrollbar1   {right frame center filly} \    .frame.text2   {top frame center expand fill}  # pack widgets  pack .frame# end of widget tree

⌨️ 快捷键说明

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