Add CTRL-Click on XML Document using Visual Studio 2010 SDK

pumpkinpoppies

New Member
I have an XML file in the following format:\[code\]<Document> <Bars> <Bar id="1"> <Name>test</Name> </Bar> <Bar id="2"> <Name>test</Name> </Bar> </Bars> <Foo> <Bar>1</Bar> <Bar>2</Bar> </Foo></Document>\[/code\]Now what I want to do is add a CTRL+Click functionality on for example "1", which moves the cursor to the correct "Bar" tag.Does anybody know how to add the CTRL + Click functionality on an xml tag to fire an event, using the Visual Studio SDK? http://msdn.microsoft.com/en-us/library/bb166217.aspxWhich classes are needed, where do I start?
 
Back
Top