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