16 references to DropEvent
PresentationCore (14)
Core\CSharp\System\Windows\DragDrop.cs (4)
339UIElement.AddHandler(element, DropEvent, handler); 349UIElement.RemoveHandler(element, DropEvent, handler); 1145DragDrop.DropEvent, 1194else if (dragEvent == DragDrop.DropEvent)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
2096public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 2103add { AddHandler(DragDrop.DropEvent, value, false); } 2104remove { RemoveHandler(DragDrop.DropEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
874EventManager.RegisterClassHandler(type, DragDrop.DropEvent, new DragEventHandler(UIElement.OnDropThunk), false); 4374public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 4381add { AddHandler(DragDrop.DropEvent, value, false); } 4382remove { RemoveHandler(DragDrop.DropEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
1802public static readonly RoutedEvent DropEvent = DragDrop.DropEvent.AddOwner(_typeofThis); 1809add { AddHandler(DragDrop.DropEvent, value, false); } 1810remove { RemoveHandler(DragDrop.DropEvent, value); }
PresentationFramework (2)
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (2)
60EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnClearState),true); 72EventManager.RegisterClassHandler(controlType, DragDrop.DropEvent, new DragEventHandler(OnDrop));