如何在 StaticBox、wxPython 中添加小部件?
可以在 wxPython 中将东西添加到 StaticBox 中吗? 我知道这是一个相当简单的问题,但我似乎在谷歌上找不到任何东西。 我希望实际上能够将一些东西添加到 StaticBox 中,例如按钮。
it is possible to add things into a StaticBox, in wxPython?
I know this is a rather simple question however I cannot seem to find anything on Google.
I would like to actually be able to add things into the StaticBox, such as buttons.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看我的一个旧项目中的代码,看起来我使用了
StaticBoxSizer
,并将元素添加到了该大小调整器中。快速测试:
Looking at the code from one of my old projects, it looks like I used a
StaticBoxSizer
, and added the elements to this sizer.Quick test: