128 references to RoutedEventHandler
PresentationCore (26)
MS\Internal\SynchronizedInputHelper.cs (1)
163internal static void AddHandlerToRoute(DependencyObject o, EventRoute route, RoutedEventHandler eventHandler, bool handledToo)
System\Windows\ContentElement.cs (4)
176RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 190RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 536public event RoutedEventHandler GotFocus 550public event RoutedEventHandler LostFocus
System\Windows\DragDrop.cs (2)
347internal static readonly RoutedEvent DragDropStartedEvent = EventManager.RegisterRoutedEvent("DragDropStarted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop)); 348internal static readonly RoutedEvent DragDropCompletedEvent = EventManager.RegisterRoutedEvent("DragDropCompleted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop));
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)
System\Windows\RoutedEvent.cs (1)
92(handlerType == typeof(RoutedEventHandler) ) );
System\Windows\RoutedEventArgs.cs (2)
294if (genericHandler is RoutedEventHandler) 296((RoutedEventHandler)genericHandler)(genericTarget, this);
System\Windows\RoutedEventHandlerInfo.cs (2)
71if (_handler is RoutedEventHandler) 76((RoutedEventHandler)_handler)(target, routedEventArgs);
System\Windows\UIElement.cs (4)
1814RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1839RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 3494public event RoutedEventHandler GotFocus 3508public event RoutedEventHandler LostFocus
System\Windows\UIElement3D.cs (4)
742public event RoutedEventHandler GotFocus 756public event RoutedEventHandler LostFocus 1250RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1264RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler);
PresentationFramework (93)
MS\Internal\FrameworkObject.cs (2)
1018internal event RoutedEventHandler Loaded 1052internal event RoutedEventHandler Unloaded
System\Windows\Controls\Calendar.cs (2)
646internal event RoutedEventHandler DayOrMonthPreviewKeyDown; 890RoutedEventHandler handler = this.DayOrMonthPreviewKeyDown;
System\Windows\Controls\ContextMenu.cs (2)
323public event RoutedEventHandler Opened 352public event RoutedEventHandler Closed
System\Windows\Controls\DataGridCell.cs (4)
727public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 732public event RoutedEventHandler Selected 757public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 762public event RoutedEventHandler Unselected
System\Windows\Controls\DataGridRow.cs (2)
1141public event RoutedEventHandler Selected 1171public event RoutedEventHandler Unselected
System\Windows\Controls\DatePicker.cs (4)
61public event RoutedEventHandler CalendarClosed; 66public event RoutedEventHandler CalendarOpened; 785RoutedEventHandler handler = this.CalendarClosed; 794RoutedEventHandler handler = this.CalendarOpened;
System\Windows\Controls\Expander.cs (4)
170typeof(RoutedEventHandler), 177public event RoutedEventHandler Expanded 189typeof(RoutedEventHandler), 196public event RoutedEventHandler Collapsed
System\Windows\Controls\InkCanvas.cs (8)
1223EventManager.RegisterRoutedEvent("ActiveEditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1229public event RoutedEventHandler ActiveEditingModeChanged 1279EventManager.RegisterRoutedEvent("EditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1285public event RoutedEventHandler EditingModeChanged 1333EventManager.RegisterRoutedEvent("EditingModeInvertedChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1339public event RoutedEventHandler EditingModeInvertedChanged 1481EventManager.RegisterRoutedEvent("StrokeErased", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1487public event RoutedEventHandler StrokeErased
System\Windows\Controls\ListBoxItem.cs (2)
149public event RoutedEventHandler Selected 169public event RoutedEventHandler Unselected
System\Windows\Controls\MediaElement.cs (8)
586typeof(RoutedEventHandler), 592public event RoutedEventHandler MediaOpened 605typeof(RoutedEventHandler), 611public event RoutedEventHandler BufferingStarted 624typeof(RoutedEventHandler), 630public event RoutedEventHandler BufferingEnded 662typeof(RoutedEventHandler), 668public event RoutedEventHandler MediaEnded
System\Windows\Controls\MenuItem.cs (11)
217public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 223public event RoutedEventHandler Click 240internal static readonly RoutedEvent PreviewClickEvent = EventManager.RegisterRoutedEvent("PreviewClick", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 245public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 250public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 256public event RoutedEventHandler Checked 273public event RoutedEventHandler Unchecked 291EventManager.RegisterRoutedEvent("SubmenuOpened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 297EventManager.RegisterRoutedEvent("SubmenuClosed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 303public event RoutedEventHandler SubmenuOpened 319public event RoutedEventHandler SubmenuClosed
System\Windows\Controls\PasswordBox.cs (2)
386typeof(RoutedEventHandler), // 396public event RoutedEventHandler PasswordChanged
System\Windows\Controls\PopupControlService.cs (2)
947EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService)); 954EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService));
System\Windows\Controls\Primitives\ButtonBase.cs (2)
181public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ButtonBase)); 187public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } }
System\Windows\Controls\Primitives\Popup.cs (1)
2908internal static RoutedEventHandler CloseOnUnloadedHandler;
System\Windows\Controls\Primitives\Selector.cs (6)
106"Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 114public static void AddSelectedHandler(DependencyObject element, RoutedEventHandler handler) 125public static void RemoveSelectedHandler(DependencyObject element, RoutedEventHandler handler) 135"Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 143public static void AddUnselectedHandler(DependencyObject element, RoutedEventHandler handler) 154public static void RemoveUnselectedHandler(DependencyObject element, RoutedEventHandler handler)
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
941typeof(RoutedEventHandler), // 947public event RoutedEventHandler SelectionChanged
System\Windows\Controls\Primitives\ToggleButton.cs (6)
58public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 63public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 68public static readonly RoutedEvent IndeterminateEvent = EventManager.RegisterRoutedEvent("Indeterminate", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 74public event RoutedEventHandler Checked 91public event RoutedEventHandler Unchecked 108public event RoutedEventHandler Indeterminate
System\Windows\Controls\ToolTip.cs (4)
368EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 374public event RoutedEventHandler Opened 399EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 405public event RoutedEventHandler Closed
System\Windows\Controls\TreeViewItem.cs (8)
208public static readonly RoutedEvent ExpandedEvent = EventManager.RegisterRoutedEvent("Expanded", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 214public event RoutedEventHandler Expanded 240public static readonly RoutedEvent CollapsedEvent = EventManager.RegisterRoutedEvent("Collapsed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 246public event RoutedEventHandler Collapsed 272public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 278public event RoutedEventHandler Selected 304public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 310public event RoutedEventHandler Unselected
System\Windows\Documents\Hyperlink.cs (2)
469public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } } 477typeof(RoutedEventHandler),
System\Windows\EventTrigger.cs (1)
258RoutedEventHandler _routedEventHandler = null;
System\Windows\FrameworkContentElement.cs (2)
1722public event RoutedEventHandler Loaded 1752public event RoutedEventHandler Unloaded
System\Windows\FrameworkElement.cs (4)
5708public static readonly RoutedEvent LoadedEvent = EventManager.RegisterRoutedEvent("Loaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5713public event RoutedEventHandler Loaded 5774public static readonly RoutedEvent UnloadedEvent = EventManager.RegisterRoutedEvent("Unloaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5779public event RoutedEventHandler Unloaded
System\Windows\StyleHelper.cs (2)
5677internal static RoutedEventHandler EventTriggerHandlerOnContainer = new RoutedEventHandler(ExecuteEventTriggerActionsOnContainer); 5678internal static RoutedEventHandler EventTriggerHandlerOnChild = new RoutedEventHandler(ExecuteEventTriggerActionsOnChild);
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (4)
153public event RoutedEventHandler Expanded 166typeof(RoutedEventHandler), 172public event RoutedEventHandler Collapsed 185typeof(RoutedEventHandler),
Microsoft\Windows\Controls\Ribbon\RibbonGalleryItem.cs (4)
80EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 85public event RoutedEventHandler Selected 123EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 128public event RoutedEventHandler Unselected
Microsoft\Windows\Controls\Ribbon\RibbonSplitButton.cs (1)
250public event RoutedEventHandler Click