Set the slider value with RepeatButton //File:Window.xaml.cs using System.Windows; namespace WpfApplication1 { public partial class Window1 : Window { public Window1() { InitializeComponent(); } private void SliderLeft_Click(object sender, RoutedEventArgs e) { slider.Value -= 1; } private void SliderRight_Click(object sender, RoutedEventArgs e) { slider.Value += 1; } } }