For the slider you should make a changechanged event (something like this)
private void ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
}
Then in this case you can set the text of the text field →
textbox1.Text = silder1.Value.ToString();
Each time the slider changes, the event fires, so the text field also changes
hope this helps
Bart
source
share