📄 conwnd.h
字号:
// ConWnd.h : header file
class CContainerWnd : public CWnd
{
public:
CContainerWnd();
//{{AFX_VIRTUAL(CContainerWnd)
//}}AFX_VIRTUAL
public:
void ResetScrollBar(int& cx, int& cy);
void setScrollBar(int& cx, int& cy);
virtual ~CContainerWnd();
//afx_msg
void OnVScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
protected:
//{{AFX_MSG(CContainerWnd)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnActivate(UINT nState, CWnd* pWndOther, BOOL bMinimized);
afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -