MainFrm.h
上传用户:chinasdcnc
上传日期:2022-07-02
资源大小:2702k
文件大小:1k
源码类别:

分形几何

开发平台:

Visual C++

  1. // MainFrm.h : CMainFrame 类的接口
  2. //
  3. #pragma once
  4. class CMainFrame : public CFrameWnd
  5. {
  6. protected: // 仅从序列化创建
  7. CMainFrame();
  8. DECLARE_DYNCREATE(CMainFrame)
  9. // 属性
  10. public:
  11. // 操作
  12. public:
  13. // 重写
  14. public:
  15. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  16. // 实现
  17. public:
  18. virtual ~CMainFrame();
  19. #ifdef _DEBUG
  20. virtual void AssertValid() const;
  21. virtual void Dump(CDumpContext& dc) const;
  22. #endif
  23. protected:  // 控件条嵌入成员
  24. CStatusBar  m_wndStatusBar;
  25. CToolBar    m_wndToolBar;
  26. // 生成的消息映射函数
  27. protected:
  28. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  29. DECLARE_MESSAGE_MAP()
  30. };