c# - Is it possible to modify the Navigation Bar in Visual Studio, or to otherwise add a similar graphical element to the code editor? -
I like the group and browseability which provide areas in the C # code, but the manual process of maintaining them likes (Even the auto-formatting tools are not right because they take some time for large files), and other developers do not like them at all, so a better solution would be to do this automatically by the IDE Being done Interpretation and without touching the code. Visual Studio has something to browse classes and members alphabetically with these lines already with the navigation bar, but this code does not provide a group by element type. What I want to do, the navigation bar has three parts instead of two: first shows classes, alphabetically shows the other members alphabetically, and the third element shows elements such as (fields, attributes, public ways , Event handlers, etc.). Can I access this navigation bar anyway through this studio SDK and if not, can I add a similar graphical element to the code editor and make it from scratch? The option is implementing my thoughts in a tool window and docking it, similar to the file structure of the Risarar, which would be less ideal. Thanks!
I do not think you can increase the built-in navigation bar for what you want, but Visual Studio 2010 You can create your own NAV bar in the form of a visual margin. In your implementation, you will have to scan the current file for the classrooms and members that show with the carat movement and synchronize.
Comments
Post a Comment