如何隐藏TListview中的列?
我正在使用列表视图来存储和显示数据。 如何在列表视图中隐藏和显示列? 请不要告诉我将列宽设置为 0!!!!
I am using a listview to store and show data.
How can i hide and show a column in listview?
Dont tell me to set the column width to 0 please!!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Delphi
TListView
中,您无法隐藏vsReport
视图样式中的列。您唯一的选择是在需要隐藏该列时删除该列,并在需要显示该列时重新创建它。这是为什么虚拟列表视图比非虚拟列表视图更受欢迎的另一个例子。使用虚拟列表视图,您可以插入新列,而无需迭代列表中的所有项目并重新填充其子项目。
In the Delphi
TListView
you can't hide columns invsReport
view style. Your only option is to delete the column when you need to hide it, and create it again when you need to show it.This is yet another example of why virtual list views are much more desirable than non-virtual list views. With a virtual list view you can insert new columns without having to iterate across all items in the list and re-populate their sub items.