gpt4 book ai didi

c++ - 为什么我的子窗口对鼠标事件没有反应?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:05:33 25 4
gpt4 key购买 nike

我创建了一个显示位图图像的自定义静态窗口,该窗口是其他窗口的子窗口。现在我想捕获此窗口的鼠标事件,以便我可以提供裁剪图像的功能。

但问题是鼠标事件没有传递给这个子窗口....以下是子窗口的WndProc代码片段..

WNDPROC origStatProc;
// Variable which stores the handle of BITMAP image
HBITMAP hBitmap=NULL;
LRESULT CALLBACK dispWndProc(HWND hwnd,UINT msg, WPARAM wParam, LPARAM lParam)
{
static HDC hdc;
static PAINTSTRUCT paintSt;
static RECT aRect;

switch(msg)
{
case WM_PAINT:
{
hdc = BeginPaint(hwnd,&paintSt);
GetClientRect(hwnd,&aRect);
if(hBitmap!=NULL)
{
HDC memDC = CreateCompatibleDC(hdc);
if(memDC!=NULL)
{
BITMAP bmp;
GetObject(hBitmap,sizeof(bmp),&bmp);
SelectObject(memDC,hBitmap);
SetStretchBltMode(hdc,HALFTONE);
StretchBlt(hdc,0,0,aRect.right,aRect.bottom,
memDC,0,0,bmp.bmWidth,bmp.bmHeight,
SRCCOPY);
DeleteObject(&bmp);
ReleaseDC(hwnd,memDC);
}
}
// the code for painting
EndPaint(hwnd,&paintSt);
}
break;
case STM_SETIMAGE:
{
InvalidateRect(hwnd,&aRect,true);
}
break;
case WM_LBUTTONDOWN:
{
int xPos = GET_X_LPARAM(lParam);
int yPos = GET_Y_LPARAM(lParam);
char xstr[10];
_itoa(xPos,xstr,10);
MessageBox(NULL,xstr,"X Value ",MB_OK);
}
break;

default:
return origStatProc(hwnd,msg,wParam,lParam);

}
return 0;
}

任何人都可以告诉我我还需要什么来捕获此子窗口内的鼠标事件...

最佳答案

您为窗口使用的窗口类将确定窗口的某些默认行为。静态窗口类特别难用,因为 Windows 假定窗口永远不会更改其内容,并且不会以任何方式与用户交互。您可能会发现 WM_LBUTTONDOWN 被传递到父窗口。

关于c++ - 为什么我的子窗口对鼠标事件没有反应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5883414/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com