?? lexutil.h
字號:
/////////////////////////////////////////////////
//定義一個工具類,提供共通功能
#ifndef LEX_UTIL_DEF
#define LEX_UTIL_DEF
class LexUtil
{
public:
LexUtil();
~LexUtil();
public:
//三個Static方法,用于顯示錯誤消息
static void ErrMsg(CString strMsg);
static void ErrMsg(LPCTSTR lpcszMsg);
static void ErrMsg(LPTSTR lpszMsg);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -