I've currently got a ListView
with a ViewCell
which has a MenuItem
, the ListView
's SelectionMode is on Single by default since I only want to be selecting one Item at a time for a popup, but when I enable the MenuItem
I want to be able to change the selection mode to Multiple to be able to export some info from multiple cells in the list at once rather than: click cell 1 => export => click cell 2 => export etc.
So is there an OnAppear()
event or something similar that I can use to selectively toggle the selection mode? I haven't been able to find anything similar on here or on Microsoft's Official Documentation.