FoxUI在线文档

关于FoxUI组件的说明


Win7等系统无焦点响应滚轮

<p>win7设计的问题造成了列表组件在无焦点情况下不响应鼠标滚轮的问题</p> <p>procedure TForm5.ApplicationEvents1Message(var Msg: tagMSG; var Handled: Boolean); var pnt: TPoint; ctrl: TWinControl; begin if Msg.message = WM_MOUSEWHEEL then begin if not GetCursorPos(pnt) then Exit; ctrl := FindVCLWindow(pnt); if Assigned(ctrl) then Msg.hwnd := ctrl.Handle; end; end;</p>

页面列表

ITEM_HTML