I really work with this piece of code
using System; using Xamarin.Forms; using System.Diagnostics; namespace CryptoUI { public class HomePage : Xamarin.Forms.MasterDetailPage { public HomePage() {
This code actually shows FlyOut's lightweight menu using Xamarin Forms technology. I'm currently trying to figure out how I could easily clear my ListView selection after I chose which page I want to go to!
I found this piece of code on the Xamarin website for developers ( http://developer.xamarin.com/guides/cross-platform/xamarin-forms/working-with/listview/ );
listView.ItemSelected += (sender, e) => { if (e.SelectedItem == null) return;
But I canβt understand now how can I integrate it with my code above :)
c # listview xamarin xamarin.forms xamarin-studio
Guido magrin
source share