Решение:
Статья – http://visualstudioshortcuts.com/2013/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 | Analyze Navigate Backward Shift+Alt+3 Navigate Forward Shift+Alt+4 Architecture New Diagram Ctrl+\, Ctrl+N Architecture Context Menus Add Node Ins Both Dependencies B Incoming Dependencies I Outgoing Dependencies O New Comment Ctrl+Shift+K Ctrl+E, C Remove Del Rename F2 Architecture Designer Navigate To Code F12 Build Build Selection Shift+F6 Build Solution Ctrl+Shift+B F6 Cancel Ctrl+Break Compile Ctrl+F7 Run Code Analysison Solution Alt+F11 Class Diagram Collapse Num - Expand Num + Class View Context Menus Properties Alt+Enter Viewin Page Inspector Ctrl+K, Ctrl+G Misc Commit All Edits Shift+Alt+U Move Left Edgetotheleft Ctrl+Shift+, Move Left Edgetotheright Ctrl+Shift+. Move Right Edgetotheleft Ctrl+Shift+Alt+, Move Right Edgetotheright Ctrl+Shift+Alt+. TSql Editor Clone Query Ctrl+Alt+N TSql Editor Database Combo Shift+Alt+PgDn View File In Script Panel Shift+Alt+PgDn Debug Apply Code Changes Alt+F10 Autos Ctrl+Alt+V, A Ctrl+D, A Ctrl+D, Ctrl+A Break All Ctrl+Alt+Break Breakat Function Ctrl+B Ctrl+D, N Ctrl+D, Ctrl+N Breakpoints Ctrl+Alt+B Ctrl+D, B Ctrl+D, Ctrl+B Call Stack Ctrl+Alt+C Ctrl+D, C Ctrl+D, Ctrl+C Delete All Breakpoints Ctrl+Shift+F9 Launch Alt+F2 Disassembly Ctrl+Alt+D DOMExplorer Ctrl+Alt+V, D Enable Breakpoint Ctrl+F9 Exceptions Ctrl+Alt+E Ctrl+D, E Ctrl+D, Ctrl+E Go To Previous Callor Intelli Trace Event Ctrl+Shift+F11 Capture Frame Ctrl+F12 Start Diagnostics Alt+F5 Graphics Move Pixel Selection Down Shift+Alt+Down Arrow Graphics Move Pixel Selection Left Shift+Alt+Left Arrow Graphics Move Pixel Selection Right Shift+Alt+Right Arrow Graphics Move Pixel Selection Up Shift+Alt+Up Arrow Graphics Reset Zoom Shift+Alt+0 Graphics Zoom In Shift+Alt+= Graphics Zoom Out Shift+Alt+- Immediate Ctrl+Alt+I Ctrl+D, I Ctrl+D, Ctrl+I Intelli Trace Calls Ctrl+Alt+Y, T Intelli Trace Events Ctrl+Alt+Y, F Java Script Console Ctrl+Alt+V, C Locals Ctrl+Alt+V, L Ctrl+D, L Ctrl+D, Ctrl+L Process Combo Ctrl+5 Stack Frame Combo Ctrl+7 Thread Combo Ctrl+6 Toggle Current Thread Flagged State Ctrl+8 Toggle Flagged Threads Ctrl+9 Memory1 Ctrl+Alt+M, 1 Ctrl+D, Y Ctrl+D, Ctrl+Y Memory2 Ctrl+Alt+M, 2 Memory3 Ctrl+Alt+M, 3 Memory4 Ctrl+Alt+M, 4 Modules Ctrl+Alt+U Ctrl+D, M Ctrl+D, Ctrl+M Parallel Stacks Ctrl+Shift+D, S Parallel Watch1 Ctrl+Shift+D, 1 Parallel Watch2 Ctrl+Shift+D, 2 Parallel Watch3 Ctrl+Shift+D, 3 Parallel Watch4 Ctrl+Shift+D, 4 Processes Ctrl+Alt+Z Ctrl+D, P Ctrl+D, Ctrl+P Quick Watch Shift+F9 Ctrl+Alt+Q Ctrl+D, Q Ctrl+D, Ctrl+Q Refresh Windowsapp Ctrl+Shift+R Registers Ctrl+Alt+G Ctrl+D, R Ctrl+D, Ctrl+R Restart Ctrl+Shift+F5 Run To Cursor Ctrl+F10 Set Next Statement Ctrl+Shift+F10 Show Call Stackon Code Map Ctrl+Shift+` Show Next Statement Alt+Num * Start F5 Start Windows Phone Application Analysis Alt+F1 Start Without Debugging Ctrl+F5 Step Into F11 Step Into Current Process Ctrl+Alt+F11 Step Into Specific Shift+Alt+F11 Step Out Shift+F11 Step Out Current Process Ctrl+Shift+Alt+F11 Step Over F10 Step Over Current Process Ctrl+Alt+F10 Stop Debugging Shift+F5 Stop Performance Analysis Shift+Alt+F2 Tasks Ctrl+Shift+D, K Ctrl+D, K Ctrl+D, Ctrl+K Threads Ctrl+Alt+H Ctrl+D, T Ctrl+D, Ctrl+T Toggle Breakpoint F9 Toggle Disassembly Ctrl+F11 Ctrl+D, D Ctrl+D, Ctrl+D Watch1 Ctrl+Alt+W, 1 Ctrl+D, W Ctrl+D, Ctrl+W Watch2 Ctrl+Alt+W, 2 Watch3 Ctrl+Alt+W, 3 Watch4 Ctrl+Alt+W, 4 Debugger Context Menus Delete Alt+F9, D Go To Disassembly Alt+F9, A Go To Source Code Alt+F9, S Design Fit All Ctrl+0 Show Handles F9 Zoom In Ctrl+Alt+= Zoom Out Ctrl+Alt+- Diagnostics Hub Stop Collection Ctrl+Alt+F2 Diff Ignore Trim Whitespace Ctrl+\, Ctrl+Space Inline View Ctrl+\, Ctrl+1 Left Only View Ctrl+\, Ctrl+3 Next Difference F8 Previous Difference Shift+F8 Right Only View Ctrl+\, Ctrl+4 Side By Side View Ctrl+\, Ctrl+2 Switch Between Left And Right Ctrl+\, Ctrl+Tab Synchronize View Toggle Ctrl+\, Ctrl+Down Arrow DOMExplorer Refresh F5 Select Element Ctrl+B Show Layout Ctrl+Shift+I Edit Break Line Enter Shift+Enter Char Left Left Arrow Char Left Extend Shift+Left Arrow Char Left Extend Column Shift+Alt+Left Arrow Char Right Right Arrow Char Right Extend Shift+Right Arrow Char Right Extend Column Shift+Alt+Right Arrow Char Transpose Ctrl+T Clear Bookmarks Ctrl+B, C Ctrl+B, Ctrl+C Collapse All Outlining Ctrl+M, Ctrl+A Collapse Current Region Ctrl+M, Ctrl+S Collapse Tag Ctrl+M, Ctrl+T Collapseto Definitions Ctrl+M, Ctrl+O Ctrl+M, O Comment Selection Ctrl+K, Ctrl+C Ctrl+E, C Ctrl+E, Ctrl+C Complete Word Ctrl+Space Alt+Right Arrow Ctrl+K, W Ctrl+K, Ctrl+W Copy Ctrl+C Ctrl+Ins Copy Parameter Tip Ctrl+Shift+Alt+C Create Copyof Work Item Shift+Alt+C Cut Ctrl+X Shift+Del Cycle Clipboard Ring Ctrl+Shift+V Ctrl+Shift+Ins Decrease Filter Level Alt+, Delete Del Ctrl+Del Shift+Del Delete Backwards Bkspce Shift+Bkspce Delete From Model Shift+Del Delete Horizontal White Space Ctrl+K, Ctrl+\ Ctrl+E, \ Ctrl+E, Ctrl+\ Document End Ctrl+End End Document End Extend Ctrl+Shift+End Shift+End Document Start Ctrl+Home Home Document Start Extend Ctrl+Shift+Home Shift+Home Edit Cell F2 Enable Bookmark Ctrl+B, E Ctrl+B, Ctrl+E Expand All Outlining Ctrl+M, Ctrl+X Expand Collapse Base Type List Shift+Alt+B Expand Current Region Ctrl+M, Ctrl+E Find Ctrl+F Find All References Ctrl+K, R Ctrl+K, Ctrl+R Shift+F12 Findin Files Ctrl+Shift+F Find Next F3 Find Next Selected Ctrl+F3 Find Previous Shift+F3 Find Previous Selected Ctrl+Shift+F3 Format Document Ctrl+K, Ctrl+D Ctrl+E, D Ctrl+E, Ctrl+D Format Selection Ctrl+K, Ctrl+F Ctrl+E, F Ctrl+E, Ctrl+F Generate Method Ctrl+K, M Ctrl+K, Ctrl+M Go To Ctrl+G Goto Brace Ctrl+] Goto Brace Extend Ctrl+Shift+] Go To Declaration Ctrl+F12 Go To Definition F12 Go To Find Combo Ctrl+/ Go To Next Location F8 Go To Prev Location Shift+F8 Hide Selection Ctrl+M, Ctrl+H Increase Filter Level Alt+. Incremental Search Ctrl+I Indent Shift+Alt+Right Arrow Insert Snippet Ctrl+K, Ctrl+X Ctrl+K, X Insert Tab Tab Line Cut Ctrl+L Line Delete Ctrl+Shift+L Line Down Down Arrow Line Down Extend Shift+Down Arrow Shift+Up Arrow Line Down Extend Column Shift+Alt+Down Arrow Line End End Line End Extend Shift+End Line End Extend Column Shift+Alt+End Line Open Above Ctrl+Enter Line Open Below Ctrl+Shift+Enter Line Start Home Line Start Extend Shift+Home Line Start Extend Column Shift+Alt+Home Line Transpose Shift+Alt+T Line Up Up Arrow Line Up Extend Shift+Up Arrow Shift+Down Arrow Line Up Extend Column Shift+Alt+Up Arrow List Members Ctrl+J Ctrl+K, L Ctrl+K, Ctrl+L Make Lowercase Ctrl+U Make Uppercase Ctrl+Shift+U Move Control Down Ctrl+Down Arrow Down Arrow Move Control Down Grid Down Arrow Move Control Left Ctrl+Left Arrow Left Arrow Move Control Left Grid Left Arrow Move Control Right Ctrl+Right Arrow Right Arrow Move Control Right Grid Right Arrow Move Control Up Ctrl+Up Arrow Up Arrow Move Control Up Grid Up Arrow Move Selected Lines Down Alt+Down Arrow Move Selected Lines Up Alt+Up Arrow Navigate To Ctrl+, Navigate To Lollipop Shift+Alt+L New Accelerator Ins New String Ins Next Bookmark Ctrl+K, Ctrl+N Ctrl+B, N Ctrl+B, Ctrl+N Next Highlighted Reference Ctrl+Shift+Down Arrow Next Key Typed Ctrl+W Open File Ctrl+Shift+G Outdent Shift+Alt+Left Arrow Overtype Mode Ins Page Down PgDn Page Down Extend Shift+PgDn Page Up PgUp Page Up Extend Shift+PgUp Parameter Info Ctrl+Shift+Space Ctrl+K, P Ctrl+K, Ctrl+P Paste Ctrl+V Shift+Ins Paste Parameter Tip Ctrl+Shift+Alt+P Peek Backward Ctrl+Alt+- Peek Definition Alt+F12 Peek Forward Ctrl+Alt+= Previous Bookmark Ctrl+K, Ctrl+P Ctrl+B, P Ctrl+B, Ctrl+P Previous Highlighted Reference Ctrl+Shift+Up Arrow Quick Find Symbol Shift+Alt+F12 Quick Info Ctrl+K, Ctrl+I Ctrl+K, I Redo Ctrl+Y Ctrl+Shift+Z Shift+Alt+Bkspce Refresh Remote References Ctrl+Shift+J Refresh Work Item F5 Remove Del Removefrom Diagram Del Remove Row Ctrl+Del Replace Ctrl+H Replacein Files Ctrl+Shift+H Reverse Incremental Search Ctrl+Shift+I Scroll Column Left Ctrl+Left Arrow Scroll Column Right Ctrl+Right Arrow Scroll Line Down Ctrl+Down Arrow Scroll Line Up Ctrl+Up Arrow Select All Ctrl+A Select Current Word Ctrl+Shift+W Selection Cancel Esc Select Next Control Tab Select Previous Control Shift+Tab Select To Last Go Back Ctrl+= Show Code Lens Menu Alt+` Show Tile Grid Enter Size Control Down Ctrl+Shift+Down Arrow Shift+Down Arrow Size Control Down Grid Shift+Down Arrow Size Control Left Ctrl+Shift+Left Arrow Shift+Left Arrow Size Control Left Grid Shift+Left Arrow Size Control Right Ctrl+Shift+Right Arrow Shift+Right Arrow Size Control Right Grid Shift+Right Arrow Size Control Up Ctrl+Shift+Up Arrow Shift+Up Arrow Size Control Up Grid Shift+Up Arrow Stop Hiding Current Ctrl+M, Ctrl+U Stop Outlining Ctrl+M, Ctrl+P Ctrl+M, P Stop Search Alt+F3, S Surround With Ctrl+K, Ctrl+S Ctrl+K, S Swap Anchor Ctrl+K, Ctrl+A Ctrl+E, A Ctrl+E, Ctrl+A Tab Left Shift+Tab Toggle All Outlining Ctrl+M, Ctrl+L Ctrl+M, L Toggle Bookmark Ctrl+K, Ctrl+K Ctrl+B, T Ctrl+B, Ctrl+T Toggle Completion Mode Ctrl+Alt+Space Toggle Outlining Expansion Ctrl+M, Ctrl+M Ctrl+M, M Toggle Task List Shortcut Ctrl+K, Ctrl+H Ctrl+E, T Ctrl+E, Ctrl+T Toggle Word Wrap Ctrl+E, Ctrl+W Ctrl+E, W Uncomment Selection Ctrl+K, Ctrl+U Ctrl+E, U Ctrl+E, Ctrl+U Undo Ctrl+Z Alt+Bkspce View Bottom Ctrl+PgDn View Bottom Extend Ctrl+Shift+PgDn View Top Ctrl+PgUp View Top Extend Ctrl+Shift+PgUp View White Space Ctrl+R, Ctrl+W Ctrl+E, S Ctrl+E, Ctrl+S Word Delete To End Ctrl+Del Word Delete To Start Ctrl+Bkspce Word Next Ctrl+Right Arrow Word Next Extend Ctrl+Shift+Right Arrow Word Next Extend Column Ctrl+Shift+Alt+Right Arrow Word Previous Ctrl+Left Arrow Word Previous Extend Ctrl+Shift+Left Arrow Word Previous Extend Column Ctrl+Shift+Alt+Left Arrow Word Transpose Ctrl+Shift+T Editor Context Menus Add Comment Ctrl+Shift+K Breakpoint Editlabels Alt+F9, L Show Item Ctrl+` Edit Local File Ctrl+Shift+P Execute Ctrl+Alt+F5 Execute In Interactive Alt+Enter Execute Line In Interactive Alt+' Go To View Ctrl+M, Ctrl+G Toggle Header Code File Ctrl+K, Ctrl+O View Call Hierarchy Ctrl+K, Ctrl+T Ctrl+K, T File Exit Alt+F4 New File Ctrl+N New Project Ctrl+Shift+N New Web Site Shift+Alt+N Open File Ctrl+O Open Project Ctrl+Shift+O Open Web Site Shift+Alt+O Print Ctrl+P Rename F2 Save All Ctrl+Shift+S Save Selected Items Ctrl+S Format Align Bottoms Ctrl+Shift+Down Arrow Align Centers Shift+F9 Align Lefts Ctrl+Shift+Left Arrow Align Middles F9 Align Rights Ctrl+Shift+Right Arrow Align Tops Ctrl+Shift+Up Arrow Bold Ctrl+B Button Bottom Ctrl+B Button Right Ctrl+R Center Horizontal Ctrl+Shift+F9 Center Vertical Ctrl+F9 Check Mnemonics Ctrl+M Convertto Hyperlink Ctrl+L Edit Text F2 Insert Bookmark Ctrl+Shift+L Italic Ctrl+I Reset All Ctrl+Shift+R Sizeto Content Shift+F7 Space Across Alt+Right Arrow Alt+Left Arrow Space Down Alt+Up Arrow Alt+Down Arrow Tab Order Ctrl+D Test Dialog Ctrl+T Toggle Guides Ctrl+G Underline Ctrl+U Graph View Bottomto Top Alt+Up Arrow Leftto Right Alt+Right Arrow Rightto Left Alt+Left Arrow Topto Bottom Alt+Down Arrow Help Addand Remove Help Content Ctrl+Alt+F1 Ctrl+F1, M Ctrl+F1, Ctrl+M F1 Help F1 View Help Ctrl+F1, V Ctrl+F1, Ctrl+V Window Help Shift+F1 Image Airbrush Tool Ctrl+A Brush Tool Ctrl+B Copyand Outline Selection Ctrl+Shift+U Draw Opaque Ctrl+J Ellipse Tool Alt+P Erase Tool Ctrl+Shift+I Filled Ellipse Tool Ctrl+Shift+Alt+P Filled Rectangle Tool Ctrl+Shift+Alt+R Filled Rounded Rectangle Tool Ctrl+Shift+Alt+W Fill Tool Ctrl+F Flip Horizontal Ctrl+H Flip Vertical Shift+Alt+H Larger Brush Ctrl+= Line Tool Ctrl+L Magnification Tool Ctrl+M Magnify Ctrl+Shift+M New Image Type Ins Next Color Ctrl+] Ctrl+Right Arrow Next Right Color Ctrl+Shift+] Ctrl+Shift+Right Arrow Outlined Ellipse Tool Shift+Alt+P Outlined Rectangle Tool Shift+Alt+R Outlined Rounded Rectangle Tool Shift+Alt+W Pencil Tool Ctrl+I Previous Color Ctrl+[ Ctrl+Left Arrow Previous Right Color Ctrl+Shift+[ Ctrl+Shift+Left Arrow Rectangle Selection Tool Shift+Alt+S Rectangle Tool Alt+R Rotate90 Degrees Ctrl+Shift+H Rounded Rectangle Tool Alt+W Show Grid Ctrl+Alt+S Show Tile Grid Ctrl+Shift+Alt+S Small Brush Ctrl+. Smaller Brush Ctrl+- Text Tool Ctrl+T Use Selectionas Brush Ctrl+U Zoom In Ctrl+Shift+. Ctrl+Up Arrow Zoom Out Ctrl+Shift+, Ctrl+Down Arrow Load Test Jump To Counter Pane Ctrl+R, Q Other Context Menus Insert Column Ins Column Ctrl+L Cancel Interactive Evaluation Ctrl+Break Removefrom Workspace Del Go To Controller Ctrl+M, Ctrl+G Viewin Page Inspector Ctrl+K, Ctrl+G Add New Diagram Ins Down Alt+Down Arrow Down5 Alt+PgDn To Bottom Alt+End To Top Alt+Home Up Alt+Up Arrow Up5 Alt+PgUp Rename Ctrl+R, R Removefrom Diagram Shift+Del Hide Methods Pane Ctrl+1 Copy Referenceto Clipboard Ctrl+C Insert Delay Before Ctrl+Alt+D Locate All Shift+Alt+L Locatethe UIControl Ctrl+Shift+L Movecode Ctrl+Alt+C Splitintoanewmethod Ctrl+Shift+T Page Inspector Minimize F12 Project Add Class Shift+Alt+C Add Content Page Ctrl+M, Ctrl+C Add Existing Item Shift+Alt+A Add New Item Ctrl+Shift+A Class Wizard Ctrl+Shift+X Override Ctrl+Alt+Ins Previewchanges Alt+;, Alt+C Publishselectedfiles Alt+;, Alt+P Replaceselectedfilesfromserver Alt+;, Alt+R Projectand Solution Context Menus Move Down Alt+Down Arrow Move Up Alt+Up Arrow Query Designer Cancel Retrieving Data Ctrl+T Criteria Ctrl+2 Diagram Ctrl+1 Execute SQL Ctrl+R Goto Row Ctrl+G Join Mode Ctrl+Shift+J Results Ctrl+4 SQL Ctrl+3 Refactor Encapsulate Field Ctrl+R, Ctrl+E Ctrl+R, E Extract Interface Ctrl+R, Ctrl+I Ctrl+R, I Extract Method Ctrl+R, Ctrl+M Ctrl+R, M Remove Parameters Ctrl+R, Ctrl+V Ctrl+R, V Rename Ctrl+R, Ctrl+R Ctrl+R, R F2 Reorder Parameters Ctrl+R, Ctrl+O Ctrl+R, O Resources Audio Ctrl+4 Files Ctrl+5 Icons Ctrl+3 Images Ctrl+2 Other Ctrl+6 Strings Ctrl+1 Solution Explorer Open Files Filter Ctrl+[, O Ctrl+[, Ctrl+O Pending Changes Filter Ctrl+[, P Ctrl+[, Ctrl+P Sync With Active Document Ctrl+[, S Ctrl+[, Ctrl+S SQL Execute With Debugger Alt+F5 Expand Wildcards Ctrl+R, E Ctrl+R, Ctrl+E Fullyqualify Names Ctrl+R, Q Ctrl+R, Ctrl+Q Moveto Schema Ctrl+R, M Ctrl+R, Ctrl+M Query Results New Row Alt+End Query Results Refresh Shift+Alt+R Query Results Stop Alt+Break Rename Ctrl+R, R F2 Ctrl+R, Ctrl+R SSDTSchema Compare Compare Shift+Alt+C SSDTSchema Compare Generate Script Shift+Alt+G SSDTSchema Compare Next Change Shift+Alt+. SSDTSchema Compare Previous Change Shift+Alt+, SSDTSchema Compare Stop Alt+Break SSDTSchema Compare Write Updates Shift+Alt+U TSql Editor Cancel Query Alt+Break TSql Editor Execute Query Ctrl+Shift+E TSql Editor Results As File Ctrl+D, F TSql Editor Results As Grid Ctrl+D, G TSql Editor Results As Text Ctrl+D, T TSql Editor Show Estimated Plan Ctrl+D, E TSql Editor Toggle Execution Plan Ctrl+D, A TSql Editor Toggle Results Pane Ctrl+D, R Table Columntothe Left Ctrl+Alt+Left Arrow Columntothe Right Ctrl+Alt+Right Arrow Row Above Ctrl+Alt+Up Arrow Row Below Ctrl+Alt+Down Arrow Team Go To Git Branches Ctrl+0, Ctrl+N Ctrl+0, N Go To Git Changes Ctrl+0, Ctrl+G Ctrl+0, G Go To Git Commits Ctrl+0, Ctrl+O Ctrl+0, O Goto Next Work Item Shift+Alt+N Goto Previous Work Item Shift+Alt+P New Linked Work Item Shift+Alt+L Refresh F5 Team Explorer Search Ctrl+' Team Foundation Context Menus Tfs Annotate Move Next Region Alt+PgDn Tfs Annotate Move Previous Region Alt+PgUp Go To Builds Ctrl+0, Ctrl+B Ctrl+0, B Go To Connect Ctrl+0, Ctrl+C Ctrl+0, C Go To Documents Ctrl+0, Ctrl+D Ctrl+0, D Go To Home Ctrl+0, Ctrl+H Ctrl+0, H Go To My Work Ctrl+0, Ctrl+M Ctrl+0, M Go To Pending Changes Ctrl+0, Ctrl+P Ctrl+0, P Go To Reports Ctrl+0, Ctrl+R Ctrl+0, R Go To Settings Ctrl+0, Ctrl+S Ctrl+0, S Go To Team Explorer Navigation Alt+Home Go To Team Explorer Next Section Content Alt+Down Arrow Go To Team Explorer Page Content Alt+0 Go To Team Explorer Previous Section Content Alt+Up Arrow Go To Team Explorer Section1 Content Alt+1 Go To Team Explorer Section2 Content Alt+2 Go To Team Explorer Section3 Content Alt+3 Go To Team Explorer Section4 Content Alt+4 Go To Team Explorer Section5 Content Alt+5 Go To Team Explorer Section6 Content Alt+6 Go To Team Explorer Section7 Content Alt+7 Go To Team Explorer Section8 Content Alt+8 Go To Team Explorer Section9 Content Alt+9 Go To Web Access Ctrl+0, Ctrl+A Ctrl+0, A Go To Work Items Ctrl+0, Ctrl+W Ctrl+0, W Team Explorer Navigate Backward Alt+Left Arrow Team Explorer Navigate Forward Alt+Right Arrow Set Focuson Left Window Alt+1 Set Focuson Result Window Alt+2 Set Focuson Right Window Alt+3 Tfs Context My Work Page Create Copy WI Shift+Alt+C Tfs Context My Work Page New Linked WI Shift+Alt+L Test Use Coded UITest Builder Ctrl+\, Ctrl+C Use Existing Action Recording Ctrl+\, Ctrl+A Test Explorer Debug All Tests Ctrl+R, Ctrl+A Debug All Tests In Context Ctrl+R, Ctrl+T Open Test F12 Repeat Last Run Ctrl+R, L Run All Tests Ctrl+R, A Run All Tests In Context Ctrl+R, T Tools Attachto Process Ctrl+Alt+P Code Snippets Manager Ctrl+K, Ctrl+B Force GC Ctrl+Shift+Alt+F12, Ctrl+Shift+Alt+F12 View All Windows Shift+Alt+M Architecture Explorer Ctrl+\, Ctrl+R NETNonvisual Controls Ctrl+Shift+N Backward Alt+Left Arrow Bookmark Window Ctrl+K, Ctrl+W Ctrl+W, B Ctrl+W, Ctrl+B Browse Next Ctrl+Shift+1 Browse Previous Ctrl+Shift+2 Call Hierarchy Ctrl+W, K Ctrl+W, Ctrl+K Class View Ctrl+Shift+C Ctrl+W, C Ctrl+W, Ctrl+C Class View Go To Search Combo Ctrl+K, Ctrl+V Code Definition Window Ctrl+\, D Ctrl+\, Ctrl+D Ctrl+W, D Ctrl+W, Ctrl+D Command Window Ctrl+Alt+A Ctrl+W, A Ctrl+W, Ctrl+A Data Sources Shift+Alt+D Document Outline Ctrl+Alt+T Ctrl+W, U Ctrl+W, Ctrl+U Edit Label F2 Edit Master Ctrl+M, Ctrl+M Entity Data Model Browser Ctrl+1 Entity Data Model Mapping Details Ctrl+2 Error List Ctrl+\, E Ctrl+\, Ctrl+E Ctrl+W, E Ctrl+W, Ctrl+E F# Interactive Ctrl+Alt+F Find Symbol Results Ctrl+Alt+F12 Ctrl+W, Q Ctrl+W, Ctrl+Q Forward Alt+Right Arrow Forward Browse Context Ctrl+Shift+7 Full Screen Shift+Alt+Enter Navigate Backward Ctrl+- Navigate Forward Ctrl+Shift+- Next Error Ctrl+Shift+F12 Next View Ctrl+PgDn Notifications Ctrl+W, N Ctrl+W, Ctrl+N Object Browser Ctrl+Alt+J Ctrl+W, J Ctrl+W, Ctrl+J Output Ctrl+Alt+O Ctrl+W, O Ctrl+W, Ctrl+O Pending Checkins Ctrl+W, G Ctrl+W, Ctrl+G Pop Browse Context Ctrl+Shift+8 Properties Window F4 Ctrl+W, P Ctrl+W, Ctrl+P Property Pages Shift+F4 Refresh F5 Report Data Ctrl+Alt+D Resource View Ctrl+Shift+E Ctrl+W, R Ctrl+W, Ctrl+R Server Explorer Ctrl+Alt+S Ctrl+W, L Ctrl+W, Ctrl+L Show Smart Tag Shift+Alt+F10 Ctrl+. Solution Explorer Ctrl+Alt+L Ctrl+W, S Ctrl+W, Ctrl+S SQLServer Object Explorer Ctrl+\, Ctrl+S Synchronize Views Ctrl+Shift+Y Task List Ctrl+\, T Ctrl+\, Ctrl+T Ctrl+W, T Ctrl+W, Ctrl+T Tfs Team Explorer Ctrl+\, Ctrl+M Toolbox Ctrl+Alt+X Ctrl+W, X Ctrl+W, Ctrl+X UMLModel Explorer Ctrl+\, Ctrl+U View Code Enter F7 View Designer Shift+F7 View Markup Shift+F7 Web Browser Ctrl+Alt+R Ctrl+W, W Ctrl+W, Ctrl+W Zoom In Ctrl+Shift+. Zoom Out Ctrl+Shift+, Window Activate Document Window Esc Activate Quick Launch Ctrl+Q Activate Quick Launch Previous Category Ctrl+Shift+Q Activate Solution Explorer Search Ctrl+; Activate Window Search Alt+` Add Tabto Selection Ctrl+Shift+Alt+Space Close Document Window Ctrl+F4 Close Tool Window Shift+Esc Keep Tab Open Ctrl+Alt+Home Moveto Navigation Bar Ctrl+F2 Next Document Window Ctrl+F6 Next Document Window Nav Ctrl+Tab Next Pane Alt+F6 Next Tab Ctrl+Alt+PgDn Ctrl+PgDn Next Taband Addto Selection Ctrl+Shift+Alt+PgDn Next Tool Window Nav Alt+F7 Previous Document Window Ctrl+Shift+F6 Previous Document Window Nav Ctrl+Shift+Tab Previous Pane Shift+Alt+F6 Previous Tab Ctrl+Alt+PgUp Ctrl+PgUp Previous Taband Addto Selection Ctrl+Shift+Alt+PgUp Previous Tool Window Nav Shift+Alt+F7 Show Dock Menu Alt+- Show Ez MDIFile List Ctrl+Alt+Down Arrow Toggle Shift+Alt+V Windows Azure Retry Mobile Service Script Operation Ctrl+Num *, Ctrl+R Show Mobile Service Script Error Details Ctrl+Num *, Ctrl+D Workflow Designer Collapse Ctrl+E, Ctrl+C Ctrl+E, C Collapse All Ctrl+E, Ctrl+Y Ctrl+E, Y Connect Nodes Ctrl+E, Ctrl+F Ctrl+E, F Create Variable Ctrl+E, Ctrl+N Ctrl+E, N Expand All Ctrl+E, Ctrl+X Ctrl+E, X Expand In Place Ctrl+E, Ctrl+E Ctrl+E, E Go To Parent Ctrl+E, Ctrl+P Ctrl+E, P Move Focus Ctrl+E, Ctrl+M Ctrl+E, M Navigate Through Designer Ctrl+Alt+F6 Restore Ctrl+E, Ctrl+R Ctrl+E, R Show Hide Argument Designer Ctrl+E, Ctrl+A Ctrl+E, A Show Hide Imports Designer Ctrl+E, Ctrl+I Ctrl+E, I Show Hide Overview Map Ctrl+E, Ctrl+O Ctrl+E, O Show Hide Variable Designer Ctrl+E, Ctrl+V Ctrl+E, V Toggle Selection Ctrl+E, Ctrl+S Ctrl+E, S Zoom In Ctrl+Num + Zoom Out Ctrl+Num - XML Start XSLTDebugging Alt+F5 Start XSLTWithout Debugging Ctrl+Alt+F5 Xsd Designer Show Content Model View Ctrl+2 Show Graph View Ctrl+3 Show Start View Ctrl+1 |