VS addin: View markup. Does exist something like that?

放肆的年华 提交于 2019-11-29 11:18:58
Eugene Baranovsky

Tools > Options > Keyboard

Search for View.ToggleDesigner in "Show Commands Containing".

Add new shortcut to Global/Editor with F7.

This works without needing a macro for VS2008/2010

When you are in code view and would like to see markup view there is no Keyboard shortcut for that. Here is what worked for me:

http://www.karpach.com/Visual-Studio-F7-View-Source.htm

If you right click the file in "Solution Explorer" you get a "View Markup" option.

Generally, to add a command to the context menus you'd do the following:

Tools | Customize

On the "Toolbars" tab put a tick next to the "Context Menus" item - this will add a new toolbar to your IDE, with buttons for Editor Context Menus, Class View Context Menus, Debugger Context Menus, etc

Then switch to the "Commands" tab, select the command you want, and drag it to the appropriate menu, and you're done - in this case in the left hand pane select "View", and then in the right hand pane, scroll down until you get to "View Markup".

That being said, in this instance, I can add the button to the context menu for the code editor, but it's greyed out, and unusable - I guess it needs some context that it gets from the Solution Explorer that it doesn't get from the Code window - which is odd, because it's pulling the same details through for "View Designer" and "View Code".

I guess I'd use Shift+F7 then, sorry about that.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!