-
Notifications
You must be signed in to change notification settings - Fork 16
/
vscommands.txt
4666 lines (4666 loc) · 220 KB
/
vscommands.txt
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
AddAnalysisNotes
AddGraph
Analyze.AnalyzeSolutionforCodeClones
Analyze.AttachDetach
Analyze.CalculateCodeMetricsforSelectedProjects
Analyze.CalculateCodeMetricsforSolution
Analyze.CancelCodeMetricsCalculation
Analyze.CodeCloneAnalysisResults
Analyze.ComparePerformanceReports
Analyze.ConfigureCodeAnalysisforProject
Analyze.ConfigureCodeAnalysisforSolution
Analyze.CurrentView
Analyze.ExecuteFilter
Analyze.ExpandHotPath
Analyze.ExportFilter
Analyze.ExportReportData
Analyze.ImportFilter
Analyze.LaunchPerformanceWizard
Analyze.NavigateBackward Bindings:(Global::Shift+Alt+3,)
Analyze.NavigateForward Bindings:(Global::Shift+Alt+4,)
Analyze.NewPerformanceSession
Analyze.NoiseReductionOptions
Analyze.PerformanceExplorer
Analyze.SaveAnalyzedReport
Analyze.ShowFilter
Analyze.ShowHotPathHighlighting
Analyze.SplitScreenHorizontally
Analyze.SplitScreenVertically
Analyze.StartProfiling
Analyze.StartWithProfilingPaused
Analyze.StopFilter
AnkhSVNContextMenus.AnnotateContextMenu.AnnotateShowLog
AnkhSVNContextMenus.AnnotateContextMenu.RepositoryCompareToWc
AnkhSVNContextMenus.AnnotateContextMenu.RepositoryShowChanges
AnkhSVNContextMenus.LogMessageEditor.OpenIssue
AnkhSVNContextMenus.LogMessageEditor.PasteFiles
AnkhSVNContextMenus.LogMessageEditor.PasteRecent
AnkhSVNContextMenus.LogViewerChangedPaths.LogAnnotateRevision
AnkhSVNContextMenus.LogViewerList.LogChangeLogMessage
AnkhSVNContextMenus.LogViewerList.LogOpenIssue
AnkhSVNContextMenus.LogViewerList.LogRevertChangesFrom
AnkhSVNContextMenus.LogViewerList.LogRevertTo
AnkhSVNContextMenus.LogViewerList.LogShowChanges
AnkhSVNContextMenus.LogViewerList.LogShowRevisionProperties
AnkhSVNContextMenus.LogViewerList.Svn.LogCompareWithWorkingCopy
AnkhSVNContextMenus.PendingCommits.OpenVisualStudio
AnkhSVNContextMenus.PendingCommitsHeader.RefreshPendingChanges
AnkhSVNContextMenus.PendingCommitsHeader.SortBy.Ascending
AnkhSVNContextMenus.PendingCommitsHeader.SortBy.Descending
AnkhSVNContextMenus.PendingCommitsHeader.ViewLogMessage
AnkhSVNContextMenus.RepositoryExplorer.OpenWith.ViewAsText
AnkhSVNContextMenus.RepositoryExplorer.OpenWith.ViewInVsNet
AnkhSVNContextMenus.RepositoryExplorer.OpenWith.ViewInWindows
AnkhSVNContextMenus.RepositoryExplorer.OpenWith.ViewInWindowsWith
AnkhSVNContextMenus.RepositoryExplorer.ReposExplorerLog
AnkhSVNContextMenus.RepositoryExplorer.SaveToFile
AnkhSVNContextMenus.RepositoryExplorer.SvnCopyToWorkingCopy
AnkhSVNContextMenus.RepositoryExplorer.SvnNodeAnnotate
AnkhSVNContextMenus.WorkingCopyExplorer.Export
ApplyPatch
ApplyWorkingCopy
Architecture.ByAssembly
Architecture.ByClass
Architecture.ByNamespace
Architecture.ConfigureDefaultCodeGenerationSettings
Architecture.Custom
Architecture.ForIncludeFile
Architecture.ForSolution
Architecture.ImportXMI
Architecture.NewDiagram Bindings:(Global::Ctrl+\, Ctrl+N,)
Architecture.ValidateUMLModel
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.AddNode Bindings:(Graph Document Editor::Ins,)
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Assembly
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Class
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Delegate
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Enum
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Event
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Field
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Interface
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Method
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Namespace
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Property
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Add.Struct
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.AddParentGroup
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.Collapse
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.CollapseAll
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.ConvertToGroup
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.ConvertToLeaf
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.Expand
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.ExpandAll
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.RefetchChildren
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.RemoveFromParent
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.RemoveGroup
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Group.ToggleGrouping
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.AllMatchingObjects
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.BothDependencies Bindings:(Graph Document Editor::B,)
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.Children
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.ConnectedSubgraph
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.HideSelected
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.HideUnselected
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.IncomingDependencies Bindings:(Graph Document Editor::I,)
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.InvertSelection
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.OutgoingDependencies Bindings:(Graph Document Editor::O,)
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.UnhideAll
ArchitectureContextMenus.DirectedGraphContextMenu.Advanced.Select.UnhideChildren
ArchitectureContextMenus.DirectedGraphContextMenu.FlagforFollowUp
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto1
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto10
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto2
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto3
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto4
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto5
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto6
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto7
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto8
ArchitectureContextMenus.DirectedGraphContextMenu.GoToReference.Goto9
ArchitectureContextMenus.DirectedGraphContextMenu.NewComment Bindings:(Graph Document Editor::Ctrl+Shift+K,)
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category1
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category10
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category2
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category3
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category4
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category5
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category6
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category7
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category8
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Category9
ArchitectureContextMenus.DirectedGraphContextMenu.OtherFlagColors.Clear
ArchitectureContextMenus.DirectedGraphContextMenu.Properties
ArchitectureContextMenus.DirectedGraphContextMenu.Remove Bindings:(Graph Document Editor::Del,)
ArchitectureContextMenus.DirectedGraphContextMenu.Rename Bindings:(Graph Document Editor::F2,)
ArchitectureContextMenus.DirectedGraphLegend.CopyStyles
ArchitectureContextMenus.DirectedGraphLegend.Delete
ArchitectureContextMenus.DirectedGraphLegend.Disable
ArchitectureContextMenus.DirectedGraphLegend.MoveDown
ArchitectureContextMenus.DirectedGraphLegend.MoveUp
ArchitectureContextMenus.DirectedGraphLegend.SaveTemplate
ArchitectureDesigner.Activity.Add.AcceptEventAction
ArchitectureDesigner.Activity.Add.Action
ArchitectureDesigner.Activity.Add.ActivityFinalNode
ArchitectureDesigner.Activity.Add.ActivityParameterNode
ArchitectureDesigner.Activity.Add.CallBehaviorAction
ArchitectureDesigner.Activity.Add.CallOperationAction
ArchitectureDesigner.Activity.Add.Comment
ArchitectureDesigner.Activity.Add.Connector
ArchitectureDesigner.Activity.Add.DecisionNode
ArchitectureDesigner.Activity.Add.ForkNode
ArchitectureDesigner.Activity.Add.InitialNode
ArchitectureDesigner.Activity.Add.InputPin
ArchitectureDesigner.Activity.Add.JoinNode
ArchitectureDesigner.Activity.Add.MergeNode
ArchitectureDesigner.Activity.Add.ObjectNode
ArchitectureDesigner.Activity.Add.OutputPin
ArchitectureDesigner.Activity.Add.SendSignalAction
ArchitectureDesigner.ArchitectTools.Add.Ellipse
ArchitectureDesigner.ArchitectTools.Add.Line
ArchitectureDesigner.ArchitectTools.Add.Rectangle
ArchitectureDesigner.Component.Add.Assembly
ArchitectureDesigner.Component.Add.Comment
ArchitectureDesigner.Component.Add.Component
ArchitectureDesigner.Component.Add.Connector
ArchitectureDesigner.Component.Add.Delegation
ArchitectureDesigner.Component.Add.Dependency
ArchitectureDesigner.Component.Add.Generalization
ArchitectureDesigner.Component.Add.ProvidedInterface
ArchitectureDesigner.Component.Add.RequiredInterface
ArchitectureDesigner.Component.ConvertTo.Dependency
ArchitectureDesigner.Component.ConvertTo.Generalization
ArchitectureDesigner.Component.ConvertTo.ProvidedInterface
ArchitectureDesigner.Component.ConvertTo.RequiredInterface
ArchitectureDesigner.Component.CreateLifeline
ArchitectureDesigner.CreateWorkItem
ArchitectureDesigner.HideWorkItemsIcon
ArchitectureDesigner.HideWorkItemsIcon
ArchitectureDesigner.Layer.Add.BidirectionalDependency
ArchitectureDesigner.Layer.Add.Comment
ArchitectureDesigner.Layer.Add.CommentLink
ArchitectureDesigner.Layer.Add.Dependency
ArchitectureDesigner.Layer.Add.Layer
ArchitectureDesigner.Layer.GenerateDependencies
ArchitectureDesigner.Layer.GoTo.LayerDiagram
ArchitectureDesigner.Layer.Group
ArchitectureDesigner.Layer.HideSuppressedErrors
ArchitectureDesigner.Layer.ShowSuppressedErrors
ArchitectureDesigner.Layer.StopSuppressingErrors
ArchitectureDesigner.Layer.SuppressErrors
ArchitectureDesigner.Layer.ValidateArchitecture
ArchitectureDesigner.Layer.ViewLinks
ArchitectureDesigner.LinkToWorkItem
ArchitectureDesigner.LogicalClass.Add.Aggregation
ArchitectureDesigner.LogicalClass.Add.Association
ArchitectureDesigner.LogicalClass.Add.Attribute
ArchitectureDesigner.LogicalClass.Add.Class
ArchitectureDesigner.LogicalClass.Add.Comment
ArchitectureDesigner.LogicalClass.Add.Composition
ArchitectureDesigner.LogicalClass.Add.Connector
ArchitectureDesigner.LogicalClass.Add.Dependency
ArchitectureDesigner.LogicalClass.Add.Enumeration
ArchitectureDesigner.LogicalClass.Add.Import
ArchitectureDesigner.LogicalClass.Add.Inheritance
ArchitectureDesigner.LogicalClass.Add.Interface
ArchitectureDesigner.LogicalClass.Add.Literal
ArchitectureDesigner.LogicalClass.Add.Operation
ArchitectureDesigner.LogicalClass.Add.Package
ArchitectureDesigner.LogicalClass.Collapse
ArchitectureDesigner.LogicalClass.ConvertTo.Association
ArchitectureDesigner.LogicalClass.ConvertTo.Dependency
ArchitectureDesigner.LogicalClass.ConvertTo.Import
ArchitectureDesigner.LogicalClass.ConvertTo.Inheritance
ArchitectureDesigner.LogicalClass.CreateLifeline
ArchitectureDesigner.LogicalClass.ExpandCollapse
ArchitectureDesigner.LogicalClass.GoToInterfaceDefinition
ArchitectureDesigner.LogicalClass.HideFullSignature
ArchitectureDesigner.LogicalClass.HideQualifiedName
ArchitectureDesigner.LogicalClass.OverrideAbstractOperations
ArchitectureDesigner.LogicalClass.OverrideOperations
ArchitectureDesigner.LogicalClass.ShowAsLine
ArchitectureDesigner.LogicalClass.ShowAsLollipop
ArchitectureDesigner.LogicalClass.ShowFullSignature
ArchitectureDesigner.LogicalClass.ShowQualifiedName
ArchitectureDesigner.LogicalClass.SmartTag.OverrideAllOperations
ArchitectureDesigner.LogicalClass.SmartTag.OverrideOperations
ArchitectureDesigner.LogicalClass.SmartTag.ShowAsLollipop
ArchitectureDesigner.PasteReference
ArchitectureDesigner.RearrangeLayout
ArchitectureDesigner.RemoveWorkItems
ArchitectureDesigner.Sequence.Add.AsynchronousMessage
ArchitectureDesigner.Sequence.Add.Comment
ArchitectureDesigner.Sequence.Add.CommentLink
ArchitectureDesigner.Sequence.Add.CreateMessage
ArchitectureDesigner.Sequence.Add.InteractionOperandAfter
ArchitectureDesigner.Sequence.Add.InteractionOperandBefore
ArchitectureDesigner.Sequence.Add.InteractionUse
ArchitectureDesigner.Sequence.Add.Lifeline
ArchitectureDesigner.Sequence.Add.SynchronousMessage
ArchitectureDesigner.Sequence.CollapseLifelines
ArchitectureDesigner.Sequence.CreateLogicalInterfaceInteraction
ArchitectureDesigner.Sequence.CreateLogicalMethodInteraction
ArchitectureDesigner.Sequence.CreateNewSequenceInteraction
ArchitectureDesigner.Sequence.Expand
ArchitectureDesigner.Sequence.ExpandOutgoingLifelineOnLostMessage
ArchitectureDesigner.Sequence.GenerateSequenceFromMessage
ArchitectureDesigner.Sequence.Goto
ArchitectureDesigner.Sequence.GoToSequenceInteraction
ArchitectureDesigner.Sequence.LinkInteractionUseToSDInteraction
ArchitectureDesigner.Sequence.MoveMessageToDiagram
ArchitectureDesigner.Sequence.MoveToDiagram
ArchitectureDesigner.Sequence.NavigateToCode
ArchitectureDesigner.Sequence.NavigateToProgressionNode
ArchitectureDesigner.Sequence.SeqCreateLogicalClassInteraction
ArchitectureDesigner.Sequence.SurroundWith.AltCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.AssertCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.BreakCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.ConsiderCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.CriticalCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.IgnoreCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.LoopCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.NegativeCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.OptionCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.ParallelCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.StrictSequencingCombinedFragment
ArchitectureDesigner.Sequence.SurroundWith.WeakSequencingCombinedFragment
ArchitectureDesigner.UseCase.Add.Actor
ArchitectureDesigner.UseCase.Add.Artifact
ArchitectureDesigner.UseCase.Add.Association
ArchitectureDesigner.UseCase.Add.Comment
ArchitectureDesigner.UseCase.Add.CommentLink
ArchitectureDesigner.UseCase.Add.Dependency
ArchitectureDesigner.UseCase.Add.Extend
ArchitectureDesigner.UseCase.Add.Generalization
ArchitectureDesigner.UseCase.Add.Include
ArchitectureDesigner.UseCase.Add.Subsystem
ArchitectureDesigner.UseCase.Add.UseCase
ArchitectureDesigner.ValidateAll
ArchitectureDesigner.ViewWorkItems
ArchitectureDesigner.Zoom
ArchitectureDesigner.ZoomIn
ArchitectureDesigner.ZoomOut
ArchitectureExplorer.ExportDGML
ArchitectureExplorer.MergeGraph
ArchitectureExplorer.NewGraph
ArchitectureExplorer.Refresh
AutomaticallyLayoutwhenDebugging
BottomToTop
Build.BatchBuild
Build.BuildOnlyProject
Build.BuildPage
Build.BuildRuntimeLicenses
Build.BuildSelection
Build.BuildSolution Bindings:(Global::Ctrl+Shift+B,)
Build.Cancel Bindings:(Global::Ctrl+Break,)
Build.CleanOnlyProject
Build.CleanSelection
Build.CleanSolution
Build.Compile Bindings:(Global::Ctrl+F7,)
Build.ConfigurationManager
Build.DeploySelection
Build.DeploySolution
Build.Instrument
Build.Link
Build.ManageBuildControllers
Build.ManageBuildQualities
Build.NewBuildDefinition
Build.Optimize
Build.ProjectPickerBuild
Build.ProjectPickerRebuild
Build.Publish
Build.PublishSelection
Build.QueueNewBuild
Build.RebuildOnlyProject
Build.RebuildSelection
Build.RebuildSolution
Build.Retract
Build.RunCodeAnalysisonOnlyProject
Build.RunCodeAnalysisonSelection
Build.RunCodeAnalysisonSolution Bindings:(Global::Alt+F11,)
Build.RunCodeAnalysisonWebSite
Build.RunInstrumentedOptimizedApplication
Build.SolutionConfigurations
Build.SolutionPlatforms
Build.SSDTCreateDacpacFromProject
Build.SSDTPublishSelection
Build.TextTemplating.TransformAll
Build.Update
Build.ViewBuilds
Build.ViewControllerQueue
BundleCrossGroupLinks
CheckInDynamicSilent
Checkout
CheckoutDynamicSilent
CircularAnalyzer
ClassDiagram.AddAbstractClass
ClassDiagram.AddClass
ClassDiagram.AddComment
ClassDiagram.AddConstant
ClassDiagram.AddConstructor
ClassDiagram.AddDelegate
ClassDiagram.AddDestructor
ClassDiagram.AddEnum
ClassDiagram.AddEvent
ClassDiagram.AddField
ClassDiagram.AddInterface
ClassDiagram.AddMethod
ClassDiagram.AddModule
ClassDiagram.AddParameter
ClassDiagram.AddProperty
ClassDiagram.AddStruct
ClassDiagram.AdjustShapesWidth
ClassDiagram.Collapse Bindings:(Class Diagram::Num -,)
ClassDiagram.DisplayFullSignature
ClassDiagram.DisplayName
ClassDiagram.DisplayNameandType
ClassDiagram.Expand Bindings:(Class Diagram::Num +,)
ClassDiagram.ExportDiagramasImage
ClassDiagram.GroupbyAccess
ClassDiagram.GroupbyKind
ClassDiagram.Hide
ClassDiagram.HideCompartment
ClassDiagram.HideInheritanceLine
ClassDiagram.HideLine
ClassDiagram.ImplementInterfaceStubsExplicitly
ClassDiagram.ImplementInterfaceStubsImplicitly
ClassDiagram.Insert
ClassDiagram.LayoutDiagram
ClassDiagram.MoveDown
ClassDiagram.MoveUp
ClassDiagram.NavigatetoEvents
ClassDiagram.NavigatetoFields
ClassDiagram.NavigatetoMethods
ClassDiagram.NavigatetoProperties
ClassDiagram.NewConstant
ClassDiagram.NewConstructor
ClassDiagram.NewDestructor
ClassDiagram.NewEvent
ClassDiagram.NewField
ClassDiagram.NewMethod
ClassDiagram.NewProperty
ClassDiagram.RelinkShapewithCode
ClassDiagram.Reroute
ClassDiagram.ShowAllMembers
ClassDiagram.ShowasAssociation
ClassDiagram.ShowasCollectionAssociation
ClassDiagram.ShowasField
ClassDiagram.ShowBaseType
ClassDiagram.ShowDerivedTypes
ClassDiagram.ShowInterface
ClassDiagram.ShowType
ClassDiagram.SortAlphabetically
ClassDiagram.ToggleLollipopExpandCollapse
ClassDiagram.Unhide
ClassDiagram.Zoom10
ClassDiagram.Zoom100
ClassDiagram.Zoom125
ClassDiagram.Zoom150
ClassDiagram.Zoom200
ClassDiagram.Zoom25
ClassDiagram.Zoom300
ClassDiagram.Zoom33
ClassDiagram.Zoom400
ClassDiagram.Zoom50
ClassDiagram.Zoom66
ClassDiagram.Zoom75
ClassDiagram.ZoomToFit
ClassViewContextMenus.ClassViewFolder.MoveToTop
ClassViewContextMenus.ClassViewItem.Compare
ClassViewContextMenus.ClassViewItem.Subversion.Merge
ClassViewContextMenus.ClassViewItem.Subversion.SwitchItem
ClassViewContextMenus.ClassViewItem.Subversion.UpdateFolderSpecific
ClassViewContextMenus.ClassViewItem.SvnAddToPending
ClassViewContextMenus.ClassViewItem.SvnRemoveFromPending
ClassViewContextMenus.ClassViewItem.TfsContextCompare
ClassViewContextMenus.ClassViewItem.UpdateFolderLatest
ClassViewContextMenus.ClassViewItem.UpdateItemLatest
ClassViewContextMenus.ClassViewItem.ViewClassDiagram
ClassViewContextMenus.ClassViewMember.CallBrowser.CallBrowserShowCallersGraph
ClassViewContextMenus.ClassViewMember.CallBrowser.CallBrowserShowCallersGraphInNewWindow
ClassViewContextMenus.ClassViewMember.CallBrowser.CallBrowserShowCallGraph
ClassViewContextMenus.ClassViewMember.CallBrowser.CallBrowserShowCallGraphInNewWindow
ClassViewContextMenus.ClassViewMultiselectProjectreferencesItems.GoToDialog
ClassViewContextMenus.ClassViewMultiselectProjectreferencesItems.Properties Bindings:(Global::Alt+Enter,)
ClassViewContextMenus.ClassViewProject.Analyze.CalculateCodeMetrics
ClassViewContextMenus.ClassViewProject.Analyze.RunCodeAnalysis
ClassViewContextMenus.ClassViewProject.Build
ClassViewContextMenus.ClassViewProject.Clean
ClassViewContextMenus.ClassViewProject.Debug.Startnewinstance
ClassViewContextMenus.ClassViewProject.Debug.StepIntonewinstance
ClassViewContextMenus.ClassViewProject.Deploy
ClassViewContextMenus.ClassViewProject.OpeninBlend
ClassViewContextMenus.ClassViewProject.Publish
ClassViewContextMenus.ClassViewProject.Rebuild
ClassViewContextMenus.ClassViewProject.SourceControl.AddSelectedProjectstoSourceControl
ClassViewContextMenus.ClassViewProject.SourceControl.ContextGetLatestVersion
ClassViewContextMenus.ClassViewProject.SourceControl.Get
ClassViewContextMenus.ClassViewProject.SourceControl.ItemConflictEdit
ClassViewContextMenus.ClassViewProject.SourceControl.LockMustLock
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectCommit
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectFile.CommitItem
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectFile.SubversionProperties
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectFile.UpdateItemSpecific
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectHistory
ClassViewContextMenus.ClassViewProject.SourceControl.ProjectUpdateLatest
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.ResolveCaseConflict
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.ResolveConflict
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.ResolveusingTool
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingMineonconflicts
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingMyFile
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingOriginalfile
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingTheirfile
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingTheironconflicts
ClassViewContextMenus.ClassViewProject.SourceControl.Resolve.UsingWorkingcopyfile
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.BranchProject
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Cleanup
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.CreatePatch
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Ignore.SvnIgnoreFile
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Ignore.SvnIgnoreFilesInFolder
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Ignore.SvnIgnoreFileType
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Ignore.SvnIgnoreFolder
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Lock
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.MergeProject
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.MovetoChangeList.IgnoreOnCommit
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.MovetoChangeList.MoveToChangeList
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.ProjectProperties
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.SvnRefreshStatus
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.SvnRemoveFromChangeList
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.SwitchProject
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.UnifiedDiff
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.Unlock
ClassViewContextMenus.ClassViewProject.SourceControl.Subversion.UpdateSpecific
ClassViewContextMenus.ClassViewProject.SourceControl.Svn.Compare
ClassViewContextMenus.ClassViewProject.SourceControl.Svn.PropertyCompare
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextAddSelectedProjectsToSourceControl
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextCheckIn
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextCheckOutForEdit
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextGetLatestVersion
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextGetSpecificVersion
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextUndoCheckout
ClassViewContextMenus.ClassViewProject.SourceControl.TfsContextViewPendingChanges
ClassViewContextMenus.ClassViewProject.SourceControl.UndoCheckout
ClassViewContextMenus.ClassViewProject.SourceControl.ViewPendingCheckins
ClassViewContextMenus.ClassViewProject.SSDTPublish
ClassViewContextMenus.ClassViewProject.SSDTStaticCodeAnalysisRunCodeAnalysis
ClassViewContextMenus.ClassViewProject.View.ViewClassDiagram
ClassViewContextMenus.ClassViewProject.View.ViewinPageInspector
ClassViewContextMenus.ClassViewProjectReference.ViewinObjectBrowser
ClearCompletedItems
CodeCoverage.ExportResults
CodeCoverage.GoToNextUncovered
CodeCoverage.GoToPreviousUncovered
CodeCoverage.ImportResults
CodeCoverage.MergeResults
CodeCoverage.ShowCodeCoverageColoring
CodeLens.LogAuthorsDoubleClick
CodeLens.LogBugsDoubleClick
CodeLens.LogChangesDoubleClick
CodeLens.LogCodeReviewsDoubleClick
CodeLens.LogShowOnCodeMap
CodeLens.LogWorkItemsDoubleClick
CommitAllEdits Bindings:(Microsoft SQL Server Data Tools, Table Designer::Shift+Alt+U,Microsoft SQL Server Data Tools, T-SQL Editor::Shift+Alt+U,)
CommitPendingChanges
CommitPendingChangesKeepingLocks
CompareBase
CompareLatest
ComparePrevious
ComparePrevious
CompareSpecific
ConvertSolution
CopyReposExplorerUrl
CreatePatch
CreateUserTask
CustomDocWell.ToolsOptions
DataCompareFilter
Debug.AddParallelWatch
Debug.AddWatch
Debug.ApplyCodeChanges Bindings:(Global::Alt+F10,)
Debug.AttachtoProcess
Debug.Autos Bindings:(Global::Ctrl+Alt+V, A,)
Debug.BreakAll Bindings:(Global::Ctrl+Alt+Break,)
Debug.BreakAtAddress
Debug.BreakatFunction
Debug.BreakInFile
Debug.Breakpoints
Debug.CallStack Bindings:(Global::Ctrl+Alt+C,)
Debug.ClearAllDataTips
Debug.ClearDatatipsOnCurrentFile
Debug.ConsoleToggleFilter
Debug.DebugInstalledAppPackage
Debug.DebugType
Debug.DeleteAllBreakpoints Bindings:(Global::Ctrl+Shift+F9,)
Debug.DeleteIntelliTraceEvents
Debug.DetachAll
Debug.DiagnosticsHub.Launch Bindings:(Global::Alt+F2,)
Debug.DisableAllBreakpoints
Debug.Disassembly Bindings:(Global::Ctrl+Alt+D,)
Debug.DOMExplorer Bindings:(Global::Ctrl+Alt+V, D,)
Debug.DomExplorerSwitchTab
Debug.EnableAllBreakpoints
Debug.EnableBreakpoint Bindings:(Global::Ctrl+F9,)
Debug.EvaluateStatement
Debug.Exceptions Bindings:(Global::Ctrl+Alt+E,)
Debug.ExportDataTips
Debug.ExportIntelliTraceEvents
Debug.GoToDisassembly
Debug.GoToLiveMode
Debug.GoToNextCallorIntelliTraceEvent
Debug.GoToPreviousCallorIntelliTraceEvent Bindings:(Global::Ctrl+Shift+F11,)
Debug.GPUThreads
Debug.Graphics.CaptureFrame
Debug.Graphics.DirectXControlPanel
Debug.Graphics.EventCallStack
Debug.Graphics.EventList
Debug.Graphics.LaunchApplication
Debug.Graphics.ObjectTable
Debug.Graphics.PipelineStages
Debug.Graphics.PixelHistory
Debug.Graphics.StartDiagnostics Bindings:(Global::Alt+F5,)
Debug.GraphicsMovePixelSelectionDown Bindings:(Graphics Debugger::Shift+Alt+Down Arrow,)
Debug.GraphicsMovePixelSelectionLeft Bindings:(Graphics Debugger::Shift+Alt+Left Arrow,)
Debug.GraphicsMovePixelSelectionRight Bindings:(Graphics Debugger::Shift+Alt+Right Arrow,)
Debug.GraphicsMovePixelSelectionUp Bindings:(Graphics Debugger::Shift+Alt+Up Arrow,)
Debug.GraphicsResetZoom Bindings:(Graphics Debugger::Shift+Alt+0,)
Debug.GraphicsZoomIn Bindings:(Graphics Debugger::Shift+Alt+=,)
Debug.GraphicsZoomOut Bindings:(Graphics Debugger::Shift+Alt+-,)
Debug.HexadecimalDisplay
Debug.Immediate Bindings:(Global::Ctrl+Alt+I,)
Debug.ImportDataTips
Debug.IntelliTraceCalls
Debug.IntelliTraceEvents
Debug.JavaScriptConsole Bindings:(Global::Ctrl+Alt+V, C,)
Debug.ListCallStack
Debug.ListDisassembly
Debug.ListMemory
Debug.ListModules
Debug.ListProcesses
Debug.ListRegisters
Debug.ListSource
Debug.ListThreads
Debug.Locals Bindings:(Global::Ctrl+Alt+V, L,)
Debug.LocationToolbar.ProcessCombo
Debug.LocationToolbar.StackFrameCombo
Debug.LocationToolbar.ThreadCombo
Debug.LocationToolbar.ToggleCurrentThreadFlaggedState
Debug.LocationToolbar.ToggleFlaggedThreads
Debug.LocationToolbar.ToggleShowCurrentProcessOnly
Debug.ManagedMemory
Debug.Memory1 Bindings:(Global::Ctrl+Alt+M, 1,)
Debug.Memory2 Bindings:(Global::Ctrl+Alt+M, 2,)
Debug.Memory3 Bindings:(Global::Ctrl+Alt+M, 3,)
Debug.Memory4 Bindings:(Global::Ctrl+Alt+M, 4,)
Debug.ModelStoreDumpStore
Debug.Modules
Debug.NewDataBreakpoint
Debug.OpenIntelliTraceSettings
Debug.OpenSolution
Debug.OptionsandSettings
Debug.Output
Debug.ParallelStacks Bindings:(Global::Ctrl+Shift+D, S,)
Debug.ParallelWatch1 Bindings:(Global::Ctrl+Shift+D, 1,)
Debug.ParallelWatch2 Bindings:(Global::Ctrl+Shift+D, 2,)
Debug.ParallelWatch3 Bindings:(Global::Ctrl+Shift+D, 3,)
Debug.ParallelWatch4 Bindings:(Global::Ctrl+Shift+D, 4,)
Debug.Print
Debug.Processes Bindings:(Global::Ctrl+Alt+Z,)
Debug.QuickWatch Bindings:(Global::Shift+F9,Global::Ctrl+Alt+Q,)
Debug.RefreshWindowsapp
Debug.Registers Bindings:(Global::Ctrl+Alt+G,)
Debug.Restart Bindings:(Global::Ctrl+Shift+F5,)
Debug.ReturnToCallSite
Debug.RunCurrentTileToCursor
Debug.RunFlaggedThreadsToCursor
Debug.RunToCursor Bindings:(Global::Ctrl+F10,)
Debug.SaveDumpAs
Debug.SaveIntelliTraceSession
Debug.SetCurrentProcess
Debug.SetCurrentStackFrame
Debug.SetCurrentThread
Debug.SetNextStatement Bindings:(Global::Ctrl+Shift+F10,)
Debug.SetRadix
Debug.ShowCallStackonCodeMap Bindings:(Global::Ctrl+Shift+`,)
Debug.ShowLogSummary
Debug.ShowNextStatement Bindings:(Global::Alt+Num *,)
Debug.Start Bindings:(Global::F5,)
Debug.StartDebugTarget
Debug.StartPerformanceAnalysis
Debug.StartPerformanceAnalysisPaused
Debug.StartupProjectProperties
Debug.StartWithoutDebugging Bindings:(Global::Ctrl+F5,)
Debug.StepBy
Debug.StepByInstruction
Debug.StepByLine
Debug.StepByStatement
Debug.StepIn
Debug.StepInto Bindings:(Global::F11,)
Debug.StepIntoCurrentProcess Bindings:(Global::Ctrl+Alt+F11,)
Debug.StepIntoSpecific Bindings:(Global::Shift+Alt+F11,)
Debug.StepOut Bindings:(Global::Shift+F11,)
Debug.StepOutCurrentProcess Bindings:(Global::Ctrl+Shift+Alt+F11,)
Debug.StepOver Bindings:(Global::F10,)
Debug.StepOverCurrentProcess Bindings:(Global::Ctrl+Alt+F10,)
Debug.Stepoverpropertiesandoperators
Debug.StopApplyingCodeChanges
Debug.StopDebugging Bindings:(Global::Shift+F5,)
Debug.StopEvaluation
Debug.StopPerformanceAnalysis Bindings:(Global::Shift+Alt+F2,)
Debug.SymbolPath
Debug.Tasks Bindings:(Global::Ctrl+Shift+D, K,)
Debug.TerminateAll
Debug.Threads
Debug.ToggleBreakpoint Bindings:(Global::F9,)
Debug.ToggleDisassembly
Debug.ViewDetails
Debug.Watch1 Bindings:(Global::Ctrl+Alt+W, 1,)
Debug.Watch2 Bindings:(Global::Ctrl+Alt+W, 2,)
Debug.Watch3 Bindings:(Global::Ctrl+Alt+W, 3,)
Debug.Watch4 Bindings:(Global::Ctrl+Alt+W, 4,)
DebugAllTestsInSolution
DebuggerContextMenus.AutosWindow.AlwaysLoadAutomatically
DebuggerContextMenus.AutosWindow.CollapseParent
DebuggerContextMenus.AutosWindow.DeleteObjectID
DebuggerContextMenus.AutosWindow.DeleteWatch
DebuggerContextMenus.AutosWindow.EditValue
DebuggerContextMenus.AutosWindow.Elasticcolumn
DebuggerContextMenus.AutosWindow.GoToSourceCode
DebuggerContextMenus.AutosWindow.LoadSymbols
DebuggerContextMenus.AutosWindow.MakeObjectID
DebuggerContextMenus.AutosWindow.PropagateSideEffects
DebuggerContextMenus.AutosWindow.SymbolLoadInformation
DebuggerContextMenus.AutosWindow.SymbolSettings
DebuggerContextMenus.BreakpointsWindow.Delete Bindings:(Global::Alt+F9, D,)
DebuggerContextMenus.BreakpointsWindow.Exportselected
DebuggerContextMenus.BreakpointsWindow.GoToDisassembly Bindings:(Global::Alt+F9, A,)
DebuggerContextMenus.BreakpointsWindow.GoToSourceCode Bindings:(Global::Alt+F9, S,)
DebuggerContextMenus.BreakpointsWindow.SortBy.Address
DebuggerContextMenus.BreakpointsWindow.SortBy.Condition
DebuggerContextMenus.BreakpointsWindow.SortBy.Data
DebuggerContextMenus.BreakpointsWindow.SortBy.Disablesorting
DebuggerContextMenus.BreakpointsWindow.SortBy.File
DebuggerContextMenus.BreakpointsWindow.SortBy.Filter
DebuggerContextMenus.BreakpointsWindow.SortBy.Function
DebuggerContextMenus.BreakpointsWindow.SortBy.HitCount
DebuggerContextMenus.BreakpointsWindow.SortBy.Label
DebuggerContextMenus.BreakpointsWindow.SortBy.Language
DebuggerContextMenus.BreakpointsWindow.SortBy.Name
DebuggerContextMenus.BreakpointsWindow.SortBy.Process
DebuggerContextMenus.BreakpointsWindow.SortBy.SortAscending
DebuggerContextMenus.BreakpointsWindow.SortBy.SortDescending
DebuggerContextMenus.BreakpointsWindow.SortBy.WhenHit
DebuggerContextMenus.CallStackWindow.IncludeCallsToFromOtherThreads
DebuggerContextMenus.CallStackWindow.SwitchToFrame
DebuggerContextMenus.CallStackWindow.UnwindToThisFrame
DebuggerContextMenus.DataTipsContext.Arrange
DebuggerContextMenus.DataTipsContext.Clear
DebuggerContextMenus.DataTipWindow.CopyExpression
DebuggerContextMenus.DataTipWindow.CopyValue
DebuggerContextMenus.DisassemblyWindow.ShowAddress
DebuggerContextMenus.DisassemblyWindow.ShowCodeBytes
DebuggerContextMenus.DisassemblyWindow.ShowLineNumbers
DebuggerContextMenus.DisassemblyWindow.ShowSourceCode
DebuggerContextMenus.DisassemblyWindow.ShowSymbolNames
DebuggerContextMenus.DisassemblyWindow.ShowToolbar
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.Debug.LocationToolbar.ShowThreadIpIndicators
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.Flag
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.Freeze
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.GroupBy.None
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.SwitchToThread
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.Thaw
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.Unflag
DebuggerContextMenus.GPUThreadsWindowShortcutMenu.UnflagAllThreads
DebuggerContextMenus.LocalsWindow.PropagateSideEffects
DebuggerContextMenus.MemoryWindow.1byteInteger
DebuggerContextMenus.MemoryWindow.2byteInteger
DebuggerContextMenus.MemoryWindow.32bitFloatingPoint
DebuggerContextMenus.MemoryWindow.4byteInteger
DebuggerContextMenus.MemoryWindow.64bitFloatingPoint
DebuggerContextMenus.MemoryWindow.8byteInteger
DebuggerContextMenus.MemoryWindow.ANSIText
DebuggerContextMenus.MemoryWindow.BigEndian
DebuggerContextMenus.MemoryWindow.HexadecimalDisplay
DebuggerContextMenus.MemoryWindow.NoData
DebuggerContextMenus.MemoryWindow.NoText
DebuggerContextMenus.MemoryWindow.ReevaluateAutomatically
DebuggerContextMenus.MemoryWindow.ShowToolbar
DebuggerContextMenus.MemoryWindow.SignedDisplay
DebuggerContextMenus.MemoryWindow.UnicodeText
DebuggerContextMenus.MemoryWindow.UnsignedDisplay
DebuggerContextMenus.ModulesWindow.ShowModulesforallProcesses
DebuggerContextMenus.OutputWindow.ExceptionMessages
DebuggerContextMenus.OutputWindow.ModuleLoadMessages
DebuggerContextMenus.OutputWindow.ModuleUnloadMessages
DebuggerContextMenus.OutputWindow.ProcessExitMessages
DebuggerContextMenus.OutputWindow.ProgramOutput
DebuggerContextMenus.OutputWindow.StepFilteringMessages
DebuggerContextMenus.OutputWindow.ThreadExitMessages
DebuggerContextMenus.ProcessesWindow.BreakProcess
DebuggerContextMenus.ProcessesWindow.ContinueProcess
DebuggerContextMenus.ProcessesWindow.DetachProcess
DebuggerContextMenus.ProcessesWindow.Detachwhendebuggingstopped
DebuggerContextMenus.ProcessesWindow.TerminateProcess
DebuggerContextMenus.ScriptProject.EditWCFConfiguration
DebuggerContextMenus.StacksWindowShortcutMenu.Flag
DebuggerContextMenus.StacksWindowShortcutMenu.Freeze
DebuggerContextMenus.StacksWindowShortcutMenu.ShowByteOffsets
DebuggerContextMenus.StacksWindowShortcutMenu.ShowExternalCode
DebuggerContextMenus.StacksWindowShortcutMenu.ShowLineNumbers
DebuggerContextMenus.StacksWindowShortcutMenu.ShowModuleNames
DebuggerContextMenus.StacksWindowShortcutMenu.ShowParameterNames
DebuggerContextMenus.StacksWindowShortcutMenu.ShowParameterTypes
DebuggerContextMenus.StacksWindowShortcutMenu.ShowParameterValues
DebuggerContextMenus.StacksWindowShortcutMenu.SwitchToFrame
DebuggerContextMenus.StacksWindowShortcutMenu.SwitchViewToFrame
DebuggerContextMenus.StacksWindowShortcutMenu.Thaw
DebuggerContextMenus.StacksWindowShortcutMenu.Unflag
DebuggerContextMenus.ThreadIPMarker.FlagUnflagThreadX
DebuggerContextMenus.ThreadIPMarker.SwitchtoThreadX
DebuggerContextMenus.WatchItemContext.AddExpression
DebuggerContextMenus.WatchItemContext.RemoveExpression
DebuggerContextMenus.WatchWindow.PropagateSideEffects
DebugTestsInClass
DebugTestsInCurrentContext
DebugTestsInNamespace
Design.ActualSize
Design.DeviceWindow
Design.FitAll
Design.FitSelection
Design.HideAll
Design.HideSelection
Design.LockAll
Design.LockSelection
Design.ShowActiveContainer
Design.ShowAlignmentAdorners
Design.ShowAll
Design.ShowHandles Bindings:(XAML UI Designer::F9,)
Design.ShowObjectBoundaries
Design.ShowSelection
Design.ShowSelectionPreview
Design.UnlockAll
Design.ZoomIn Bindings:(XAML UI Designer::Ctrl+Alt+=,)
Design.ZoomOut Bindings:(XAML UI Designer::Ctrl+Alt+-,)
DevExpress.Empty
DevExpress.Receiveupdatenotifications
DiagnosticsHub.Session.PauseCollection
DiagnosticsHub.Session.ResumeCollection
DiagnosticsHub.Session.StopCollection
DiagnosticsHub.StopCollection Bindings:(Global::Ctrl+Alt+F2,)
Diff.IgnoreTrimWhitespace Bindings:(Difference Viewer::Ctrl+\, Ctrl+Space,)
Diff.InlineView Bindings:(Difference Viewer::Ctrl+\, Ctrl+1,)
Diff.LeftOnlyView Bindings:(Difference Viewer::Ctrl+\, Ctrl+3,)
Diff.NextDifference Bindings:(Difference Viewer::F8,)
Diff.PreviousDifference Bindings:(Difference Viewer::Shift+F8,)
Diff.RightOnlyView Bindings:(Difference Viewer::Ctrl+\, Ctrl+4,)
Diff.SideBySideView Bindings:(Difference Viewer::Ctrl+\, Ctrl+2,)
Diff.SwitchBetweenLeftAndRight Bindings:(Difference Viewer::Ctrl+\, Ctrl+Tab,)
Diff.SynchronizeViewToggle Bindings:(Difference Viewer::Ctrl+\, Ctrl+Down Arrow,)
DirectedGraph.NeighborhoodDistance.1
DirectedGraph.NeighborhoodDistance.2
DirectedGraph.NeighborhoodDistance.3
DirectedGraph.NeighborhoodDistance.4
DirectedGraph.NeighborhoodDistance.5
DirectedGraph.NeighborhoodDistance.6
DirectedGraph.NeighborhoodDistance.7
DirectedGraph.NeighborhoodDistance.All
DirectedGraph.ToggleNeighborhoodBrowseMode
DirectedGraph.Zoom
DOMExplorer.Refresh Bindings:(DOM Explorer::F5,)
DOMExplorer.SelectElement
DOMExplorer.ShowLayout Bindings:(DOM Explorer::Ctrl+Shift+I,)
DSLTools.AddnewIdentifier
DSLTools.AddnewMethod
DSLTools.Association
DSLTools.DeleteAll
DSLTools.Edit
DSLTools.Entity
DSLTools.Expand
DSLTools.Identifier
DSLTools.Method
DSLTools.Reroute
DSLTools.ResetLocation
DSLTools.ResetSize
DSLTools.Validate
DSLTools.ValidateAll
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.Addappropriateusingstatement
Edit.AddEventHandler
Edit.AddResource
Edit.AddRow
Edit.AddTagHandler
Edit.BreakLine Bindings:(Text Editor::Enter,Report Designer::Enter,Windows Forms Designer::Enter,)
Edit.BriefBookmarkDrop0
Edit.BriefBookmarkDrop1
Edit.BriefBookmarkDrop2
Edit.BriefBookmarkDrop3
Edit.BriefBookmarkDrop4
Edit.BriefBookmarkDrop5
Edit.BriefBookmarkDrop6
Edit.BriefBookmarkDrop7
Edit.BriefBookmarkDrop8
Edit.BriefBookmarkDrop9
Edit.BriefBookmarks
Edit.BriefBreakLine
Edit.BriefBrowse
Edit.BriefFileExit
Edit.BriefFilePrint
Edit.BriefFind
Edit.BriefFindPrev
Edit.BriefFindRepeat
Edit.BriefFindReplace
Edit.BriefFindToggleCaseSensitivity
Edit.BriefFindToggleRegExpr
Edit.BriefGoTo
Edit.BriefGoToNextErrorTag
Edit.BriefInsertFile
Edit.BriefLineDelete
Edit.BriefLineDeleteToEnd
Edit.BriefLineDeleteToStart
Edit.BriefLineIndent
Edit.BriefLineOpenBelow
Edit.BriefLineUnindent
Edit.BriefQuotedInsert
Edit.BriefSelectChar
Edit.BriefSelectCharInclusive
Edit.BriefSelectColumn
Edit.BriefSelectLine
Edit.BriefSelectSwapAnchor
Edit.BriefSetRepeatCount
Edit.BriefWindowLeftEdge
Edit.BriefWindowMaximize
Edit.BriefWindowRightEdge
Edit.BriefWindowScrollDown
Edit.BriefWindowScrollToBottom
Edit.BriefWindowScrollToCenter
Edit.BriefWindowScrollToTop
Edit.BriefWindowScrollUp
Edit.BriefWindowSplit
Edit.BriefWindowSwitchPane
Edit.BriefWordDeleteToEnd
Edit.BriefWordDeleteToStart
Edit.BriefWordLeft
Edit.BriefWordRight
Edit.Capitalize
Edit.CharLeft Bindings:(Log Windows (AnkhSVN)::Left Arrow,Text Editor::Left Arrow,Report Designer::Left Arrow,Windows Forms Designer::Left Arrow,)
Edit.CharLeftExtend Bindings:(Log Windows (AnkhSVN)::Shift+Left Arrow,Report Designer::Shift+Left Arrow,Windows Forms Designer::Shift+Left Arrow,)
Edit.CharLeftExtendColumn Bindings:(Log Windows (AnkhSVN)::Shift+Alt+Left Arrow,Text Editor::Shift+Alt+Left Arrow,)
Edit.CharRight Bindings:(Log Windows (AnkhSVN)::Right Arrow,Text Editor::Right Arrow,Report Designer::Right Arrow,Windows Forms Designer::Right Arrow,)
Edit.CharRightExtend Bindings:(Log Windows (AnkhSVN)::Shift+Right Arrow,Report Designer::Shift+Right Arrow,Windows Forms Designer::Shift+Right Arrow,)
Edit.CharRightExtendColumn Bindings:(Log Windows (AnkhSVN)::Shift+Alt+Right Arrow,Text Editor::Shift+Alt+Right Arrow,)
Edit.CharTranspose
Edit.CheckMnemonics
Edit.ClearAll
Edit.ClearAllBookmarksInDocument
Edit.ClearBookmarks
Edit.ClearFindResults1
Edit.ClearFindResults2
Edit.ClearOutputWindow
Edit.CollapseAllincurrentblock
Edit.CollapseAllOutlining
Edit.CollapseBlockcurrentblock
Edit.CollapseCurrentRegion
Edit.CollapseTag
Edit.CollapsetoDefinitions
Edit.CommentSelection
Edit.CompleteWord Bindings:(Text Editor::Ctrl+Space,Text Editor::Alt+Right Arrow,Workflow Designer::Ctrl+K, W,Workflow Designer::Ctrl+K, Ctrl+W,Workflow Designer::Ctrl+Space,Workflow Designer::Alt+Right Arrow,)
Edit.ConditionalDown
Edit.ConditionalUp
Edit.ConvertSpacesToTabs
Edit.ConvertTabsToSpaces
Edit.Copy Bindings:(Global::Ctrl+Ins,Global::Ctrl+C,)
Edit.CopyDiagramtoClipboard
Edit.CopyImage
Edit.CopyImage
Edit.CopyParameterTip Bindings:(Text Editor::Ctrl+Shift+Alt+C,)
Edit.CreateCopyofWorkItem Bindings:(Work Item Query View::Shift+Alt+C,Work Item Results View::Shift+Alt+C,Work Item Editor::Shift+Alt+C,)
Edit.Cut Bindings:(Global::Shift+Del,Global::Ctrl+X,)
Edit.CycleClipboardRing Bindings:(Global::Ctrl+Shift+V,Global::Ctrl+Shift+Ins,)
Edit.DecreaseFilterLevel Bindings:(Text Editor::Alt+,,Workflow Designer::Alt+,,)
Edit.DecreaseLineIndent
Edit.Delete Bindings:(Global::Del,Class Diagram::Ctrl+Del,Sequence Diagram::Shift+Del,UML Activity Diagram::Shift+Del,Layer Diagram::Shift+Del,Team Explorer::Del,)
Edit.DeleteBackwards Bindings:(Text Editor::Bkspce,)
Edit.DeleteBlankLines
Edit.DeletefromDatabase
Edit.DeleteFromModel Bindings:(UML Use Case Diagram::Shift+Del,UML Class Diagram::Shift+Del,UML Component Diagram::Shift+Del,)
Edit.DeleteHorizontalWhiteSpace
Edit.DeleteToBOL
Edit.DeleteToEOL
Edit.DeleteVersionInfoBlock
Edit.DocumentEnd Bindings:(Log Windows (AnkhSVN)::Ctrl+End,Text Editor::Ctrl+End,Windows Forms Designer::End,)
Edit.DocumentEndExtend Bindings:(Log Windows (AnkhSVN)::Ctrl+Shift+End,Text Editor::Ctrl+Shift+End,Windows Forms Designer::Shift+End,)
Edit.DocumentStart Bindings:(Log Windows (AnkhSVN)::Ctrl+Home,Windows Forms Designer::Home,)
Edit.DocumentStartExtend Bindings:(Log Windows (AnkhSVN)::Ctrl+Shift+Home,Text Editor::Ctrl+Shift+Home,Windows Forms Designer::Shift+Home,)
Edit.DoubleClick
Edit.EditCell Bindings:(Managed Resources Editor::F2,Settings Designer::F2,)
Edit.EditIDs
Edit.EditNames
Edit.EditQuery
Edit.EditTagHandler
Edit.EmacsActivateRegion
Edit.EmacsBottomOfWindow
Edit.EmacsBreakLine
Edit.EmacsBreakLineIndent
Edit.EmacsCharLeft
Edit.EmacsCharRight
Edit.EmacsCharTranspose
Edit.EmacsCloseOtherWindow
Edit.EmacsDeleteSelection
Edit.EmacsDeleteToEOL
Edit.EmacsDocumentEnd
Edit.EmacsDocumentStart
Edit.EmacsExtendedCommand
Edit.EmacsFileSaveDirty
Edit.EmacsFindReplace
Edit.EmacsGoToLine
Edit.EmacsLineDown
Edit.EmacsLineEnd
Edit.EmacsLineOpen
Edit.EmacsLineStart
Edit.EmacsLineUp
Edit.EmacsOtherWindow
Edit.EmacsPasteRotate
Edit.EmacsPopMark
Edit.EmacsQuit
Edit.EmacsQuotedInsert
Edit.EmacsScrollLineCenter
Edit.EmacsScrollLineTop
Edit.EmacsScrollPageDown
Edit.EmacsScrollPageUp
Edit.EmacsSetMark
Edit.EmacsSplitVertical
Edit.EmacsSwapPointAndMark
Edit.EmacsTopOfWindow
Edit.EmacsUniversalArgument
Edit.EmacsWordCapitalize
Edit.EmacsWordDeleteToEnd
Edit.EmacsWordDeleteToStart
Edit.EmacsWordLowercase
Edit.EmacsWordNext
Edit.EmacsWordPrevious
Edit.EmacsWordTranspose
Edit.EmacsWordUppercase
Edit.EnableAllBookmarks
Edit.EnableBookmark
Edit.ExpandAllOutlining
Edit.ExpandCollapseBaseTypeList Bindings:(Class Diagram::Shift+Alt+B,)
Edit.ExpandCurrentRegion
Edit.ExtractConstant
Edit.Find
Edit.FindAllReferences
Edit.FindinFiles Bindings:(Global::Ctrl+Shift+F,)
Edit.FindNext Bindings:(Global::F3,)
Edit.FindNextSelected Bindings:(Global::Ctrl+F3,)
Edit.FindPrevious Bindings:(Global::Shift+F3,)
Edit.FindPreviousSelected Bindings:(Global::Ctrl+Shift+F3,)
Edit.FindSymbol
Edit.FormatDocument
Edit.FormatSelection