码迷,mamicode.com
首页 > Windows程序 > 详细

Delphi 拦截滚轮事件不响应滚轮的上下滚动

时间:2017-08-06 23:04:42      阅读:1065      评论:0      收藏:0      [点我收藏+]

标签:led   roc   extc   rms   box   ring   windows   panel   string   

unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls;

type TForm1 = class(TForm) 
Panel1: TPanel; ComboBox1: TComboBox; Label1: TLabel; procedure FormCreate(Sender: TObject); private { Private declarations } 
Procedure OnMouseWheel(Var Msg: TMsg; var Handled: Boolean);

public { Public declarations }
end;

var Form1: TForm1;

implementation {$R *.dfm}

procedure TForm1.FormCreate(Sender: TObject); 
begin 
Application.OnMessage := OnMouseWheel; 
end;

procedure TForm1.OnMouseWheel(var Msg: TMsg; var Handled: Boolean);
begin 
     if Msg.message = WM_MOUSEWHEEL then 
         if (ActiveControl IS TComboBox) or (ActiveControl IS TStringGrid) then//TComboBox和 TStringGrid不响应滚轮
              Handled := True; 
end;

procedure TForm1.FormDestroy(Sender: TObject); 
begin 
Application.OnMessage := nil;
end;

end.

 

http://www.cnblogs.com/tulater/p/6401799.html

Delphi 拦截滚轮事件不响应滚轮的上下滚动

标签:led   roc   extc   rms   box   ring   windows   panel   string   

原文地址:http://www.cnblogs.com/findumars/p/7296057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!