MainFrm.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__9EC26D72_D178_4608_98FF_764EC2666631__INCLUDED_)
  5. #define AFX_MAINFRM_H__9EC26D72_D178_4608_98FF_764EC2666631__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "GuiMDIFrame.h"
  10. class CMainFrame : public CGuiMDIFrame
  11. {
  12. DECLARE_DYNAMIC(CMainFrame)
  13. public:
  14. CMainFrame();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CMainFrame)
  22. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. virtual ~CMainFrame();
  27. #ifdef _DEBUG
  28. virtual void AssertValid() const;
  29. virtual void Dump(CDumpContext& dc) const;
  30. #endif
  31. protected:  // control bar embedded members
  32. // Generated message map functions
  33. protected:
  34. //{{AFX_MSG(CMainFrame)
  35. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  36. afx_msg void OnTimer(UINT nIDEvent);
  37. //}}AFX_MSG
  38. DECLARE_MESSAGE_MAP()
  39. };
  40. /////////////////////////////////////////////////////////////////////////////
  41. //{{AFX_INSERT_LOCATION}}
  42. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  43. #endif // !defined(AFX_MAINFRM_H__9EC26D72_D178_4608_98FF_764EC2666631__INCLUDED_)