我正在阅读有关 GetCapture() 函数的信息,它是 mfc 的一部分。我仍然不清楚它的作用,以及捕获鼠标的含义,正如这里所说:
http://msdn.microsoft.com/en-us/library/dxa5eaaa(v=vs.80).aspx
在我的书中,它是这样使用的:
void CSketcherView::OnLButtonUp(UINY nFlags, CPoint point)
{
if(this == GetCapture())
ReleaseCapture(); // Stop capturing mouse messages
// ... add information to document
}
那么 GetCapture() 返回什么?“捕获”鼠标是什么意思?