RightPaneFrame.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
源码类别:

Email客户端

开发平台:

Visual C++

  1. /********************************************************************
  2. created: 2008:12:17   14:26
  3. author: 李欣
  4. filename: c:MyProjectSimpleMailSimpleMailRightPaneFrame.h
  5. classname:  CRightPaneFrame
  6. purpose: the view containing the list view and the edit view on the right
  7. *********************************************************************/
  8. #pragma once
  9. // CRightPaneFrame frame
  10. class CRightPaneFrame : public CFrameWnd
  11. {
  12. DECLARE_DYNCREATE(CRightPaneFrame)
  13. protected:
  14. CRightPaneFrame();           // protected constructor used by dynamic creation
  15. virtual ~CRightPaneFrame();
  16. protected:
  17. DECLARE_MESSAGE_MAP()
  18. public:
  19. void SwitchToView(UINT nView);
  20. CSplitterView* m_pSplitterView;
  21. UINT    m_nCurrentViewID;
  22. protected:
  23. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  24. };