void CTestlineView::OnLButtonUp(UINT nFlags, CPoint point)
{
CBrush *brush=CBrush::FromHandle((HBRUSH)GetStockObject(NULL_BRUSH));
CClientDC dc(this);
dc.SelectObject(brush);
dc.Rectangle(m_point.x,m_point.y,point.x,point.y);
CView::OnLButtonUp(nFlags, point);
}