首页 > 其他 > 详细

对ShortCut和TWMKey的研究

时间:2014-04-16 06:09:05      阅读:552      评论:0      收藏:0      [点我收藏+]

TWMKey = packed record
Msg: Cardinal;
CharCode: Word;
Unused: Word;
KeyData: Longint;
Result: Longint;
end;


FormShortCut
FOnShortCut
IsShortCut

function TCustomForm.IsShortCut(var Message: TWMKey): Boolean

procedure CMIsShortCut(var Message: TWMKey); message CM_ISSHORTCUT;
procedure TCustomForm.CMIsShortCut(var Message: TWMKey);
begin
if IsShortCut(Message) then
Message.Result := 1
else
Message.Result := 0;
end;

目前不清楚是否会被传递到
function TApplication.IsShortCut(var Message: TWMKey): Boolean;
begin
Result := False;
if Assigned(FOnShortCut) then FOnShortCut(Message, Result);
Result := Result or (MainForm <> nil) and IsWindowEnabled(MainForm.Handle) and
MainForm.IsShortCut(Message)
end;

 先留个爪,以后再仔细研究

对ShortCut和TWMKey的研究,布布扣,bubuko.com

对ShortCut和TWMKey的研究

原文:http://www.cnblogs.com/findumars/p/3667304.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!