ChildFrm.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:2k
源码类别:

界面编程

开发平台:

Visual C++

  1. // ChildFrm.h : interface of the CChildFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_)
  5. #define AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CChildFrame : public CExtNCW < CMDIChildWnd >
  10. {
  11. HICON m_hChildFrameIcon;
  12. DECLARE_DYNCREATE(CChildFrame)
  13. public:
  14. CChildFrame();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CChildFrame)
  22. public:
  23. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  24. virtual BOOL PreTranslateMessage(MSG* pMsg);
  25. virtual void ActivateFrame(int nCmdShow = -1);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. // view for the client area of the frame.
  30. virtual ~CChildFrame();
  31. #ifdef _DEBUG
  32. virtual void AssertValid() const;
  33. virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CChildFrame)
  38. afx_msg void OnFileClose();
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  41. afx_msg void OnPaint();
  42. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. /////////////////////////////////////////////////////////////////////////////
  47. //{{AFX_INSERT_LOCATION}}
  48. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  49. #endif // !defined(AFX_CHILDFRM_H__24FC4FC8_9EB2_47D0_8A72_FBE881021D1D__INCLUDED_)