145 references to RoutedEventHandler
PresentationCore (26)
Core\CSharp\MS\Internal\SynchronizedInputHelper.cs (1)
159internal static void AddHandlerToRoute(DependencyObject o, EventRoute route, RoutedEventHandler eventHandler, bool handledToo)
Core\CSharp\System\Windows\ContentElement.cs (4)
180RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 194RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 540public event RoutedEventHandler GotFocus 554public event RoutedEventHandler LostFocus
Core\CSharp\System\Windows\DragDrop.cs (2)
352internal static readonly RoutedEvent DragDropStartedEvent = EventManager.RegisterRoutedEvent("DragDropStarted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop)); 353internal static readonly RoutedEvent DragDropCompletedEvent = EventManager.RegisterRoutedEvent("DragDropCompleted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop));
Core\CSharp\System\Windows\Input\FocusManager.cs (6)
36public static readonly RoutedEvent GotFocusEvent = EventManager.RegisterRoutedEvent("GotFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 43public static void AddGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 53public static void RemoveGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 61public static readonly RoutedEvent LostFocusEvent = EventManager.RegisterRoutedEvent("LostFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 68public static void AddLostFocusHandler(DependencyObject element, RoutedEventHandler handler) 78public static void RemoveLostFocusHandler(DependencyObject element, RoutedEventHandler handler)
Core\CSharp\System\Windows\RoutedEvent.cs (1)
88(handlerType == typeof(RoutedEventHandler) ) );
Core\CSharp\System\Windows\RoutedEventArgs.cs (2)
305if (genericHandler is RoutedEventHandler) 307((RoutedEventHandler)genericHandler)(genericTarget, this);
Core\CSharp\System\Windows\RoutedEventHandlerInfo.cs (2)
68if (_handler is RoutedEventHandler) 73((RoutedEventHandler)_handler)(target, routedEventArgs);
Core\CSharp\System\Windows\UIElement.cs (4)
1834RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1859RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 3525public event RoutedEventHandler GotFocus 3539public event RoutedEventHandler LostFocus
Core\CSharp\System\Windows\UIElement3D.cs (4)
749public event RoutedEventHandler GotFocus 763public event RoutedEventHandler LostFocus 1263RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1277RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler);
PresentationFramework (93)
src\Framework\MS\Internal\FrameworkObject.cs (2)
1046internal event RoutedEventHandler Loaded 1080internal event RoutedEventHandler Unloaded
src\Framework\System\Windows\Controls\Calendar.cs (2)
647internal event RoutedEventHandler DayOrMonthPreviewKeyDown; 891RoutedEventHandler handler = this.DayOrMonthPreviewKeyDown;
src\Framework\System\Windows\Controls\ContextMenu.cs (2)
327public event RoutedEventHandler Opened 356public event RoutedEventHandler Closed
src\Framework\System\Windows\Controls\DataGridCell.cs (4)
722public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 727public event RoutedEventHandler Selected 752public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 757public event RoutedEventHandler Unselected
src\Framework\System\Windows\Controls\DataGridRow.cs (2)
1142public event RoutedEventHandler Selected 1172public event RoutedEventHandler Unselected
src\Framework\System\Windows\Controls\DatePicker.cs (4)
62public event RoutedEventHandler CalendarClosed; 67public event RoutedEventHandler CalendarOpened; 774RoutedEventHandler handler = this.CalendarClosed; 783RoutedEventHandler handler = this.CalendarOpened;
src\Framework\System\Windows\Controls\Expander.cs (4)
171typeof(RoutedEventHandler), 178public event RoutedEventHandler Expanded 190typeof(RoutedEventHandler), 197public event RoutedEventHandler Collapsed
src\Framework\System\Windows\Controls\InkCanvas.cs (8)
1266EventManager.RegisterRoutedEvent("ActiveEditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1272public event RoutedEventHandler ActiveEditingModeChanged 1325EventManager.RegisterRoutedEvent("EditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1331public event RoutedEventHandler EditingModeChanged 1382EventManager.RegisterRoutedEvent("EditingModeInvertedChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1388public event RoutedEventHandler EditingModeInvertedChanged 1542EventManager.RegisterRoutedEvent("StrokeErased", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1548public event RoutedEventHandler StrokeErased
src\Framework\System\Windows\Controls\ListBoxItem.cs (2)
149public event RoutedEventHandler Selected 169public event RoutedEventHandler Unselected
src\Framework\System\Windows\Controls\MediaElement.cs (8)
591typeof(RoutedEventHandler), 597public event RoutedEventHandler MediaOpened 610typeof(RoutedEventHandler), 616public event RoutedEventHandler BufferingStarted 629typeof(RoutedEventHandler), 635public event RoutedEventHandler BufferingEnded 667typeof(RoutedEventHandler), 673public event RoutedEventHandler MediaEnded
src\Framework\System\Windows\Controls\MenuItem.cs (11)
220public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 226public event RoutedEventHandler Click 243internal static readonly RoutedEvent PreviewClickEvent = EventManager.RegisterRoutedEvent("PreviewClick", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 248public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 253public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 259public event RoutedEventHandler Checked 276public event RoutedEventHandler Unchecked 294EventManager.RegisterRoutedEvent("SubmenuOpened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 300EventManager.RegisterRoutedEvent("SubmenuClosed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 306public event RoutedEventHandler SubmenuOpened 322public event RoutedEventHandler SubmenuClosed
src\Framework\System\Windows\Controls\PasswordBox.cs (2)
402typeof(RoutedEventHandler), // 412public event RoutedEventHandler PasswordChanged
src\Framework\System\Windows\Controls\PopupControlService.cs (2)
814EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService)); 821EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService));
src\Framework\System\Windows\Controls\Primitives\ButtonBase.cs (2)
178public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ButtonBase)); 184public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } }
src\Framework\System\Windows\Controls\Primitives\Popup.cs (1)
2925internal static RoutedEventHandler CloseOnUnloadedHandler;
src\Framework\System\Windows\Controls\Primitives\Selector.cs (6)
107"Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 115public static void AddSelectedHandler(DependencyObject element, RoutedEventHandler handler) 126public static void RemoveSelectedHandler(DependencyObject element, RoutedEventHandler handler) 136"Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 144public static void AddUnselectedHandler(DependencyObject element, RoutedEventHandler handler) 155public static void RemoveUnselectedHandler(DependencyObject element, RoutedEventHandler handler)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (2)
964typeof(RoutedEventHandler), // 970public event RoutedEventHandler SelectionChanged
src\Framework\System\Windows\Controls\Primitives\ToggleButton.cs (6)
60public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 65public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 70public static readonly RoutedEvent IndeterminateEvent = EventManager.RegisterRoutedEvent("Indeterminate", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 76public event RoutedEventHandler Checked 93public event RoutedEventHandler Unchecked 110public event RoutedEventHandler Indeterminate
src\Framework\System\Windows\Controls\ToolTip.cs (4)
360EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 366public event RoutedEventHandler Opened 391EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 397public event RoutedEventHandler Closed
src\Framework\System\Windows\Controls\TreeViewItem.cs (8)
209public static readonly RoutedEvent ExpandedEvent = EventManager.RegisterRoutedEvent("Expanded", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 215public event RoutedEventHandler Expanded 241public static readonly RoutedEvent CollapsedEvent = EventManager.RegisterRoutedEvent("Collapsed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 247public event RoutedEventHandler Collapsed 273public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 279public event RoutedEventHandler Selected 305public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 311public event RoutedEventHandler Unselected
src\Framework\System\Windows\Documents\Hyperlink.cs (2)
469public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } } 477typeof(RoutedEventHandler),
src\Framework\System\Windows\EventTrigger.cs (1)
260RoutedEventHandler _routedEventHandler = null;
src\Framework\System\Windows\FrameworkContentElement.cs (2)
1733public event RoutedEventHandler Loaded 1763public event RoutedEventHandler Unloaded
src\Framework\System\Windows\FrameworkElement.cs (4)
5713public static readonly RoutedEvent LoadedEvent = EventManager.RegisterRoutedEvent("Loaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5718public event RoutedEventHandler Loaded 5779public static readonly RoutedEvent UnloadedEvent = EventManager.RegisterRoutedEvent("Unloaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5784public event RoutedEventHandler Unloaded
src\Framework\System\Windows\StyleHelper.cs (2)
5677internal static RoutedEventHandler EventTriggerHandlerOnContainer = new RoutedEventHandler(ExecuteEventTriggerActionsOnContainer); 5678internal static RoutedEventHandler EventTriggerHandlerOnChild = new RoutedEventHandler(ExecuteEventTriggerActionsOnChild);
System.Activities.Core.Presentation (10)
System\Activities\Core\Presentation\CaseKeyBox.xaml.cs (4)
37EventManager.RegisterRoutedEvent("ValueCommitted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(CaseKeyBox)); 40EventManager.RegisterRoutedEvent("EditCancelled", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(CaseKeyBox)); 60public event RoutedEventHandler ValueCommitted 73public event RoutedEventHandler EditCancelled
System\ServiceModel\Activities\Presentation\ContentCorrelationTypeExpander.xaml.cs (4)
33typeof(RoutedEventHandler), 39typeof(RoutedEventHandler), 78public event RoutedEventHandler IsSelectionValidChanged 90public event RoutedEventHandler SelectionChanged
System\ServiceModel\Activities\Presentation\MessageQueryEditor.xaml.cs (2)
50typeof(RoutedEventHandler), 78public event RoutedEventHandler XPathCreated
System.Activities.Presentation (16)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (2)
79typeof(RoutedEventHandler), 111public event RoutedEventHandler ToolSelected
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (2)
48typeof(RoutedEventHandler), 85public event RoutedEventHandler ArgumentCollectionChanged
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionTextBox.xaml.cs (2)
192EventManager.RegisterRoutedEvent("EditorLostLogicalFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ExpressionTextBox)); 194public event RoutedEventHandler EditorLostLogicalFocus
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionWindow.cs (2)
83typeof(RoutedEventHandler), 144public event RoutedEventHandler VisibilityChanged
System.Activities.Presentation\System\Activities\Presentation\View\TypePresenter.xaml.cs (6)
94typeof(RoutedEventHandler), 100typeof(RoutedEventHandler), 106typeof(RoutedEventHandler), 261public event RoutedEventHandler TypeBrowserOpened 267public event RoutedEventHandler TypeBrowserClosed 273public event RoutedEventHandler TypeChanged
System.Activities.Presentation\System\Activities\Presentation\View\VariableDesigner.xaml.cs (2)
48typeof(RoutedEventHandler), 83public event RoutedEventHandler VariableCollectionChanged