Einzelnen Beitrag anzeigen

Rollo62

Registriert seit: 15. Mär 2007
4.094 Beiträge
 
Delphi 12 Athens
 
#15

AW: HintPause in FireMonkey?

  Alt 2. Nov 2023, 15:06
Das findet anscheinend zentral in FMX.Forms.TApplication statt.

Delphi-Quellcode:
    /// <summary>Cancels the display of a hint for a control.</summary>
    procedure CancelHint;
    /// <summary>Hides the current hint.</summary>
    procedure HideHint;
    /// <summary>Occurs when the mouse pointer moves over a control or menu item that can display a Help Hint.</summary>
    property OnHint: TNotifyEvent read FOnHint write FOnHint;
Man könnte schlimmstenfalls OnHint abfangen und da seinen eigenen Timer laufen lassen,
der den Hint dann mit CancelHint oder HideHint brutal abbricht.
  Mit Zitat antworten Zitat