How to sort Item in CListCtrl in MFC?(如何在 MFC 中对 CListCtrl 中的项目进行排序?)
问题描述
我在 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.
这篇关于如何在 MFC 中对 CListCtrl 中的项目进行排序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 MFC 中对 CListCtrl 中的项目进行排序?
基础教程推荐
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- CString 到 char* 2021-01-01
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
