На главную
Подписка
Новости


Рейтинг@Mail.ru











Главная / DELPHI / Часто задаваемые вопросы и ответы на них / Компоненты / Присвоить одно событие всем компонентам Сделать домашней страницей Добавить в избранное Написать писмо

Присвоить одно событие всем компонентам



{ 
  This example shows how to assign a OnContextPopup event 
  handler to all components at runtime using SetMethodProp(). 
  (Here: OnContextPopup event handler) 
} 

  private 
    { Private declarations } 
    procedure AssignOnContextPopupEvent; 
    procedure OnContextPopup(Sender: TObject; MousePos: TPoint; 
     var Handled: Boolean); 
  public 
    { Public declarations } 
  end; 

var 
  Form1: TForm1; 

implementation 

{$R *.dfm} 

uses 
  TypInfo; 

procedure TForm1.OnContextPopup(Sender: TObject; MousePos: TPoint; 
  var Handled: Boolean); 
begin 
  with Sender as TComponent do 
    ShowMessage(Name + ' right-clicked!'); 
end; 

procedure TForm1.AssignOnContextPopupEvent; 
var 
  i: Integer; 
  PropInfo: PPropInfo; 
  Method: TMethod; 
  PEvent: ^TContextPopupEvent; 
begin 
  for i := 0 to ComponentCount - 1 do 
  begin 
    PropInfo := GetPropInfo(Components[i].ClassInfo, 'OnContextPopup'); 
    if (PropInfo <> nil) and (PropInfo^.PropType^^.Kind = tkMethod) then 
    begin 
      Method := GetMethodProp(Components[i], PropInfo); 
      if not Assigned(Method.Code) then 
      begin 
        PEvent := @Method.Code; 
        PEvent^ := OnContextPopup; 
        Method.Data := Self; 
        SetMethodProp(Components[i], PropInfo, Method); 
      end; 
    end; 
  end; 
end; 

procedure TForm1.Button1Click(Sender: TObject); 
begin 
  AssignOnContextPopupEvent; 
end;


Copyright ©   "DELPHI WORLD"   E-mail:   delphiworld@mail.ru  http://www.delphiworld.narod.ru
Источник получения информации: http://www.delphiworld.narod.ru
Hosted by uCoz