conwnd.h

来自「又VC++实现的基于TWAIN的扫描仪图像输入处理软件」· C头文件 代码 · 共 24 行

H
24
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?