16 references to DropEvent
PresentationCore (14)
System\Windows\DragDrop.cs (4)
334
UIElement.AddHandler(element,
DropEvent
, handler);
344
UIElement.RemoveHandler(element,
DropEvent
, handler);
1107
DragDrop.
DropEvent
,
1156
else if (dragEvent == DragDrop.
DropEvent
)
System\Windows\Generated\ContentElement.cs (3)
2036
public static readonly RoutedEvent DropEvent = DragDrop.
DropEvent
.AddOwner(_typeofThis);
2043
add { AddHandler(DragDrop.
DropEvent
, value, false); }
2044
remove { RemoveHandler(DragDrop.
DropEvent
, value); }
System\Windows\Generated\UIElement.cs (4)
809
EventManager.RegisterClassHandler(type, DragDrop.
DropEvent
, new DragEventHandler(UIElement.OnDropThunk), false);
3989
public static readonly RoutedEvent DropEvent = DragDrop.
DropEvent
.AddOwner(_typeofThis);
3996
add { AddHandler(DragDrop.
DropEvent
, value, false); }
3997
remove { RemoveHandler(DragDrop.
DropEvent
, value); }
System\Windows\Generated\UIElement3D.cs (3)
1757
public static readonly RoutedEvent DropEvent = DragDrop.
DropEvent
.AddOwner(_typeofThis);
1764
add { AddHandler(DragDrop.
DropEvent
, value, false); }
1765
remove { RemoveHandler(DragDrop.
DropEvent
, value); }
PresentationFramework (2)
System\windows\Documents\TextEditorDragDrop.cs (2)
57
EventManager.RegisterClassHandler(controlType, DragDrop.
DropEvent
, new DragEventHandler(OnClearState),true);
69
EventManager.RegisterClassHandler(controlType, DragDrop.
DropEvent
, new DragEventHandler(OnDrop));