Hi, we are looking at using the RadStepProgressBar
in Xaml
<telerik:RadStepProgressBar
x:Name="SystemStepProgressBar"
ItemsSource="{Binding Steps}"
SelectedItem="{Binding SelectedStep, Mode=TwoWay}">
We are binding to a collection of StepInfo as per example online
When we change the SelectedItem in code behind, this is not registering visually, even though the RadStepProgressBar.SelectedItem and SelectedIndex is as we expect the visual display does not change?
Ok - sorted... just realised that we were intercepting the click event on the selecetedItem and making a reselection in this code - but the internal code was reselecting the original - putting in e.CancelSelection = true in all options we had in this click event handled this for us.