对话框中添加位图的问题
写了个函数,用来在对话框中添加一幅位图,如下:void InitLogoBTM(HWND hWnd)
{
HDC hDC = GetDC(hWnd);
HDC hComDC = CreateCompatibleDC(hDC);
hBtm = LoadBitmap(hInst, MAKEINTRESOURCE(IDB_BTM_LOGO));
SelectObject(hComDC, hBtm);
StretchBlt(hDC, 0, 0, 40, 80, hComDC, 0, 0, 40, 80, SRCCOPY);
ReleaseDC(hWnd, hDC);
DeleteDC (hComDC) ;
}
但是,不成功 。。请高手看看是怎么回事!!(不使用MFC,我是直接调用API写的)。。
谢谢了!!