如何隐藏TListview中的列?

发布于 2024-11-15 13:33:58 字数 60 浏览 2 评论 0原文

我正在使用列表视图来存储和显示数据。 如何在列表视图中隐藏和显示列? 请不要告诉我将列宽设置为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

樱花细雨 2024-11-22 13:33:58

在 Delphi TListView 中,您无法隐藏 vsReport 视图样式中的列。您唯一的选择是在需要隐藏该列时删除该列,并在需要显示该列时重新创建它。

这是为什么虚拟列表视图比非虚拟列表视图更受欢迎的另一个例子。使用虚拟列表视图,您可以插入新列,而无需迭代列表中的所有项目并重新填充其子项目。

In the Delphi TListView you can't hide columns in vsReport 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文