15 references to Delta
PresentationCore (1)
System\Windows\Input\MouseDevice.cs (1)
1828
MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.
Delta
)
PresentationFramework (13)
System\Windows\Controls\ComboBox.cs (1)
1163
if (e.
Delta
< 0)
System\Windows\Controls\DocumentViewer.cs (1)
1277
if (e.
Delta
< 0)
System\Windows\Controls\FlowDocumentScrollViewer.cs (3)
709
if (e.
Delta
> 0 && CanIncreaseZoom)
713
else if (e.
Delta
< 0 && CanDecreaseZoom)
720
if (e.
Delta
< 0)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
1047
if ((e.
Delta
> 0 && VerticalOffset != 0) /* scrolling up */ || (e.
Delta
< 0 && VerticalOffset < this.ScrollViewer.ScrollableHeight) /* scrolling down */ )
1050
if (e.
Delta
> 0)
System\Windows\Controls\ScrollViewer.cs (1)
1113
if (e.
Delta
< 0) { ScrollInfo.MouseWheelDown(); }
System\Windows\Controls\SinglePageViewer.cs (3)
421
if (e.
Delta
!= 0)
425
if (e.
Delta
> 0)
436
if (e.
Delta
> 0)
System\Windows\Documents\FixedPage.cs (1)
98
int delta = e.
Delta
;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
971
_mouseWheelCumulativeDelta += e.
Delta
;