I want to show the text of a tooltip of any control in my wpf app inside a status bar, when a tooltip is about to be opened.
Of course I could try to loop recursively through all child controls of the main window and
set their ToolTipOpening
event to always the same method. But is there an easier way ?
Something like a Application.Current.AnyToolTipOpening
event ?