如何设置Tk小部件的默认字体

时间:2009-05-05 23:43:41

标签: user-interface fonts tcl tk

我有一个生成许多表单的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] --- "

1 个答案:

答案 0 :(得分:10)

尝试添加,

font create myDefaultFont -family Helvetica -size 20
option add *font myDefaultFont

到你的脚本的顶部。 (link to article on fonts)