tags:

views:

34

answers:

2

I want to display the value of a slider as the user moves the slider up and down. Is that possible?

+3  A: 

Seems you can do this

AutoToolTipPlacement="BottomRight"

Leigh Shayler
Awesome! Thanks
Erwin J.
+1  A: 

You can implement a Custom ToolTip using Popup. You can update the Popup position as and when the slider moves. Also, this kind of tooltips gives nice UX feedback to the user.

Avatar
I would use this approach if you need custom formatting on the Popup. If you just need the value displayed then use the AutoToolTip.
Leigh Shayler
+1 Thanks for the point. :)
Avatar