VB.NET 在虚拟模式下使用 ListViewGroup
是否可以在虚拟模式下的 ListView 中使用组?
Is it possible to use groups in a ListView which is in VirtualMode?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以在虚拟模式下的 ListView 中使用组?
Is it possible to use groups in a ListView which is in VirtualMode?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
标准 .NET ListView 不能。
底层 Windows 控件有一个未记录的接口,允许 ListView 以虚拟模式显示组(在 Vista 及更高版本上)
ObjectListView - - .NET ListView 的开源包装器 - 使用未记录的接口进行艰苦的工作,以便其虚拟列表可以显示组。 请参阅此处了解说明。
A standard .NET ListView cannot.
The underlying Windows control has an undocumented interface which allows ListViews to show groups in virtual mode (on Vista and later)
ObjectListView -- an open source wrapper around a .NET ListView -- does the hard work of using that undocumented interface so its virtual lists can show groups. See here for a description.