如何使用Tapplicationevent组件获取"输入"键

时间:2017-03-18 10:33:50

标签: delphi

我希望在"输入"键后输入"输入"键消息。我尝试使用Tapplicationevent组件。代码是

procedure TForm6.ApplicationEvents1Message(var Msg: tagMSG;
  var Handled: Boolean);
begin
    if   Msg.message=WM_KeyDown   then
      if   msg.wParam=Windows.VK_RETURN   then
      begin
          Button1.Click();
          handled:=True;
      end;
end;

但它无法改进?如何改进?感谢

0 个答案:

没有答案