EXAMPLEDLG.H
上传用户:wqdppr
上传日期:2022-05-08
资源大小:39k
文件大小:1k
- // ExampleDlg.h : header file
- //
- #if !defined(AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_)
- #define AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- /////////////////////////////////////////////////////////////////////////////
- // CExampleDlg dialog
- #define ID_MYEDT 1820
- class CExampleDlg : public CDialog
- {
- // Construction
- public:
- CExampleDlg(CWnd* pParent = NULL); // standard constructor
- //加上这个变量
- CEdit m_MyEdit;
-
- // Dialog Data
- //{{AFX_DATA(CExampleDlg)
- enum { IDD = IDD_EXAMPLE_DIALOG };
- // NOTE: the ClassWizard will add data members here
- //}}AFX_DATA
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CExampleDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- HICON m_hIcon;
- // Generated message map functions
- //{{AFX_MSG(CExampleDlg)
- virtual BOOL OnInitDialog();
- afx_msg void OnPaint();
- afx_msg HCURSOR OnQueryDragIcon();
- afx_msg void Onadd();
- afx_msg void OnExit();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_)