请教各位了,问个关于Delphi中共用某个控件事件处理程序(0分)

  • 主题发起人 主题发起人 netbug
  • 开始时间 开始时间
N

netbug

Unregistered / Unconfirmed
GUEST, unregistred user!
请看:
type
TForm1 = class(TForm)
Button1: TButton;
Button2: TButton;
Button3: TButton;
procedure Button3Click(Sender: TObject);
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.Button3Click(Sender: TObject);
begin
if sender=button1 then showmessage('one');
if sender=button2 then showmessage('two') else showmessage('three');
end;
我想让Button1与Button2的OnClick共享Button3的OnClick,我该如何做?
谢谢。



 
将button1/button2的OnClick事件指向Button3Click
 
同cAkk,建议sender <font color=green>is</font> button1
 
在button1和button2的onclick的下拉菜单中选择button3的click事件.
 
热心的人们都已经讲清楚了,俺就不多嘴了
 
谁知道如何将事件指向一个同参过程?
 
怎么没有分?
 
接受答案了.
 
后退
顶部