我已经在视图类里面添加了ON_WM_SETCURSOR消息响应。
重载OnSetCursor如下:
BOOL CCursorChgView::OnSetCursor(CWnd* pWnd, 
UINT nHitTest, UINT message) {
::SetCursor(AfxGetApp()->LoadStandardCursor(IDC_WAIT));
return CView::OnSetCursor(pWnd, nHitTest, message);
}
可是光标却怎么也没有改变???