9 writes to Value
PresentationFramework (8)
src\Framework\System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
68owner.Value = (double)val;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (7)
431if (IsStandalone) { Value = newValue; } 563Value = newValue; 572Value = newValue; 581Value = newValue; 590Value = newValue; 598Value = Minimum; 606Value = Maximum;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1503zoomSlider.Value = (double)this.ConvertBack(
22 references to Value
PresentationFramework (22)
src\Framework\System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
91return ((RangeBase)Owner).Value;
src\Framework\System\Windows\Controls\Primitives\RangeBase.cs (2)
389val = Value; 399val = Value;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (14)
324scrollBar._previousValue = scrollBar.Value; 346double currentValue = Value; 416double value = Value; 486ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType, Value); 560double newValue = Math.Max(Value - SmallChange, Minimum); 561if (Value != newValue) 569double newValue = Math.Min(Value + SmallChange, Maximum); 570if (Value != newValue) 578double newValue = Math.Max(Value - LargeChange, Minimum); 579if (Value != newValue) 587double newValue = Math.Min(Value + LargeChange, Maximum); 588if (Value != newValue) 596if (Value != Minimum) 604if (Value != Maximum)
src\Framework\System\Windows\Controls\ProgressBar.cs (1)
172double val = Value;
src\Framework\System\Windows\Controls\Slider.cs (4)
877double newValue = Value + Track.ValueFromDistance(e.HorizontalChange, e.VerticalChange); 911return this.Value.ToString("N", format); 1158double value = this.Value; 1355if (snappedValue != Value)