14 references to Delta
PresentationCore (1)
Core\CSharp\System\Windows\Input\MouseDevice.cs (1)
1929
MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.
Delta
);
PresentationFramework (12)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1171
if (e.
Delta
< 0)
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1309
if (e.
Delta
< 0)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (3)
716
if (e.
Delta
> 0 && CanIncreaseZoom)
720
else if (e.
Delta
< 0 && CanDecreaseZoom)
727
if (e.
Delta
< 0)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (3)
1080
if ((e.
Delta
> 0 && VerticalOffset != 0) /* scrolling up */ || (e.
Delta
< 0 && VerticalOffset < this.ScrollViewer.ScrollableHeight) /* scrolling down */ )
1083
if (e.
Delta
> 0)
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
1148
if (e.
Delta
< 0) { ScrollInfo.MouseWheelDown(); }
src\Framework\System\Windows\Controls\SinglePageViewer.cs (3)
431
if (e.
Delta
!= 0)
435
if (e.
Delta
> 0)
446
if (e.
Delta
> 0)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
729
this.zoomSlider.Value += e.
Delta
/ scrollDeltaDivider;