Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ShowInfoPopup.xaml.cs
2
4{
5 public partial class ShowInfoPopup : BasePopup
6 {
7 public ShowInfoPopup(string infoTitle, string infoText)
8 {
9 BasePopupViewModel viewModel = new BaseShowInfoViewModel(infoTitle, infoText);
10 this.InitializeComponent();
11 this.BindingContext = viewModel;
12 }
13
14 public ShowInfoPopup()
15 {
16 this.InitializeComponent();
17 }
18 }
19}
Compatibility wrapper so old Mopups based popups work using the new popup infrastructure.
Definition: BasePopup.cs:10
Base class for popup view models/>.