Python Tkinter文本大小

时间:2013-10-14 18:21:33

标签: python tkinter

我才开始学习如何构建GUI。有没有办法设置文本框的大小? 我尝试使用.geometry,但这是错误的:

   
from Tkinter import *

root = Tk()
root.title("boop")
root.geometry("500x700")

app = Frame(root)
app.grid()

msg = Text(app)
# msg.geometry("500x50") - this is what i tried, and was wrong.
msg.grid()

root.mainloop()

1 个答案:

答案 0 :(得分:1)

可以使用heightwidth选项完成:

# I just picked 50 and 500 to demonstrate
# You can tweak it to your needs
msg = Text(app, height=50, width=500)