13 references to ValueProperty
PresentationFramework (13)
System\Windows\Controls\Primitives\RangeBase.cs (4)
100
ctrl.CoerceValue(
ValueProperty
);
163
ctrl.CoerceValue(
ValueProperty
);
219
get { return (double) GetValue(
ValueProperty
); }
220
set { SetValue(
ValueProperty
, value); }
System\Windows\Controls\Primitives\Track.cs (2)
283
RangeBase.
ValueProperty
.AddOwner(typeof(Track),
719
BindToTemplatedParent(ValueProperty, RangeBase.
ValueProperty
);
System\Windows\Controls\ScrollViewer.cs (2)
2715
hsb.SetBinding(RangeBase.
ValueProperty
, bindingHorizontalOffset);
2725
vsb.SetBinding(RangeBase.
ValueProperty
, bindingVerticalOffset);
System\Windows\Controls\Slider.cs (5)
58
ValueProperty
.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(0d, FrameworkPropertyMetadataOptions.AffectsMeasure));
1278
this.SetCurrentValueInternal(
ValueProperty
, next);
1399
this.SetCurrentValueInternal(
ValueProperty
, this.Maximum);
1407
this.SetCurrentValueInternal(
ValueProperty
, this.Minimum);
1424
this.SetCurrentValueInternal(
ValueProperty
, Math.Max(this.Minimum, Math.Min(this.Maximum, snappedValue)));