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