1 write to Thumb
PresentationFramework (1)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7246bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Controls.Primitives.Track)target).Thumb = (System.Windows.Controls.Primitives.Thumb)value; };
24 references to Thumb
PresentationFramework (24)
src\Framework\System\Windows\Controls\Primitives\ScrollBar.cs (5)
167if (Track.Thumb != null && Track.Thumb.IsMouseOver) 169Point thumbPoint = e.MouseDevice.GetPosition((IInputElement)Track.Thumb); 170_thumbOffset = thumbPoint - new Point(Track.Thumb.ActualWidth * 0.5, Track.Thumb.ActualHeight * 0.5);
src\Framework\System\Windows\Controls\Primitives\TickBar.cs (1)
709binding.Source = parent.Track.Thumb;
src\Framework\System\Windows\Controls\Primitives\Track.cs (11)
435if (Thumb != null) 437Thumb.Measure(availableSize); 438desiredSize = Thumb.DesiredSize; 537if (Thumb != null) 538Thumb.Arrange(new Rect(offset, pieceSize)); 568if (Thumb != null) 569Thumb.Arrange(new Rect(offset, pieceSize)); 592thumbLength = Thumb == null ? 0 : Thumb.DesiredSize.Height; 597thumbLength = Thumb == null ? 0 : Thumb.DesiredSize.Width;
src\Framework\System\Windows\Controls\Slider.cs (6)
776if (IsMoveToPointEnabled && Track != null && Track.Thumb != null && !Track.Thumb.IsMouseOver) 874if (Track != null && thumb == Track.Thumb) 1002thumbSize = (Track.Thumb != null) ? Track.Thumb.RenderSize : new Size(0d, 0d); 1287_autoToolTip.PlacementTarget = Track != null ? Track.Thumb : null;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7247bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.Primitives.Track)target).Thumb; };