I have a four combo boxes, along with one text box and all 5 controls. The principle is that if the user selects an item from the first combo box, this selected item then gets reflected in the text box and the four other combo boxes. Whilst this action is working, if the user then selects a new item from the first combo box, say the next item down in the list, the new item is not showing in the other controls. The previous item is still there and hasn't been refreshed.
I have set IsSyncronizeWithCurrentItem ="true" on all of the combo boxes, but this isn't working.
How do you very simply, keep all these controls in sync? Code is being built using MVVM design pattern.