在Python中,如何获得所需大小的按钮?

时间:2013-12-11 02:51:35

标签: python button fonts

如何让按钮达到所需尺寸?

增加字体大小不起作用。

bou1_1 = Button(fen,text="\u2656",font=("Arial",24), width =9, height =4)  
bou1_1.grid(row =1, column =1)

以下是我得到的图像:

enter image description here

由于

1 个答案:

答案 0 :(得分:0)

您想要更改widthheight参数:

bou1_1 = Button(fen,text="\u2656",font=("Arial",24), width = 18, height = 8)
# 18 and 8 are just examples, set them to whatever you want
bou1_1.grid(row =1, column =1)

这将使整个按钮变大,不包括文本本身。如果只想增加文本大小,请增加字体大小。