www.pudn.com > 365codes.cn19MailToCode.rar > help.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace MailTo
{
public partial class help : Form
{
public help()
{
InitializeComponent();
}
private void help_Load(object sender, EventArgs e)
{
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
Process.Start("iexplore.exe", "http://tuyile006.cnblogs.com");
}
private void help_Paint(object sender, PaintEventArgs e)
{
linkLabel1.Focus();
}
}
}