Summary of common shortcut keys in VS2015 and shortcut keys in vs2015
Generate solution F6 and project Shift + F6
Debug and run F5. Terminate the debugging and run Shift + F5.
Run Ctrl + F5
Find the next F3 instance and find the previous Shift + F3 instance.
Attach to process Ctrl + Alt + P, execute F11 Statement by statement
Switch breakpoint F9 (add or cancel breakpoint)
Run Ctrl + F10 at the cursor
Jump out of the current method Shift + F11
New Solution: Ctrl + Shift + N
Open solution: Ctrl + Shift + O
Save the file Ctrl + S and save all files Ctrl + Shift + S
View solution window Ctrl + W, Ctrl + S
Display Properties window Ctrl + W, Ctrl + P
The Error List displays Ctrl + W, Ctrl + E
Ctrl + W, Ctrl + O are displayed in the output list.
Bookmark window Ctrl + W, B
Switch bookmarks Ctrl + B, T
Switch to the next bookmarks Ctrl + B, N
Switch to the previous bookmarks Ctrl + B, P
Clear bookmarks Ctrl + B, C
Switch Ctrl + Tab in the activity window
Browser window Ctrl + W, W
Breakpoint window Ctrl + D, B
Even if the window is Ctrl + D, I
Toolbox Ctrl + W, Ctrl + X
Full Screen switch Shift + Alt + Enter, backward navigation Ctrl +-, Forward Navigation Ctrl + Shift +-
Add the class Shift + Alt + C to the Project
Add new item Ctrl + Shift + A to the Project
Add existing item Shift + Alt + A to the Project
Search for Ctrl + F and find Ctrl + Shift + F in the file
Progressive search Ctrl + I, Trans progressive search Ctrl + Shift + I
Replace Ctrl + H, and replace Ctrl + Shift + H in the file.
Go to the row number Ctrl + G
Clipboard cycle Ctrl + Shift + V Note: 20 items can be stored cyclically in the clipboard. You can call the cut content at will, you only need to press Ctrl + Shift + V until you find the expected item.
Move a word Ctrl + left arrow
Scroll the code screen without moving the cursor position Ctrl + up and down arrows
Delete the current row Ctrl + Shift + L
Hide or expand the current nested folding status Ctrl + M, M
Hide or expand all nested Ctrl + M, L
Fold to define Ctrl + M, O
Switch to display blank Ctrl + E, S
Select the rectangular text Shift + Alt + direction key
Convert all to uppercase: Ctrl + Shift + U all to lowercase Ctrl + U
Force smart sensing Ctrl + J
Display method parameter information Ctrl + Shift + Space
View the current Code quick information Ctrl + K, I
Comment and select Ctrl + K, C, Ctrl + E, C
Uncomment rows Ctrl + K, U or Ctrl + E, U
Insert code segment Ctrl + K, X
Insert the outer code segment Ctrl + K, S
Go to definition F12
Generate method stubs, move the cursor to the called method, and press Shift + Alt + F10
Displays the implementation interface method, positions the cursor on the interface to be implemented by the class, and presses Shift + Alt + F10
View All references, Ctrl + K, R
View call levels Ctrl + K, T
In addition to these common shortcut keys, if developers want to view the system shortcut or expand their shortcut keys, they can open vs-tools-[Options]
Select environment> keyboard in the window]
Search for the shortcut key you want to add.
Original Source: http://www.cnblogs.com/xuwendong/p/6252144.html