13 references to ValueProperty
PresentationFramework (13)
System\Windows\Controls\Primitives\RangeBase.cs (4)
96
ctrl.CoerceValue(
ValueProperty
);
156
ctrl.CoerceValue(
ValueProperty
);
212
get { return (double) GetValue(
ValueProperty
); }
213
set { SetValue(
ValueProperty
, value); }
System\Windows\Controls\Primitives\Track.cs (2)
278
RangeBase.
ValueProperty
.AddOwner(typeof(Track),
708
BindToTemplatedParent(ValueProperty, RangeBase.
ValueProperty
);
System\Windows\Controls\ScrollViewer.cs (2)
2716
hsb.SetBinding(RangeBase.
ValueProperty
, bindingHorizontalOffset);
2726
vsb.SetBinding(RangeBase.
ValueProperty
, bindingVerticalOffset);
System\Windows\Controls\Slider.cs (5)
57
ValueProperty
.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(0d, FrameworkPropertyMetadataOptions.AffectsMeasure));
1261
this.SetCurrentValueInternal(
ValueProperty
, next);
1382
this.SetCurrentValueInternal(
ValueProperty
, this.Maximum);
1390
this.SetCurrentValueInternal(
ValueProperty
, this.Minimum);
1407
this.SetCurrentValueInternal(
ValueProperty
, Math.Max(this.Minimum, Math.Min(this.Maximum, snappedValue)));