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

📄 entrylls.tcl

📁 用于TCL/TK的可视化集成开发环境.(GUI)
💻 TCL
字号:
# ClonePath = .frame# The above line makes pasting MUCH easier for me.# It contains the pathname of the cutted widget.# This template was build by: Mark Costlow# The symbolic names.global symbolicName  # build widget .frame  frame .frame \    -borderwidth {2} \    -relief {raised}  # build widget .frame.frame  frame .frame.frame  # build widget .frame.frame.scrollbar1  scrollbar .frame.frame.scrollbar1 \    -command {.frame.frame.entry2 xview} \    -orient {horizontal} \    -width {11}  # build widget .frame.frame.entry2  entry .frame.frame.entry2 \    -exportselection {true} \    -relief {sunken} \    -background white \    -xscrollcommand {.frame.frame.scrollbar1 set}  # pack widget .frame.frame  pack append .frame.frame \    .frame.frame.entry2   {top frame center expand fill} \    .frame.frame.scrollbar1   {top frame center fillx}   # build widget .frame.label1  label .frame.label1 \    -text {Entry:}  # pack widget .frame  pack append .frame \    .frame.label1   {left frame center filly} \    .frame.frame   {top frame center fillx}   # pack widgets  pack .frame# end of widget tree

⌨️ 快捷键说明

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