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