Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
OnboardingPage.xaml.cs
3
5{
6 public partial class OnboardingPage : BaseContentPage
7 {
8 public OnboardingPage(OnboardingViewModel viewModel)
9 {
10 this.InitializeComponent();
11
12 this.ContentPageModel = viewModel;
13
14 foreach (ViewSwitcherStateView stateView in this.FlowSwitcher.StateViews)
15 {
16 if (stateView.Content is BaseOnboardingView onboardingView)
17 {
18 BaseOnboardingStepViewModel stepViewModel = onboardingView.ViewModel<BaseOnboardingStepViewModel>();
19 viewModel.RegisterStep(stepViewModel);
20 }
21 }
22 }
23 }
24}
A base class for all pages, intended for custom navigation with explicit life-cycle events.