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)
2032public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 2039add { AddHandler(DragDrop.DropEvent, value, false); } 2040remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement.cs (4)
805EventManager.RegisterClassHandler(type, DragDrop.DropEvent, new DragEventHandler(UIElement.OnDropThunk), false); 3985public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 3992add { AddHandler(DragDrop.DropEvent, value, false); } 3993remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1751public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 1758add { AddHandler(DragDrop.DropEvent, value, false); } 1759remove { 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));