请问:在下列消息映射块中,语句“ON_COMMAND(ID_APP_ABOUT, OnAppAbout)”既不显示为绿色也不显示为黑色,而是显示为灰色,是什么意思?
BEGIN_MESSAGE_MAP(CZzApp, CWinApp)
//{{AFX_MSG_MAP(CZzApp)
ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()