C++/(MFC)On Mouse Move 자신을 벗어나는지 확인 Edit Diff Refresh Backlink Random Search History Help Setting CRect rect; GetClientRect(&rect); if (point.x < 0 || point.x >= rect.Width() || point.y < 0 || point.y >= rect.Height()) { // 현재 윈도우 안으로 커서가 빠져나갔다. } else { // 현재 윈도우 안으로 커서가 들어왔다. } C++ MFC OnMouseMove Show Comments Please enable JavaScript to view the comments powered by Disqus.