VC自定义消息postmessage用法(消息响应函数)
分类:计算机等级
|
更新时间:2016-07-07|
来源:转载
VC 自定义消息 postmessage用法
1. 在 resource.h文件添加如下代码 定一个自己的消息
#define WM_MY_MESSAGE WM_USER + 100 //———————by tyds
2.在…view.h的文件添加如下:
//{
{AFX_MSG(CPostmessageView)
afx_msg void Ontydspostmessage();
afx_msg /*LRESULT*/ void OnMyMessage(/*WPARAM wParam, LPARAM lParam*/); //—– by tyds
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
3.在…view.cpp文件添加如下代码
BEGIN_MESSAGE_MAP(CPostmessageView, CView)
//{
{AFX_MSG_MAP(CPostmessageView)
ON_COMMAND(ID_tyds_postmessage, Ontydspostmessage)
ON_MESSAGE(WM_MY_MESSAGE, OnMyMessage) //添加消息映射———————by tyds
//}}AFX_MSG_MAP
// Standard printing commands
ON_COMMAND(ID_FILE_PRINT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_DIRECT, CView::OnFilePrint)
ON_COMMAND(ID_FILE_PRINT_PREVIEW, CView::OnFilePrintPreview)
END_MESSAGE_MAP()
void CPostmessageView::Ontydspostmessage()
{
MessageBox(“begin post message!”);
//PostMessage(WM_MY_MESSAGE); //这里 PostMessage SendMessage 两则区别是
SendMessage(WM_MY_MESSAGE); //PostMessage 是发出去就返回 而SendMessage是发出去等到被 //执行了 在返回
}
消息相应函数
/*LPESULT*/void CPostmessageView::OnMyMessage(/*WPARAM wParam, LPARAM lParam*/) //注意这里 的参数可要可不要 根据自己来定 返回值也一样
{
MessageBox(“post msg finished!”);
// return 0;
}
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/206173.html原文链接:https://javaforall.net
