tkinter设置按钮大小
时间: 2023-09-13 10:10:33 浏览: 117
change the size of button
3星 · 编辑精心推荐
可以使用按钮组件(Button)的`width`和`height`属性来设置按钮的大小。例如,下面的代码创建一个宽为100,高为50的按钮:
```python
import tkinter as tk
root = tk.Tk()
button = tk.Button(root, text="Click me", width=100, height=50)
button.pack()
root.mainloop()
```
你可以根据需要调整按钮的宽度和高度。
阅读全文