An example:
private void linklabelGuide_LinkClicked(object sender,LinkLabelLinkClickedEventArgs e){If you run the application and click the linkLabel, default broswer of your operating system would be opened and load the link you specificed.
string url = "https:/www.google.com";
System.Diagnostics.Process.Start(url);
}
No comments :
Post a Comment