有一个静态文本控件(CStatic):  IDC_RANGECRect      rect;
CClientDC  dc(this);GetDlgItem(IDC_RANGE)->GetWindowRect(rect);
dc.MoveTo(rect.left,  rect.top);
dc.LineTo(rect.right, rect.bottom);为什么画出来的结果不对?(但其他控件又真确:如Button控件)
我该怎样得到CStatic控件的范围?(及左上角/右下角坐标)