To add a gesture recognizer to a Label, you can use the GestureRecognizers property.
XAML
<Label Text="Tap Me">
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped"/>
</Label.GestureRecognizers>
</Label>
Share with