Unplanned
Last Updated: 06 Apr 2017 06:25 by ADMIN
When you have set the value of the RadSlider to the maximum available and have placed the control within another element, lowering the width of the parent control does not cause the RadSlider to shrink as well.
Unplanned
Last Updated: 27 Jun 2018 17:56 by ADMIN
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;            
}
Unplanned
Last Updated: 20 Dec 2018 09:55 by ADMIN
Wokraround: Set the Selection property in the constructor of the window using the SelectionRange<T> struct.

public MainWindow()
{
    InitializeComponent();
    this.radSlider.Selection = new SelectionRange<double>(11,16);
}
Unplanned
Last Updated: 03 Jan 2017 20:56 by ADMIN