Search This Blog

Sunday 20 November 2016

Label Click

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>());
  }

No comments:

Post a Comment