This is reproducible when the deferred dragging is enabled and the slider is defined in a template (DataTemplate or ControlTemplate). The selection values are correct, but the UI of the selection is not properly updated. To work this around you can subscribe for the Loaded event of slider and reset its IsSelectionRangeEnabled property. private void RadSlider_Loaded(object sender, RoutedEventArgs e) { radSlider.IsSelectionRangeEnabled ^= true; radSlider.IsSelectionRangeEnabled ^= true; }
Hello John Thank you for sharing this additional detail. And also please accept my apologies for the delay. Regards, Martin Ivanov
Hi Martin, In my case, I work with the double selection properties and I have to set also SelectionStart before SelectionEnd. Best Regards, John