I want to create Label with click possibility like in WIN phone xaml
Is there a possibili
XAML code would be as follows:
Note: By default, NumberOfTapsRequired is 1.
NumberOfTapsRequired
Then in your .cs file, add the method OnLabelTapped.
.cs
OnLabelTapped
public void OnLabelTapped(object sender, EventArgs args) { // Your code here // Example: // DisplayAlert("Message", "You clicked on the label", "OK"); }