VirtualStringTree 隐藏节点
是否可以隐藏 VirtualStringTree 中的特定节点? 我正在实现“过滤”功能(VST 充当带有列的列表),并且我希望避免每次更改过滤器时重新加载内容 - 相反,更快的方法是告诉 VST 不要渲染特定项目。 ..有什么解决办法吗?
is that possible to hide specific nodes in VirtualStringTree?
I'm implementing "filtering" feature (the VST acts as a list with columns), and I'd like to avoid reloading content each time the filter is changed - instead, much faster would be to tell VST not to render specific items ... any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 .IsVisible[] 或 .IsFiltered[] 存在问题,而且速度非常慢,我在具有 25,000 个节点的树中探测过滤器,速度太慢。
我发现一种更快的方法可以解决使用 Include(Node.states,vsFiltered) 或 (Node.States,vsVisible) 时滚动条大小的问题,它包括根据以下内容手动更改 Node.TotalHeight 值可见节点的数量(未过滤)。
例如,我正在过滤 25,000 个节点,我使用的代码如下:
希望这有帮助
抱歉英语不好...
There are problem using .IsVisible[] or .IsFiltered[] and it is that is very slow, i've probe filter in a tree with amoung of 25,000 nodes and is too slow.
I've found one aproach that is faster and solves the problem with scrollbar size when using Include(Node.states,vsFiltered) or (Node.States,vsVisible) is used, it consists on change manually the Node.TotalHeight value acording with the number of visible nodes (not Filtered).
For example i'm filtering 25,000 nodes and the code i was using is the follow :
Hope this helps
Sorry bad english...