/// <summary> /// Handles the Click event of VintasoftLogoPictureBox object. /// </summary> private void vintasoftLogoPictureBox_Click(object sender, EventArgs e) { // open the VintaSoft web page in web browser DemosTools.OpenBrowser("https://www.vintasoft.com"); }
/// <summary> /// Handles the LinkClicked event of LinkLabel object. /// </summary> private void linkLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { // open link in web browser DemosTools.OpenBrowser(((LinkLabel)sender).Text); }