创建一个子窗口并覆盖WM_NCHITTEST以返回HTCAPTION,这将导致子窗口在单击时在主窗口中移动。
接下来,在子窗口中绘制位图
#include "windows.h"
LRESULT CALLBACK wndProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
{
if (msg == WM_DESTROY)
{
PostQuitMessage(0);
return 0;
}
return DefWindowProc(hwnd, msg, wp, lp);
}
LRESULT CALLBACK bitmapProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp)
{
if (msg == WM_NCHITTEST)
{
return HTCAPTION;
}
if (msg == WM_PAINT)
{
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
RECT rc;
GetClientRect(hwnd, &rc);
HBITMAP hbitmap = (HBITMAP)LoadImage(NULL, L"c:\\test\\test.bmp", IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
HDC memdc = CreateCompatibleDC(hdc);
HBITMAP saveOldBitmap = (HBITMAP)SelectObject(memdc, hbitmap);
BitBlt(hdc, 0, 0, rc.right, rc.bottom, memdc, 0, 0, SRCCOPY);
SelectObject(memdc, saveOldBitmap); //add this
DeleteObject(hbitmap); //*** add this, important
DeleteDC(memdc);
EndPaint(hwnd, &ps);
}
return DefWindowProc(hwnd, msg, wp, lp);
}
int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE, LPTSTR, int)
{
WNDCLASSEX wcex = { sizeof(WNDCLASSEX) };
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.hInstance = hInstance;
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
wcex.lpszClassName = L"mainWnd-bitmapWnd";
wcex.lpfnWndProc = wndProc;
if (!RegisterClassEx(&wcex))
{
MessageBox(0, L"error 1", 0, 0);
}
HWND hmain = CreateWindow(wcex.lpszClassName, L"w32", WS_CLIPCHILDREN | WS_VISIBLE | WS_OVERLAPPEDWINDOW, 0, 0, 300, 200, 0, 0, hInstance, 0);
wcex.lpszClassName = L"bitmapWnd";
wcex.lpfnWndProc = bitmapProc;
if (!RegisterClassEx(&wcex))
{
MessageBox(0, L"error 2", 0, 0);
}
CreateWindow(wcex.lpszClassName, L"w32", WS_VISIBLE | WS_CHILD | WS_BORDER, 0, 0, 50, 50, hmain, 0, hInstance, 0);
MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return (int)msg.wParam;
}
更改BitBlt 中的 X/Y 位置以在不同位置打印位图