8 references to DragStartedEvent
PresentationFramework (8)
System\Windows\Controls\GridSplitter.cs (1)
84
EventManager.RegisterClassHandler(typeof(GridSplitter), Thumb.
DragStartedEvent
, new DragStartedEventHandler(GridSplitter.OnDragStarted));
System\Windows\Controls\Primitives\DragStartedEventArgs.cs (3)
11
/// <seealso cref="Thumb.
DragStartedEvent
" />
24
RoutedEvent=Thumb.
DragStartedEvent
;
50
/// <seealso cref="Thumb.
DragStartedEvent
" />
System\Windows\Controls\Primitives\ScrollBar.cs (1)
679
EventManager.RegisterClassHandler(typeof(ScrollBar), Thumb.
DragStartedEvent
, new DragStartedEventHandler(OnThumbDragStarted));
System\Windows\Controls\Primitives\Thumb.cs (2)
73
public event DragStartedEventHandler DragStarted { add { AddHandler(
DragStartedEvent
, value); } remove { RemoveHandler(
DragStartedEvent
, value); } }
System\Windows\Controls\Slider.cs (1)
61
EventManager.RegisterClassHandler(typeof(Slider), Thumb.
DragStartedEvent
, new DragStartedEventHandler(Slider.OnThumbDragStarted));