捕获/创建TCustomControl Delphi的OnGetFocus/OnLostFocus事件

Wal*_*ine 6 delphi events components focus

我创建了一个继承自TCustomControl的Delphi组件.该组件可以从TWinControl继承而成为焦点,但是当它聚焦时我需要"突出显示"并在失去焦点时更改某些属性.正如Delphi文档所说,TCustomControl没有继承的OnFocus事件,所以我需要捕获事件(?)并实现我自己的OnGetFocus/OnLostFocus事件处理程序(?).当组件获得/失去焦点时,如何捕获事件?

TLa*_*ama 4

当控件接收或失去输入焦点时触发的事件是OnEnterOnExit,是从DoEnterDoExit方法触发的,您作为组件开发人员应该覆盖这些方法:

type
  TMyControl = class(TCustomControl)
  protected
    procedure DoEnter; override;
    procedure DoExit; override;
  end;

implementation

{ TMyControl }

procedure TMyControl.DoEnter;
begin
  inherited;
  // the control received the input focus, so do what you need here; note
  // that it's recommended to call inherited inside this method (which as
  // described in the reference should only fire the OnEnter event now)
end;

procedure TMyControl.DoExit;
begin
  inherited;
  // the control has lost the input focus, so do what you need here; note
  // that it's recommended to call inherited inside this method (which as
  // described in the reference should only fire the OnExit event now)
end;
Run Code Online (Sandbox Code Playgroud)