EXAMPLEDLG.H
上传用户:wqdppr
上传日期:2022-05-08
资源大小:39k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // ExampleDlg.h : header file
  2. //
  3. #if !defined(AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_)
  4. #define AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CExampleDlg dialog
  10. #define ID_MYEDT 1820
  11. class CExampleDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CExampleDlg(CWnd* pParent = NULL); // standard constructor
  16.     //加上这个变量
  17.    CEdit m_MyEdit;
  18.  
  19. // Dialog Data
  20. //{{AFX_DATA(CExampleDlg)
  21. enum { IDD = IDD_EXAMPLE_DIALOG };
  22. // NOTE: the ClassWizard will add data members here
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CExampleDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. HICON m_hIcon;
  32. // Generated message map functions
  33. //{{AFX_MSG(CExampleDlg)
  34. virtual BOOL OnInitDialog();
  35. afx_msg void OnPaint();
  36. afx_msg HCURSOR OnQueryDragIcon();
  37. afx_msg void Onadd();
  38. afx_msg void OnExit();
  39. //}}AFX_MSG
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. //{{AFX_INSERT_LOCATION}}
  43. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  44. #endif // !defined(AFX_EXAMPLEDLG_H__A73CA07E_D84F_4CF9_B75D_53C93CB5FBB3__INCLUDED_)