Es gibt da so nette Sachen wie
Delphi-Quellcode:
ICommand = interface
function CanExecute : Boolean;
procedure Execute;
end;
Wenn du jetzt eine Instanz hättest, die dir zu einem String so ein Interface liefert
Delphi-Quellcode:
TCommandManager = class
procedure RegisterCommand( const Name : string; Command : ICommand );
property Command[const Name : string] : ICommand;
end;
dann lautet dein OnClick-Handler so
Delphi-Quellcode:
procedure TForm.KomponenteClick( Sender : TObject );
begin
MyCommandManager.Command[ Vorgabe ].Execute;
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9
dc 90 9d f0 e9 de 13 da 60)