9 writes to Value
PresentationFramework (8)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
58owner.Value = (double)val;
System\Windows\Controls\Primitives\ScrollBar.cs (7)
409if (IsStandalone) { Value = newValue; } 543Value = newValue; 552Value = newValue; 561Value = newValue; 570Value = newValue; 578Value = Minimum; 586Value = Maximum;
PresentationUI (1)
TenFeetInstallationProgress.xaml.cs (1)
128ProgressBar_1.Value = percentDone;
24 references to Value
PresentationFramework (24)
System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
81return ((RangeBase)Owner).Value;
System\Windows\Controls\Primitives\RangeBase.cs (2)
368val = Value; 378val = Value;
System\Windows\Controls\Primitives\ScrollBar.cs (14)
302scrollBar._previousValue = scrollBar.Value; 324double currentValue = Value; 394double value = Value; 464ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType, Value) 540double newValue = Math.Max(Value - SmallChange, Minimum); 541if (Value != newValue) 549double newValue = Math.Min(Value + SmallChange, Maximum); 550if (Value != newValue) 558double newValue = Math.Max(Value - LargeChange, Minimum); 559if (Value != newValue) 567double newValue = Math.Min(Value + LargeChange, Maximum); 568if (Value != newValue) 576if (Value != Minimum) 584if (Value != Maximum)
System\Windows\Controls\ProgressBar.cs (1)
165double val = Value;
System\Windows\Controls\Slider.cs (6)
845double newValue = Value + Track.ValueFromDistance(e.HorizontalChange, e.VerticalChange); 879return this.Value.ToString("N", format); 1058rangeElement.Width = ((Value - Minimum) * valueToSize); 1082rangeElement.Height = ((Value - Minimum) * valueToSize); 1205double value = this.Value; 1405if (snappedValue != Value)