dc.Line要不在OnPaint()上绘图,除非我移动使用鼠标并将窗口移出视图?

时间:2012-04-03 21:11:36

标签: visual-c++ mfc

除非我制作“静态CPaintDC dc(this);”这条线不会画?但这并不好,因为它最终会出错,而且图形也不会出现在屏幕上。

不确定我做错了什么

注意:我有一个Timer,每100ms调用一次(x和y递增) THX

void CGraphicsDlg::OnPaint() 
{
    CString s;
    CPaintDC dc(this);// device context for painting

    if (IsIconic())
    {
        SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

        // Center icon in client rectangle
        int cxIcon = GetSystemMetrics(SM_CXICON);
        int cyIcon = GetSystemMetrics(SM_CYICON);
        CRect rect;
        GetClientRect(&rect);
        int x = (rect.Width() - cxIcon + 1) / 2;
        int y = (rect.Height() - cyIcon + 1) / 2;

        // Draw the icon
        dc.DrawIcon(x, y, m_hIcon);
    }
    else if(x==0)
    {
        s.Format("%d", x);
        edXa->SetWindowText(s);

        dc.MoveTo(20,400);
    }
    else if (x>0){
        s.Format("%d", x);
        edXb->SetWindowText(s);

        dc.LineTo(20 + x, 40);  // doesn't draw unless I make "static CPaintDC dc(this);" <- which will error out 
    }
    CDialog::OnPaint();
}

void CGraphicsDlg::OnTimer(UINT nIDEvent)
{
    if(nIDEvent==1){
        srand( (unsigned)time( NULL ) );

        //y = rand() % 100;
        y++;
        x++;

        OnPaint();
    }
}

2 个答案:

答案 0 :(得分:1)

LineTo使用选定的笔从一个点到另一个点绘制一条线。您需要使用MoveTo来定义行的开头,并且需要在DC中选择一支笔。

更大的问题是你如何尝试使用DC。它不是永久性的;你应该获得它,把所有东西都拿去,然后把它关掉。当您尝试使CPaintDC静态时,Windows最终会将其关闭,之后每次尝试使用它都会返回错误。

正确的方法是保存您需要的所有所需的任何坐标。使用MoveToLineTo的组合绘制单个线段,每次重新输入OnPaint时,都需要重新开始。

答案 1 :(得分:0)

我没有回答你的问题,但是你注意到即使 IsIconic()返回 TRUE ,也会调用 CDialog :: OnPaint()强>?

我认为你需要额外使用一对 {} 来解决这个问题; - )