void CPhotoEditorView::OnMouseMove(UINT nFlags, CPoint point)
{
// TODO: 在此添加消息处理程序代码和/或调用默认值
m_mousePoint = point;
CString str;
str.Format(_T("%sx=%d,y=%d."), m_strStatusBarInfo, point.x, point.y);
//方法1:((CMainFrame*)GetParent())->m_wndStatusBar.SetWindowTextW(str);
//方法2:((CMainFrame*)GetParent())->GetMessageBar()->SetWindowTextW(str);
((CMainFrame *)GetParent())->SetMessageText(str);
CScrollView::OnMouseMove(nFlags, point);
}