1 write to Thumb
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7852
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)
System\Windows\Controls\Primitives\ScrollBar.cs (5)
148
if (Track.
Thumb
!= null && Track.
Thumb
.IsMouseOver)
150
Point thumbPoint = e.MouseDevice.GetPosition((IInputElement)Track.
Thumb
);
151
_thumbOffset = thumbPoint - new Point(Track.
Thumb
.ActualWidth * 0.5, Track.
Thumb
.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (1)
696
Source = parent.Track.
Thumb
System\Windows\Controls\Primitives\Track.cs (9)
413
if (
Thumb
!= null)
415
Thumb
.Measure(availableSize);
416
desiredSize =
Thumb
.DesiredSize;
513
Thumb
?.Arrange(new Rect(offset, pieceSize));
541
Thumb
?.Arrange(new Rect(offset, pieceSize));
564
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Height;
569
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Width;
System\Windows\Controls\Slider.cs (8)
743
if (IsMoveToPointEnabled && Track != null && Track.
Thumb
!= null && !Track.
Thumb
.IsMouseOver)
843
if (Track != null && thumb == Track.
Thumb
)
969
thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1042
Size thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1337
_autoToolTip.PlacementTarget = Track?.
Thumb
;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7853
GetDelegate = delegate (object target) { return ((System.Windows.Controls.Primitives.Track)target).
Thumb
; }