如何以编程方式取消突出显示 MFC CListCtrl 中先前选定的行 (VS 6)?
有谁知道如何以编程方式取消突出显示 MFC CListCtrl 中先前选定的行?
Does anyone know how to un-highlight a previously selected line in an MFC CListCtrl programmatically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要取消选择第 20 项:
To de-select the 20th item:
好吧,如果列表视图是报告样式(即多列),则它不起作用。你有什么解决办法吗?
可以将 List 属性设置为:
当用户单击该行时,它始终选择该行,但如果程序员删除列表视图中的一行,则下一行将替换所选行,并且该行不会突出显示。
Well, it doesn't work if the the List view is Report style ie multiple columns. Do you have any solution for that?
One can set the List property as:
which always selects the particular line when user clicks on that line, but if programmer deletes a line in the list view, the next row replaces the selected one and the row is un-highlighted.