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