如何在 MFC 中对 CListCtrl 中的项目进行排序?

2022-01-12 00:00:00 visual-c++ c++ mfc

我在 MFC 中创建了一个基于对话框的应用程序.我将 CListCtrl 控件放在我的 Dialog 上,并将其视图样式设置为报告类型.我在此列表视图中有五列.所有列都是字符串类型.我想在这个列表中实现排序,也就是说,当我点击一个列时,它应该对列表中的项目进行排序.我看到了很多与此相关的例子.但没有一个对我有用.有人可以指导我如何做到这一点???

I made a Dialog based application in MFC. I put CListCtrl control on my Dialog and set its view style to report type. I have five columns in this list view. All columns are of String type. I want to implement the sorting in this list, That is when I click on a column it should sort item in the list. I saw many examples related to this. but none is working for me. Can some one guide me how to do that???

谢谢

推荐答案

由于是MFC,this 示例和 this 示例应该工作.

Since it is MFC, this sample and this sample should work.

相关文章