Tutorial by Examples

With the Tap Gesture, you can make any UI-Element clickable (Images, Buttons, StackLayouts, ...): (1) In code, using the event: var tapGestureRecognizer = new TapGestureRecognizer(); tapGestureRecognizer.Tapped += (s, e) => { // handle the tap }; image.GestureRecognizers.Add(tapGestureR...

Page 1 of 1