mousedlg.h

来自「一个用MFC开发的简单的通讯录」· C头文件 代码 · 共 71 行

H
71
字号
// MouseDlg.h : header file
//
#include"New__Class.h"
#if !defined(AFX_MOUSEDLG_H__449006A9_93B6_4576_8504_A6B0EFA29749__INCLUDED_)
#define AFX_MOUSEDLG_H__449006A9_93B6_4576_8504_A6B0EFA29749__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CMouseDlg dialog

class CMouseDlg : public CDialog
{
// Construction
public:
	CMouseDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CMouseDlg)
	enum { IDD = IDD_MOUSE_DIALOG };
	CListCtrl	m_ListCtrl;
	CString	m_NAME;
	long	m_QQ;
	long    size;
	long    item__len;
	CString	m_RELATH;
	CString	m_TELPH;
	vector<person> PersoN;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMouseDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;
    void Save();
	void Load();
	bool Add_person();
	int Getnum(char *Name);
	bool Del_person();
	bool Find_person();
	bool Change_person();
    bool Brush();
	void Add_Item();
	// Generated message map functions
	//{{AFX_MSG(CMouseDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnAdd();
	afx_msg void OnDel();
	afx_msg void OnChange();
	afx_msg void OnFind();
	afx_msg void OnClear();
	afx_msg void OnShow();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MOUSEDLG_H__449006A9_93B6_4576_8504_A6B0EFA29749__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?