How to make long press gesture in Xamarin Forms?
问题 Could you please let me know how can I recognize long press gesture in Xamarin Forms application? A few days before I used TapGestureRecognizer TapGestureRecognizer imageTap = new TapGestureRecognizer(); imageTap.Tapped += (sender, args) => this.OnClickImage; image.GestureRecognizers.Add(imageTap); But I don't know how to make long press gesture according to this thread from xamarin forum It should looks something like this, but it does not work. var dumpParam = new RelayGesture((g, x) =>