41 references to ExecutedRoutedEventHandler
PresentationCore (12)
System\Windows\Input\Command\CommandBinding.cs (4)
42
public CommandBinding(ICommand command,
ExecutedRoutedEventHandler
executed)
53
public CommandBinding(ICommand command,
ExecutedRoutedEventHandler
executed, CanExecuteRoutedEventHandler canExecute)
93
public event
ExecutedRoutedEventHandler
PreviewExecuted;
98
public event
ExecutedRoutedEventHandler
Executed;
System\Windows\Input\Command\CommandManager.cs (6)
38
typeof(
ExecutedRoutedEventHandler
),
46
public static void AddPreviewExecutedHandler(UIElement element,
ExecutedRoutedEventHandler
handler)
59
public static void RemovePreviewExecutedHandler(UIElement element,
ExecutedRoutedEventHandler
handler)
73
typeof(
ExecutedRoutedEventHandler
),
81
public static void AddExecutedHandler(UIElement element,
ExecutedRoutedEventHandler
handler)
94
public static void RemoveExecutedHandler(UIElement element,
ExecutedRoutedEventHandler
handler)
System\Windows\Input\Command\ExecutedRoutedEventArgs.cs (2)
65
ExecutedRoutedEventHandler
handler = (
ExecutedRoutedEventHandler
)genericHandler;
PresentationFramework (26)
MS\Internal\Commands\CommandHelpers.cs (13)
15
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler)
20
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
26
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
32
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
38
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
44
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
50
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
56
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
62
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
71
ExecutedRoutedEventHandler
executedRoutedEventHandler, CanExecuteRoutedEventHandler canExecuteRoutedEventHandler)
76
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
83
internal static void RegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
91
private static void PrivateRegisterCommandHandler(Type controlType, RoutedCommand command,
ExecutedRoutedEventHandler
executedRoutedEventHandler,
System\Windows\Controls\DocumentViewer.cs (1)
1413
ExecutedRoutedEventHandler
executeHandler = new ExecutedRoutedEventHandler(ExecutedRoutedEventHandler);
System\Windows\Controls\FlowDocumentReader.cs (1)
1310
ExecutedRoutedEventHandler
executedHandler;
System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1297
ExecutedRoutedEventHandler
executedHandler;
System\Windows\Controls\InkCanvas.cs (1)
2477
ExecutedRoutedEventHandler
pasteExecuteEventHandler = new ExecutedRoutedEventHandler(_OnCommandExecuted);
System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1421
ExecutedRoutedEventHandler
executedHandler;
System\Windows\Controls\Primitives\ScrollBar.cs (1)
674
var
onScrollCommand = new ExecutedRoutedEventHandler(OnScrollCommand);
System\Windows\Controls\ScrollViewer.cs (1)
2617
ExecutedRoutedEventHandler
executeScrollCommandEventHandler = new ExecutedRoutedEventHandler(OnScrollCommand);
System\Windows\Controls\SinglePageViewer.cs (1)
1250
ExecutedRoutedEventHandler
executedHandler;
System\windows\Documents\TextEditorCopyPaste.cs (1)
45
ExecutedRoutedEventHandler
ExecutedRoutedEventHandler = new ExecutedRoutedEventHandler(OnPaste);
System\windows\Documents\TextEditorSelection.cs (1)
34
ExecutedRoutedEventHandler
nyiCommandHandler = new ExecutedRoutedEventHandler(OnNYICommand);
System\windows\Documents\TextEditorTables.cs (1)
29
var
onTableCommand = new ExecutedRoutedEventHandler(OnTableCommand);
System\windows\Documents\TextEditorTyping.cs (2)
60
var
onEnterBreak = new ExecutedRoutedEventHandler(OnEnterBreak);
61
var
onSpace = new ExecutedRoutedEventHandler(OnSpace);
PresentationUI (3)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (3)
2001
ExecutedRoutedEventHandler
executeHandler = new ExecutedRoutedEventHandler(OnDigSigExecute);
2103
ExecutedRoutedEventHandler
executeHandler, CanExecuteRoutedEventHandler queryEnabledHandler)
2119
private static void BindCommand(RoutedUICommand command,
ExecutedRoutedEventHandler
executeHandler,