9 writes to Value
PresentationFramework (8)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
70owner.Value = (double)val;
System\Windows\Controls\Primitives\ScrollBar.cs (7)
426if (IsStandalone) { Value = newValue; } 558Value = newValue; 567Value = newValue; 576Value = newValue; 585Value = newValue; 593Value = Minimum; 601Value = Maximum;
PresentationUI (1)
TenFeetInstallationProgress.xaml.cs (1)
135ProgressBar_1.Value = percentDone;
24 references to Value
PresentationFramework (24)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
93return ((RangeBase)Owner).Value;
System\Windows\Controls\Primitives\RangeBase.cs (2)
388val = Value; 398val = Value;
System\Windows\Controls\Primitives\ScrollBar.cs (14)
319scrollBar._previousValue = scrollBar.Value; 341double currentValue = Value; 411double value = Value; 481ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType, Value); 555double newValue = Math.Max(Value - SmallChange, Minimum); 556if (Value != newValue) 564double newValue = Math.Min(Value + SmallChange, Maximum); 565if (Value != newValue) 573double newValue = Math.Max(Value - LargeChange, Minimum); 574if (Value != newValue) 582double newValue = Math.Min(Value + LargeChange, Maximum); 583if (Value != newValue) 591if (Value != Minimum) 599if (Value != Maximum)
System\Windows\Controls\ProgressBar.cs (1)
176double val = Value;
System\Windows\Controls\Slider.cs (6)
873double newValue = Value + Track.ValueFromDistance(e.HorizontalChange, e.VerticalChange); 907return this.Value.ToString("N", format); 1086rangeElement.Width = ((Value - Minimum) * valueToSize); 1110rangeElement.Height = ((Value - Minimum) * valueToSize); 1233double value = this.Value; 1433if (snappedValue != Value)