1 write to Thumb
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7288
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)
165
if (Track.
Thumb
!= null && Track.
Thumb
.IsMouseOver)
167
Point thumbPoint = e.MouseDevice.GetPosition((IInputElement)Track.
Thumb
);
168
_thumbOffset = thumbPoint - new Point(Track.
Thumb
.ActualWidth * 0.5, Track.
Thumb
.ActualHeight * 0.5);
System\Windows\Controls\Primitives\TickBar.cs (1)
708
binding.Source = parent.Track.
Thumb
;
System\Windows\Controls\Primitives\Track.cs (11)
433
if (
Thumb
!= null)
435
Thumb
.Measure(availableSize);
436
desiredSize =
Thumb
.DesiredSize;
535
if (
Thumb
!= null)
536
Thumb
.Arrange(new Rect(offset, pieceSize));
566
if (
Thumb
!= null)
567
Thumb
.Arrange(new Rect(offset, pieceSize));
590
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Height;
595
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Width;
System\Windows\Controls\Slider.cs (8)
773
if (IsMoveToPointEnabled && Track != null && Track.
Thumb
!= null && !Track.
Thumb
.IsMouseOver)
871
if (Track != null && thumb == Track.
Thumb
)
997
thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1070
Size thumbSize = (Track.
Thumb
!= null) ? Track.
Thumb
.RenderSize : new Size(0d, 0d);
1365
_autoToolTip.PlacementTarget = Track != null ? Track.
Thumb
: null;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7289
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.Primitives.Track)target).
Thumb
; };