Hello,
I have the ItemsSource bound to a collection with the selected item bound to an object as follows:
SelectedItem="{Binding SelectedUnit}" ItemsSource="{Binding AllUnits}
As the user scrolls through the list in the picker, the picker sets the SelectedItem to each item that gets highlighted. The problem I'm facing is that I have actions performed when the SelectedItem is set and I only want those actions performed when the OK button is clicked rather than when the item is highlighted in the picker control. Is this a way to only have the SelectedItem set when the OK button is clicked?
Thanks,
Scott