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