wxwidgets 中具有搜索功能的小部件
我想知道 wxwidgets 中是否有任何不错的具有搜索功能的小部件。我的意思是在大型表中搜索数据,例如 wxgrid 中的数据。
提前致谢
I was wondering if there were any nice widgets in wxwidgets, with search ability. I mean searching for data in large tables like, data in wxgrid.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将所有大型数据集存储在 wxGrid 中,然后通过 wxGrid 进行搜索,这在很多方面都是缓慢且低效的。
最好将数据集保存在数据库中并使用数据库引擎对其进行搜索。 wxGrid只需要存储GUI中可见的数据。
这是一些高级伪代码,说明了其工作原理。
It would be slow and inefficient in several ways to store all of a large dataset in wxGrid, and then to search through wxGrid.
It would be better to keep the dataset in a database and use the database engine to search through it. wxGrid need only store the data that is visible in the GUI.
Here is some high level pseudo code of how this works.