Hi,
I have a gridview that is fed its contents (ItemsSource) through an attribute payload i.e. @Device.SupportedMenuItems
. It then has a SelectedValue bound to an attribute @Device.MenuItem
. It works great. Click an item, it pushed the value into MenuItem, which triggers stuff.
Here’s my problem. It also “selects” that item. Which means I can’t click it again. So I’d really like to deselect the item immediately after it does its stuff.
How might I do this? My system has no knowledge of the items in ItemsSource as they are fed by MQTT.
Hope that makes sense.
Thanks.