MFC提供了BeginWaitCursor和EndWaitCursor函数来显示和隐藏等待的图标,以下是例子。void CMainView::OnEditClone(){ BeginWaitCursor(); //Other logic. EndWaitCursor();}