在对话框的一个控件里画图,用的是双缓冲,可是编译时图像闪的厉害,而且控件以外的部分的按钮也消失了
voidCMyDlg::OnPaint(){//CPaintDCdc(this);//devicecontextforpainting//TODO:Addyourmess...
void CMyDlg::OnPaint()
{
//CPaintDC dc(this); // device context for painting
// TODO: Add your message handler code here
if(m_Show==1)
{
CRect rect;
CWnd *pwnd=GetDlgItem(IDC_STATIC_OLD); // 获得控件的ID
pwnd->GetClientRect(&rect);
CDC *pDC=pwnd->GetDC();
CDC memDC;
memDC.CreateCompatibleDC(pDC);
CBitmap bmp;
bmp.CreateCompatibleBitmap(pDC,rect.Width(),rect.Width());
……
pDC->BitBlt(0, 0, rect.Width(), rect.Height(), &memDC, 0, 0, SRCCOPY);
} 展开
{
//CPaintDC dc(this); // device context for painting
// TODO: Add your message handler code here
if(m_Show==1)
{
CRect rect;
CWnd *pwnd=GetDlgItem(IDC_STATIC_OLD); // 获得控件的ID
pwnd->GetClientRect(&rect);
CDC *pDC=pwnd->GetDC();
CDC memDC;
memDC.CreateCompatibleDC(pDC);
CBitmap bmp;
bmp.CreateCompatibleBitmap(pDC,rect.Width(),rect.Width());
……
pDC->BitBlt(0, 0, rect.Width(), rect.Height(), &memDC, 0, 0, SRCCOPY);
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询