15 references to Delta
PresentationCore (1)
System\Windows\Input\MouseDevice.cs (1)
1824
MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.
Delta
)
PresentationFramework (13)
System\Windows\Controls\ComboBox.cs (1)
1154
if (e.
Delta
< 0)
System\Windows\Controls\DocumentViewer.cs (1)
1222
if (e.
Delta
< 0)
System\Windows\Controls\FlowDocumentScrollViewer.cs (3)
702
if (e.
Delta
> 0 && CanIncreaseZoom)
706
else if (e.
Delta
< 0 && CanDecreaseZoom)
713
if (e.
Delta
< 0)
System\Windows\Controls\Primitives\TextBoxBase.cs (3)
1046
if ((e.
Delta
> 0 && VerticalOffset != 0) /* scrolling up */ || (e.
Delta
< 0 && VerticalOffset < this.ScrollViewer.ScrollableHeight) /* scrolling down */ )
1049
if (e.
Delta
> 0)
System\Windows\Controls\ScrollViewer.cs (1)
1112
if (e.
Delta
< 0) { ScrollInfo.MouseWheelDown(); }
System\Windows\Controls\SinglePageViewer.cs (3)
420
if (e.
Delta
!= 0)
424
if (e.
Delta
> 0)
435
if (e.
Delta
> 0)
System\Windows\Documents\FixedPage.cs (1)
97
int delta = e.
Delta
;
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Ribbon.cs (1)
970
_mouseWheelCumulativeDelta += e.
Delta
;