문제

I have this procedure and I get it's called when I press a key, and something else will happen when Key = 17, how can I know which key is it?

procedure TFormPrincipal.FormKeyDown(Sender: TObject; var Key: Word;Shift: TShiftState);
 begin
  if Key = 17 then
    Seventeen:= true;
 end;
도움이 되었습니까?

해결책

"Key" refers to the VirtualKeyCode of the key. 17 equals to VK_CONTROL, either of your CTRL keys. Check this list for reference.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top