1 2 3 4 5
|
HWND button=CreateWindowEx(0,"Button","",WS_CHILD,0,0,32,32,hwnd,0,0,0);
HICON hbmPWSCommandOVERVIEW=(HICON)LoadImage(app_hInstance, MAKEINTRESOURCE(button_icon),IMAGE_ICON,14,14,0);
PAINTSTRUCT ps;
HDC hdc = BeginPaint(hwnd, &ps);
DrawIcon(hdc,32,32,hbmPWSCommandOVERVIEW);
|