MySheet.h
上传用户:sjtdsyy
上传日期:2020-03-26
资源大小:76k
文件大小:1k
源码类别:

PropertySheet

开发平台:

Visual C++

  1. #if !defined(AFX_MYSHEET_H__EB7DFC56_D06D_49F3_B809_965B0BEA82FC__INCLUDED_)
  2. #define AFX_MYSHEET_H__EB7DFC56_D06D_49F3_B809_965B0BEA82FC__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MySheet.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CMySheet
  10. class CMySheet : public CPropertySheet
  11. {
  12. DECLARE_DYNAMIC(CMySheet)
  13. // Construction
  14. public:
  15. CMySheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  16. CMySheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  17. // Attributes
  18. public:
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMySheet)
  24. public:
  25. virtual BOOL OnInitDialog();
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. CButton m_button;
  30. virtual ~CMySheet();
  31. // Generated message map functions
  32. protected:
  33. //{{AFX_MSG(CMySheet)
  34. //}}AFX_MSG
  35. DECLARE_MESSAGE_MAP()
  36. };
  37. /////////////////////////////////////////////////////////////////////////////
  38. //{{AFX_INSERT_LOCATION}}
  39. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  40. #endif // !defined(AFX_MYSHEET_H__EB7DFC56_D06D_49F3_B809_965B0BEA82FC__INCLUDED_)