Label Click:-
-------------
TapGestureRecognizer tapGesture = new TapGestureRecognizer(Tapped);
<Label Name>.GestureRecognizers.Add(tapGesture);
}
private void Tapped(View arg1, object arg2)
{
Navigation.PushModalAsync(new <Navigation Page Name>());
}
-------------
TapGestureRecognizer tapGesture = new TapGestureRecognizer(Tapped);
<Label Name>.GestureRecognizers.Add(tapGesture);
}
private void Tapped(View arg1, object arg2)
{
Navigation.PushModalAsync(new <Navigation Page Name>());
}
No comments:
Post a Comment