Exemple #1
0
 private void BtnCancelBuy_Clicked(object sender, EventArgs e)
 {
     CancelPayment?.Invoke(this, e);
     Instance = null;
 }
Exemple #2
0
 protected override void OnDisappearing()
 {
     CancelPayment?.Invoke(this, EventArgs.Empty);
     Instance = null;
     base.OnDisappearing();
 }
Exemple #3
0
 protected override bool OnBackButtonPressed()
 {
     CancelPayment?.Invoke(this, EventArgs.Empty);
     Instance = null;
     return(base.OnBackButtonPressed());
 }