摘要
Win32消息处理机制是Win32应用编程的核心内容之一。Windows窗口消息的子类化,是根据消息处理的基本原理,把发送或投递到一个窗口的消息交给自己定义的函数处理,而不是交给默认的窗口过程处理。利用窗口子类化,开发者可以实现对应用程序的窗口消息进行独特的处理。
Message-handling is one of key components for Win32 programming. Subclassing is that windows message is not handled by default windows procedure but user-defined function. So developer can perform desired message-handle for own applications.
出处
《科技广场》
2008年第7期139-140,共2页
Science Mosaic
关键词
线程
消息队列
消息循环
子类化
Thread
Message Queue
Message Loop
Subclassing