大家看的出下面程式的錯誤嗎?
#include
#include "message.h"
class myframe:public cframewnd
~myframe()
afx_msg void onexit()
afx_msg void onlbuttondown(uint nflags,cpoint point)
afx_msg void onmousemove(uint nflags,cpoint point)
}afx_msg void onlbuttonup(uint nflags,cpoint point)
declare_message_map()
};begin_message_map(myframe,cframewnd)
on_command(idm_exit1,onexit)
on_wm_lbuttondown()
on_wm_mousemove()
on_wm_lbuttonup()
end_message_map()
訊息對映機制
當有訊息產生時,作業系統會把這條訊息放到應用程式的訊息佇列中,應用程式通過getmessage函式從這個佇列取出一條具體的訊息,並通過dispatchmessage函式把訊息交給作業系統,後者呼叫應用程式的視窗過程 即視窗過程函式wndproc進行處理。該函式利用switch case結構來對訊息進...
MFC訊息對映機制
一 mfc中採用的這種訊息處理機制成為 mfc訊息對映機制 乙個mfc訊息響應函式在程式中有三處相關資訊 函式原型,函式實現,關聯訊息和訊息響應函式的巨集。函式原型 標頭檔案cdrawview 兩個afx msg注釋巨集之間 訊息響應函式原型的宣告 afx msg void onlbuttondow...
MFC訊息對映機制
win32的訊息迴圈機制是 產生的訊息交由作業系統,將其放到應用程式的訊息佇列中。應用程式通過getmessage函式從這個佇列中取出 一條訊息 由dispatchmessage函式把訊息又交給作業系統,作業系統呼叫視窗過程函式wndproc進行處理。該函式利用switch case結構來判斷並響應...