132 references to RoutedEventHandler
Microsoft.CodeAnalysis.EditorFeatures.Wpf (4)
InlineRename\UI\Adornment\RenameUserInputTextBox.xaml.cs (1)
34public event RoutedEventHandler? TextSelectionChanged
InlineRename\UI\IRenameUserInput.cs (2)
20event RoutedEventHandler? TextSelectionChanged; 22event RoutedEventHandler? GotFocus;
InlineRename\UI\SmartRename\SmartRenameUserInputComboBox.xaml.cs (1)
59public event RoutedEventHandler? TextSelectionChanged
PresentationCore (26)
MS\Internal\SynchronizedInputHelper.cs (1)
156internal static void AddHandlerToRoute(DependencyObject o, EventRoute route, RoutedEventHandler eventHandler, bool handledToo)
System\Windows\ContentElement.cs (4)
164RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 178RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 523public event RoutedEventHandler GotFocus 537public event RoutedEventHandler LostFocus
System\Windows\DragDrop.cs (2)
340internal static readonly RoutedEvent DragDropStartedEvent = EventManager.RegisterRoutedEvent("DragDropStarted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop)); 341internal static readonly RoutedEvent DragDropCompletedEvent = EventManager.RegisterRoutedEvent("DragDropCompleted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop));
System\Windows\Input\FocusManager.cs (6)
26public static readonly RoutedEvent GotFocusEvent = EventManager.RegisterRoutedEvent("GotFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 33public static void AddGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 43public static void RemoveGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 51public static readonly RoutedEvent LostFocusEvent = EventManager.RegisterRoutedEvent("LostFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 58public static void AddLostFocusHandler(DependencyObject element, RoutedEventHandler handler) 68public static void RemoveLostFocusHandler(DependencyObject element, RoutedEventHandler handler)
System\Windows\RoutedEvent.cs (1)
91(handlerType == typeof(RoutedEventHandler) ) );
System\Windows\RoutedEventArgs.cs (2)
287if (genericHandler is RoutedEventHandler) 289((RoutedEventHandler)genericHandler)(genericTarget, this);
System\Windows\RoutedEventHandlerInfo.cs (2)
69if (_handler is RoutedEventHandler) 74((RoutedEventHandler)_handler)(target, routedEventArgs);
System\Windows\UIElement.cs (4)
1801RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1826RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 3471public event RoutedEventHandler GotFocus 3485public event RoutedEventHandler LostFocus
System\Windows\UIElement3D.cs (4)
726public event RoutedEventHandler GotFocus 740public event RoutedEventHandler LostFocus 1233RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1247RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler);
PresentationFramework (93)
MS\Internal\FrameworkObject.cs (2)
1015internal event RoutedEventHandler Loaded 1049internal event RoutedEventHandler Unloaded
System\Windows\Controls\Calendar.cs (2)
642internal event RoutedEventHandler DayOrMonthPreviewKeyDown; 886RoutedEventHandler handler = this.DayOrMonthPreviewKeyDown;
System\Windows\Controls\ContextMenu.cs (2)
315public event RoutedEventHandler Opened 344public event RoutedEventHandler Closed
System\Windows\Controls\DataGridCell.cs (4)
708public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 713public event RoutedEventHandler Selected 738public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 743public event RoutedEventHandler Unselected
System\Windows\Controls\DataGridRow.cs (2)
1112public event RoutedEventHandler Selected 1142public event RoutedEventHandler Unselected
System\Windows\Controls\DatePicker.cs (4)
57public event RoutedEventHandler CalendarClosed; 62public event RoutedEventHandler CalendarOpened; 781RoutedEventHandler handler = this.CalendarClosed; 790RoutedEventHandler handler = this.CalendarOpened;
System\Windows\Controls\Expander.cs (4)
163typeof(RoutedEventHandler), 170public event RoutedEventHandler Expanded 182typeof(RoutedEventHandler), 189public 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)
139public event RoutedEventHandler Selected 159public event RoutedEventHandler Unselected
System\Windows\Controls\MediaElement.cs (8)
579typeof(RoutedEventHandler), 585public event RoutedEventHandler MediaOpened 598typeof(RoutedEventHandler), 604public event RoutedEventHandler BufferingStarted 617typeof(RoutedEventHandler), 623public event RoutedEventHandler BufferingEnded 655typeof(RoutedEventHandler), 661public event RoutedEventHandler MediaEnded
System\Windows\Controls\MenuItem.cs (11)
207public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 213public event RoutedEventHandler Click 230internal static readonly RoutedEvent PreviewClickEvent = EventManager.RegisterRoutedEvent("PreviewClick", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 235public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 240public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 246public event RoutedEventHandler Checked 263public event RoutedEventHandler Unchecked 281EventManager.RegisterRoutedEvent("SubmenuOpened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 287EventManager.RegisterRoutedEvent("SubmenuClosed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 293public event RoutedEventHandler SubmenuOpened 309public event RoutedEventHandler SubmenuClosed
System\Windows\Controls\PasswordBox.cs (2)
371typeof(RoutedEventHandler), // 381public event RoutedEventHandler PasswordChanged
System\Windows\Controls\PopupControlService.cs (2)
944EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService)); 951EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService));
System\Windows\Controls\Primitives\ButtonBase.cs (2)
170public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ButtonBase)); 176public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } }
System\Windows\Controls\Primitives\Popup.cs (1)
2910internal static RoutedEventHandler CloseOnUnloadedHandler;
System\Windows\Controls\Primitives\Selector.cs (6)
94"Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 102public static void AddSelectedHandler(DependencyObject element, RoutedEventHandler handler) 113public static void RemoveSelectedHandler(DependencyObject element, RoutedEventHandler handler) 123"Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 131public static void AddUnselectedHandler(DependencyObject element, RoutedEventHandler handler) 142public static void RemoveUnselectedHandler(DependencyObject element, RoutedEventHandler handler)
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
934typeof(RoutedEventHandler), // 940public event RoutedEventHandler SelectionChanged
System\Windows\Controls\Primitives\ToggleButton.cs (6)
46public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 51public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 56public static readonly RoutedEvent IndeterminateEvent = EventManager.RegisterRoutedEvent("Indeterminate", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 62public event RoutedEventHandler Checked 79public event RoutedEventHandler Unchecked 96public event RoutedEventHandler Indeterminate
System\Windows\Controls\ToolTip.cs (4)
354EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 360public event RoutedEventHandler Opened 385EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 391public event RoutedEventHandler Closed
System\Windows\Controls\TreeViewItem.cs (8)
198public static readonly RoutedEvent ExpandedEvent = EventManager.RegisterRoutedEvent("Expanded", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 204public event RoutedEventHandler Expanded 230public static readonly RoutedEvent CollapsedEvent = EventManager.RegisterRoutedEvent("Collapsed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 236public event RoutedEventHandler Collapsed 262public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 268public event RoutedEventHandler Selected 294public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 300public event RoutedEventHandler Unselected
System\Windows\Documents\Hyperlink.cs (2)
463public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } } 471typeof(RoutedEventHandler),
System\Windows\EventTrigger.cs (1)
256RoutedEventHandler _routedEventHandler = null;
System\Windows\FrameworkContentElement.cs (2)
1702public event RoutedEventHandler Loaded 1732public event RoutedEventHandler Unloaded
System\Windows\FrameworkElement.cs (4)
5703public static readonly RoutedEvent LoadedEvent = EventManager.RegisterRoutedEvent("Loaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5708public event RoutedEventHandler Loaded 5769public static readonly RoutedEvent UnloadedEvent = EventManager.RegisterRoutedEvent("Unloaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5774public event RoutedEventHandler Unloaded
System\Windows\StyleHelper.cs (2)
5667internal static RoutedEventHandler EventTriggerHandlerOnContainer = new RoutedEventHandler(ExecuteEventTriggerActionsOnContainer); 5668internal static RoutedEventHandler EventTriggerHandlerOnChild = new RoutedEventHandler(ExecuteEventTriggerActionsOnChild);
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (4)
150public event RoutedEventHandler Expanded 163typeof(RoutedEventHandler), 169public event RoutedEventHandler Collapsed 182typeof(RoutedEventHandler),
Microsoft\Windows\Controls\Ribbon\RibbonGalleryItem.cs (4)
78EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 83public event RoutedEventHandler Selected 121EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 126public event RoutedEventHandler Unselected
Microsoft\Windows\Controls\Ribbon\RibbonSplitButton.cs (1)
245public event RoutedEventHandler Click