是这个错误还是我错过了什么?
这是用 Delphi XE2 编写的代码,但在 XE3 中不起作用......
procedure TForm1.Edit1KeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key = VK_ESCAPE then //works when I press ESC!
ShowMessage('escape');
if Key = VK_RETURN then
ShowMessage('enter'); //doesn't work when I press ENTER!
end;