user31157
user31157

Reputation:

How to disable intellisense for XAML in VS2010?

yes I know it's unusual, but I actually want to turn of intellisense for XAML editing. If I need it, I can always hit CTRL+SPACE.
I disabled it for all languages via Tools > Options > Text Editor > All languages > General > Statement completion, but it still works for XAML.

Can anybody tell me how I can disable it ?

Thanks

Upvotes: 6

Views: 2199

Answers (2)

thumbmunkeys
thumbmunkeys

Reputation: 20764

I solved this by switching the default editor for XAML files.

Right click XAML file in solution explorer, then Open With..., select XML editor and use as default.

Bonus feature is that resharper will still work.

Upvotes: 0

Enrico Campidoglio
Enrico Campidoglio

Reputation: 59885

You'll have to set the following registry key to 0:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Text Editor\XAML\Auto List Members

Upvotes: 11

Related Questions