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)
155internal static void AddHandlerToRoute(DependencyObject o, EventRoute route, RoutedEventHandler eventHandler, bool handledToo)
System\Windows\ContentElement.cs (4)
163RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 177RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 522public event RoutedEventHandler GotFocus 536public event RoutedEventHandler LostFocus
System\Windows\DragDrop.cs (2)
339internal static readonly RoutedEvent DragDropStartedEvent = EventManager.RegisterRoutedEvent("DragDropStarted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop)); 340internal static readonly RoutedEvent DragDropCompletedEvent = EventManager.RegisterRoutedEvent("DragDropCompleted", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DragDrop));
System\Windows\Input\FocusManager.cs (6)
25public static readonly RoutedEvent GotFocusEvent = EventManager.RegisterRoutedEvent("GotFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 32public static void AddGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 42public static void RemoveGotFocusHandler(DependencyObject element, RoutedEventHandler handler) 50public static readonly RoutedEvent LostFocusEvent = EventManager.RegisterRoutedEvent("LostFocus", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(FocusManager)); 57public static void AddLostFocusHandler(DependencyObject element, RoutedEventHandler handler) 67public static void RemoveLostFocusHandler(DependencyObject element, RoutedEventHandler handler)
System\Windows\RoutedEvent.cs (1)
90(handlerType == typeof(RoutedEventHandler) ) );
System\Windows\RoutedEventArgs.cs (2)
286if (genericHandler is RoutedEventHandler) 288((RoutedEventHandler)genericHandler)(genericTarget, this);
System\Windows\RoutedEventHandlerInfo.cs (2)
68if (_handler is RoutedEventHandler) 73((RoutedEventHandler)_handler)(target, routedEventArgs);
System\Windows\UIElement.cs (4)
1800RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1825RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler); 3470public event RoutedEventHandler GotFocus 3484public event RoutedEventHandler LostFocus
System\Windows\UIElement3D.cs (4)
725public event RoutedEventHandler GotFocus 739public event RoutedEventHandler LostFocus 1232RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPreOpportunityHandler); 1246RoutedEventHandler eventHandler = new RoutedEventHandler(this.SynchronizedInputPostOpportunityHandler);
PresentationFramework (93)
MS\Internal\FrameworkObject.cs (2)
1014internal event RoutedEventHandler Loaded 1048internal event RoutedEventHandler Unloaded
System\Windows\Controls\Calendar.cs (2)
641internal event RoutedEventHandler DayOrMonthPreviewKeyDown; 885RoutedEventHandler handler = this.DayOrMonthPreviewKeyDown;
System\Windows\Controls\ContextMenu.cs (2)
314public event RoutedEventHandler Opened 343public event RoutedEventHandler Closed
System\Windows\Controls\DataGridCell.cs (4)
707public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 712public event RoutedEventHandler Selected 737public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(DataGridCell)); 742public event RoutedEventHandler Unselected
System\Windows\Controls\DataGridRow.cs (2)
1111public event RoutedEventHandler Selected 1141public event RoutedEventHandler Unselected
System\Windows\Controls\DatePicker.cs (4)
56public event RoutedEventHandler CalendarClosed; 61public event RoutedEventHandler CalendarOpened; 780RoutedEventHandler handler = this.CalendarClosed; 789RoutedEventHandler handler = this.CalendarOpened;
System\Windows\Controls\Expander.cs (4)
162typeof(RoutedEventHandler), 169public event RoutedEventHandler Expanded 181typeof(RoutedEventHandler), 188public event RoutedEventHandler Collapsed
System\Windows\Controls\InkCanvas.cs (8)
1222EventManager.RegisterRoutedEvent("ActiveEditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1228public event RoutedEventHandler ActiveEditingModeChanged 1278EventManager.RegisterRoutedEvent("EditingModeChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1284public event RoutedEventHandler EditingModeChanged 1332EventManager.RegisterRoutedEvent("EditingModeInvertedChanged", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1338public event RoutedEventHandler EditingModeInvertedChanged 1480EventManager.RegisterRoutedEvent("StrokeErased", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(InkCanvas)); 1486public event RoutedEventHandler StrokeErased
System\Windows\Controls\ListBoxItem.cs (2)
138public event RoutedEventHandler Selected 158public event RoutedEventHandler Unselected
System\Windows\Controls\MediaElement.cs (8)
578typeof(RoutedEventHandler), 584public event RoutedEventHandler MediaOpened 597typeof(RoutedEventHandler), 603public event RoutedEventHandler BufferingStarted 616typeof(RoutedEventHandler), 622public event RoutedEventHandler BufferingEnded 654typeof(RoutedEventHandler), 660public event RoutedEventHandler MediaEnded
System\Windows\Controls\MenuItem.cs (11)
206public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 212public event RoutedEventHandler Click 229internal static readonly RoutedEvent PreviewClickEvent = EventManager.RegisterRoutedEvent("PreviewClick", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 234public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 239public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 245public event RoutedEventHandler Checked 262public event RoutedEventHandler Unchecked 280EventManager.RegisterRoutedEvent("SubmenuOpened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 286EventManager.RegisterRoutedEvent("SubmenuClosed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MenuItem)); 292public event RoutedEventHandler SubmenuOpened 308public event RoutedEventHandler SubmenuClosed
System\Windows\Controls\PasswordBox.cs (2)
370typeof(RoutedEventHandler), // 380public event RoutedEventHandler PasswordChanged
System\Windows\Controls\PopupControlService.cs (2)
943EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService)); 950EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(PopupControlService));
System\Windows\Controls\Primitives\ButtonBase.cs (2)
169public static readonly RoutedEvent ClickEvent = EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ButtonBase)); 175public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } }
System\Windows\Controls\Primitives\Popup.cs (1)
2909internal static RoutedEventHandler CloseOnUnloadedHandler;
System\Windows\Controls\Primitives\Selector.cs (6)
93"Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 101public static void AddSelectedHandler(DependencyObject element, RoutedEventHandler handler) 112public static void RemoveSelectedHandler(DependencyObject element, RoutedEventHandler handler) 122"Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Selector)); 130public static void AddUnselectedHandler(DependencyObject element, RoutedEventHandler handler) 141public static void RemoveUnselectedHandler(DependencyObject element, RoutedEventHandler handler)
System\Windows\Controls\Primitives\TextBoxBase.cs (2)
933typeof(RoutedEventHandler), // 939public event RoutedEventHandler SelectionChanged
System\Windows\Controls\Primitives\ToggleButton.cs (6)
45public static readonly RoutedEvent CheckedEvent = EventManager.RegisterRoutedEvent("Checked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 50public static readonly RoutedEvent UncheckedEvent = EventManager.RegisterRoutedEvent("Unchecked", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 55public static readonly RoutedEvent IndeterminateEvent = EventManager.RegisterRoutedEvent("Indeterminate", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToggleButton)); 61public event RoutedEventHandler Checked 78public event RoutedEventHandler Unchecked 95public event RoutedEventHandler Indeterminate
System\Windows\Controls\ToolTip.cs (4)
353EventManager.RegisterRoutedEvent("Opened", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 359public event RoutedEventHandler Opened 384EventManager.RegisterRoutedEvent("Closed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(ToolTip)); 390public event RoutedEventHandler Closed
System\Windows\Controls\TreeViewItem.cs (8)
197public static readonly RoutedEvent ExpandedEvent = EventManager.RegisterRoutedEvent("Expanded", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 203public event RoutedEventHandler Expanded 229public static readonly RoutedEvent CollapsedEvent = EventManager.RegisterRoutedEvent("Collapsed", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 235public event RoutedEventHandler Collapsed 261public static readonly RoutedEvent SelectedEvent = EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 267public event RoutedEventHandler Selected 293public static readonly RoutedEvent UnselectedEvent = EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(TreeViewItem)); 299public event RoutedEventHandler Unselected
System\Windows\Documents\Hyperlink.cs (2)
462public event RoutedEventHandler Click { add { AddHandler(ClickEvent, value); } remove { RemoveHandler(ClickEvent, value); } } 470typeof(RoutedEventHandler),
System\Windows\EventTrigger.cs (1)
255private RoutedEventHandler _routedEventHandler = null;
System\Windows\FrameworkContentElement.cs (2)
1701public event RoutedEventHandler Loaded 1731public event RoutedEventHandler Unloaded
System\Windows\FrameworkElement.cs (4)
5702public static readonly RoutedEvent LoadedEvent = EventManager.RegisterRoutedEvent("Loaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5707public event RoutedEventHandler Loaded 5768public static readonly RoutedEvent UnloadedEvent = EventManager.RegisterRoutedEvent("Unloaded", RoutingStrategy.Direct, typeof(RoutedEventHandler), _typeofThis); 5773public event RoutedEventHandler Unloaded
System\Windows\StyleHelper.cs (2)
5666internal static RoutedEventHandler EventTriggerHandlerOnContainer = new RoutedEventHandler(ExecuteEventTriggerActionsOnContainer); 5667internal static RoutedEventHandler EventTriggerHandlerOnChild = new RoutedEventHandler(ExecuteEventTriggerActionsOnChild);
System.Windows.Controls.Ribbon (9)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (4)
149public event RoutedEventHandler Expanded 162typeof(RoutedEventHandler), 168public event RoutedEventHandler Collapsed 181typeof(RoutedEventHandler),
Microsoft\Windows\Controls\Ribbon\RibbonGalleryItem.cs (4)
77EventManager.RegisterRoutedEvent("Selected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 82public event RoutedEventHandler Selected 120EventManager.RegisterRoutedEvent("Unselected", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(RibbonGalleryItem)); 125public event RoutedEventHandler Unselected
Microsoft\Windows\Controls\Ribbon\RibbonSplitButton.cs (1)
244public event RoutedEventHandler Click