Tk/ttk python 中的帧大小调整问题

发布于 2024-09-28 11:24:25 字数 538 浏览 6 评论 0原文

我正在 Python 2.7 中使用 Tkinter/ttk 创建一个 GUI,并且遇到一个问题,一旦将小部件放置在框架中,框架就会自行调整大小。我是 Python 新手,之前没有使用过 Tkinter。

示例:

ROOT = Tk()
FRAME = ttk.Frame(ROOT, width=300, height=300, relief='groove')
FRAME.grid()
ROOT.mainloop()

将生成一个 300x300 的凹槽框架,如果我像这样在其中放置一个小部件:

ROOT = Tk()
FRAME = ttk.Frame(ROOT, width=300, height=300, relief='groove')
BUTTON = ttk.Button(FRAME, text="DON'T READ THIS TEXT")
FRAME.grid()
BUTTON.grid()
ROOT.mainloop()  

框架将缩小以适合按钮。有什么办法可以强制框架不调整大小?

I'm creating a GUI using Tkinter/ttk in Python 2.7, and I'm having an issue where a Frame will resize itself once a widget is placed inside of it. I am new to Python and haven't used Tkinter before.

example:

ROOT = Tk()
FRAME = ttk.Frame(ROOT, width=300, height=300, relief='groove')
FRAME.grid()
ROOT.mainloop()

will produce a grooved frame 300x300, if i place a widget inside it like so:

ROOT = Tk()
FRAME = ttk.Frame(ROOT, width=300, height=300, relief='groove')
BUTTON = ttk.Button(FRAME, text="DON'T READ THIS TEXT")
FRAME.grid()
BUTTON.grid()
ROOT.mainloop()  

the frame will shrink down to fit the button. Any way to force the frame not to resize?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

云胡 2024-10-05 11:24:25

要强制框架保持其原始尺寸,请关闭“几何传播”。在您的情况下,您将调用FRAME.grid_propagate(False)

作为拥有超过 15 年 Tk 经验的人,我是否可以建议您几乎肯定不需要此功能。 Tk 的“缩小以适应”的能力确实很棒,并且使得创建具有适当调整大小行为的 GUI 变得非常容易。一旦你开始关闭几何传播,你会发现你的 GUI 要么具有糟糕的调整大小行为,要么你将花费大量时间调整大小和小部件位置。

To force the frame to keep its original dimensions turn "geometry propagation" off. In your case you would call FRAME.grid_propagate(False).

Speaking as someone with over 15 years of Tk experience, might I suggest that you almost certainly don't need this feature. Tk's ability to "shrink to fit" is really great, and makes it really easy to create GUIs with proper resize behavior. Once you start turning geometry propagation off you'll find you'll either have GUIs with bad resize behavior, or you'll spend a lot of time tweaking sizes and widget placement.

倥絔 2024-10-05 11:24:25

如果您想添加填充,请使用 widg.grid(ipadx=..., ipady=..., padx=..., pady=...)

否则,您将需要添加更多关于您想要实现的布局的上下文

if you want to add padding, then use widg.grid(ipadx=..., ipady=..., padx=..., pady=...)

otherwise, you will need to add more context on what layout you're trying to achieve

无声静候 2024-10-05 11:24:25

这对我有用:

app = Application()
app.master.title('Example')
app.master.geometry('640x480')
app.mainloop()

在我的情况下,应用程序是带有网格布局的框架。它会根据主窗口的大小调整大小,因此我们需要更改主窗口的大小。

This works for me:

app = Application()
app.master.title('Example')
app.master.geometry('640x480')
app.mainloop()

Apllication is Frame in my case with grid layout. It resizes to size of master window, so we need to change size of master window.

何时共饮酒 2024-10-05 11:24:25

这应该可以完成这项工作:ROOT.geometry("640x480")

This should do the job: ROOT.geometry("640x480")

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文