13 references to ValueProperty
PresentationFramework (13)
System\Windows\Controls\Primitives\RangeBase.cs (4)
97ctrl.CoerceValue(ValueProperty); 157ctrl.CoerceValue(ValueProperty); 213get { return (double) GetValue(ValueProperty); } 214set { SetValue(ValueProperty, value); }
System\Windows\Controls\Primitives\Track.cs (2)
283RangeBase.ValueProperty.AddOwner(typeof(Track), 717BindToTemplatedParent(ValueProperty, RangeBase.ValueProperty);
System\Windows\Controls\ScrollViewer.cs (2)
2717hsb.SetBinding(RangeBase.ValueProperty, bindingHorizontalOffset); 2727vsb.SetBinding(RangeBase.ValueProperty, bindingVerticalOffset);
System\Windows\Controls\Slider.cs (5)
58ValueProperty.OverrideMetadata(typeof(Slider), new FrameworkPropertyMetadata(0d, FrameworkPropertyMetadataOptions.AffectsMeasure)); 1262this.SetCurrentValueInternal(ValueProperty, next); 1383this.SetCurrentValueInternal(ValueProperty, this.Maximum); 1391this.SetCurrentValueInternal(ValueProperty, this.Minimum); 1408this.SetCurrentValueInternal(ValueProperty, Math.Max(this.Minimum, Math.Min(this.Maximum, snappedValue)));