mylistctrl.h
来自「使用vc开发的个人信息管理系统」· C头文件 代码 · 共 61 行
H
61 行
#if !defined(AFX_MYLISTCTRL_H__3CF20962_B72C_4129_BB7E_3823F36D35A4__INCLUDED_)
#define AFX_MYLISTCTRL_H__3CF20962_B72C_4129_BB7E_3823F36D35A4__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MyListCtrl.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// MyListCtrl window
//extern CDotNETApp theApp;
#include "MyFolder.h"
#include <vector>
using namespace std;
class MyListCtrl : public CListCtrl
{
// Construction
public:
MyListCtrl();
// Attributes
public:
vector<CMyFolder> SelectNode;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(MyListCtrl)
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~MyListCtrl();
// Generated message map functions
protected:
//{{AFX_MSG(MyListCtrl)
afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
afx_msg void OnLButtonDblClk(UINT nFlags, CPoint point);
afx_msg void OnShowFiles();
afx_msg void OnAddannexlist();
afx_msg void OnUpdateAddannexlist(CCmdUI* pCmdUI);
afx_msg void OnShowannexlist();
afx_msg void OnUpdateShowannexlist(CCmdUI* pCmdUI);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
void InListShowFiles();
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MYLISTCTRL_H__3CF20962_B72C_4129_BB7E_3823F36D35A4__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?