itemedit.h
来自「用Visual c++.net开发的图书管理系统」· C头文件 代码 · 共 27 行
H
27 行
#pragma once
// CItemEdit
class CItemEdit : public CEdit
{
DECLARE_DYNAMIC(CItemEdit)
public:
CItemEdit();
CItemEdit(CListCtrl *pList, int nItem, int nSubItem);
void SetListCtrl(CListCtrl *pList, int nItem, int nSubItem);
virtual BOOL Create();
virtual ~CItemEdit();
protected:
int m_nItem;
int m_nSubItem;
CFont m_font;
CListCtrl *m_pList;
DECLARE_MESSAGE_MAP()
afx_msg void OnKillFocus(CWnd* pNewWnd);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?