Rev 1196 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1194 | dev | 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 | |||
9 | namespace TCPproxy |
||
10 | { |
||
11 | public partial class AboutForm : Form |
||
12 | { |
||
13 | public AboutForm() |
||
14 | { |
||
15 | InitializeComponent(); |
||
16 | } |
||
17 | |||
18 | private void homePageLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) |
||
19 | { |
||
20 | homePageLabel.LinkVisited = true; |
||
21 | System.Diagnostics.Process.Start(homePageLabel.Text); |
||
22 | } |
||
23 | } |
||
24 | } |