wxpython,隐藏和显示对象及其定义的标志

发布于 2024-10-26 09:46:52 字数 292 浏览 5 评论 0原文

如果我将一个项目添加到 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 技术交流群。

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

发布评论

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

评论(1

孤星 2024-11-02 09:46:52

不要使用控件的显示/隐藏功能,而是尝试使用 BoxSizer 的显示/隐藏功能。

.
.
sizer.Add(self.listb, 1, wx.ALL|wx.EXPAND, 5)  # -> works great
sizer.Show(self.listb, False)
sizer.Show(self.listb, True)
.
.

如果仍然无法解决您的问题,您还可以尝试在末尾添加 sizer.Layout() 并刷新尺寸。

(如果使用 self.listb 作为第一个参数失败,请尝试在 BoxSizer 中传递项目的索引号,不太记得哪个是正确的;)

Instead of using the controls Show/Hide functions, try using the BoxSizer's Show/Hide functions.

.
.
sizer.Add(self.listb, 1, wx.ALL|wx.EXPAND, 5)  # -> works great
sizer.Show(self.listb, False)
sizer.Show(self.listb, True)
.
.

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 ;)

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