我希望在"输入"键后输入"输入"键消息。我尝试使用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;
但它无法改进?如何改进?感谢