如何在同一个 wxpython 程序中使用多个 XRC 文件?
我正在尝试使用多个 XRC 文件制作一个 wxpython 程序。我想将不同 XRC 文件中的多个面板加载到同一框架中。我想将面板保留在单独的 XRC 文件中,因为它们每个都将是更大程序的插件。
描述如何将多个 XRC 文件加载到同一帧中的示例非常棒。
I am trying to make a wxpython program using multiple XRC files. I would like to load several panels from different XRC files into the same frame. I would like to keep the panels in separate XRC files because each of them will be a plugin for a much larger program.
An example describing how to load many XRC files into the same frame would be awesome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道这个问题很老了,但为了完成。我会像这样在框架内初始化 XRC 的不同面板:
还有一些很好的教程(例如 http:// wiki.wxpython.org/XRCTutorial 或 http://wiki.wxpython.org/UsingXmlResources)可用作指南。此外 xrc.XmlResource 文档 对于查找可用方法很有用。
希望这仍然有用。享受。
I know this question is very old but for completion's sake. I would initialise different panels from XRC inside a frame like so:
There are also some good tutorial for that (e.g. http://wiki.wxpython.org/XRCTutorial or http://wiki.wxpython.org/UsingXmlResources) that can be used as guidelines. Also the xrc.XmlResource documentation is useful to find the available methods.
Hopefully this is still useful. Enjoy.