I have xaml TabControl and on one page there are 3 RadioButtons, each of which is bound to a different property in the selected value of the adjacent ListView. After switching between the selected items in the ListView, my switches seem to forget that they are connected and not updated.
Therefore, watching it in the debugger, when I switch to the new selected item, I see that it is not user code that first checks the value for all 3 properties, and then only the first two, and ultimately only the first. However, if I change the tab and change back, it seems to give me some more use cases.
The binding itself is pretty simple. binding TwoWay of the bool property to IsChecked. It has 4 depth levels (Path = DataModel.Selected.AB), but I have other things at the same depth that work fine.
Is this something that people have heard about and know what can happen? Or if the binding is somehow forgotten, is there a way to explicitly resemble xaml?
wfr
source share