How do I turn off code tooltips in Visual Studio 2010?

前端 未结 1 1424
猫巷女王i
猫巷女王i 2020-12-14 23:12

It seems wherever my mouse is in my code window it will bring up tooltip information about what\'s under it, this I find very distracting and quite annoying. Can anyone tell

相关标签:
1条回答
  • 2020-12-15 00:12

    I created an extension that disables quick info for C#: DisableQuickInfo.vsix.

    The source is pretty simple, just a quick info source that immediately dismisses the session it gets. You can modify it pretty easily to apply to any language, if you have the SDK installed. Let me know if you want help with that.


    Original answer, for C/C++:

    What language? For C/C++, for example, you'd set Tools->Options->Text Editor->C/C++->Advanced->Auto Quick Info to False. I think it's one of the few languages you can disable it for.

    (It's called "Quick Info", for future reference)

    0 讨论(0)
提交回复
热议问题