MainFrm.h
上传用户:do_tie
上传日期:2007-11-03
资源大小:1095k
文件大小:1k
源码类别:

GDI/图象编程

开发平台:

Visual C++

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