pDC)
{
    CEx14aDoc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    
// TODO: add draw code for native data here
    CBrush brush(HS_BDIAGONAL,0L);
    
if(m_bPattern){
        pDC
->SelectObject(&brush);
    }
    
else{
        pDC
->SelectStockObject(WHITE_BRUSH);
    }
    
if(m_bCircle){
        pDC
->Ellipse(m_rect);
    }
    
else{
        pDC
->Rectangle(m_rect);
    }
    pDC
->SelectStockObject(WHITE_BRUSH);
}

相关文章:

  • 2022-12-23
  • 2022-01-06
  • 2022-12-23
  • 2022-12-23
  • 2021-07-24
  • 2021-09-11
  • 2022-12-23
  • 2021-08-01
猜你喜欢
  • 2021-04-20
  • 2022-12-23
  • 2021-11-22
  • 2022-12-23
  • 2021-05-05
  • 2022-12-23
相关资源
相似解决方案