using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Shadowsocks.View { public partial class AboutForm : Form { public AboutForm() { InitializeComponent(); } private void githubLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { string url = "https://github.com/clowwindy/shadowsocks-csharp"; System.Diagnostics.Process.Start(url); } } }