dop.h

来自「企业合同管理系统:以企业合同为主线」· C头文件 代码 · 共 69 行

H
69
字号
#if !defined(AFX_DOP_H__0DEB8C09_45A7_448C_8570_7B9CA8D39CF1__INCLUDED_)
#define AFX_DOP_H__0DEB8C09_45A7_448C_8570_7B9CA8D39CF1__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DOp.h : header file
//
#include "BaseEdit.h"
/////////////////////////////////////////////////////////////////////////////
// CDOp dialog

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

// Dialog Data
	//{{AFX_DATA(CDOp)
	enum { IDD = IDD_DIA_OP };
	CBaseEdit	m_EdtSpwd;
	CBaseEdit	m_EdtPwd;
	CBaseEdit	m_EdtName;
	CBaseEdit	m_EdtID;
	CButton	m_ButUndo;
	CButton	m_ButSave;
	CButton	m_ButExit;
	CButton	m_ButDele;
	CButton	m_ButChange;
	CButton	m_ButAdd;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CDOp)
	virtual void OnOK();
	virtual BOOL OnInitDialog();
	afx_msg void OnButadd();
	afx_msg void OnButchange1();
	afx_msg void OnButdele();
	afx_msg void OnButsave();
	afx_msg void OnButundo();
	afx_msg void OnButexit();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	int AddOrChange;
	CString m_sID;
	void Enabled(bool bEnabled);
	void Display(CString sID);
	void Clear();
};

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

#endif // !defined(AFX_DOP_H__0DEB8C09_45A7_448C_8570_7B9CA8D39CF1__INCLUDED_)

⌨️ 快捷键说明

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