38 references to ExecutedRoutedEventHandler
PresentationCore (12)
Core\CSharp\System\Windows\Input\Command\CommandBinding.cs (4)
50public CommandBinding(ICommand command, ExecutedRoutedEventHandler executed) 61public CommandBinding(ICommand command, ExecutedRoutedEventHandler executed, CanExecuteRoutedEventHandler canExecute) 113public event ExecutedRoutedEventHandler PreviewExecuted; 118public event ExecutedRoutedEventHandler Executed;
Core\CSharp\System\Windows\Input\Command\CommandManager.cs (6)
51typeof(ExecutedRoutedEventHandler), 59public static void AddPreviewExecutedHandler(UIElement element, ExecutedRoutedEventHandler handler) 78public static void RemovePreviewExecutedHandler(UIElement element, ExecutedRoutedEventHandler handler) 98typeof(ExecutedRoutedEventHandler), 106public static void AddExecutedHandler(UIElement element, ExecutedRoutedEventHandler handler) 125public static void RemoveExecutedHandler(UIElement element, ExecutedRoutedEventHandler handler)
Core\CSharp\System\Windows\Input\Command\ExecutedRoutedEventArgs.cs (2)
72ExecutedRoutedEventHandler handler = (ExecutedRoutedEventHandler)genericHandler;
PresentationFramework (26)
src\Framework\MS\Internal\Commands\CommandHelpers.cs (13)
24internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler) 29internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 35internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 41internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 47internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 53internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 59internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 65internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 71internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 80ExecutedRoutedEventHandler executedRoutedEventHandler, CanExecuteRoutedEventHandler canExecuteRoutedEventHandler) 85internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 92internal static void RegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler, 100private static void PrivateRegisterCommandHandler(Type controlType, RoutedCommand command, ExecutedRoutedEventHandler executedRoutedEventHandler,
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1508ExecutedRoutedEventHandler executeHandler = new ExecutedRoutedEventHandler(ExecutedRoutedEventHandler);
src\Framework\System\Windows\Controls\FlowDocumentReader.cs (1)
1333ExecutedRoutedEventHandler executedHandler;
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
1330ExecutedRoutedEventHandler executedHandler;
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
2606ExecutedRoutedEventHandler pasteExecuteEventHandler = new ExecutedRoutedEventHandler(_OnCommandExecuted);
src\Framework\System\Windows\Controls\Primitives\DocumentViewerBase.cs (1)
1467ExecutedRoutedEventHandler executedHandler;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (1)
694var onScrollCommand = new ExecutedRoutedEventHandler(OnScrollCommand);
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
2673ExecutedRoutedEventHandler executeScrollCommandEventHandler = new ExecutedRoutedEventHandler(OnScrollCommand);
src\Framework\System\Windows\Controls\SinglePageViewer.cs (1)
1259ExecutedRoutedEventHandler executedHandler;
src\Framework\System\windows\Documents\TextEditorCopyPaste.cs (1)
68ExecutedRoutedEventHandler ExecutedRoutedEventHandler = new ExecutedRoutedEventHandler(OnPaste);
src\Framework\System\windows\Documents\TextEditorSelection.cs (1)
58ExecutedRoutedEventHandler nyiCommandHandler = new ExecutedRoutedEventHandler(OnNYICommand);
src\Framework\System\windows\Documents\TextEditorTables.cs (1)
49var onTableCommand = new ExecutedRoutedEventHandler(OnTableCommand);
src\Framework\System\windows\Documents\TextEditorTyping.cs (2)
73var onEnterBreak = new ExecutedRoutedEventHandler(OnEnterBreak); 74var onSpace = new ExecutedRoutedEventHandler(OnSpace);