當按下滑鼠右鍵............. |
尚未結案
|
beenteen
一般會員 發表:4 回覆:7 積分:2 註冊:2002-04-13 發送簡訊給我 |
|
cashxin2002
版主 發表:231 回覆:2555 積分:1937 註冊:2003-03-28 發送簡訊給我 |
您好﹗ 在某個Button(如Button1)的OnMouseDown事件中鍵入如下程式碼﹕
procedure TForm1.Button1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin if (Sender is TButton) and (Button = mbRight) then ShowMessage((Sender As TButton).Caption); end;然后將其它的Button的OnMouseDown事件中設定共用此Button的事件程式碼 如Button2的OnMouseDown事件設定為﹕Button1MouseDown ================================= 有空來瞅瞅我﹗因為我是您的朋友﹐有您真好﹗ ================================
------
忻晟 |
beenteen
一般會員 發表:4 回覆:7 積分:2 註冊:2002-04-13 發送簡訊給我 |
|
Fishman
尊榮會員 發表:120 回覆:1949 積分:2163 註冊:2006-10-28 發送簡訊給我 |
Hi beenteen, 拉一個 ApplicationEvent 元件(在 Additional TAB 中),並在其 OnMessage 事件中加入以下程式碼
procedure TForm1.ApplicationEvents1Message(var Msg: tagMSG; var Handled: Boolean); Var CC : TControl; SP,CP : TPoint; begin if msg.message = WM_RBUTTONDOWN then begin SP.X := Msg.pt.X; SP.Y := Msg.pt.Y; CP := Self.ScreenToClient(SP); CC := Self.ControlAtPos(CP,True,True); if CC <> Nil then ShowMessage(CC.Name); end; end;---------------------------------- 小弟才疏學淺,若有謬誤尚請不吝指教 ----------------------------------
------
Fishman |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |