Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ChangePasswordPage.xaml.cs
1using CommunityToolkit.Mvvm.Messaging;
2using Microsoft.Maui.Controls.PlatformConfiguration;
3using Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;
4
6{
10 public partial class ChangePasswordPage
11 {
17 : base()
18 {
19 this.InitializeComponent();
20 this.ContentPageModel = ViewModel;
21 }
22
23
25 public override async Task OnAppearingAsync()
26 {
27 await base.OnAppearingAsync();
28 this.OldPasswordEntry.Focus();
29 }
30
32 public override async Task OnDisappearingAsync()
33 {
34 await base.OnDisappearingAsync();
35 }
36 }
37}
ChangePasswordPage(ChangePasswordViewModel ViewModel)
Initializes a new instance of the ChangePasswordPage class.