在 wxPython 中改变对象的高度

发布于 2024-08-01 20:10:13 字数 119 浏览 3 评论 0原文

  1. 如何在 wxPython 中仅更改对象的高度,而自动保留其宽度? 在我的例子中,它是一个 TextCtrl。

  2. 如何使窗口的高度可改变并锁定宽度?

  1. How to change only hight of an object in wxPython, leaving its width automatic? In my case it's a TextCtrl.

  2. How to make the height of the window available for change and lock the width?

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

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

发布评论

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

评论(1

要根据上下文自动确定宽度或高度,您可以使用 -1 值,例如 (-1, 100) 表示高度为 100 和自动宽度。

控件的默认大小通常为(-1, -1)

如果指定了宽度或高度,并且控件的 sizer 项没有设置 wx.EXPAND 标志(请注意,即使设置了此标志,某些 sizer 默认情况下也不会在两个方向上扩展)您可以将其称为“锁定”,因为它不会改变该维度。

确保深入研究 sizer 的工作原理,因为它是 GUI 设计中最重要的事情之一。

For the width or height to be automatically determined based on context you use for it the value of -1, for example (-1, 100) for a height of 100 and automatic width.

The default size for controls is usually (-1, -1).

If a width or height is specified and the sizer item for the control doesn't have wx.EXPAND flag set (note that even if this flag is set some sizers won't expand in both directions by default) you might call it "locked" as it won't chage that dimension.

Make sure to study the workings of sizers in depth as it is one of the most important things in GUI design.

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