我有一个生成许多表单的Tcl / Tk应用程序,并且希望能够从中央位置配置默认小部件字体,而无需使用-font
开关配置每个小部件。
#!<path>/wish
button .hello -text "Hello, World!" -command { exit }
pack .hello
puts "--- i would like to set this thing: [.hello configure -font] --- "
答案 0 :(得分:10)
尝试添加,
font create myDefaultFont -family Helvetica -size 20
option add *font myDefaultFont
到你的脚本的顶部。 (link to article on fonts)