Delphi 2009 OnKeyDown 不像 Delphi 2007 那样陷入陷阱

发布于 2024-07-13 13:58:21 字数 302 浏览 7 评论 0原文

我有这段代码

procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
var
begin
  if not (Key in [Ord('0')..Ord('9')]) then
    Key := 0;
end;

,它在 Delphi 2007 中运行良好。当我升级到 Delphi 2009 并尝试按任何字母时,它会被接受,并且 Key := 0 不会捕获输入?

有人遇到过同样的行为吗?

I have this code

procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
var
begin
  if not (Key in [Ord('0')..Ord('9')]) then
    Key := 0;
end;

and it worked fine with Delphi 2007. When I upgraded to Delphi 2009 and I try to press any letter it is accepted and the Key := 0 does not trap the input?

Anyone encountered the same behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不必了 2024-07-20 13:58:21

您确定这在 Delphi 2007 中有效吗? 我刚刚尝试了 Delphi 2007 和 2009 中的代码。两者的行为相同(没有击键)如果您只想接受数字,您应该使用 OnKeyPress 事件并将 Key 参数设置为 #0。

Are you sure that this worked in Delphi 2007? I just tried the code in Delphi 2007 and 2009. And both behave the same (No key stroke is eaten) If you want to accept only digits you should use the OnKeyPress event and set the Key parameter to #0.

爱格式化 2024-07-20 13:58:21

OnKeyDown 为您提供一个扫描码OnKeyPress 为您提供字符。 我记得的 Delphi 的每个版本都是这样。

OnKeyDown gives you a scancode. OnKeyPress gives you the character. Been that way in every version of Delphi I can remember.

假面具 2024-07-20 13:58:21

KeyDown 事件上发送 Key:=0; 使用:

Key:=HiWord(GetKeyState(0));

//do something

to send Key:=0; on KeyDown Event use:

Key:=HiWord(GetKeyState(0));

//do something
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文