CDC memdc; CDC* pDC = this->GetDC(); memdc.CreateCompatibleDC(pDC);

来源:学生作业帮助网 编辑:作业帮 时间:2024/04/27 13:30:30
CDC memdc; CDC* pDC = this->GetDC(); memdc.CreateCompatibleDC(pDC);

CDC memdc; CDC* pDC = this->GetDC(); memdc.CreateCompatibleDC(pDC);
CDC memdc; CDC* pDC = this->GetDC(); memdc.CreateCompatibleDC(pDC);

CDC memdc; CDC* pDC = this->GetDC(); memdc.CreateCompatibleDC(pDC);
GetDC(); 获得CClientDC ,
memdc.CreateCompatibleDC(pDC); 创建与pDC的兼容的内存DC(利用文件映射机制,模拟的内存DC,速度快,相当于直接在内存中操作DC)