Windows消息分类:1.标准消息 除WM_COMMAND之外的消息,所有WM_开头的消息。从CWnd派生的类,都可以接收到这类消息。2.COMMAND消息 来自菜单,加速键或工具栏按钮的消息。这类消息都以WM_COMMAND消息呈现。在MFC中通过菜单项的标识ID来区分不同的命令消息,在SDK中,通过消息的wParam参数来识别。从CCmdTarget派生的类,都可以接收到这类消息。3.Notify消息 由控件的消息,如按钮的单击,列表框的选择等均产生此类消息,为的是向其父窗口(通常是对话框)通知事件的发生。这类消息也是以WM_COMMAND形式呈现。从CCmdTarget派生 Read More
// TextView.cpp : implementation of the CTextView class // #include "stdafx.h" #include "Text.h" #include "TextDoc.h" #include "TextView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE st... Read More
// HelloMFCView.cpp : implementation of the CHelloMFCView class // #include "stdafx.h" #include "HelloMFC.h" #include "HelloMFCDoc.h" #include "HelloMFCView.h" #ifdef _DEBUG #define new DEBUG_N... Read More