private void ConfirmPasswordLabel_OnKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { RecoveryEmailLabel.Focus(); } }
public ChangePasswordEmailView() { InitializeComponent(); Caption.Background = ShellView.CaptionBrush; Loaded += (sender, args) => RecoveryEmailLabel.Focus(); Loaded += OnLoaded; Unloaded += OnUnloaded; }