You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

AboutForm.cs 577 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Text;
  7. using System.Windows.Forms;
  8. namespace Shadowsocks.View
  9. {
  10. public partial class AboutForm : Form
  11. {
  12. public AboutForm()
  13. {
  14. InitializeComponent();
  15. }
  16. private void githubLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  17. {
  18. string url = "https://github.com/clowwindy/shadowsocks-csharp";
  19. System.Diagnostics.Process.Start(url);
  20. }
  21. }
  22. }