0

我才开始学习如何构建 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()
4

1 回答 1

1

这可以通过使用heightandwidth选项来完成:

# I just picked 50 and 500 to demonstrate
# You can tweak it to your needs
msg = Text(app, height=50, width=500)
于 2013-10-14T20:28:21.503 回答