RoutedEventArgs could not be found.

  • Thread starter Thread starter john_j100
  • Start date Start date
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...
 

Similar threads

Back
Top