Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

UWP slider; hide the value displayed on top

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.

enter image description here

like image 413
danbord Avatar asked Jan 11 '18 20:01

danbord


1 Answers

Set IsThumbToolTipEnabled to False in XAML:

<Slider IsThumbToolTipEnabled="False"/>
like image 159
A. Milto Avatar answered Sep 23 '22 01:09

A. Milto