5 references to SmallChange
PresentationFramework (5)
src\Framework\System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
137return ((RangeBase)Owner).SmallChange;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (2)
560double newValue = Math.Max(Value - SmallChange, Minimum); 569double newValue = Math.Min(Value + SmallChange, Maximum);
src\Framework\System\Windows\Controls\Slider.cs (2)
1316MoveToNextTick(this.SmallChange); 1324MoveToNextTick(-this.SmallChange);