AI摘要
在keydown事件中,判断回车键按下的条件是if Key = VK_RETURN then,在keypress事件中,判断回车键按下的条件是if Key = #13 then。
在keydown事件中
在 keydown中是
if Key = VK_RETURN then
ShowMessage('回车');
在 keypress中是
if Key = #13 then
ShowMessage('回车');