You can data bind the Value property of the RadSlider using the TwoWay mode binding, like so:
<teletik:RadSliderx:Name="mySlider"
Minimum="0"
Maximum="10"
Value="{Binding SliderPosition, Mode=TwoWay}"/>
However, you should keep in mind that the class containing the SliderPosition property should implement INotifyProperyChanged interface in order to fully utilize the TwoWay mode binding.
I prepared a sample project illustrating this approach. Please give it a try and let me know if it works for you.
Kind regards,
Tina Stancheva
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items