动态调整大小并向 Tkinter 窗口添加小部件
我有一个 Python Tkinter GUI,它向用户请求文件名。我想在选择每个文件时在窗口的其他位置添加一个 Entry() 框 - 是否可以在 Tkinter 中执行此操作?
谢谢
标记
I have a Python Tkinter GUI which solicits file names from the user. I would like to add an Entry() box elsewhere in the window when each file is selected -- is it possible to do this in Tkinter?
Thanks
Mark
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。您可以像添加任何其他小部件一样进行操作 - 调用
Entry(...)
,然后使用其grid
、pack
或place
方法让它在视觉上显示出来。这是一个人为的例子:
Yes, it is possible. You do it like you add any other widget -- call
Entry(...)
and then use itsgrid
,pack
orplace
method to have it show up visually.Here's a contrived example: