I have a CarouselView which is working and underneath is a panel of option buttons that apply to the current item in the CarouselView. One of those is a "Lock / Unlock" button.
The function of the button itself works fine and I'm able to toggle the state of the button (e.g. from Lock to Unlock).
What I would also like to do is change a property of the current item, to show / hide a small "padlock" icon (in a Frame). The CarouselView uses an ObservableCollection of "UserDevice". The frame, in the CarouselView DataTemplate has
IsVisible="{Binding IsLocked}"
but I can't get it to actually update (i.e. show / hide the padlock image).
How should I be approaching this? (I have tried so many different things and searched all sorts via Google).
