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