RightPaneFrame.h
上传用户:weimei12
上传日期:2022-08-11
资源大小:185k
文件大小:1k
- /********************************************************************
- created: 2008:12:17 14:26
- author: 李欣
- filename: c:MyProjectSimpleMailSimpleMailRightPaneFrame.h
- classname: CRightPaneFrame
- purpose: the view containing the list view and the edit view on the right
- *********************************************************************/
- #pragma once
- // CRightPaneFrame frame
- class CRightPaneFrame : public CFrameWnd
- {
- DECLARE_DYNCREATE(CRightPaneFrame)
- protected:
- CRightPaneFrame(); // protected constructor used by dynamic creation
- virtual ~CRightPaneFrame();
- protected:
- DECLARE_MESSAGE_MAP()
- public:
- void SwitchToView(UINT nView);
- CSplitterView* m_pSplitterView;
- UINT m_nCurrentViewID;
- protected:
- virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
- };