printlist.h
来自「偶作的毕业设计程序」· C头文件 代码 · 共 29 行
H
29 行
// PrintList.h: interface for the PrintList class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_PRINTLIST_H__E9131F6D_099D_4E10_A1F2_6B44D9236D5C__INCLUDED_)
#define AFX_PRINTLIST_H__E9131F6D_099D_4E10_A1F2_6B44D9236D5C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class PrintList
{
public:
bool PrintListCtrl(CListCtrl &list);
PrintList();
virtual ~PrintList();
protected:
typedef struct tagColAtt//存储各列信息
{
int nColIndex;
CString strColText;
int nPrintX;
int nSubItemIndex;
}COLATT;
};
#endif // !defined(AFX_PRINTLIST_H__E9131F6D_099D_4E10_A1F2_6B44D9236D5C__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?