I am relatively new to Xamarin Forms : iOS Apps. Just like any other Apps, I have to create an event on an Image. Home , Back , Account setting.
Whether these events are fired on Image Button Event ?
There is no click event for the image. You have to create a Tap Gesture Recognizer for the image.
Xaml:
<Image Source="imageName.png">
<Image.GestureRecognizers>
<TapGestureRecognizer
Tapped="OnImageNameTapped"
NumberOfTapsRequired="1" />
</Image.GestureRecognizers>
</Image>
Xaml.cs:
void OnImageNameTapped(object sender, EventArgs args)
{
try
{
//Code to execute on tapped event
}
catch (Exception ex)
{
throw ex;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With