来自数据库的 Treectrl
我的 wxpython 应用程序中有一个 treectrl 。它是根据数据库构建的。它包含父项及其父项下的子项。我需要做的是获取一些与所选子父级相关的数据。但这有一个问题。子女父母可能有相同的名字,即使他们属于同一父母。所有项目的不同之处在于它们在数据库中的 ID。那么,我应该使用什么方法将 ids 放入 treectrl 而不显示它们。或者你能建议一些其他方法吗?
提前致谢。
I have a treectrl in my wxpython app. It is built from a database. It contains parent items and child items under their parent. What I need to do is grab some data related to the child parent which is selected. But there is a problem with this. Child parents may have the same name, even if they are under the same parent. What differs all items is their id in database. So, what method should I use to put the ids in treectrl without showing them. Or Can you suggest some other methods?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SetPyData 和 GetPyData 方法将任意数据关联到您的 treectrl 项。
You can use the SetPyData and GetPyData methods to associate arbitrary data to your treectrl items.