maintainbasedlg.h

来自「一个简单的客户关系管理系统 用VisualC++写的 感pudn 对我的帮助 」· C头文件 代码 · 共 63 行

H
63
字号
#if !defined(AFX_MAINTAINBASEDLG_H__4C7A2B13_0D91_49A1_A216_7AEE121CD51B__INCLUDED_)
#define AFX_MAINTAINBASEDLG_H__4C7A2B13_0D91_49A1_A216_7AEE121CD51B__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// MaintainBaseDlg.h : header file
//
#include "LinkButton.h"
#include "MaintainSet.h"
/////////////////////////////////////////////////////////////////////////////
// CMaintainBaseDlg dialog

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

// Dialog Data
	//{{AFX_DATA(CMaintainBaseDlg)
	enum { IDD = IDD_MAINTAIN_BASE };
	CLinkButton	m_searchButton;
	CListCtrl	m_maintainList;
	CLinkButton	m_editButton;
	CLinkButton	m_displayButton;
	CLinkButton	m_deleteButton;
	CLinkButton	m_addButton;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CMaintainBaseDlg)
	afx_msg void OnDisplay();
	afx_msg void OnSearch();
	afx_msg void OnDelete();
	afx_msg void OnEdit();
	afx_msg void OnAdd();
	virtual BOOL OnInitDialog();
	virtual void OnOK();
	virtual void OnCancel();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	int m_nIndex;
	CMaintainSet m_maintainSet;
};

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

#endif // !defined(AFX_MAINTAINBASEDLG_H__4C7A2B13_0D91_49A1_A216_7AEE121CD51B__INCLUDED_)

⌨️ 快捷键说明

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