15 references to Delta
PresentationCore (1)
System\Windows\Input\MouseDevice.cs (1)
1822
MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.
Delta
);
PresentationFramework (13)
System\Windows\Controls\ComboBox.cs (1)
1169
if (e.
Delta
< 0)
System\Windows\Controls\DocumentViewer.cs (1)
1289
if (e.
Delta
< 0)
System\Windows\Controls\FlowDocumentScrollViewer.cs (3)
710
if (e.
Delta
> 0 && CanIncreaseZoom)
714
else if (e.
Delta
< 0 && CanDecreaseZoom)
721
if (e.
Delta
< 0)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
1054
if ((e.
Delta
> 0 && VerticalOffset != 0) /* scrolling up */ || (e.
Delta
< 0 && VerticalOffset < this.ScrollViewer.ScrollableHeight) /* scrolling down */ )
1057
if (e.
Delta
> 0)
System\Windows\Controls\ScrollViewer.cs (1)
1121
if (e.
Delta
< 0) { ScrollInfo.MouseWheelDown(); }
System\Windows\Controls\SinglePageViewer.cs (3)
424
if (e.
Delta
!= 0)
428
if (e.
Delta
> 0)
439
if (e.
Delta
> 0)
System\Windows\Documents\FixedPage.cs (1)
104
int delta = e.
Delta
;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
974
_mouseWheelCumulativeDelta += e.
Delta
;