作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我写了以下代码:procedure MouseWheel(var Msg:TWMMouseWheel);message WM_MOUSEHWHEEL;
我将它用于基于 TPanel 的组件(TMyP=class(TPanel))(注意,由于我自己的原因,我不想使用TCustomPanel)
但是无论如何,当我在面板上使用鼠标滚轮时,该事件不会被调用。请帮助我!
最佳答案
鼠标滚轮消息被发送到具有焦点的控件。而且面板通常不可聚焦。
我在应用程序中使用此 TApplicationEvents.OnMessage 处理程序将鼠标滚轮消息发送到鼠标光标下方的窗口而不是焦点控件。
procedure TMainDataModule.ApplicationEventsMessage(var Msg: tagMSG; var Handled: Boolean);
var
Wnd: HWND;
begin
if Msg.message = WM_MOUSEWHEEL then
begin
Wnd := WindowFromPoint(Msg.pt);
// It must be a VCL control otherwise we could get access violations
if IsVCLControl(Wnd) then
Msg.hwnd := Wnd; // change the message receiver to the control under the cursor
end;
end;
关于delphi - WMMouseWheel 在 Delphi 中不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4172307/
我写了以下代码:procedure MouseWheel(var Msg:TWMMouseWheel);message WM_MOUSEHWHEEL;我将它用于基于 TPanel 的组件(TMyP=c
我是一名优秀的程序员,十分优秀!