Example #1
0
 private void label2_Click(object sender, EventArgs e)
 {
     try
     {
         System.Diagnostics.Process.Start("https://liuziangexit.com/HEIF-Utility");
     }
     catch (Exception) {
         var box = new ShowLinkCopyable();
         box.link.Text = "https://liuziangexit.com/HEIF-Utility";
         box.ShowDialog();
     }
 }
Example #2
0
 private void link_Click(object sender, EventArgs e)
 {
     try
     {
         System.Diagnostics.Process.Start(link);
     }
     catch (Exception) {
         var box = new ShowLinkCopyable();
         box.link.Text = link;
         box.ShowDialog();
     }
 }