1 write to Thumb
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7853
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)
149
if (Track.
Thumb
!= null && Track.
Thumb
.IsMouseOver)
151
Point thumbPoint = e.MouseDevice.GetPosition((IInputElement)Track.
Thumb
);
152
_thumbOffset = thumbPoint - new Point(Track.
Thumb
.ActualWidth * 0.5, Track.
Thumb
.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (1)
697
Source = parent.Track.
Thumb
System\Windows\Controls\Primitives\Track.cs (9)
422
if (
Thumb
!= null)
424
Thumb
.Measure(availableSize);
425
desiredSize =
Thumb
.DesiredSize;
522
Thumb
?.Arrange(new Rect(offset, pieceSize));
550
Thumb
?.Arrange(new Rect(offset, pieceSize));
573
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Height;
578
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Width;
System\Windows\Controls\Slider.cs (8)
744
if (IsMoveToPointEnabled && Track != null && Track.
Thumb
!= null && !Track.
Thumb
.IsMouseOver)
844
if (Track != null && thumb == Track.
Thumb
)
970
thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1043
Size thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1338
_autoToolTip.PlacementTarget = Track?.
Thumb
;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7854
GetDelegate = delegate (object target) { return ((System.Windows.Controls.Primitives.Track)target).
Thumb
; }