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
|
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 |
|||
|
|
|
|
|||||||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
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... |
|||
|
|
|
In Visual Studio 2005 and 2008 you can try the Source Code Outliner Power Toy. |
|||
|
|
|
Do you mean the class view window (View->Class View, or Ctrl+W,C)? You also have the intellisence popup-window |
|||
|
|
|
In visual studio 2012, you can view the outline ( fields and methods) in the solution explorer by expanding the node corresponding to your file . |
|||
|
|
|
You could also try out the excellent Visual Studio 2010/2012 extension, VS10x Code Map:
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 |
|||
|
|
|
ReSharper has an 'ReSharper | Windows | File Structure' window, which is used for visualizing current code file structure. |
|||
|
|
|
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 |
|||
|
|