2016-02-07 16:13:48 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Reflection;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
namespace Mesen.GUI.Forms
|
|
|
|
|
{
|
2016-02-08 23:23:31 -05:00
|
|
|
|
partial class frmAbout : BaseForm
|
2016-02-07 16:13:48 -05:00
|
|
|
|
{
|
|
|
|
|
public frmAbout()
|
|
|
|
|
{
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void lblLink_Click(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("http://www.mesen.ca");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|