13 references to ValueProperty
PresentationFramework (13)
System\Windows\Controls\Primitives\RangeBase.cs (4)
112ctrl.CoerceValue(ValueProperty); 175ctrl.CoerceValue(ValueProperty); 231get { return (double) GetValue(ValueProperty); } 232set { SetValue(ValueProperty, value); }
System\Windows\Controls\Primitives\Track.cs (2)
294RangeBase.ValueProperty.AddOwner(typeof(Track), 730BindToTemplatedParent(ValueProperty, RangeBase.ValueProperty);
System\Windows\Controls\ScrollViewer.cs (2)
2723hsb.SetBinding(RangeBase.ValueProperty, bindingHorizontalOffset); 2733vsb.SetBinding(RangeBase.ValueProperty, bindingVerticalOffset);
System\Windows\Controls\Slider.cs (5)
69ValueProperty.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(0d, FrameworkPropertyMetadataOptions.AffectsMeasure)); 1289this.SetCurrentValueInternal(ValueProperty, next); 1410this.SetCurrentValueInternal(ValueProperty, this.Maximum); 1418this.SetCurrentValueInternal(ValueProperty, this.Minimum); 1435this.SetCurrentValueInternal(ValueProperty, Math.Max(this.Minimum, Math.Min(this.Maximum, snappedValue)));