I want to create Label with click possibility like in WIN phone xaml
Is there a possibili
I'd take a much more standard approach and use a Button
. Just set the background to match your app background and remove the border. Then there's no need for extra TapGestureRecongniser
code. (Pseudo Code below:)
Xaml:
Code-Behind:
void OnButtonClicked(object sender, EventArgs args)
{
//Open your link in here
}