testDlg.h
上传用户:posgewe
上传日期:2022-07-05
资源大小:164k
文件大小:1k
源码类别:

系统编程

开发平台:

Visual C++

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