应该是发送消息者把,我是这么理解的  
回复人: jianhenk(边城的编程浪子) (2002-1-5 0:39:22)  得0分 
发送消息,我还是这样认为。  
回复人: pdsinfo(新手) (2002-1-5 9:53:48)  得0分 
Sender是指出了收到事件的组件...
--------------------------------------------------
In an event handler, the Sender parameter indicates which component received the event and therefore called the handler. Sometimes it is useful to have several components share an event handler that behaves differently depending on which component calls it. You can do this by using the Sender parameter in an if...then...else statement. For example, the following code displays the title of the application in the caption of a dialog box only if the OnClick event was received by Button1.procedure TMainForm.Button1Click(Sender: TObject);begin
if Sender = Button1 then 
  AboutBox.Caption := 'About ' + Application.Title 
else 
  AboutBox.Caption := ''; 
AboutBox.ShowModal;
end;  
回复人: VSaber(☆浪人☆) (2002-1-5 10:06:08)  得0分 
procedure TMainForm.Button1Click(Sender: TObject);
sender就是button1,因为这是button1click事件,明白了吗?
 
回复人: lx_king(天剑) (2002-1-5 10:29:06)  得0分 
关注,我也不太东  
回复人: wisenowa(无人喝彩) (2002-1-5 10:44:18)  得0分 
你处理过消息码?
我想就是Sender参数把处理Windows消息简化了