How to disable intellisense for XAML in VS2010?

Yes, I know this is unusual, but I really want to enable intellisense for XAML editing. If I need it, I can always press CTRL + SPACE .
I disabled it for all languages ​​using Tools> Options> Text Editor> All Languages> General> End Recording, but it still works for XAML.

Can someone tell me how can I turn it off?

thanks

+6
source share
2 answers

You need to install the following registry key 0 :

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

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

Right-click the XAML file in Solution Explorer, then Open With... , select XML editor and use as default .

The bonus feature is that resharper will still work.

0
source

Source: https://habr.com/ru/post/894365/


All Articles