使用CImage类
1.在stdafx.h中加入#include <atlimage.h>
2.在xxxdlg.h中添加CImage m_Img
3.在OnInitDialog中添加m_Img.Load(_T("res\\1.png"));
4.在OnPaint()添加显示png的代码: m_Img.Draw(GetDC()->m_hDC, 0,0);
MFC对话框上添加PNG格式的图片的方法
时间: 2024-11-02 15:07:40
使用CImage类
1.在stdafx.h中加入#include <atlimage.h>
2.在xxxdlg.h中添加CImage m_Img
3.在OnInitDialog中添加m_Img.Load(_T("res\\1.png"));
4.在OnPaint()添加显示png的代码: m_Img.Draw(GetDC()->m_hDC, 0,0);
MFC对话框上添加PNG格式的图片的方法