listctrlex.h

来自「Wifi扫描器和自定义MFC控件 Wifi scanner + custom 」· C头文件 代码 · 共 29 行

H
29
字号
//////////////////////////////////////////////////////////////////////////
// This is just a wrapper around MFC CListCtrl without
// shell gesture recognition (dots popup)
// more on the subject:
// http://www.pocketpcdn.com/articles/print_disable_reddots.html
//////////////////////////////////////////////////////////////////////////

#pragma once


// CListCtrlEx

class CListCtrlEx : public CListCtrl
{
	DECLARE_DYNAMIC(CListCtrlEx)

public:
	CListCtrlEx();
	virtual ~CListCtrlEx();

protected:
	DECLARE_MESSAGE_MAP()

	afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
	afx_msg void OnRecognizeGesture(NMHDR* pNMHDR, LRESULT* pResult); 
};


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?