键盘对图像的移动操作
【打印文章】
触发顺序OnKeyDown -> OnKeyPress -> OnKeyUp
OnKeyPressr当按下一个ASCII的字时有效,对于其他没有反应.
//根据上下左右来改变图的位置
if key = vk_up then
image1.Top :=image1.top-32
else if key = vk_down then
image1.Top :=image1.top+32
else if key = vk_left then
image1.left :=image1.left-32
else if key = vk_right then
image1.left :=image1.left+32;
补充
//自己看吧
procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char);
begin
if key in ['0'..'9'] then
ShowMessage('按下0至9');
end;
OnKeyPressr当按下一个ASCII的字时有效,对于其他没有反应.
//根据上下左右来改变图的位置
if key = vk_up then
image1.Top :=image1.top-32
else if key = vk_down then
image1.Top :=image1.top+32
else if key = vk_left then
image1.left :=image1.left-32
else if key = vk_right then
image1.left :=image1.left+32;
补充
//自己看吧
procedure TForm1.FormKeyPress(Sender: TObject; var Key: Char);
begin
if key in ['0'..'9'] then
ShowMessage('按下0至9');
end;
本栏文章均来自于互联网,版权归原作者和各发布网站所有,本站收集这些文章仅供学习参考之用。任何人都不能将这些文章用于商业或者其他目的。( Pfan.cn )
【编程爱好者论坛】