MyGridFrame.h
上传用户:wenjimin
上传日期:2014-08-12
资源大小:111k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #if !defined(AFX_MYGRIDFRAME_H__79CFDE47_6DD5_407E_9250_13E0C43233CF__INCLUDED_)
  2. #define AFX_MYGRIDFRAME_H__79CFDE47_6DD5_407E_9250_13E0C43233CF__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyGridFrame.h : header file
  7. //
  8. #include "GridCtrl.h"
  9. #include "Ftab.h"
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMyGridFrame window
  12. class CMyGridFrame : public CWnd
  13. {
  14. // Construction
  15. public:
  16. CMyGridFrame();
  17. // Attributes
  18. public:
  19. CScrollBar* GetScrollBar(int nBar) const;
  20. // Operations
  21. public:
  22. CGridCtrl m_grid;
  23. CFolderTabCtrl m_tab;
  24. CScrollBar m_wndSBHorz;  // horizontal scroll bar..
  25. CScrollBar m_wndSBVert;  // ... vertical
  26. CScrollBar m_wndSBBox;  // ... and box
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CMyGridFrame)
  30. protected:
  31. virtual BOOL OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. void OnStringChange();
  36. CString m_szLabel;//股票代码
  37. virtual ~CMyGridFrame();
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CMyGridFrame)
  41. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  42. afx_msg void OnSize(UINT nType, int cx, int cy);
  43. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  44. afx_msg void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. /////////////////////////////////////////////////////////////////////////////
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  51. #endif // !defined(AFX_MYGRIDFRAME_H__79CFDE47_6DD5_407E_9250_13E0C43233CF__INCLUDED_)