| 发表于:2007-09-03 17:32:016楼 得分:0 |
void cmyview::onmousemove(uint nflags, cpoint point) { // todo: add your message handler code here and/or call default cstring str; str.format( "x = %d,y = %d ",point.x,point.y); ((cmainframe*)getparent()) -> m_wndstatusbar.setwindowtext(str); cview::onmousemove(nflags, point); } | | |
|