wxpython,隐藏和显示对象及其定义的标志
如果我将一个项目添加到 sizer 中,并带有一些标志;效果很好。但是如果我隐藏它然后再次显示它,它会显示但不使用标志!为什么?我该如何修复它?
例如:
sizer.Add(self.listb, 1, wx.ALL|wx.EXPAND, 5) # -> works great
.
.
self.listb.Hide()
self.listb.Show() # --> brings back the item without the flag
.
.
非常感谢!
If I add an item to a sizer, with a few flags; it works great. But if I hide it and then show it back again, it shows up but without using the flags!!! Why? How can I fix it?
ex:
sizer.Add(self.listb, 1, wx.ALL|wx.EXPAND, 5) # -> works great
.
.
self.listb.Hide()
self.listb.Show() # --> brings back the item without the flag
.
.
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要使用控件的显示/隐藏功能,而是尝试使用 BoxSizer 的显示/隐藏功能。
如果仍然无法解决您的问题,您还可以尝试在末尾添加 sizer.Layout() 并刷新尺寸。
(如果使用 self.listb 作为第一个参数失败,请尝试在 BoxSizer 中传递项目的索引号,不太记得哪个是正确的;)
Instead of using the controls Show/Hide functions, try using the BoxSizer's Show/Hide functions.
You could also try adding sizer.Layout() to the end if it still does not solve your problem and refresh the dimensions.
(If using self.listb as the first arg fails, try passing the index number of your item within the BoxSizer, can't quite remember which one is correct ;)