My XAML intellisense went away – just like that. The last thing I remember was installing Team Explorer for VS 2008. From that moment on, XAML intellisense disappeared. No Tools->Options settings appear to have any effect. It turns out this may happen after other types of installations related to Visual Studio. If you got this issue, it can probably be corrected with VS 2008 repair, but here’s how to correct it manually (much faster):
Open regedit.exe and navigate to:
(32 bit system) HKEY_CLASSES_ROOT\CLSID\{73B7DC00-F498-4ABD-AB79-D07AFD52F395}\InProcServer32
(64 bit system) HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{73B7DC00-F498-4ABD-AB79-D07AFD52F395}\InProcServer32
if the (Default) value is empty – you got the issue… (a COM server is not registered properly).
To correct, open an admin command prompt and issue:
regsvr32 "%CommonProgramFiles%\Microsoft Shared\MSEnv\TextMgrP.dll" (32 bit)
regsvr32 "%CommonProgramFiles(X86)%\Microsoft Shared\MSEnv\TextMgrP.dll" (64 bit)
and presto! XAML intellisense is back (no need to restart Visual Studio).