MFC调用OnSize触发消息是什么意思,这个触发是哪里的触发,能不能通过编程不让它触发,具体怎么做,谢谢
你可以通过subclass吃掉这个消息,方法是调用SetWindowLong,挂钩你的消息处理函数,然后在里面判断wm_size
The framework calls this member function after the window's size has changed.即窗口的大小发生改变的时候会有该消息