如何让按钮达到所需尺寸?
增加字体大小不起作用。
bou1_1 = Button(fen,text="\u2656",font=("Arial",24), width =9, height =4)
bou1_1.grid(row =1, column =1)
以下是我得到的图像:
由于
答案 0 :(得分:0)
您想要更改width
和height
参数:
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)
这将使整个按钮变大,不包括文本本身。如果只想增加文本大小,请增加字体大小。