Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just wondered if anything like that exists? Certainly in Eclipse it does.

A small window like the solution window listing all the methods in the active class would be great

Any ideas?

Thank you

share|improve this question

10 Answers

up vote 11 down vote accepted

There's the drop down above the code window. Does this do what you want?

alt text

Full size image

share|improve this answer
1  
Do you know if there is any shortcut to open this? It's sa annoying to use mouse for this. – CichyK24 Oct 10 '11 at 10:21
@CichyK24 - no, sorry. – ChrisF Oct 10 '11 at 10:22
@ChrisF it seems that I cant't see that window in vs2012. How to enable it? – ysrb Apr 12 at 10:04
@ysrb - No idea. I'm still on VS2010 here. Given that this question was about VS2008 I'd suggest you ask a new question (link back to this one to show that it's not a duplicate). – ChrisF Apr 12 at 10:10
Also looking for a shortcut to open this, and/or a permanently opened window or frame. – Matthew Doucette May 9 at 19:44

Shortcut to Navigation Bar is CTRL+F2. Takes you to the types dropdown first. Press tab to go to method dropdown, and then enter on a method to go to that one.

share|improve this answer

There is no direct equivalent to the Outline View in Eclipse. The closest thing I've found is the Class View, which lists all classes and their members/methods. There is a search box at the top to narrow the selection.

share|improve this answer

At the top of your text editor, you should have a dropdown that lists all the methods, properties etc in the current type; and it's clickable (even if those members are defined in other files - in which case they're greyed out but you can still navigate with them).

Also, if you use the Class Explorer (CTRL+ALT+C) to navigate your project, then you'll get a full overview of all your types. However, there doesn't appear to be a setting in Tools/Options that allows you to track the active type in that window (there is for the solution explorer) - perhaps a macro or addin is in order...

share|improve this answer

In Visual Studio 2005 and 2008 you can try the Source Code Outliner Power Toy.

alt text

share|improve this answer

Do you mean the class view window (View->Class View, or Ctrl+W,C)?

You also have the intellisence popup-window

share|improve this answer

In visual studio 2012, you can view the outline ( fields and methods) in the solution explorer by expanding the node corresponding to your file .

share|improve this answer

You could also try out the excellent Visual Studio 2010/2012 extension, VS10x Code Map:

Overview

VS10x Code Map is a Visual Studio 2012/2010 extension that displays a graphical nested representation of the current code editor window (C# and VB.NET). It helps the developer visualize type nesting, implemented interfaces, regions, member type and scope, as well as quickly navigate to their respective positions in code.

VS10x interface screenshot

They offer a free 30 day trial and if you like it then it doesn't cost the earth. Here are two links for more info:

http://visualstudiogallery.msdn.microsoft.com/1c54d1bd-d898-4705-903f-fa4a319b50f2

http://www.axtools.com/products-vs2010-extensions.php

share|improve this answer

ReSharper has an 'ReSharper | Windows | File Structure' window, which is used for visualizing current code file structure.

share|improve this answer

My best way to do this is, that i open the Code Definition Window, under View -> Code Definition Window or press Ctrl + W, D .

And then i got it floated and i have the definitions of methods in separate windows.

Regards

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.