使用 wx.MDIChildFrame 小部件
我想使用 wxpython 将一堆小部件放入 MDIChildFrame 中,但我找不到太多关于如何执行此操作的文档。有没有人创建了一个包含很多内容的子框架,以便我可以查看源代码?真的很有帮助
干杯 凯米尔
I want to put a bunch of widgets into an MDIChildFrame , using wxpython, but i cant find much documentation on how to do so. has anyone created a child frame with alot going on it in so i can take a look at the source code? would be really Helpful
Cheers
Kemill
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wxPython 演示在其 MDI 和 SashWindows 演示中有一个相当复杂的窗口。然而,我一直在 wxPython 邮件列表上看到,无论如何,通常不建议使用 MDI。如果我是你,我会查看 wx.lib.agw.aui。它是 AUI 的纯 python 实现,修复了 wx.aui 中的许多错误。我知道它不完全相同,但至少它得到了积极的开发。
The wxPython demo has a fairly complicated window in their MDI with SashWindows demo. However, I keep seeing on the wxPython mailing list that MDI in general isn't usually recommended anyway. If I were you, I'd look at wx.lib.agw.aui. It's a pure python implementation of AUI and fixes a lot of the bugs in wx.aui. I know it's not quite the same, but at least it gets active development.