Subversion Repositories general

Rev

Rev 1196 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

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);
                }
        }
}