Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ValidateEmailView.xaml.cs
2{
3 public partial class ValidateEmailView
4 {
5 public static ValidateEmailView Create()
6 {
7 return Create<ValidateEmailView>();
8 }
9
11 {
12 this.InitializeComponent();
13 this.ContentViewModel = ViewModel;
14
15 this.EmailEntry.Entry.Keyboard = Keyboard.Email;
16 this.EmailEntry.Entry.IsSpellCheckEnabled = false;
17 this.EmailEntry.Entry.IsTextPredictionEnabled = false;
18 }
19 }
20}