Пример #1
0
        /*************************************************************************************************/
        private void NavigateToWebsite(DataGridViewRow dgvrow)
        {
            Password password = ConvertDgvRowToPassword(dgvrow);
            Password result   = QueryForFirstPassword(password);

            string uri = result.Website;

            if (UriUtilities.IsValidUri(uri))
            {
                UriUtilities.OpenUri(uri);
            }
        }
Пример #2
0
 /*************************************************************************************************/
 private void IconLinkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     UriUtilities.OpenUri("https://icons8.com");
 }