Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
PaymentPage.xaml.cs
2
4{
8 [XamlCompilation(XamlCompilationOptions.Compile)]
9 public partial class PaymentPage : IShareQrCode
10 {
14 public PaymentPage()
15 {
16 this.ContentPageModel = new EDalerUriViewModel(this, ServiceRef.UiService.PopLatestArgs<EDalerUriNavigationArgs>());
17 this.InitializeComponent();
18 }
19
23 public async Task ShowQrCode()
24 {
25 await this.ScrollView.ScrollToAsync(this.ShareButton, ScrollToPosition.MakeVisible, true);
26 }
27 }
28}
Base class that references services in the app.
Definition: ServiceRef.cs:31
static IUiService UiService
Service serializing and managing UI-related tasks.
Definition: ServiceRef.cs:55
Holds navigation parameters specific to eDaler URIs.
The view model to bind to for when displaying the contents of an eDaler URI.
A page that allows the user to realize payments.
PaymentPage()
Creates a new instance of the PaymentPage class.
async Task ShowQrCode()
Scrolls to display the QR-code.
Interface for pages with a share button.
Definition: IShareQrCode.cs:7