9 writes to Value
PresentationFramework (8)
src\Framework\System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
68
owner.
Value
= (double)val;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (7)
431
if (IsStandalone) {
Value
= newValue; }
563
Value
= newValue;
572
Value
= newValue;
581
Value
= newValue;
590
Value
= newValue;
598
Value
= Minimum;
606
Value
= Maximum;
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
1503
zoomSlider.
Value
= (double)this.ConvertBack(
22 references to Value
PresentationFramework (22)
src\Framework\System\Windows\Automation\Peers\RangeBaseAutomationPeer.cs (1)
91
return ((RangeBase)Owner).
Value
;
src\Framework\System\Windows\Controls\Primitives\RangeBase.cs (2)
389
val =
Value
;
399
val =
Value
;
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (14)
324
scrollBar._previousValue = scrollBar.
Value
;
346
double currentValue =
Value
;
416
double value =
Value
;
486
ScrollEventArgs newEvent = new ScrollEventArgs(scrollEventType,
Value
);
560
double newValue = Math.Max(
Value
- SmallChange, Minimum);
561
if (
Value
!= newValue)
569
double newValue = Math.Min(
Value
+ SmallChange, Maximum);
570
if (
Value
!= newValue)
578
double newValue = Math.Max(
Value
- LargeChange, Minimum);
579
if (
Value
!= newValue)
587
double newValue = Math.Min(
Value
+ LargeChange, Maximum);
588
if (
Value
!= newValue)
596
if (
Value
!= Minimum)
604
if (
Value
!= Maximum)
src\Framework\System\Windows\Controls\ProgressBar.cs (1)
172
double val =
Value
;
src\Framework\System\Windows\Controls\Slider.cs (4)
877
double newValue =
Value
+ Track.ValueFromDistance(e.HorizontalChange, e.VerticalChange);
911
return this.
Value
.ToString("N", format);
1158
double value = this.
Value
;
1355
if (snappedValue !=
Value
)