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('回车');  



最后修改:2009 年 08 月 16 日
点赞的人是最酷的