I have a ListView, ItemsSource bound to the ViewModel, and the items are a custom class (containing the Name of the menu, the Icon, and a Type that is of a Page, which will be launched upon tapping the menu point).
I've discovered that it is possible to bind a Command to a TextCell, and I wish to do so. But as in my case, the list is not fixed, but generated, I am yet to find a solution.
ElementName in Binding does not work, nor does the xmlns:local definition.
Is there a way to use the Command binding, or should I just stick with the ListView.ItemTapped event?