2 instantiations of ExecutedRoutedEventArgs
PresentationCore (2)
Core\CSharp\System\Windows\Input\Command\CommandManager.cs (1)
621
ExecutedRoutedEventArgs executedArgs = new
ExecutedRoutedEventArgs
(e.Command, null /* parameter */);
Core\CSharp\System\Windows\Input\Command\RoutedCommand.cs (1)
456
ExecutedRoutedEventArgs args = new
ExecutedRoutedEventArgs
(this, parameter);
254 references to ExecutedRoutedEventArgs
PresentationCore (14)
Core\CSharp\System\Windows\Generated\UIElement.cs (2)
2461
private static void OnPreviewExecutedThunk(object sender,
ExecutedRoutedEventArgs
e)
2473
private static void OnExecutedThunk(object sender,
ExecutedRoutedEventArgs
e)
Core\CSharp\System\Windows\Input\Command\CommandBinding.cs (2)
177
private bool CheckCanExecute(object sender,
ExecutedRoutedEventArgs
e)
196
internal void OnExecuted(object sender,
ExecutedRoutedEventArgs
e)
Core\CSharp\System\Windows\Input\Command\CommandManager.cs (8)
552
internal static void OnExecuted(object sender,
ExecutedRoutedEventArgs
e)
583
private static bool ExecuteCommandBinding(object sender,
ExecutedRoutedEventArgs
e, CommandBinding commandBinding)
621
ExecutedRoutedEventArgs
executedArgs = new ExecutedRoutedEventArgs(e.Command, null /* parameter */);
707
ExecutedRoutedEventArgs
exArgs = execute ? (
ExecutedRoutedEventArgs
)e : null;
730
ExecuteCommandBinding(sender, (
ExecutedRoutedEventArgs
)e, tuple.Item2);
746
(execute && ExecuteCommandBinding(sender, (
ExecutedRoutedEventArgs
)e, commandBinding)) ||
775
private static void TransferEvent(IInputElement newSource,
ExecutedRoutedEventArgs
e)
Core\CSharp\System\Windows\Input\Command\ExecutedRoutedEventArgs.cs (1)
16
public delegate void ExecutedRoutedEventHandler(object sender,
ExecutedRoutedEventArgs
e);
Core\CSharp\System\Windows\Input\Command\RoutedCommand.cs (1)
456
ExecutedRoutedEventArgs
args = new ExecutedRoutedEventArgs(this, parameter);
PresentationFramework (125)
src\Framework\MS\Internal\AppModel\RootBrowserWindow.cs (1)
917
private static void OnCommandPrint(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\Windows\Annotations\AnnotationHelper.cs (6)
299
internal static void OnCreateHighlightCommand(object sender,
ExecutedRoutedEventArgs
e)
313
internal static void OnCreateTextStickyNoteCommand(object sender,
ExecutedRoutedEventArgs
e)
327
internal static void OnCreateInkStickyNoteCommand(object sender,
ExecutedRoutedEventArgs
e)
342
internal static void OnClearHighlightsCommand(object sender,
ExecutedRoutedEventArgs
e)
357
internal static void OnDeleteStickyNotesCommand(object sender,
ExecutedRoutedEventArgs
e)
373
internal static void OnDeleteAnnotationsCommand(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\Windows\Controls\DataGrid.cs (11)
2089
private static void OnExecutedBeginEdit(object sender,
ExecutedRoutedEventArgs
e)
2132
protected virtual void OnExecutedBeginEdit(
ExecutedRoutedEventArgs
e)
2295
private static void OnExecutedCommitEdit(object sender,
ExecutedRoutedEventArgs
e)
2349
protected virtual void OnExecutedCommitEdit(
ExecutedRoutedEventArgs
e)
2499
private static void OnExecutedCancelEdit(object sender,
ExecutedRoutedEventArgs
e)
2523
protected virtual void OnExecutedCancelEdit(
ExecutedRoutedEventArgs
e)
2591
private static void OnExecutedDelete(object sender,
ExecutedRoutedEventArgs
e)
2610
protected virtual void OnExecutedDelete(
ExecutedRoutedEventArgs
e)
4344
private static void OnExecutedSelectAll(object sender,
ExecutedRoutedEventArgs
e)
8268
private static void OnExecutedCopy(object target,
ExecutedRoutedEventArgs
args)
8282
protected virtual void OnExecutedCopy(
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1878
private static void ExecutedRoutedEventHandler(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (1)
1445
private static void ExecutedRoutedEventHandler(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1449
private static void ExecutedRoutedEventHandler(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\Frame.cs (5)
655
private void OnGoBack(object sender,
ExecutedRoutedEventArgs
e)
668
private void OnGoForward(object sender,
ExecutedRoutedEventArgs
e)
675
private void OnNavigateJournal(object sender,
ExecutedRoutedEventArgs
e)
699
private void OnRefresh(object sender,
ExecutedRoutedEventArgs
e)
706
private void OnBrowseStop(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
2837
private static void _OnCommandExecuted(object sender,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\ListBox.cs (1)
646
private static void OnSelectAll(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1542
private static void ExecutedRoutedEventHandler(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (5)
288
/// Scrolls horizontally to the double value provided in <see cref="System.Windows.Input.
ExecutedRoutedEventArgs
.Parameter" />.
292
/// Scrolls vertically to the double value provided in <see cref="System.Windows.Input.
ExecutedRoutedEventArgs
.Parameter" />.
296
/// Scrolls horizontally by dragging to the double value provided in <see cref="System.Windows.Input.
ExecutedRoutedEventArgs
.Parameter" />.
300
/// Scrolls vertically by dragging to the double value provided in <see cref="System.Windows.Input.
ExecutedRoutedEventArgs
.Parameter" />.
491
private static void OnScrollCommand(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2539
private static void OnScrollCommand(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\SinglePageViewer.cs (1)
1321
private static void ExecutedRoutedEventHandler(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Controls\Slider.cs (6)
219
private static void OnIncreaseSmallCommand(object sender,
ExecutedRoutedEventArgs
e)
228
private static void OnDecreaseSmallCommand(object sender,
ExecutedRoutedEventArgs
e)
237
private static void OnMaximizeValueCommand(object sender,
ExecutedRoutedEventArgs
e)
246
private static void OnMinimizeValueCommand(object sender,
ExecutedRoutedEventArgs
e)
255
private static void OnIncreaseLargeCommand(object sender,
ExecutedRoutedEventArgs
e)
264
private static void OnDecreaseLargeCommand(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\Windows\Controls\StickyNote.cs (1)
1744
private static void _OnCommandExecuted(object sender,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Documents\RubberbandSelector.cs (1)
210
private void OnCopy(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\windows\Documents\TextEditor.cs (2)
1876
private static void OnUndo(object target,
ExecutedRoutedEventArgs
args)
1902
private static void OnRedo(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorCharacters.cs (15)
136
private static void OnResetFormat(object target,
ExecutedRoutedEventArgs
args)
181
private static void OnToggleBold(object target,
ExecutedRoutedEventArgs
args)
201
private static void OnToggleItalic(object target,
ExecutedRoutedEventArgs
args)
224
private static void OnToggleUnderline(object target,
ExecutedRoutedEventArgs
args)
253
private static void OnToggleSubscript(object sender,
ExecutedRoutedEventArgs
args)
272
private static void OnToggleSuperscript(object sender,
ExecutedRoutedEventArgs
args)
300
private static void OnIncreaseFontSize(object target,
ExecutedRoutedEventArgs
args)
342
private static void OnDecreaseFontSize(object target,
ExecutedRoutedEventArgs
args)
383
private static void OnApplyFontSize(object target,
ExecutedRoutedEventArgs
args)
396
private static void OnApplyFontFamily(object target,
ExecutedRoutedEventArgs
args)
409
private static void OnApplyForeground(object target,
ExecutedRoutedEventArgs
args)
422
private static void OnApplyBackground(object target,
ExecutedRoutedEventArgs
args)
435
private static void OnToggleSpellCheck(object target,
ExecutedRoutedEventArgs
args)
450
private static void OnApplyInlineFlowDirectionRTL(object target,
ExecutedRoutedEventArgs
args)
459
private static void OnApplyInlineFlowDirectionLTR(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (5)
637
private static void OnCut(object target,
ExecutedRoutedEventArgs
args)
690
private static void OnCopy(object target,
ExecutedRoutedEventArgs
args)
749
private static void OnPaste(object target,
ExecutedRoutedEventArgs
args)
778
private static void OnCopyFormat(object sender,
ExecutedRoutedEventArgs
args)
800
private static void OnPasteFormat(object sender,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorLists.cs (1)
124
private static void OnListCommand(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorParagraphs.cs (9)
81
private static void OnAlignLeft(object sender,
ExecutedRoutedEventArgs
e)
96
private static void OnAlignCenter(object sender,
ExecutedRoutedEventArgs
e)
111
private static void OnAlignRight(object sender,
ExecutedRoutedEventArgs
e)
126
private static void OnAlignJustify(object sender,
ExecutedRoutedEventArgs
e)
138
private static void OnApplySingleSpace(object sender,
ExecutedRoutedEventArgs
e)
143
private static void OnApplyOneAndAHalfSpace(object sender,
ExecutedRoutedEventArgs
e)
148
private static void OnApplyDoubleSpace(object sender,
ExecutedRoutedEventArgs
e)
156
private static void OnApplyParagraphFlowDirectionLTR(object sender,
ExecutedRoutedEventArgs
e)
166
private static void OnApplyParagraphFlowDirectionRTL(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\windows\Documents\TextEditorSelection.cs (30)
167
private static void OnSelectAll(object target,
ExecutedRoutedEventArgs
args)
202
private static void OnMoveRightByCharacter(object target,
ExecutedRoutedEventArgs
args)
218
private static void OnMoveLeftByCharacter(object target,
ExecutedRoutedEventArgs
args)
234
private static void OnMoveRightByWord(object target,
ExecutedRoutedEventArgs
args)
250
private static void OnMoveLeftByWord(object target,
ExecutedRoutedEventArgs
args)
264
private static void OnMoveDownByLine(object sender,
ExecutedRoutedEventArgs
args)
356
private static void OnMoveUpByLine(object sender,
ExecutedRoutedEventArgs
args)
446
private static void OnMoveDownByParagraph(object sender,
ExecutedRoutedEventArgs
args)
501
private static void OnMoveUpByParagraph(object sender,
ExecutedRoutedEventArgs
args)
555
private static void OnMoveDownByPage(object sender,
ExecutedRoutedEventArgs
args)
676
private static void OnMoveUpByPage(object sender,
ExecutedRoutedEventArgs
args)
793
private static void OnMoveToLineStart(object target,
ExecutedRoutedEventArgs
args)
845
private static void OnMoveToLineEnd(object target,
ExecutedRoutedEventArgs
args)
897
private static void OnMoveToDocumentStart(object target,
ExecutedRoutedEventArgs
args)
925
private static void OnMoveToDocumentEnd(object target,
ExecutedRoutedEventArgs
args)
961
private static void OnSelectRightByCharacter(object target,
ExecutedRoutedEventArgs
args)
977
private static void OnSelectLeftByCharacter(object target,
ExecutedRoutedEventArgs
args)
992
private static void OnSelectRightByWord(object target,
ExecutedRoutedEventArgs
args)
1008
private static void OnSelectLeftByWord(object target,
ExecutedRoutedEventArgs
args)
1022
private static void OnSelectDownByLine(object sender,
ExecutedRoutedEventArgs
args)
1194
private static void OnSelectUpByLine(object sender,
ExecutedRoutedEventArgs
args)
1318
private static void OnSelectDownByParagraph(object sender,
ExecutedRoutedEventArgs
args)
1359
private static void OnSelectUpByParagraph(object sender,
ExecutedRoutedEventArgs
args)
1403
private static void OnSelectDownByPage(object sender,
ExecutedRoutedEventArgs
args)
1499
private static void OnSelectUpByPage(object sender,
ExecutedRoutedEventArgs
args)
1597
private static void OnSelectToLineStart(object target,
ExecutedRoutedEventArgs
args)
1642
private static void OnSelectToLineEnd(object target,
ExecutedRoutedEventArgs
args)
1730
private static void OnSelectToDocumentStart(object target,
ExecutedRoutedEventArgs
args)
1758
private static void OnSelectToDocumentEnd(object target,
ExecutedRoutedEventArgs
args)
2015
private static void OnNYICommand(object source,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorSpelling.cs (2)
123
private static void OnCorrectSpellingError(object target,
ExecutedRoutedEventArgs
args)
225
private static void OnIgnoreSpellingError(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorTables.cs (1)
71
private static void OnTableCommand(object target,
ExecutedRoutedEventArgs
args)
src\Framework\System\windows\Documents\TextEditorTyping.cs (10)
464
private static void OnCorrectionList(object target,
ExecutedRoutedEventArgs
args)
492
private static void OnToggleInsert(object target,
ExecutedRoutedEventArgs
args)
546
private static void OnDelete(object sender,
ExecutedRoutedEventArgs
args)
599
private static void OnBackspace(object sender,
ExecutedRoutedEventArgs
args)
915
private static void OnDeleteNextWord(object sender,
ExecutedRoutedEventArgs
args)
973
private static void OnDeletePreviousWord(object sender,
ExecutedRoutedEventArgs
args)
1068
private static void OnEnterBreak(object sender,
ExecutedRoutedEventArgs
args)
1289
private static void OnSpace(object sender,
ExecutedRoutedEventArgs
e)
1359
private static void OnTabForward(object sender,
ExecutedRoutedEventArgs
args)
1390
private static void OnTabBackward(object sender,
ExecutedRoutedEventArgs
args)
src\Framework\System\Windows\Navigation\NavigationWindow.cs (5)
1041
private static void OnGoBack(object sender,
ExecutedRoutedEventArgs
args)
1056
private static void OnGoForward(object sender,
ExecutedRoutedEventArgs
e)
1071
private static void OnRefresh(object sender,
ExecutedRoutedEventArgs
e)
1085
private static void OnBrowseStop(object sender,
ExecutedRoutedEventArgs
e)
1097
private static void OnNavigateJournal(object sender,
ExecutedRoutedEventArgs
e)
src\Framework\System\Windows\Window.cs (1)
3654
private static void OnDialogCommand(object target,
ExecutedRoutedEventArgs
e)
System.Activities.Core.Presentation (20)
System\Activities\Core\Presentation\CaseDesigner.xaml.cs (3)
139
void OnAddAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
153
void OnEditAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
166
void OnDeleteAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Core\Presentation\CatchDesigner.xaml.cs (3)
133
void OnAddAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
147
void OnEditAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
160
void OnDeleteAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (4)
216
void OnSetAsStartNodeCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
2085
void OnConnectNodesCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
2096
void OnShowAllConditionsCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
2108
void OnHideAllConditionsCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Core\Presentation\PickDesigner.xaml.cs (1)
48
void OnCreateBranchCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Core\Presentation\StateDesigner.xaml.cs (1)
141
void OnSetAsInitialExecute(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Core\Presentation\TransitionDesigner.xaml.cs (1)
349
void OnCopyCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Presentation\DynamicArgumentDesigner.xaml.cs (1)
647
void OnCreateDynamicArgumentExecute(object sender,
ExecutedRoutedEventArgs
e)
System\Activities\Presentation\TypeCollectionDesigner.xaml.cs (2)
143
void OnAddTypeExecuted(object sender,
ExecutedRoutedEventArgs
e)
151
void OnDeleteTypeExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\ServiceModel\Activities\Presentation\CorrelationDataDesigner.xaml.cs (1)
99
void OnAddNewDataExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\ServiceModel\Activities\Presentation\CorrelationInitializerDesigner.xaml.cs (1)
62
void OnAddNewInitializerExecuted(object sender,
ExecutedRoutedEventArgs
e)
System\ServiceModel\Activities\Presentation\ReceiveDesigner.xaml.cs (1)
140
void OnCreateSendReplyExecute(object sender,
ExecutedRoutedEventArgs
e)
System\ServiceModel\Activities\Presentation\SendDesigner.xaml.cs (1)
143
void OnCreateReceiveReplyExecute(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation (95)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (1)
267
private void OnFinishEditing(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\ValueEditors\StringEditor.cs (1)
343
void OnDesignerViewCommitExecute(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueDialogHost.cs (1)
80
public void OnOpenDialogWindow(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueEditorCommandHandler.cs (10)
98
private void OnShowInlineEditor(object sender,
ExecutedRoutedEventArgs
e)
103
private void OnShowExtendedPopupEditor(object sender,
ExecutedRoutedEventArgs
e)
108
private void OnShowExtendedPinnedEditor(object sender,
ExecutedRoutedEventArgs
e)
113
private void OnShowDialogEditor(object sender,
ExecutedRoutedEventArgs
e)
118
private static void SwitchActiveEditMode(
ExecutedRoutedEventArgs
e, PropertyContainerEditMode newMode)
142
private void OnBeginTransaction(object sender,
ExecutedRoutedEventArgs
e)
153
private void OnCommitTransaction(object sender,
ExecutedRoutedEventArgs
e)
170
private void OnAbortTransaction(object sender,
ExecutedRoutedEventArgs
e)
191
private static ModelPropertyEntryBase GetContainedPropertyFromEventArgs(
ExecutedRoutedEventArgs
e)
202
private static PropertyContainer GetContainerFromEventArgs(
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\ContextMenuUtilities.cs (3)
97
public static void OnAddAnnotationCommandExecuted(
ExecutedRoutedEventArgs
e, ModelItem modelItem)
123
public static void OnEditAnnotationCommandExecuted(
ExecutedRoutedEventArgs
e, ModelItem modelItem)
134
public static void OnDeleteAnnotationCommandExecuted(
ExecutedRoutedEventArgs
e, ModelItem modelItem)
System.Activities.Presentation\System\Activities\Presentation\DialogWindow.cs (1)
80
void OnHelpExecuted(Object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\ErrorReporting.cs (1)
184
void OnCopyExecuted(object s,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\Expressions\TextualExpressionEditor.cs (6)
60
public virtual void OnCompleteWordCommandExecute(
ExecutedRoutedEventArgs
e)
74
public virtual void OnGlobalIntellisenseCommandExecute(
ExecutedRoutedEventArgs
e)
88
public virtual void OnParameterInfoCommandExecute(
ExecutedRoutedEventArgs
e)
102
public virtual void OnQuickInfoCommandExecute(
ExecutedRoutedEventArgs
e)
116
public virtual void OnDecreaseFilterLevelCommandExecute(
ExecutedRoutedEventArgs
e)
130
public virtual void OnIncreaseFilterLevelCommandExecute(
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (4)
612
private void OnDeleteCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
657
private void OnAddAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
695
private void OnEditAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
732
private void OnDeleteAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (1)
600
void OnShowPropertyValueEditor(object sender,
ExecutedRoutedEventArgs
args)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.Commands.cs (42)
620
void OnGoToParentCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
636
void OnCollapseCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
652
void OnCollapseAllCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
665
void OnRestoreCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
679
void OnExpandAllCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
711
void OnExpandInPlaceCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
743
void OnExpandCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
757
void OnCopyCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
772
void OnPasteCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
797
void OnCutCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
811
void OnDeleteCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
834
void OnShowPropertiesCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
880
void OnInsertBreakpointCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
907
void OnDeleteBreakpointCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
936
void OnEnableBreakpointCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
966
void OnDisableBreakpointCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
972
void OnUndoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
984
void OnRedoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
996
void OnCommitCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1016
void OnSelectAllCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1045
void OnCopyAsImageCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1090
void OnSaveAsImageCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1162
void OnZoomInCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1173
void OnMoveFocusCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1190
void OnToggleSelectionCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1206
void OnZoomOutCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1222
void OnToggleArgumentDesignerCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1235
void OnToggleVariableDesignerCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1255
void OnToggleImportsDesignerCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1301
void OnCreateVariableCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1316
void OnCreateArgumentCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1328
void OnToggleMiniMapCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1352
void OnCycleThroughDesignerCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1451
void OnCreateWorkflowElementCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1513
void OnFitToScreenCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1525
void OnResetZoomCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1561
void OnAddAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1572
void OnEditAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1582
void OnDeleteAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1599
void OnShowAllAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1623
void OnHideAllAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
1640
void OnDeleteAllAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\ErrorView.xaml.cs (1)
53
private void OnHelpExecuted(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (7)
496
void OnCommitCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
522
internal void OnCompleteWordCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
538
internal void OnGlobalIntellisenseCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
554
internal void OnParameterInfoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
570
internal void OnQuickInfoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
586
internal void OnIncreaseFilterLevelCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
602
internal void OnDecreaseFilterLevelCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (4)
622
private void OnDeleteCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
667
private void OnAddAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
705
private void OnEditAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
742
private void OnDeleteAnnotationCommandExecuted(object sender,
ExecutedRoutedEventArgs
e)
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (12)
1526
public override void OnCompleteWordCommandExecute(
ExecutedRoutedEventArgs
e)
1539
public override void OnGlobalIntellisenseCommandExecute(
ExecutedRoutedEventArgs
e)
1552
public override void OnParameterInfoCommandExecute(
ExecutedRoutedEventArgs
e)
1565
public override void OnQuickInfoCommandExecute(
ExecutedRoutedEventArgs
e)
1578
public override void OnDecreaseFilterLevelCommandExecute(
ExecutedRoutedEventArgs
e)
1591
public override void OnIncreaseFilterLevelCommandExecute(
ExecutedRoutedEventArgs
e)
1604
void OnCutCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1629
void OnCopyCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1654
void OnPasteCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1683
void OnUndoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1715
void OnRedoCommandExecute(object sender,
ExecutedRoutedEventArgs
e)
1727
void OnHelpExecute(object sender,
ExecutedRoutedEventArgs
e)