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