Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SettingsPage.xaml.cs
2{
6 public partial class SettingsPage
7 {
13 {
14 this.InitializeComponent();
15 this.ContentPageModel = ViewModel;
16 ViewModel.Page = this;
17 }
18
19 private void BetaEnabled_CheckedChanged(object sender, CheckedChangedEventArgs e)
20 {
21 ((SettingsViewModel)this.ContentPageModel).SetBetaFeaturesEnabled(e.Value);
22 }
23 }
24}
SettingsPage(SettingsViewModel ViewModel)
Creates a new instance of the SettingsPage class.
The view model to bind to for when displaying the settings page.