Reputation: 4086
I'm using a Slider control in my UWP app. I need to get rid of the value that is displayed on the top when I'm dragging the thumb of the slider.
Tried to edit the template but cannot find that anywhere.
Upvotes: 6
Views: 1218
Reputation: 2383
Set IsThumbToolTipEnabled
to False
in XAML:
<Slider IsThumbToolTipEnabled="False"/>
Upvotes: 9