简单的问题 ( 积分: 10 )

  • 主题发起人 主题发起人 cooldren
  • 开始时间 开始时间
C

cooldren

Unregistered / Unconfirmed
GUEST, unregistred user!
if 点了右键 then
else if 点了左键 then

end;

用Delphi怎么写?
谢谢
 
if 点了右键 then
else if 点了左键 then

end;

用Delphi怎么写?
谢谢
 
捕获鼠标按键消息
 
不知道摟主要做到什麽程度
如果簡單的,直接在Mousedown事件裏做
如果是全局的,必須使用勾子Hook
 
在MouseDown事件中可以添加
var
PT : TPoint;
begin
{ 比如弹出菜单 }
if Button = mbRight then //右键
begin
PT.X := X; PT.Y := Y; //x,y是MouseDown事件中有的参数
PopupMenu1.Popup(PT.X,PT.Y);
end
else if Button = mbLeft then //左键
begin
//添加自己的代码
end;
end
 
后退
顶部