16 references to DropEvent
PresentationCore (14)
System\Windows\DragDrop.cs (4)
334UIElement.AddHandler(element, DropEvent, handler); 344UIElement.RemoveHandler(element, DropEvent, handler); 1107DragDrop.DropEvent, 1156else if (dragEvent == DragDrop.DropEvent)
System\Windows\Generated\ContentElement.cs (3)
2036public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 2043add { AddHandler(DragDrop.DropEvent, value, false); } 2044remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement.cs (4)
809EventManager.RegisterClassHandler(type, DragDrop.DropEvent, new DragEventHandler(UIElement.OnDropThunk), false); 3989public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 3996add { AddHandler(DragDrop.DropEvent, value, false); } 3997remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1757public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 1764add { AddHandler(DragDrop.DropEvent, value, false); } 1765remove { RemoveHandler(DragDrop.DropEvent, value); }
PresentationFramework (2)
System\windows\Documents\TextEditorDragDrop.cs (2)
57EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnClearState),true); 69EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnDrop));