I'm in VS2010, on a breakpoint. How can I cause a datatip to be displayed for a given variable/expression w/o using my mouse to hover it?
|
feedback
|
|
That can't be done, exactly, but you can get the same result by selecting the variable you want to watch (using ReSharper's Ctrl + Alt + →/← can speed this up), and pressing Shift + F9, which will raise "QuickWatch" modal window with the datatip contained within. If you prefer, you can also go into Options->Keyboard and bind the You can also do this by opening the command window (Ctrl + Alt + A) and typing | ||||
|
feedback
|
|
Will adding a watch not be suitable? When you hit your breakpoint the relevant details of the variable will be shown in the watch window. Perhaps I have misunderstood what you're trying to achieve here! | |||
|
feedback
|
|
You can click the 'pin' icon to force any datatip to stay open, and it will update to the current contents when you hit the breakpoint. I don't know of a way to open a specified tip without pinning it, however. | |||
|
feedback
|