8 references to DragStartedEvent
PresentationFramework (8)
System\Windows\Controls\GridSplitter.cs (1)
83
EventManager.RegisterClassHandler(typeof(GridSplitter), Thumb.
DragStartedEvent
, new DragStartedEventHandler(GridSplitter.OnDragStarted));
System\Windows\Controls\Primitives\DragStartedEventArgs.cs (3)
10
/// <seealso cref="Thumb.
DragStartedEvent
" />
23
RoutedEvent=Thumb.
DragStartedEvent
;
49
/// <seealso cref="Thumb.
DragStartedEvent
" />
System\Windows\Controls\Primitives\ScrollBar.cs (1)
680
EventManager.RegisterClassHandler(typeof(ScrollBar), Thumb.
DragStartedEvent
, new DragStartedEventHandler(OnThumbDragStarted));
System\Windows\Controls\Primitives\Thumb.cs (2)
72
public event DragStartedEventHandler DragStarted { add { AddHandler(
DragStartedEvent
, value); } remove { RemoveHandler(
DragStartedEvent
, value); } }
System\Windows\Controls\Slider.cs (1)
60
EventManager.RegisterClassHandler(typeof(Slider), Thumb.
DragStartedEvent
, new DragStartedEventHandler(Slider.OnThumbDragStarted));