tkinter按钮设置大小
时间: 2023-09-12 08:12:30 浏览: 158
change the size of button
3星 · 编辑精心推荐
好的,您可以使用Tkinter中Button组件的height和width选项来设置按钮的大小。例如,以下代码可以创建一个高为50像素,宽为100像素的按钮:
```
from tkinter import *
root = Tk()
button = Button(root, text="Click Me!", height=50, width=100)
button.pack()
root.mainloop()
```
希望对您有所帮助!
阅读全文