15 references to ValueProperty
PresentationFramework (13)
src\Framework\System\Windows\Controls\Primitives\RangeBase.cs (4)
113
ctrl.CoerceValue(
ValueProperty
);
176
ctrl.CoerceValue(
ValueProperty
);
232
get { return (double) GetValue(
ValueProperty
); }
233
set { SetValue(
ValueProperty
, value); }
src\Framework\System\Windows\Controls\Primitives\Track.cs (2)
296
RangeBase.
ValueProperty
.AddOwner(typeof(Track),
732
BindToTemplatedParent(ValueProperty, RangeBase.
ValueProperty
);
src\Framework\System\Windows\Controls\ScrollViewer.cs (2)
2763
hsb.SetBinding(RangeBase.
ValueProperty
, bindingHorizontalOffset);
2773
vsb.SetBinding(RangeBase.
ValueProperty
, bindingVerticalOffset);
src\Framework\System\Windows\Controls\Slider.cs (5)
70
ValueProperty
.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(0d, FrameworkPropertyMetadataOptions.AffectsMeasure));
1214
this.SetCurrentValueInternal(
ValueProperty
, next);
1332
this.SetCurrentValueInternal(
ValueProperty
, this.Maximum);
1340
this.SetCurrentValueInternal(
ValueProperty
, this.Minimum);
1357
this.SetCurrentValueInternal(
ValueProperty
, Math.Max(this.Minimum, Math.Min(this.Maximum, snappedValue)));
System.Activities.Presentation (2)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (2)
1520
Path = new PropertyPath(Slider.
ValueProperty
),
1527
Path = new PropertyPath(Slider.
ValueProperty
),