在 wxPython 中改变对象的高度
如何在 wxPython 中仅更改对象的高度,而自动保留其宽度? 在我的例子中,它是一个 TextCtrl。
如何使窗口的高度可改变并锁定宽度?
How to change only hight of an object in wxPython, leaving its width automatic? In my case it's a TextCtrl.
How to make the height of the window available for change and lock the width?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 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.