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

📄 lframe.tcl

📁 This Source-Navigator, an IDE for C/C++/Fortran/Java/Tcl/PHP/Python and a host of other languages.
💻 TCL
字号:
# lframe.tcl - Labelled frame widget.# Copyright (C) 1997 Cygnus Solutions.# Written by Tom Tromey <tromey@cygnus.com>.itcl_class Labelledframe {  inherit Widgetframe  # The label text.  public text {} {    if {[winfo exists [namespace tail $this].label]} then {      [namespace tail $this].label configure -text $text    }  }  constructor {config} {    label [namespace tail $this].label -text $text -padx 2    _add [namespace tail $this].label  }}

⌨️ 快捷键说明

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