J
john_j100
Guest
I'm trying to implement action on button click in Xamarin.
It also tells "Signature of EventHandler ...AddBtn doesn't match the event type".
<Button Text="Add" Clicked="AddBtn"/>
namespace App
{
public partial class MainPage : ContentPage
{
...
private void AddBtn(object sender, RoutedEventArgs e)
{
...
}
}
}
Continue reading...
It also tells "Signature of EventHandler ...AddBtn doesn't match the event type".
<Button Text="Add" Clicked="AddBtn"/>
namespace App
{
public partial class MainPage : ContentPage
{
...
private void AddBtn(object sender, RoutedEventArgs e)
{
...
}
}
}
Continue reading...