Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1193 → Rev 1194

/TCPproxy/trunk/AboutForm.cs
0,0 → 1,24
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
 
namespace TCPproxy
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
 
private void homePageLabel_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
homePageLabel.LinkVisited = true;
System.Diagnostics.Process.Start(homePageLabel.Text);
}
}
}