📄 listctrlex.h
字号:
//////////////////////////////////////////////////////////////////////////
// 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -