public override void NavigateView(NavigationFrame frameView)
        {
            var selectedServer = cmbSMTPServer.SelectedItem as ServerInformation;

            if (selectedServer != null)
            {
                _emailSetup      = new ServerInformation();
                _emailSetup.Host = selectedServer.Host;
                _emailSetup.Port = selectedServer.Port;
                _emailSetup.SSL  = selectedServer.SSL;
                WizardData       = _emailSetup;
                frameView.Navigate(new EmailUserPasswordWizard(WizardData));
            }
            else
            {
                UnicontaMessageBox.Show(Uniconta.ClientTools.Localization.lookup("NoServerSelected"), Uniconta.ClientTools.Localization.lookup("Warning"),
                                        MessageBoxButton.OK);
            }
        }