12 references to ScrollUnitProperty
PresentationFramework (12)
System\Windows\Controls\ItemsControl.cs (4)
57VirtualizingStackPanel.ScrollUnitProperty.OverrideMetadata(typeof(ItemsControl), new FrameworkPropertyMetadata(new PropertyChangedCallback(OnScrollingModeChanged), new CoerceValueCallback(CoerceScrollingMode))); 65d.CoerceValue(VirtualizingStackPanel.ScrollUnitProperty); 73BaseValueSource baseValueSource = DependencyPropertyHelper.GetValueSource(d, VirtualizingStackPanel.ScrollUnitProperty).BaseValueSource; 920CoerceValue(VirtualizingStackPanel.ScrollUnitProperty);
System\Windows\Controls\ScrollUnit.cs (1)
8/// Used by <see cref="VirtualizingPanel.ScrollUnitProperty" />.
System\Windows\Controls\TreeView.cs (1)
35VirtualizingStackPanel.ScrollUnitProperty.OverrideMetadata(typeof(TreeView), new FrameworkPropertyMetadata(ScrollUnit.Pixel));
System\Windows\Controls\TreeViewItem.cs (1)
928SynchronizeValue(VirtualizingPanel.ScrollUnitProperty, parent, element);
System\Windows\Controls\VirtualizingPanel.cs (5)
156/// Retrieves the value for <see cref="ScrollUnitProperty" />. 163return (ScrollUnit)element.GetValue(ScrollUnitProperty); 167/// Sets the value for <see cref="ScrollUnitProperty" />. 174element.SetValue(ScrollUnitProperty, value); 357dp == VirtualizingPanel.ScrollUnitProperty)