4

Is there a trick for snooping a tooltip? Since it disappears as soon as the mouse gets over it there is no chance for ctrl+shift+click.

springy76
  • 3,706
  • 2
  • 24
  • 46

2 Answers2

0

If you can change code, you can write a simple code that prevents tooltip close, and then you can snoop it.

Take a look to this: Forcing a WPF tooltip to stay on the screen

Community
  • 1
  • 1
Tuto
  • 36
  • 5
  • 1
    StaysOpen is always true -- even after I managed to get the mouse pointer over the tooltip itself (after setting IsOpen manually from within Snoop) I have no chance to see=snoop the actual visual tree of the tooltip. – springy76 May 09 '16 at 11:45
0

There is a ToolTip property on every element in the visual tree, so just navigate the visual tree via snoop until you find it at look at the ToolTip property - no ?

Dean Chalk
  • 20,076
  • 6
  • 59
  • 90