MainFrm.h
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:2k
源码类别:

组合框控件

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__254A5070_4335_417A_8E70_8DDBCAA26EE3__INCLUDED_)
  5. #define AFX_MAINFRM_H__254A5070_4335_417A_8E70_8DDBCAA26EE3__INCLUDED_
  6. #include "InputBar.h" // Added by ClassView
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. class CMainFrame : public CMDIFrameWnd
  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. CInputBar m_wndInputBar;
  27. BOOL CreateInputBar();
  28. virtual ~CMainFrame();
  29. #ifdef _DEBUG
  30. virtual void AssertValid() const;
  31. virtual void Dump(CDumpContext& dc) const;
  32. #endif
  33. protected:  // control bar embedded members
  34. CStatusBar  m_wndStatusBar;
  35. CToolBar    m_wndToolBar;
  36. // Generated message map functions
  37. protected:
  38. //{{AFX_MSG(CMainFrame)
  39. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  40. // NOTE - the ClassWizard will add and remove member functions here.
  41. //    DO NOT EDIT what you see in these blocks of generated code!
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_MAINFRM_H__254A5070_4335_417A_8E70_8DDBCAA26EE3__INCLUDED_)