资源简介
CListCtrl设置不同行不同颜色,指定单元行和字体颜色,字体大小,行高行宽
代码片段和文件信息
// DemoList.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “DemoList.h“
#include “DemoListDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDemoListApp
BEGIN_MESSAGE_MAP(CDemoListApp CWinApp)
//{{AFX_MSG_MAP(CDemoListApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDemoListApp construction
CDemoListApp::CDemoListApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDemoListApp object
CDemoListApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDemoListApp initialization
BOOL CDemoListApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CDemoListDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1143 2009-01-16 10:23 VC6.0版本示例\DemoList\DemoList.clw
文件 2091 2009-01-16 10:22 VC6.0版本示例\DemoList\DemoList.cpp
文件 4463 2009-01-16 12:56 VC6.0版本示例\DemoList\DemoList.dsp
文件 541 2009-01-16 10:22 VC6.0版本示例\DemoList\DemoList.dsw
文件 1346 2009-01-16 10:22 VC6.0版本示例\DemoList\DemoList.h
文件 5338 2009-01-16 10:23 VC6.0版本示例\DemoList\DemoList.rc
文件 6004 2009-01-16 10:29 VC6.0版本示例\DemoList\DemoListDlg.cpp
文件 1360 2009-01-16 10:27 VC6.0版本示例\DemoList\DemoListDlg.h
文件 3249 2009-01-16 15:09 VC6.0版本示例\DemoList\HeaderCtrlCl.cpp
文件 623 2009-01-15 22:06 VC6.0版本示例\DemoList\HeaderCtrlCl.h
文件 8140 2009-01-16 09:59 VC6.0版本示例\DemoList\ListCtrlCl.cpp
文件 1880 2009-01-16 09:53 VC6.0版本示例\DemoList\ListCtrlCl.h
文件 3615 2009-01-16 10:22 VC6.0版本示例\DemoList\ReadMe.txt
文件 1078 2009-01-16 10:22 VC6.0版本示例\DemoList\res\DemoList.ico
文件 400 2009-01-16 10:22 VC6.0版本示例\DemoList\res\DemoList.rc2
文件 686 2009-01-16 10:23 VC6.0版本示例\DemoList\Resource.h
文件 210 2009-01-16 10:22 VC6.0版本示例\DemoList\StdAfx.cpp
文件 1054 2009-01-16 10:22 VC6.0版本示例\DemoList\StdAfx.h
目录 0 2009-02-06 16:16 VC6.0版本示例\DemoList\res
目录 0 2009-02-06 16:16 VC6.0版本示例\DemoList
目录 0 2009-02-06 16:16 VC6.0版本示例
----------- --------- ---------- ----- ----
43221 21
相关资源
- 专业程序员必备 VS2005 程序字体颜色设
- vs2008皮肤 vs2008主题 vs2008字体颜色黑红
- CListCtrl重绘 Redraw 源码
- CListCtrl控件实现Item项拖拽效果
- keil uVision5纯黑背景 keil字体颜色配置
- CListCtrl 使用演示的
- CListCtrl自绘CheckBox
- CListCtrlEx扩展列表控件
- CListCtrl的使用
- CListCtrl重绘,内嵌按钮等控件
- ClistCtrl中集成treeCtrl
- delphi treeview 加载时 改变字体颜色
- Idea的Eclipse风格字体颜色
- 功能强大的ClistCtrl类 更改单元格的颜
- eclipse豆沙绿背景颜色及字体颜色配置
- source insight字体颜色突显函数名等的配
- Delphi Xe2应用皮肤后Label字体颜色无法
- 可编辑CListCtrl封装处理,含主程序
- 为CListCtrl上的每一项添加CCheckBox并响
- MFC 重绘CListCtrl、CTreeCtrl的滚动条
- CListCtrl继承类,修改行高
- CListCtrl 改变选中行的颜色
- VC改变对话框按钮字体颜色和背景的解
- txt文本阅读器 实现字体颜色改变和文
评论
共有 条评论