如何水平扩展wx.StaticBox?
我在扩展 StaticBox
时遇到问题。
这是我正在使用的代码:
self.images_area = wx.StaticBox(self, -1, '')
self.sizerBox = wx.BoxSizer(wx.HORIZONTAL)
self.sizerBox.Add(self.images_area, 0, wx.EXPAND|wx.ALL, 10)
self.SetSizer(self.sizerBox)
它似乎是垂直工作的,但它不会水平扩展(因为我在 BoxSizer 中使用了 wx.HORIZONTAL
,所以我认为相反)
I am having troubles expanding a StaticBox
.
Here is the code i am using:
self.images_area = wx.StaticBox(self, -1, '')
self.sizerBox = wx.BoxSizer(wx.HORIZONTAL)
self.sizerBox.Add(self.images_area, 0, wx.EXPAND|wx.ALL, 10)
self.SetSizer(self.sizerBox)
It appears to be working vertically however it does not expand horizontally (which I would have thought the opposite since I used wx.HORIZONTAL
in the BoxSizer)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
wxPyWiki(第 8 点)中您有一些关于 EXPAND 和比例参数如何工作以给出您的小部件的行为。
use
You have some indications in the wxPyWiki (point 8) of how EXPAND and the proportion parameters work to give the behavior of your widget.