Exemplo n.º 1
0
 private void OpenLink()
 {
     try
     {
         Process = Process.Start(AuthorizationLink.ToString());
     }
     catch (SecurityException)
     {
         MessageBox.Show("Error while opening web-link, please copy and paste the link to your web-browser.", "Authorization", MessageBoxButton.OK, MessageBoxImage.Information);
     }
 }
Exemplo n.º 2
0
 private void CopyLink()
 {
     Clipboard.SetText(AuthorizationLink.ToString());
 }