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