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