1 write to Thumb
PresentationFramework (1)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
7246
bamlMember.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)
167
if (Track.
Thumb
!= null && Track.
Thumb
.IsMouseOver)
169
Point 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)
709
binding.Source = parent.Track.
Thumb
;
src\Framework\System\Windows\Controls\Primitives\Track.cs (11)
435
if (
Thumb
!= null)
437
Thumb
.Measure(availableSize);
438
desiredSize =
Thumb
.DesiredSize;
537
if (
Thumb
!= null)
538
Thumb
.Arrange(new Rect(offset, pieceSize));
568
if (
Thumb
!= null)
569
Thumb
.Arrange(new Rect(offset, pieceSize));
592
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Height;
597
thumbLength =
Thumb
== null ? 0 :
Thumb
.DesiredSize.Width;
src\Framework\System\Windows\Controls\Slider.cs (6)
776
if (IsMoveToPointEnabled && Track != null && Track.
Thumb
!= null && !Track.
Thumb
.IsMouseOver)
874
if (Track != null && thumb == Track.
Thumb
)
1002
thumbSize = (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)
7247
bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.Primitives.Track)target).
Thumb
; };