Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
CheckPasswordPopup.xaml.cs
2
4{
8 public partial class CheckPasswordPopup
9 {
10 public CheckPasswordPopup()
11 {
12 this.InitializeComponent();
13 this.PasswordEntry.Keyboard = ServiceRef.TagProfile.IsNumericPassword ? Keyboard.Numeric : Keyboard.Default;
14
15 }
16
17 protected override void OnAppearing()
18 {
19 base.OnAppearing();
20
21 this.PasswordEntry.Focus();
22 }
23
24
25 }
26}
A Popup letting the user enter a password to be verified with the password defined by the user earlie...