1

目标

我在 Tkinter 中创建了 4 个默认字体的按钮。现在我决定所有四个按钮都太小了。所以我想增加它们的字体大小。

面临的问题

我不想在所有四个语句中添加font=customwhere的东西。custom=tkFont.Font(family='Helvetica',size='18')

有没有办法为这些按钮所在的整个框架执行此操作?

代码

f = self.frame
custom = Font(family='Helvetica',size=15)

start = Button(f,text='START',command=self.startrunning)


start.pack(side="top")


stop =Button(f,text='STOP',command=self.stoprunning)
stop.pack(side="top")

lap = Button(f,text='LAP',command=self.endlap)
lap.pack(side='top')

reset = Button(f,text="RESET",command = self.reset)
reset.pack(side="top")

close = Button(f,text="QUIT",bg="black",fg = "red",command=self.quitwin)
close.pack(side="top")

帮助我实现目标的一些捷径。如果没有捷径也请告诉我!

4

1 回答 1

1
buttons = [stop, lap, reset, close]
my_font = tkFont.Font(family='Helvetica',size='18')
for button in buttons:
    button.config(font=my_font)
于 2013-03-21T09:49:04.597 回答