-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathAboutForm.cs
28 lines (26 loc) · 862 Bytes
/
AboutForm.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace REW3
{
public partial class AboutForm : Form
{
public AboutForm()
{
InitializeComponent();
}
/// <summary>
/// Handles the LinkClicked event of the linkLabel1 control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="System.Windows.Forms.LinkLabelLinkClickedEventArgs"/> instance containing the event data.</param>
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("http://blogs.msdn.com/ericgu/archive/2003/07/07/52362.aspx");
}
}
}