16 references to DropEvent
PresentationCore (14)
System\Windows\DragDrop.cs (4)
326UIElement.AddHandler(element, DropEvent, handler); 336UIElement.RemoveHandler(element, DropEvent, handler); 1099DragDrop.DropEvent, 1148else if (dragEvent == DragDrop.DropEvent)
System\Windows\Generated\ContentElement.cs (3)
2020public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 2027add { AddHandler(DragDrop.DropEvent, value, false); } 2028remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement.cs (4)
793EventManager.RegisterClassHandler(type, DragDrop.DropEvent, new DragEventHandler(UIElement.OnDropThunk), false); 3973public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 3980add { AddHandler(DragDrop.DropEvent, value, false); } 3981remove { RemoveHandler(DragDrop.DropEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
1750public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 1757add { AddHandler(DragDrop.DropEvent, value, false); } 1758remove { RemoveHandler(DragDrop.DropEvent, value); }
PresentationFramework (2)
System\windows\Documents\TextEditorDragDrop.cs (2)
39EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnClearState),true); 51EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnDrop));