Example #1
0
 // Activity link clicking method, opens the link attached with the Activity.
 private void lblLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     // Method function for utilizing Process.Open().
     currentActivity.showLink();
 }
Example #2
0
 // Link clicking function, lets the user view the link of the activity their currently viewing.
 private void lblLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     // The class has the method to open the default browser and show the activities link.
     currentActivity.showLink();
 }