16 references to DropEvent
PresentationCore (14)
System\Windows\DragDrop.cs (4)
327UIElement.AddHandler(element, DropEvent, handler); 337UIElement.RemoveHandler(element, DropEvent, handler); 1100DragDrop.DropEvent, 1149else if (dragEvent == DragDrop.DropEvent)
System\Windows\Generated\ContentElement.cs (3)
2021public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 2028add { AddHandler(DragDrop.DropEvent, value, false); } 2029remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement.cs (4)
794EventManager.RegisterClassHandler(type, DragDrop.DropEvent, new DragEventHandler(UIElement.OnDropThunk), false); 3974public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 3981add { AddHandler(DragDrop.DropEvent, value, false); } 3982remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1749public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 1756add { AddHandler(DragDrop.DropEvent, value, false); } 1757remove { RemoveHandler(DragDrop.DropEvent, value); }
PresentationFramework (2)
System\windows\Documents\TextEditorDragDrop.cs (2)
40EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnClearState),true); 52EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnDrop));