1 write to Thumb
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7286
bamlMember.SetDelegate = delegate(object target, object value) { ((System.Windows.Controls.Primitives.Track)target).
Thumb
= (System.Windows.Controls.Primitives.Thumb)value; };
26 references to Thumb
PresentationFramework (26)
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)
694
binding.Source = parent.Track.
Thumb
;
System\Windows\Controls\Primitives\Track.cs (11)
422
if (
Thumb
!= null)
424
Thumb
.Measure(availableSize);
425
desiredSize =
Thumb
.DesiredSize;
524
if (
Thumb
!= null)
525
Thumb
.Arrange(new Rect(offset, pieceSize));
555
if (
Thumb
!= null)
556
Thumb
.Arrange(new Rect(offset, pieceSize));
579
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Height;
584
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Width;
System\Windows\Controls\Slider.cs (8)
762
if (IsMoveToPointEnabled && Track != null && Track.
Thumb
!= null && !Track.
Thumb
.IsMouseOver)
860
if (Track != null && thumb == Track.
Thumb
)
986
thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1059
Size thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1354
_autoToolTip.PlacementTarget = Track != null ? Track.
Thumb
: null;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7287
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.Primitives.Track)target).
Thumb
; };