我才开始学习如何构建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()
答案 0 :(得分:1)
可以使用height
和width
选项完成:
# I just picked 50 and 500 to demonstrate
# You can tweak it to your needs
msg = Text(app, height=50, width=500)