birken25
birken25

Reputation: 373

Disable Tooltips in Visual Studio 2019

Hovering over every piece of text in my C# files pops up a "tip". Does anyone know how to remove these tips? Bonus points if you can tell me how to globally remove all tool tips from every window in Visual Studio 2019.

Upvotes: 6

Views: 2848

Answers (1)

MarkusAnd
MarkusAnd

Reputation: 812

Visual Studio does not have a setting to turn off tooltips, however, you may download this extension made by Mads Kristensen that adds a toggle to turn on/off tooltips.

Then do the following :

  • Press Ctrl+Q
  • Search for tooltip
  • Click Toggle Tooltips in search result

Upvotes: 7

Related Questions