Using ReSharper, you can go to the "Containing declaration" (the default is Ctrl+ 8, configure by changing ReSharper.ReSharper_GotoContainingDeclaration). In the Visual Studio menu, you can use ReSharper - Navigate - Containing Declaration. This works in XML, XHTML, and C #.
Given the following XML:
<?xml version="1.0" encoding="utf-8" ?>
<persons>
<person>
<name>Mikael</name>
</person>
</persons>
If you are inside "Mikael", the first command "go to the content of the announcement" will lead you to the "name", then the next will move you to the "person", and after the third command you will be in the "faces".
source
share