Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ShowQRPopup.xaml.cs
2{
3 public partial class ShowQRPopup : BasePopup
4 {
5 public ShowQRPopup(byte[] QrCodeBin, string? QrCodeUri)
6 {
7 this.InitializeComponent();
8 this.BindingContext = new ShowQRViewModel(QrCodeBin, QrCodeUri);
9 }
10
11 public ShowQRPopup(byte[] QrCodeBin, string? QrCodeUri, string Title)
12 {
13 BasePopupViewModel ViewModel = new ShowQRViewModel(QrCodeBin, QrCodeUri, Title);
14
15 this.InitializeComponent();
16 this.BindingContext = ViewModel;
17 }
18
19 public ShowQRPopup()
20 {
21 this.InitializeComponent();
22 }
23 }
24}
Compatibility wrapper so old Mopups based popups work using the new popup infrastructure.
Definition: BasePopup.cs:10
Base class for popup view models/>.