CmisSync.SetupAddLoginWPF.ApplyAddLogin C# (CSharp) Method

ApplyAddLogin() private method

private ApplyAddLogin ( ) : void
return void
        private void ApplyAddLogin()
        {
            address_label.Text = Properties_Resources.EnterWebAddress;
            address_help_label.Text = Properties_Resources.Help + ": ";
            Run run = new Run(Properties_Resources.WhereToFind);
            Hyperlink link = new Hyperlink(run);
            link.NavigateUri = new Uri("https://github.com/nicolas-raoul/CmisSync/wiki/What-address");
            address_help_label.Inlines.Add(link);
            link.RequestNavigate += (sender, e) =>
            {
                System.Diagnostics.Process.Start(e.Uri.ToString());
            };

            user_label.Text = Properties_Resources.User + ":";
            password_label.Text = Properties_Resources.Password + ":";

            continue_button.Content = Properties_Resources.Continue;
            cancel_button.Content = Properties_Resources.Cancel;
        }
    }