例如:
CMyView中:
OnCreate()
{
    MyWnd.Create(CRect(0,0,0,0),this);
}
OnSize()
{
    CRect rect;
    GetClientRect(&rect);
    MyWnd.MoveWindow(&rect);
}
OnDraw(CDC* pDC)
{
    CPen ...
    pDC->MoveTo(10,10);
    pDC->LineTo(20,20);
    .....
}
最后OnDraw函数里面的线 是画不出来的 ,请问怎么才能画出来