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