9 writes to Value
PresentationFramework (8)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
59owner.Value = (double)val;
System\Windows\Controls\Primitives\ScrollBar.cs (7)
410if (IsStandalone) { Value = newValue; } 544Value = newValue; 553Value = newValue; 562Value = newValue; 571Value = newValue; 579Value = Minimum; 587Value = Maximum;
PresentationUI (1)
TenFeetInstallationProgress.xaml.cs (1)
129ProgressBar_1.Value = percentDone;
24 references to Value
PresentationFramework (24)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
82return ((RangeBase)Owner).Value;
System\Windows\Controls\Primitives\RangeBase.cs (2)
378val = Value; 388val = Value;
System\Windows\Controls\Primitives\ScrollBar.cs (14)
303scrollBar._previousValue = scrollBar.Value; 325double currentValue = Value; 395double value = Value; 465ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType, Value) 541double newValue = Math.Max(Value - SmallChange, Minimum); 542if (Value != newValue) 550double newValue = Math.Min(Value + SmallChange, Maximum); 551if (Value != newValue) 559double newValue = Math.Max(Value - LargeChange, Minimum); 560if (Value != newValue) 568double newValue = Math.Min(Value + LargeChange, Maximum); 569if (Value != newValue) 577if (Value != Minimum) 585if (Value != Maximum)
System\Windows\Controls\ProgressBar.cs (1)
169double val = Value;
System\Windows\Controls\Slider.cs (6)
864double newValue = Value + Track.ValueFromDistance(e.HorizontalChange, e.VerticalChange); 898return this.Value.ToString("N", format); 1077rangeElement.Width = ((Value - Minimum) * valueToSize); 1101rangeElement.Height = ((Value - Minimum) * valueToSize); 1224double value = this.Value; 1424if (snappedValue != Value)