Jump to content

Label.ClientEvents.ExtEvents not work


mayusod

Recommended Posts

if I create a label at runtime and add the clientEvents not work, but if I assign the clientevent to a label already created if it works

 

Label6.ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10'   sender.draggable= true;'#13#10'}');
 LabelPrueba:=TUniLabel.Create(Self);
  with LabelPrueba do
    begin
     Left:=100;
     Top:=100;
     Caption:='Prueba';
     Parent:=PanelFormato;
     ClientEvents.Enabled:=True;
     ClientEvents.ExtEvents.Add('added=function added(sender, container, pos, eOpts)'#13#10'{'#13#10'   sender.draggable= true;'#13#10'}');
    end;

 

I'm doing wrong

 

 

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...