Tag: windowsapps

FlipView SelectedItem binding

For what ever reason, I’ve just lost some hours working around an issue with FlipView on Windows 10 ARM. In the hope of saving you some time, lets take a walk through it together. Consider this basic example: <FlipView   Name=”fv_Items”   DataContext=”{Binding MyDataCollection}”   ItemSource=”{Binding Items}”   SelectedItem=”{Binding Current, mode=TwoWay}”> </FlipView> Assuming you have…