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
1using CommunityToolkit.Mvvm.Input;
2using Mopups.Services;
4
6{
7 public partial class ShowInfoPopup
8 {
9 public ShowInfoPopup(string InfoTitle, string InfoText)
10 {
11 BasePopupViewModel viewModel = new BaseShowInfoViewModel(InfoTitle, InfoText);
12
13 this.InitializeComponent();
14 this.BindingContext = viewModel;
15 }
16
17 public ShowInfoPopup()
18 {
19 this.InitializeComponent();
20 }
21
22
23 }
24}