Registriert seit: 12. Aug 2003
Ort: Soest
4.027 Beiträge
Delphi 10.1 Berlin Enterprise
|
Re: aktive Komponenten anzeigen lassen
18. Jun 2004, 13:51
Du musst eine Funktion überschreiben:
Delphi-Quellcode:
interface
type
TForm1 = class(TForm)
Label1: TLabel;
...
public
function SetFocusedControl(Control: TWinControl): Boolean; override;
end;
implementation
function TForm1.SetFocusedControl(Control: TWinControl): Boolean;
begin
Result := inherited SetFocusedControl(Control);
Label1.Caption := Self.ActiveControl.Name;
end;
|