#keywords C++,MFC,OnMouseMove {{{#!gcode CRect rect; GetClientRect(&rect); if (point.x < 0 || point.x >= rect.Width() || point.y < 0 || point.y >= rect.Height()) { // 현재 윈도우 안으로 커서가 빠져나갔다. } else { // 현재 윈도우 안으로 커서가 들어왔다. } }}} ---- {{{ }}}