Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SubscribeToPopup.cs
1using System.Threading.Tasks;
2
4{
8 public partial class SubscribeToPopup : BasePopup
9 {
10 private readonly SubscribeToViewModel viewModel;
11
13 {
14 this.InitializeComponent();
15 this.viewModel = viewModel;
16 this.BindingContext = viewModel;
17 }
18
19 public override Task OnDisappearingAsync()
20 {
21 this.viewModel.Close();
22 return base.OnDisappearingAsync();
23 }
24 }
25}
Compatibility wrapper so old Mopups based popups work using the new popup infrastructure.
Definition: BasePopup.cs:10
Asks the user if it wants to remove an existing presence subscription request as well.
override Task OnDisappearingAsync()
Method called when view is disappearing from the screen.