rightpaneframe.h
来自「一个资产管理软件」· C头文件 代码 · 共 63 行
H
63 行
#if !defined(AFX_RIGHTPANEFRAME_H__C50FD506_CEFA_11D1_9B01_0060970863EE__INCLUDED_)
#define AFX_RIGHTPANEFRAME_H__C50FD506_CEFA_11D1_9B01_0060970863EE__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
// RightPaneFrame.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CRightPaneFrame frame
#include "SplitterView.h"
#include "ListCtrlView.h"
#include "EditCtrlView.h"
#define VIEW_SPLITTER 1
#define VIEW_LISTCTRL 2
#define VIEW_EDIT 3
class CRightPaneFrame : public CFrameWnd
{
DECLARE_DYNCREATE(CRightPaneFrame)
protected:
CRightPaneFrame(); // protected constructor used by dynamic creation
// Attributes
public:
CSplitterView* m_pSplitterView;
CListCtrlView* m_pListCtrlView;
CEditCtrlView* m_pEditCtrlView;
UINT m_nCurrentViewID;
// Operations
public:
void SwitchToView(UINT nView);
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CRightPaneFrame)
protected:
virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
//}}AFX_VIRTUAL
// Implementation
protected:
virtual ~CRightPaneFrame();
// Generated message map functions
//{{AFX_MSG(CRightPaneFrame)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_RIGHTPANEFRAME_H__C50FD506_CEFA_11D1_9B01_0060970863EE__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?